:root{
  --bg1:#071b3a;
  --bg2:#0a2d63;
  --bg3:#06122b;
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.75);
  --accent:#ff5b7c;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.10);
  --line:rgba(255,255,255,.14);
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 18px;
  --slide-gap: clamp(6px, 1.2vh, 12px);
}

@font-face {
  font-family: "Cera Pro";
  src: url("assets/fonts/Cera_Pro_Regular_Italic.otf") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cera Pro";
  src: url("assets/fonts/Cera_Pro_Medium.otf") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cera Pro";
  src: url("assets/fonts/Cera_Pro_Bold.otf") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Cera Pro", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color:var(--text);
  background: #ffffff;
  overflow-x:hidden;
}

button, input, select, textarea {
  font-family: "Cera Pro", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

/* deck */
.deck {
  width: 100%;
  padding: 0 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

img, video, canvas, svg {
  max-width: 100%;
  height: auto;
}


/* slide */
.slide{
  min-height: 0;
  height: calc(100vh - (var(--slide-gap) * 2));
  scroll-snap-align:start;
  display:flex;
  align-items:center;
  position:relative;
  padding: clamp(12px, 2.4vh, 48px);
  width: calc(100% - (var(--slide-gap) * 2));
  margin: var(--slide-gap);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(6, 18, 43, 0.18);
}

.slide { position: relative; }

@supports (height: 100svh) {
  .slide {
    height: calc(100svh - (var(--slide-gap) * 2));
  }
}

.slide-logo{
  position: absolute;
  width: auto;
  height: 48px;     /* настрой размер */
  opacity: .95;
  z-index: 10;
}

/* 1-й слайд: bottom-left */
.logo--bl{
  left: 32px;
  bottom: 32px;
}

/* остальные: top-right */
.logo--tr{
  right: 32px;
  top: 32px;
}

@media (max-width: 768px){
  .slide-logo{ height: 36px; }
  .logo--bl{ left: 16px; bottom: 16px; }
  .logo--tr{ right: 16px; top: 16px; }
}


.bg-img{
  background: var(--bg);
  background-size: cover;      /* или cover, если хочешь без полей */
  background-position: center;
  background-repeat: no-repeat;
  background-color: #050f23;     /* цвет полей, если contain */
}

.content{
  position: relative;
  width: min(1100px, 90%);
  margin: 0 auto;
}



#s1 .content{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  transform: translateY(-14vh);
}

#s1{
  min-height: 50vh;
}

#s1 .s1-video{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

#s1 .s1-video video{
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: #000;
  object-fit: cover;
}

#s2 .content,
#s3 .content,
#s4 .content{
  margin-bottom: 0;
}

#s2 .content{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(12px, 3vh, 32px);
  padding-bottom: clamp(10px, 2.5vh, 24px);
}

#s3 .content{
  padding-top: clamp(12px, 3vh, 32px);
}

#s5 .content{
  position: relative;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#s5{
  min-height: 50vh;
}

/* ===== Карта городов (слайд 4) ===== */

#s4 {
  position: relative;
  align-items: flex-start;
}

.city-list{
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  max-width: 820px;
}

@media (max-width: 480px) {
  #s4 .content{
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .city-list{
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 6px;
  }
}

.city{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0,0,0,.25);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1200ms ease, transform 1200ms ease;
  will-change: opacity, transform;
}

.city:hover .name,
.city:focus-visible .name{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.city.is-visible{
  opacity: 1;
  transform: translateY(0);
}


.city .name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 500;
  color: #ff5b7c;
}

.city .name img{
  width: 18px;
  height: auto;
}

.city .count {
  display: block;
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.city.mega .count {
  font-size: clamp(14px, 2vw, 20px);
}

/* mobile */
@media (max-width: 768px) {
  .city-list{
    grid-template-columns: 1fr;
  }
  .city .count {
    font-size: 18px;
  }
  .city .name {
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .city-list{
    max-height: 45vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 6px;
  }
  .city{
    flex-wrap: wrap;
    row-gap: 6px;
  }
  .city .name{
    max-width: 100%;
    line-height: 1.2;
    word-break: break-word;
  }
  .city .count{
    margin-left: auto;
  }
}



.center{
  text-align:center;
}

.header p, .lead, .sub{
  color:var(--muted);
  line-height:1.5;
  font-size: clamp(14px, 1.6vw, 18px);
}

.sub-heading{
  color: var(--muted);
  line-height: 1.5;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 400;
}

h1,h2,h3{
  margin:0 0 12px 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
h2{
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing:.02em;
  color: #ff5b7c;
}
h3{
  font-size: clamp(16px, 2vw, 20px);
  color: #ff5b7c;
}

.badge{
  display:inline-block;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  letter-spacing:.25em;
  font-weight:600;
  font-size:12px;
  text-transform:uppercase;
  color: #ff5b7c;
}

.title{
  font-size: clamp(44px, 7vw, 92px);
  line-height: .95;
  letter-spacing: .02em;
  margin: 18px 0 14px;
  background: linear-gradient(90deg, #ff6b86, #ffb3c1);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  font-weight:800;
}

.hint{
  position:absolute;
  bottom:18px;
  left:0; right:0;
  text-align:center;
  color:rgba(234,240,255,.65);
  font-size:13px;
}

/* cards / grids */
.grid2{display:grid; grid-template-columns:repeat(2, 1fr); gap:16px; margin-top:18px}
.grid3{display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; margin-top:18px}

.s3-icons{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  max-width: 100%;
}

.s3-icons img{
  width: clamp(96px, 8vw, 180px);
  height: auto;
  display: block;
}

.s3-icon{
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 3000ms ease, transform 3000ms ease;
  will-change: opacity, transform;
}

.s3-icon.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card{
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 3000ms ease, transform 3000ms ease;
  will-change: opacity, transform;
}

.card.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.note{
  margin-top:16px;
  margin-bottom: clamp(16px, 4vh, 32px);
  padding:14px 16px;
  border-left:3px solid var(--accent);
  background:rgba(255,255,255,.05);
  border-radius: 12px;
  color: var(--muted);
}

.board-images{
  margin-top: 5%;
  display: flex;
  gap: clamp(8px, 2vw, 20px);
  align-items: flex-end;
  justify-content: space-evenly;
  /* max-width: 80%; */
  /* margin-left: auto; */
  /* margin-right: auto; */
}

#s2 .board-images{
  margin-top: clamp(16px, 4vh, 32px);
}

.board-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.board-caption{
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #ffffff;
  font-weight: 700;
  font-style: normal;
}

.board-image{
  width: clamp(120px, 12vw, 220px);
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.2);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 3s ease, transform 3s ease;
  will-change: opacity, transform;
}

.board-image--mediaboard{
  grid-column: 1;
  align-self: end;
  width: clamp(56px, 6vw, 110px);
  max-width: 28vw;
  justify-self: self-start;
}

.board-image--megaboard{
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  width: clamp(280px, 52vw, 1820px);
  min-width: 220px;
}

.board-image.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce){
  .board-image{
    transition: none;
    transform: none;
  }
  .map-image{
    transition: none;
    transform: none;
    opacity: 1;
  }
  .city{
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/* stats */
.stats{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  margin-top:14px;
}
.stats.small{grid-template-columns: repeat(3, 1fr)}
.stat{
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius: 14px;
  padding:12px 14px;
}
.num{
  font-weight:800;
  font-size: clamp(22px, 3.2vw, 36px);
  color:#ff5b7c
}
.lbl{
  color:var(--muted);
  font-size:13px;
  margin-top:6px;
}

/* lists */
.list{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.list li{margin:6px 0}
.list.compact li{margin:4px 0}
.muted{color:var(--muted); margin-top:10px}

.big-num{
  font-weight:900;
  font-size: clamp(54px, 8vw, 92px);
  line-height:1;
  color: rgba(255,255,255,.15);
  margin: 10px 0 6px;
}

.divider{
  height:1px;
  background: var(--line);
  margin: 14px 0;
}

/* partners columns */
.columns3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.columns3 .list{
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
}

/* logos grid */
.logos{
  margin: 24px 0;
  overflow: hidden;
  width: 100%;
}

.logos-track{
  display: flex;
  width: max-content;            /* дорожка по ширине контента */
  will-change: transform;
  animation: scroll 70s linear infinite;
}

.logos-track img{
  flex: 0 0 auto;
  height: 50px;
  width: auto;
  margin: 0 20px;
  border-radius: 10px;
}

/* двигаем РОВНО на половину дорожки (потому что контент продублирован) */
@keyframes scroll{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo{
  border:1px dashed rgba(255,255,255,.25);
  border-radius: 14px;
  padding: 14px 10px;
  text-align:center;
  color: rgba(234,240,255,.8);
  background: rgba(255,255,255,.04);
  font-size: 13px;
}

.to-top{
  display:inline-block;
  margin-top: 16px;
  color: var(--text);
  text-decoration:none;
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}

.contacts-wrap{
  margin: 24px auto 0;
  max-width: 820px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contacts{
  margin: 0;
  text-align: center;
  background: rgba(0,0,0,.35);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  backdrop-filter: blur(6px);
}

.contacts h3{
  margin: 12px 0;
  font-size: 22px;
  font-family: "Cera Pro", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

.contacts-list{
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 8px;
}

.contacts-list .label{
  color: var(--muted);
  margin-right: 6px;
}

.contacts a{
  color: var(--text);
  text-decoration: none;
}

.contacts a:hover{
  text-decoration: underline;
}

.whatsapp-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ff5b7c;
  color: #0b1b13;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.instagram-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.instagram-icon{
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}

.insta-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #121212;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--line);
}

.insta-icon{
  width: 18px;
  height: 18px;
  fill: currentColor;
}



/* ===== Topbar (menu + language) ===== */
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.topbar{
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 70;
  display:flex;
  align-items:center;
  gap:10px;
}

.topbar__burger{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  font-style: normal;
  font-weight: 500;
}

.topbar__panel{
  display:flex;
  align-items:center;
  gap:12px;
  padding: 10px 12px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.25);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.topbar__menu{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--accent);
}

.topbar__link{
  color: var(--accent);
  text-decoration:none;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  font-style: normal;
  font-weight: 500;
}

.topbar__link:hover{
  background: rgba(255,255,255,.08);
}

.topbar__select{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--accent);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 14px;
  cursor: pointer;
  font-style: normal;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.topbar__select option{
  background: #0b1b2b;
  color: var(--text);
}

.topbar__lang{
  position: relative;
}

.topbar__select{
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.lang-dropdown{
  position: relative;
}

.lang-toggle{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--accent);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  font-style: normal;
  font-weight: 500;
}

.lang-menu{
  position: absolute;
  top: calc(100% + 8px);
  /* right: 0; */
  /* min-width: 72px; */
  background: rgba(0,0,0,.75);
  border: 1px solid var(--line);
  border-radius: 12px;
  /* padding: 6px; */
  display: none;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.lang-menu.open{
  display: grid;
  gap: 6px;
}

.lang-option{
  border:1px solid transparent;
  background: rgba(255,255,255,.06);
  color: var(--accent);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  cursor: pointer;
}

.lang-option:hover{
  border-color: var(--line);
  background: rgba(255,255,255,.12);
}

/* mobile: burger toggles panel */
@media (max-width: 860px){
  .topbar__panel{
    position:absolute;
    top: 0;
    right: 0;
    transform: translateY(calc(100% + 10px));
    flex-direction: column;
    align-items: stretch;
    border-radius: 18px;
    padding: 12px;
    min-width: 200px;
    display: none; /* hidden by default */
  }
  .topbar__panel.open{ display:flex; }
  .topbar__menu{ flex-direction: column; align-items: stretch; }
  .topbar__link{ width: 100%; }
}

/* dots */
.dots{
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index: 50;
}
.dot{
  width:10px; height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.12);
  cursor:pointer;
}
.dot.active{
  background: var(--accent);
  border-color: transparent;
  box-shadow: 0 0 0 6px rgba(255,91,124,.18);
}

/* responsive */
@media (max-width: 920px){
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .stats.small{grid-template-columns:1fr}
  .columns3{grid-template-columns:1fr}
  .dots{right: 10px}
}

@media (max-width: 1024px) and (max-height: 600px){
  #s2 .content,
  #s3 .content{
    justify-content: flex-start;
  }

  #s2 .content{
    padding-bottom: 8px;
  }

  #s2 .board-images{
    margin-top: 8px;
  }

  #s2 .board-caption{
    font-size: 12px;
  }

  #s2 .board-image--mediaboard{
    width: clamp(48px, 7vw, 88px);
    max-width: 24vw;
  }

  #s2 .board-image--megaboard{
    width: clamp(220px, 46vw, 320px);
    min-width: 200px;
  }

  #s3 .content{
    height: 100%;
    padding-right: 4px;
  }

  #s2 h2{
    font-size: clamp(16px, 3.2vw, 24px);
    line-height: 1.08;
  }

  #s2 .header p{
    font-size: clamp(12px, 1.8vw, 15px);
    line-height: 1.32;
  }

  #s3 h2{
    font-size: clamp(16px, 3vw, 22px);
    line-height: 1.1;
  }

  #s3 .lead{
    font-size: clamp(12px, 1.8vw, 15px);
    line-height: 1.32;
  }

  #s3 .grid2{
    gap: 12px;
    margin-top: 12px;
  }

  #s3 .card{
    padding: 12px 12px;
  }

  #s3 .s3-icons{
    margin-top: 12px;
  }

  #s5 .logos{
    margin: 12px 0;
  }

  #s5 .logos-track img{
    height: 32px;
    margin: 0 12px;
  }
}

@media (max-width: 1280px) and (max-height: 650px){
  #s2 .content{
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #s2 h2{
    font-size: clamp(16px, 2.8vw, 22px);
    line-height: 1.08;
  }

  #s2 .header p{
    font-size: clamp(12px, 1.6vw, 14px);
    line-height: 1.28;
  }

  #s2 .note{
    margin-bottom: 12px;
  }

  #s2 .board-images{
    margin-top: 12px;
    gap: clamp(6px, 1.6vw, 12px);
  }

  #s2 .board-caption{
    font-size: 12px;
  }

  #s2 .board-image--mediaboard{
    width: clamp(50px, 4.2vw, 90px);
    max-width: 24vw;
  }

  #s2 .board-image--megaboard{
    width: clamp(420px, 44vw, 320px);
    min-width: 200px;
  }
}

@media (max-width: 1440px) and (max-height: 900px){
  #s2 .content,
  #s3 .content{
    justify-content: flex-start;
  }

  #s2 h2{
    font-size: clamp(18px, 2.6vw, 28px);
    line-height: 1.08;
  }

  #s2 .header p{
    font-size: clamp(13px, 1.4vw, 16px);
    line-height: 1.34;
  }

  #s3 h2{
    font-size: clamp(18px, 2.4vw, 26px);
    line-height: 1.1;
  }

  #s3 .lead{
    font-size: clamp(13px, 1.4vw, 16px);
    line-height: 1.34;
  }

  #s3 .grid2{
    gap: 12px;
    margin-top: 12px;
  }

  #s3 .content{
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 4px;
  }
}

@media (max-width: 768px){
  .slide{
    min-height: auto;
    padding: 16px;
    border-radius: 18px;
  }

  .content{
    width: min(100%, 92%);
  }

  #s1{
    min-height: 60vh;
  }

  #s1 .s1-video{
    padding: 0;
  }

  #s1 .s1-video video{
    width: 100%;
    height: 100%;
  }

  .title{
    font-size: clamp(32px, 10vw, 56px);
  }

  h2{
    font-size: clamp(18px, 5.2vw, 26px);
  }

  #s3 h2{
    font-size: clamp(15px, 4.4vw, 24px);
    line-height: 1.18;
    word-break: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-wrap: balance;
  }

  #s3{
    align-items: flex-start;
  }

  h3{
    font-size: clamp(15px, 4.5vw, 18px);
  }

  .logos-track img{
    height: 36px;
    margin: 0 14px;
  }

  .contacts{
    padding: 14px 16px;
  }

  .contacts-wrap{
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .whatsapp-btn{
    width: 100%;
  }

  .instagram-link{
    width: 36px;
    height: 36px;
  }

  .board-images{
    display: flex;
    gap: 0;
    align-items: flex-start;
  }

  .board-caption{
    font-size: 12px;
  }

  .board-image{
    width: clamp(90px, 24vw, 160px);
    max-width: none;
  }

  .board-image--mediaboard{
    order: 1;
    width: clamp(90px, 22vw, 150px);
  }

  .board-image--megaboard{
    order: 2;
    margin-left: -6px;
    width: clamp(240px, 66vw, 420px);
  }
}

@media (max-width: 480px) and (hover: none) and (pointer: coarse){
  :root{
    --slide-gap: 6px;
  }

  .topbar{
    right: 8px;
    top: 8px;
  }

  .topbar__panel{
    border-radius: 16px;
  }

  .lang-toggle{
    padding: 6px 10px;
  }

  .dots{
    display: none;
  }

  #s5 .content{
    padding: 0 12px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    gap: 0;
  }

  #s5 .logos{
    width: 100%;
    margin: 12px 0;
  }

  #s5 .logos-track{
    max-width: 100%;
  }

  #s5 .contacts-wrap{
    width: 100%;
  }

  .to-top{
    margin-bottom: 15px;
  }

  #s3 h2{
    font-size: clamp(14px, 5.0vw, 20px);
    line-height: 1.14;
  }

  #s2 h2{
    font-size: clamp(12px, 5.2vw, 18px);
    line-height: 1.05;
    letter-spacing: 0.005em;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    text-wrap: balance;
  }

  #s2 .header{
    margin-bottom: 6px;
    max-width: 100%;
  }

  #s2 .content{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 4px;
    justify-content: flex-start;
    padding-top: 8px;
  }

  #s2 .header p{
    font-size: clamp(11px, 3.8vw, 14px);
    line-height: 1.28;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  #s3 .s3-icons{
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px 6px 8px;
    scroll-snap-type: x proximity;
  }

  #s3 .s3-icons img{
    width: clamp(80px, 38vw, 140px);
    scroll-snap-align: center;
  }

  #s2 .board-images{
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: stretch;
    gap: 12px;
  }

  #s2 .board-item--mediaboard,
  #s2 .board-item--megaboard{
    align-items: center;
    text-align: center;
  }

  #s2 .board-item--mediaboard .board-image,
  #s2 .board-item--megaboard .board-image{
    align-self: center;
  }

  #s2 .board-image--mediaboard{
    width: clamp(32px, 9vw, 46px);
    max-width: 46px;
  }

  #s2 .board-image--megaboard{
    width: min(320px, 90vw);
    min-width: 240px;
  }

  #s3 h2{
    font-size: clamp(12px, 4.2vw, 17px);
    line-height: 1.1;
    margin-bottom: 4px;
  }

  #s3 .lead{
    font-size: clamp(11px, 3.6vw, 14px);
    line-height: 1.26;
    margin-bottom: 6px;
  }

  #s3 .grid2{
    gap: 8px;
    margin-top: 8px;
  }

  #s3 .card{
    padding: 8px 10px;
  }

  #s3 .s3-icons{
    margin-top: 10px;
  }

  #s3{
    align-items: stretch;
  }

  #s3 .content{
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 4px;
  }

  #s4 .city .name{
    font-size: 12px;
    line-height: 1.2;
  }

  #s4 .city .count{
    font-size: 14px;
    line-height: 1.1;
  }

  #s4 .city.mega .count{
    font-size: 13px;
  }

  #s4 .city .name img{
    width: 12px;
    height: auto;
  }
}
