/* =======================Fonts======================= */
@font-face{
  font-family: "Jura";
  src: url("./components/fonts/Jura/Jura.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Ethnocentric rus-lat";
  src: url("./components/fonts/Ethnocentric rus-lat/Ethnocentric rus-lat extra-expanded Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Inter";
  src: url("./components/fonts/Inter/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "FingerPaint-Regular";
  src: url("./components/fonts/FingerPaint/FingerPaint-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* =======================Base======================= */
:root{
  --page-bg: #000000;
  --header-radius: 26px;
  --glass: rgba(0,0,0,.55);
  --glass-2: rgba(0,0,0,.35);
  --text: rgba(255,255,255,.85);
  --text-dim: rgba(255,255,255,.72);
  --accent: #39ff14;
}
*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--page-bg);
  color: #fff;
  overflow-x: hidden;
}
a{ color:inherit; }

/* ==============================================Header============================================== */
:root{ --menu-fs: 30px; }

.site-header{
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 52px;
  pointer-events: none;
}

.header-bar{
  min-height: 76px;
  border-radius: var(--header-radius);
  background:
    radial-gradient(120% 220% at 50% 0%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 45%),
    linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.52));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0,0,0,.45);

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;

  padding: 0 64px;
  overflow: hidden;
  pointer-events: auto;
  transition: border-radius .3s ease;
}

body.menu-open .header-bar{
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

/* ================= Desktop nav ================= */

.nav{
  display: flex;
  align-items: center;
  gap: 220px;
  min-width: 380px;
}

.nav.right{ justify-content: flex-end; }
.nav.left{ justify-content: flex-start; }

.nav-link,
.nav-btn{
  font-family: "Jura", sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: .06em;
  line-height: 1;
  color: var(--text);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: color .18s ease;
}

.nav-link:hover,
.nav-btn:hover{
  color: #01FF01;
}

/* ================= Logo ================= */

.logo{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  position: relative;
  z-index: 30;
}

.logo img{
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.5));
}

/* ================= Contacts ================= */

.contacts{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.contacts__trigger{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  transition: color .18s ease;
}

.contacts:hover .contacts__trigger{
  color: #01FF01;
}

.contacts__arrow{
  display: inline-block;
  width: calc(var(--menu-fs) * 0.33);
  height: calc(var(--menu-fs) * 0.33);
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
  transform-origin: 50% 50%;
  transition: transform .18s ease, border-color .18s ease;
  opacity: .95;
}

.contacts:hover .contacts__arrow{
  transform: rotate(-135deg);
}

.contacts__trigger .nav-link{
  font-family: "Jura", sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: .06em;
  line-height: 1;
}

.contacts__hint{
  position: absolute;
  top: calc(100% + 34px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 380px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0,0,0,.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility 0s linear .18s;
}

.contacts:hover .contacts__hint{
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility 0s;
}

.contacts__season{
  font-family: "Jura", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: .06em;
  line-height: 1.1;
  color: rgba(255,255,255,.9);
  margin-bottom: 15px;
  text-align: center;
}

.contacts__row{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.contacts__row:last-child{
  margin-bottom: 0;
}

.contacts__badge{
  font-family: "Jura", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: .04em;
  line-height: 1;
  padding: 6px 16px;
  border-radius: 999px;
  background: #01FF01;
  color: #000;
}

.contacts__value{
  font-family: "Jura", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: .04em;
  line-height: 1.1;
  color: rgba(255,255,255,.9);
}

/* ================= Burger ================= */

.burger{
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 30;
  margin-left: auto;
}

.burger span{
  position: absolute;
  width: 30px;
  height: 2px;
  background: rgba(255,255,255,.95);
  border-radius: 2px;
  transition: .28s ease;
}

.burger span:nth-child(1){
  transform: translateY(-8px);
}

.burger span:nth-child(2){
  transform: translateY(0);
}

.burger span:nth-child(3){
  transform: translateY(8px);
}

body.menu-open .burger span:nth-child(1){
  transform: rotate(45deg);
}

body.menu-open .burger span:nth-child(2){
  opacity: 0;
}

body.menu-open .burger span:nth-child(3){
  transform: rotate(-45deg);
}

/* ================= Mobile dropdown menu ================= */

.mnav{
  position: static;
  flex: 0 0 100%;
  width: 100%;

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;

  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  transition:
    max-height .45s ease,
    opacity .25s ease,
    visibility .25s ease;
}

body.menu-open .mnav{
  max-height: 760px;
  opacity: 1;
  visibility: visible;
}

.mnav__panel{
  width: 100%;
  padding: 16px 0 26px;
  background: transparent;
  box-shadow: none;
}

.mnav__close{
  display: none;
}

.mnav__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.mnav a,
.mnav__phone,
.mnav__work-title,
.mnav__address,
.mnav__work-row span{
  font-family: "Jura", sans-serif;
  font-weight: 500;
  letter-spacing: .06em;
}

.mnav__col a{
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,.88);
  font-size: 18px;
  padding: 10px 0;
  transition: .2s ease;
}

.mnav__col a:hover{
  color: #01FF01;
}

.mnav__phone{
  font-size: 20px;
  color: rgba(255,255,255,.92);
  margin-bottom: 16px;
}

.mnav__social{
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.mnav__soc{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #01FF01;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.mnav__soc img{
  width: 23px;
  height: 23px;
  object-fit: contain;
  display: block;
}

.mnav__work-title{
  font-size: 14px;
  color: rgba(255,255,255,.85);
  margin-bottom: 10px;
}

.mnav__work-row{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.mnav__badge{
  background: #01FF01;
  color: #000;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 14px;
}

.mnav__address{
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
}

/* ==============================================Hero============================================== */

:root{
  --page-bg: #000000;
}

.hero{
  position: relative;
  min-height: 720px;
  height: 100vh;
  max-height: 980px;
  overflow: hidden;
  isolation: isolate;
}

/* Фон-картинка отдельным слоем */
.hero__bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.0) 0%,
      rgba(0,0,0,.0) 55%,
      rgba(0,0,0,0) 100%
    ),
    url("./img/main.png") bottom center / cover no-repeat;

  /* старт: ч/б + слегка приглушённый */
  filter: grayscale(1) brightness(.75);
  transform: scale(1.02);
  z-index: 0;
}

/* Когда добавим класс из JS — включаем анимацию “в цвет” */
.hero.is-animating .hero__bg{
  animation: heroColorize 5s ease forwards;
}

@keyframes heroColorize{
  from{
    filter: grayscale(1) brightness(.75);
  }
  to{
    filter: grayscale(0) brightness(1);
  }
}

/* Контент */
.hero__content{
  position: absolute;
  left: 94px;
  bottom: 72px;
  z-index: 2;
  max-width: 980px;

  /* старт: “вылезает из левого нижнего угла” */
  transform: translate(-120px, 120px);
  opacity: 0;
}

/* Одновременно двигаем и проявляем */
.hero.is-animating .hero__content{
  animation: heroTextIn 5s cubic-bezier(.2,.9,.2,1) forwards;
}

@keyframes heroTextIn{
  from{
    transform: translate(-120px, 120px);
    opacity: 0;
  }
  to{
    transform: translate(0, 0);
    opacity: 1;
  }
}

.hero__title{
  margin: 0 0 12px 0;
  font-family: "Ethnocentric rus-lat", sans-serif;
  font-weight: 400;
  font-size: 62px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0,0,0,.65);
}

.hero__subtitle{
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 17.5px;
  line-height: 1.4;
  color: rgba(255,255,255,.88);
  text-shadow: 0 8px 20px rgba(0,0,0,.65);
}

/* Кнопка наверх */
.hero__to-top{
  position: fixed;
  right: 34px;
  bottom: 34px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 36px rgba(0,0,0,.45);
  text-decoration: none;
  z-index: 900;
  transition: transform .15s ease;
}
.hero__to-top:hover{ 
  transform: translateY(-5px); 
}
.hero__to-top img{
  width: 48px;
  height: 48px;
  display: block;
}

/* ==============================================Bikes============================================== */
/* Отступ от предыдущей секции */
.bikes{
  margin-top: 50px;
  padding: 0 94px;
}

/* Заголовок секции */
.section-title{
  display:flex;
  align-items:center;
  gap: 18px;
  margin-bottom: 18px;
}
.section-title__icon{
  width: 58px;
  height: 58px;
  display:block;
}
.section-title__text{
  font-family: "Jura", sans-serif;
  font-weight: 700;
  font-size: 45px;
  color:#fff;
  letter-spacing: .02em;
  margin: 0;
}

/* Сетка */
.bikes__grid{
  display:grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 42px;
  align-items: start;
}

/* Плашки */
.info-card-up{
  border-radius: 25px;
  background: rgba(43,43,43,.65);
  padding: 26px 26px;
  margin-bottom: 28px;
}
/* Плашки */
.info-card-down{
  border-radius: 25px;
  background: rgba(43,43,43,.65);
  padding: 26px 26px;
  margin-bottom: 28px;
}
.info-card__title{
  font-family: "Jura", sans-serif;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 18px 0;
}

.info-card__rows{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* две колонки */
  column-gap: 28px;
  row-gap: 16px;
}

/* один элемент = иконка + текст */
.info-row{
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
}

.info-row__icon{
  width: 74px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0,0,0,.55);
  display:grid;
  place-items:center;
}
.info-row__icon img{
  width: 34px;
  height: 34px;
  display:block;
}

.info-row__desc{
  font-family: "Inter", sans-serif;
  font-weight: 300; /* Inter Light */
  font-size: 13.5px;
  color: #C1C1C1;
  line-height: 1.2;
  margin-bottom: 4px;
}
.info-row__value{
  font-family: "Inter", sans-serif;
  font-weight: 300; /* Inter Light */
  font-size: 22px;
  color: #FFFFFF;
  line-height: 1.2;
}

/* ===== Slider ===== */
.slider{
  margin-top: 46px;
  position: relative;
}

.slider__stage{
  position: relative;
  overflow: hidden;
  padding: 0;              /* убрать внутренний отступ */
  border-radius: 28px;     /* если нужен общий скруглённый контейнер */
}

.slider__track{
  display:flex;
  transition: transform 600ms cubic-bezier(.2,.9,.2,1); 
  will-change: transform;
}

.slide{
  position: relative;
  min-width: 100%;
  height: 520px;           /* фиксируем высоту слайда */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;              /* убрать внутренний отступ */
  overflow: hidden;
}

.slide img{
  width: 100%;
  height: 100%;
  object-fit: contain;       /* или contain, если важно не обрезать байк */
  display: block;
  display:block;
  transform: translateZ(0);
}

/* лёгкое потрясывание в конце */
.slider.shake .slide img{
  animation: endShake 180ms ease-out 1;
}
@keyframes endShake{
  0%{ transform: translateX(0); }
  30%{ transform: translateX(-3px); }
  60%{ transform: translateX(3px); }
  100%{ transform: translateX(0); }
}

/* Плашка цены */
.price-tag{
  position:absolute;
  top: 15px;
  right: 15px;
  background: #FFFFFF;
  border-radius: 45px;
  transform: rotate(10deg);
  padding: 20px 40px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);

  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 27px;
  color: var(--tag-color);

  transition: color .25s ease, transform .25s ease; /* плавная смена цвета */
}


/* Кнопки */
.slider__controls{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 18px;
}

.ctrl{
  height: 92px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  overflow: hidden;

  display:flex;
  align-items:center;
  justify-content: center;
  gap: 18px;

  font-family: "Jura", sans-serif;
  font-weight: 500;
  font-size: 34px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.92);
  background: linear-gradient(0deg, #19191D, #525252);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);

  transition:background .15s ease, transform .12s ease, filter .12s ease, color .15s ease;
  
}

.ctrl:active{ transform: translateY(1px); }

.ctrl__arrow{
  font-size: 30px;
  opacity: .95;
}

/* ===== REVERSE (prev) ===== */
/* активная: -45deg от #19191D к #01FF01 */
.ctrl--prev.is-active{
  background: linear-gradient(-45deg, #19191D 55%, #01FF01 100%);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}

/* неактивная: -45deg от #19191D к #525252 */
.ctrl--prev.is-disabled{
  background: linear-gradient(-45deg, #19191D 55%, #525252 100%);
  color: rgba(255,255,255,.70);
  cursor: not-allowed;
  box-shadow: none;
}

/* ===== DRIVE (next) ===== */
/* направление противоположно (45deg) */
/* активная: 45deg от #19191D к #01FF01 */
.ctrl--next.is-active{
  background: linear-gradient(45deg, #19191D 55%, #01FF01 100%);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}

/* неактивная: 45deg от #19191D к #525252 */
.ctrl--next.is-disabled{
  background: linear-gradient(45deg, #19191D 55%, #525252 100%);
  color: rgba(255,255,255,.70);
  cursor: not-allowed;
  box-shadow: none;
}

/* ==============================================Legendary Tracks============================================== */
.tracks{
  margin-top: 52px;
  padding: 0 94px;
}

/* tabs */
.tracks__tabs{
  display:flex;
  gap: 46px;
  margin: 8px 0 26px;
}
.tracks__tab{
  position: relative;
  font-family:"Inter", sans-serif;
  font-weight:500;           /* Inter Medium */
  font-size:24px;
  background:none;
  border:0;
  padding:0;
  color:#666666;
  cursor:pointer;
  transition: color .18s ease;
}
.tracks__tab:hover{ color:#01FF01; }


.tracks__underline{
  position:absolute;
  left:-4px;
  right:-4px;
  bottom:-12px;

  height:14px;
  width:0%;
  background:#01FF01;

  /* делаем “кисточку” */
  -webkit-mask-image: url("./ui/brush-mask.png");
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-size: auto 100%;

  opacity:.95;
  transition: width .35s cubic-bezier(.4,0,.2,1);
}

.tracks__tab.is-active{
  color:#01FF01;
}
.tracks__tab.is-active .tracks__underline{
  width:100%;
}

/* panels */
.tracks__panel{ display:none; }
.tracks__panel.is-active{ display:block; }

/* ===== ROUTES ===== */
.routes-grid{
  display:flex;
  gap: 22px;
  align-items: stretch;
}

/* чтобы карточки были “как плитки” */
.route-card{
  flex: 1 1 0%;
  min-width: 0;

  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,.55);

  /* важно: одинаковая высота как раньше */
  height: 560px;          /* подгони под макет */
  background: rgba(0,0,0,.25);

  transition:
    flex-grow 600ms cubic-bezier(.2,.9,.2,1),
    transform 600ms cubic-bezier(.2,.9,.2,1),
    filter 600ms cubic-bezier(.2,.9,.2,1),
    opacity 600ms cubic-bezier(.2,.9,.2,1);
  will-change: flex-grow, transform;
}

/* медиа слой должен занимать всю высоту карточки */
.route-card__media{
  position: relative;
  height: 100%;
}

.route-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  transform: scale(1.04);
}

/* когда раскрыто */
.routes-grid.is-expanded .route-card{
  opacity: .92;
  filter: saturate(.9);
}

/* активная — шире */
.routes-grid.is-expanded .route-card.is-open{
  flex-grow: 2.2;
  opacity: 1;
  filter: saturate(1) contrast(1.03);
  transform: translateY(-2px);
}

/* остальные — уже */
.routes-grid.is-expanded .route-card:not(.is-open){
  flex-grow: 1;
  opacity: .78;
  filter: saturate(.75) brightness(.92);
}


.route-card__lvl{
  position:absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  margin:0;
  font-family:"Inter", sans-serif;
  font-weight:500;
  font-size:35px;
  color:#fff;
  text-shadow: 0 10px 24px rgba(0,0,0,.55);
}
.route-card__media{
  position: relative;
  flex: 1;
}
.route-card__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.04);
  filter: saturate(.92) contrast(1.02);
}

.route-card__fade{
  position:absolute;
  inset: auto 0 0 0;
  height: 50%;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.4) 40%,
      rgba(0,0,0,.9) 100%
    ),
    radial-gradient(
      120% 100% at 50% 100%,
      rgba(0,0,0,.65),
      rgba(0,0,0,0)
    );
  z-index: 2;
  backdrop-filter: blur(0.5px);
}

.route-card__hint{
  position:absolute;
  left:0; right:0;
  bottom: 16px;
  text-align:center;
  z-index: 3;

  font-family:"Inter", sans-serif;
  font-weight:300; /* Inter Light */
  font-size:20px;
  color:#fff;
  opacity:.92;
}

/* video hidden by default */
.route-card__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  display:none;
  z-index: 4;
}

/* expanded state */
.routes-grid.is-expanded{
  grid-template-columns: 1fr 1fr; /* остальным дадим половину оставшегося */
}

.route-card.is-open{
  grid-column: span 1;
}

.route-card.is-open{
  grid-column: 1 / span 1;
}

/* открытая карточка занимает половину экрана */
.routes-grid.is-expanded .route-card.is-open{
  grid-column: span 2;
}

/* две остальные делят вторую половину */
.routes-grid.is-expanded .route-card:not(.is-open){
  grid-column: span 1;
}

/* open show video */
.route-card.is-open .route-card__video{
  display:block;
}

/* ===== info panel under cards ===== */
.tracks-info{
  margin: 26px 200px 0;
  border-radius: 25px;
  background: rgba(43,43,43,.65);
  padding: 22px 22px 22px;
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
}

.tracks-info__top{
  display:flex;
  align-items:center;
  gap: 12px;
}
.dot{
  width: 18px;
  height: 18px;
  border-radius: 999px;
}
.dot--easy{ background:#01FF01; }
.dot--hard{ background:#FF1F1F; }
.dot--med{  background:#FF9B1F; }

.tracks-info__title{
  font-family:"Jura", sans-serif;
  font-weight:700;
  font-size:30px;
  color:#fff;
  margin-left: 6px;
}

.tracks-info__line{
  margin-top: 12px;
  height: 2px;
  background:#386607;
  border-radius: 999px;
}

.tracks-info__grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
}

.ti-row{
  display:grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items:center;
}

.ti-ico{
  width: 74px;
  height: 56px;
  border-radius: 14px;
  background:#386607;
  display:grid;
  place-items:center;
}
.ti-ico img{ width: 34px; height:34px; display:block; }

.ti-desc{
  font-family:"Inter", sans-serif;
  font-weight:300;
  font-size:20px;
  color:#C1C1C1;
  margin-bottom: 4px;
}
.ti-val{
  font-family:"Inter", sans-serif;
  font-weight:300;
  font-size:25px;
  color:#fff;
}

/* ===== TRAINING ===== */
.training-layout{
  display:grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  gap: 26px;
  align-items:stretch;     /* важно: колонки растягиваются по высоте */
  min-height: 520px;        /* подгони под макет */
}

/* левая колонка — вниз */
.training-layout > .training-cards:first-of-type{
  align-self: end;
}

/* правая колонка — вверх */
.training-layout > .training-cards:last-of-type{
  align-self: start;
}

/* центр */
.training-track{
  display: grid;
  place-items: center;
  align-self: center;
}

.training-track img{
  width:100%;
  height:auto;
  display:block;
  filter: drop-shadow(0 22px 60px rgba(0,0,0,.55));
}

.training-cards{
  display:grid;
  gap: 20px;
}

.tcard{
  border-radius: 25px;
  background: rgba(43,43,43,.65);
  padding: 18px 20px;
  display:grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items:center;
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
}

.tcard__ico{
  width: 74px;
  height: 56px;
  border-radius: 14px;
  background:#386607;
  display:grid;
  place-items:center;
}
.tcard__ico img{ width:34px; height:34px; display:block; }

.tcard__desc{
  font-family:"Inter", sans-serif;
  font-weight:300;
  font-size:20px;
  color:#C1C1C1;
  margin-bottom: 4px;
}
.tcard__val{
  font-family:"Inter", sans-serif;
  font-weight:300;
  font-size:25px;
  color:#fff;
}

/* ==============================================Why we============================================== */
.why__top{
  padding: 0 94px;
  margin-top: 52px;
}

.why__lead{
  font-family: "Inter", sans-serif;
  font-weight: 400;          /* Inter Regular */
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: .02em;     /* 2% */
  color: #fff;
  margin: 0;
  max-width: 1250px;
}
.why__brand{
  font-family: "Inter", sans-serif;
  font-weight: 600;          /* Inter SemiBold */
  font-size: 20px;
  letter-spacing: .02em;
  color:#fff;
}

/* ===== SCROLL IMAGE PIN ===== */
.why-scroll{
  margin-top: 26px;
  position: relative;
}

/* sticky слой */
.why-scroll__sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.why-scroll__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  filter: grayscale(1) contrast(1.05);
}

/* оверлей текста поверх */
.why-scroll__overlay{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  pointer-events:none;
}

/* контейнер слов, который будет “ехать” вверх */
/* контейнер оверлея */
.why-scroll__words{
  position: relative;
  width: 100%;
  height: 100%;
}

/* один “слайд” (по центру по вертикали) */
.why-slide{
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); 
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity .18s ease;
  width: 100%;
  text-align: center;
  pointer-events:none;
}

/* крупный */
.why-big{
  font-family: "Finger Paint", cursive;
  font-weight: 400;
  font-size: clamp(120px, 18vw, 290px);
  color: #01FF01;
  line-height: .9;
  text-shadow: 0 18px 60px rgba(0,0,0,.55);
}

/* подпись */
.why-sub{
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color:#fff;
  letter-spacing: .02em;
  opacity: .92;
  margin-top: 10px;
}

/* последний — “фиксируем” по центру, когда нужно */
.why-slide.is-locked{
  transform: translate(-50%, -50%) !important;
  opacity: 1 !important;
}

/* огромный зелёный текст */
.why-scroll__big{
  font-family: "FingerPaint-Regular", cursive;
  font-weight: 400;
  font-size: clamp(120px, 18vw, 290px);
  color: #01FF01;
  line-height: .9;
  text-align:center;
  text-shadow: 0 18px 60px rgba(0,0,0,.55);
}

/* подписи */
.why-scroll__sub{
  font-family: "Inter", sans-serif;
  font-weight: 600; /* SemiBold */
  font-size: 30px;
  color:#fff;
  letter-spacing: .02em;
  text-align:center;
  opacity: .92;
  margin-top: -10px;
}

/* “внутренний” скролл-дистанция пина */
.why-scroll__spacer{
  height: 600vh; 
}

/* ==============================================Events============================================== */
.events{
  margin-top: 52px;
  padding: 0 94px;
}

/* Tabs (карточки) */
.events-tabs{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
  margin-bottom: 34px;
}

.event-tab{
  border: 0;
  cursor: pointer;
  text-align: left;

  border-radius: 25px;
  background: rgba(43,43,43,.65);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);

  padding: 26px 26px;
  display:grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;

  transform: translateY(0);
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
  color: #fff;
}

.event-tab__ico{
  width: 44px;
  height: 44px;
  display:block;
}

.event-tab__title{
  font-family: "Inter", sans-serif;
  font-weight: 500;            /* Medium */
  font-size: 25px;
  letter-spacing: -0.02em;     /* -2% */
  margin: 0 0 10px;
}

.event-tab__sub{
  font-family: "Inter", sans-serif;
  font-weight: 300;            /* Light */
  font-size: 16px;
  letter-spacing: 0;
  color: rgba(255,255,255,.75);
  line-height: 1.25;
}

/* hover только у НЕактивных */
.event-tab:not(.is-active):hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(255,255,255,.12), 0 22px 60px rgba(0,0,0,.55);
}

/* активная карточка — всё зелёное */
.event-tab.is-active{
  color: #01FF01;
}
.event-tab.is-active .event-tab__sub{
  color: rgba(1,255,1,.85);
}

/* ===== Body layout ===== */
.events-body{
  display:grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 46px;
  align-items: start;
}

/* Left image card */
.events-visual{
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
}
.events-visual__img{
  width:100%;
  height: 480px;
  object-fit: cover;
  display:block;
}
.events-visual__label{
  position:absolute;
  left: 22px;
  bottom: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 500;            /* Medium */
  font-size: 24px;
  letter-spacing: -0.02em;
  color:#fff;
  text-shadow: 0 12px 28px rgba(0,0,0,.7);
}

/* Right side */
.events-program__title{
  font-family: "Inter", sans-serif;
  font-weight: 600; /* SemiBold */
  font-size: 25px;
  letter-spacing: 0;
  margin: 10px 0 34px;
}

.events-program__list{
  list-style: none;
  padding: 0;
  margin: 0 0 52px;
  display: grid;
  gap: 20px;
}

.events-program__list li{
  display:grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: baseline;
}

.events-program__list .num{
  font-family: "Play", sans-serif; /* Play Regular 28 */
  font-weight: 400;
  font-size: 23px;
  color: #fff;
  opacity: .95;
}

.events-program__list .txt{
  font-family: "Inter", sans-serif; /* Inter Regular 25 */
  font-weight: 400;
  font-size: 23px;
  color: #fff;
}

/* Offer card */
.events-offer{
  border-radius: 25px;
  background: rgba(43,43,43,.65);
  padding: 25px 22px 25px;
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
}

.events-offer__title{
  font-family: "Inter", sans-serif;
  font-weight: 400; /* Regular */
  font-size: 25px;
  margin: 0 0 20px;
}

.events-offer__desc{
  font-family: "Inter", sans-serif;
  font-weight: 300; /* Light */
  font-size: 16px;
  color: rgba(255,255,255,.78);
  line-height: 1.25;
  margin: 0 0 20px;
}

.events-offer__link{
  font-family: "Inter", sans-serif;
  font-weight: 200; /* ExtraLight */
  font-size: 20px;
  color: #01FF01;
  text-decoration: none;
  display:inline-block;
  position: relative;
}

.events-offer__link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0%;
  height:1px;
  background:#01FF01;
  transition: width .5s ease;
}
.events-offer__link:hover::after{
  width:100%;
}

/* ===== Bottom double slider ===== */
.events-marquee{
  margin-top: 34px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: grid;
  gap: 20px;
}

/* строки */
.marquee-row{
  overflow: hidden;
  border-radius: 25px;
  padding: 4px 0;
  background: none;
}

/* лента */
.marquee-track{
  display: inline-flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  will-change: transform;
  transform: translateX(0);
  background: none;
}

/* изображения */
.marquee-track img{
  width: 300px;
  height: 150px;
  object-fit: cover;
  border-radius: 22px;
  flex: 0 0 auto;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.35));
  background: none;
}

/* ==============================================Visitors============================================== */
.guests{
  padding: 0 94px;
  margin-top: 52px;
}

/* guests__main по ширине как header */
.guests__main{
  width: 100%;
  display:grid;
  grid-template-columns: 1fr 2fr; /* 1/3 и 2/3 */
  gap: 40px;
  align-items:start;
}

/* ===== левая колонка ===== */
.guests__name{
  font-family:"Inter", sans-serif;
  font-weight:600; /* SemiBold */
  font-size:35px;
  color:#fff;
  margin: 10 0 20px;
}

.guests__desc{
  font-family:"Inter", sans-serif;
  font-weight:400; /* Regular */
  font-size:16px;
  color:#fff;
  line-height:1.45;
  margin: 0 0 34px;
}

/* цитата */
.guests__quote{
  border-radius: 25px;
  background: rgba(43,43,43,.65);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
  padding: 22px 22px 24px;
  margin-bottom: 34px;
}

.guests__quote-ico{
  width: 44px;            /* побольше */
  height: 44px;
  display:block;
  margin-bottom: 28px;
}

.guests__quote-text{
  font-family:"Inter", sans-serif;
  font-weight:300;
  font-style: italic;     /* Light Italic */
  font-size:14px;
  color:#fff;
  line-height:1.55;
  margin: 0;
}

.guests__quote-author{
  margin-top: 28px;       /* больше отступ от цитаты */
  font-family:"Inter", sans-serif;
  font-weight:400;
  font-size:20px;
  color:#01FF01;
}

/* мини-плашки */
.guests__stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gstat{
  border-radius: 18px;
  background: rgba(43,43,43,.65);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
  padding: 18px 14px;
  text-align:center;
}

.gstat__num{
  font-family:"Inter", sans-serif;
  font-weight:400;
  font-size:28px;
  color:#01FF01;
  margin-bottom: 8px;
}

.gstat__label{
  font-family:"Inter", sans-serif;
  font-weight:300; /* Light */
  font-size:12px;
  color:#ffffff;
  line-height:1.2;
}

/* ===== правая часть: мозаика 5x4 ===== */
.guests__mosaic{
  --gap: 20px;
  --cols: 5;
  --rows: 4;

  display:grid;
  grid-template-columns: 1.6fr 1.3fr 1fr 0.8fr 0.6fr;
  grid-template-rows: repeat(var(--rows), 1fr);
  gap: var(--gap);
  min-height: 680px;

  border-radius: 28px;
  overflow:hidden; /* чтобы общий контур был аккуратнее */
}

/* каждая плитка = одно и то же изображение, но с разным background-position */
.guests__mosaic .tile{
  border-radius: 25px;
  background-image: url("./img/Nagul.png");
  background-repeat: no-repeat;

  /* ВАЖНО: размер “общей картинки” равен сетке */
  background-size: calc(var(--cols) * 100%) calc(var(--rows) * 100%);

  /* смещение по колонке/ряду */
  background-position:
    calc((var(--c) * 100%) / (var(--cols) - 1))
    calc((var(--r) * 100%) / (var(--rows) - 1));

  min-height: 110px; /* подгони: влияет на общую высоту мозаики */
}

/* ===== нижняя плашка ===== */
.guests__footer{
  margin-top: 46px;
  margin-right: 150px;
  margin-left: 150px;
  border-radius: 25px;
  background: rgba(43,43,43,.65);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
  padding: 18px 28px 26px; /* меньше верхний внутренний отступ */
}

.guests__footer-title{
  font-family:"Inter", sans-serif;
  font-weight:600;  /* SemiBold */
  font-size:20px;
  color:#fff;
  text-align:center;
  margin: 0 0 22px;
}

/* растянуть три блока сильнее по ширине */
.guests__footer-list{
  display:flex;
  justify-content: space-evenly;
  gap: 100px; /* увеличенный боковой интервал */
  padding: 0 20px;  /* ещё шире внутри */
}

.mini{
  text-align:center;
  min-width: 190px;
}

.mini__icon{
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #01FF01;
  display:grid;
  place-items:center;
  margin: 0 auto 12px;
}

.mini__icon img{
  width: 34px;
  height: 34px;
  display:block;
}

.mini__name{
  font-family:"Inter", sans-serif;
  font-weight:400;
  font-size:18px;
  color:#fff;
  margin: 0;
}

.mini__role{
  margin-top: 4px; /* уменьшить отступ от имён */
  font-family:"Inter", sans-serif;
  font-weight:300;
  font-size:12px;
  color:#fff;
}

/* ==============================================ECO============================================== */
.eco__container{
  width: min(1732px, calc(100% - 0px)); /* под 94px слева/справа */
  margin-top: 52px;
}
.eco{
  padding: 0 94px;
  margin-top: 52px;
}

/* ===== cards grid ===== */
.eco__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 40px;
  margin-top: 26px;
}

/* карточка */
.eco-card{
  border-radius: 25px;
  background: rgba(43,43,43,.65);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
  padding: 34px 40px;
  display:flex;
  align-items:flex-start;
  gap: 40px;                 /* как ты просил */
  flex-direction: column;
}

/* иконка */
.eco-card__icon{
  width: 76px;
  height: 76px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.18);
  flex: 0 0 auto;
}
.eco-card__icon img{
  width: 42px;
  height: 42px;
  display:block;
}

/* тексты */
.eco-card__title{
  margin: 0 0 14px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: #fff;
}
.eco-card__text{
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #B1B1B1;
  line-height: 1.35;
}

/* ===== last wide card ===== */
.eco-wide{
  margin-top: 34px;
  border-radius: 25px;
  background: rgba(43,43,43,.65);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
  padding: 34px 40px;

  display:flex;              /* последняя тоже в линию */
  align-items:flex-start;
  gap: 40px;
}

.eco-card__icon,
.eco-wide__icon{
  width: 76px;
  height: 76px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;

  /* объём */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -6px 12px rgba(0,0,0,.35),
    0 18px 36px rgba(0,0,0,.45);
}
.eco-card__icon--green,
.eco-wide__icon{
  background:
    linear-gradient(
      145deg,
      #19ff6a 0%,
      #0fdc55 38%,
      #06b846 65%,
      #048c35 100%
    );
}
.eco-card__icon--green1{
  background:
    linear-gradient(
      145deg,
      #43ff19 0%,
      #38dc0f 38%,
      #1eb806 65%,
      #1d8c04 100%
    );
}
.eco-card__icon--blue{
  background:
    linear-gradient(
      145deg,
      #1ec9ff 0%,
      #12b2f2 40%,
      #0a8fd1 70%,
      #056aa8 100%
    );
}
.eco-card__icon--blue2{
  background:
    linear-gradient(
      145deg,
      #1ef4ff 0%,
      #12f2f2 40%,
      #0ad1c7 70%,
      #05a8a5 100%
    );
}
.eco-card__icon img,
.eco-wide__icon img{
  width: 42px;
  height: 42px;
  display: block;

  filter:
    drop-shadow(0 2px 4px rgba(0,0,0,.35));
}

.eco-wide__title{
  margin: 0 0 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: #fff;
}

.eco-wide__text{
  margin: 0 0 22px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #B1B1B1;
  line-height: 1.35;
}

/* последняя строка зелёная */
.eco-wide__accent{
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #01FF01;
}

.eco-card:hover .eco-card__icon,
.eco-wide:hover .eco-wide__icon{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    inset 0 -8px 14px rgba(0,0,0,.45),
    0 22px 48px rgba(0,0,0,.6);
  transform: translateY(-1px);
}

/* ==============================================Comments============================================== */
.reviews__inner {
  padding: 0 94px;
  margin-top: 52px;
}

/* ===== Layout ===== */
.reviews__grid{
  display:grid;
  grid-template-columns: 1.65fr 0.85fr;
  gap: 26px;
  align-items: start;
}

/* ===== Left: scroll only inside feed ===== */
.reviews__feed{
  border-radius: 25px;
  background: rgba(43,43,43,.65);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
  padding: 18px;

  height: 640px;          /* высота “окна” отзывов */
  overflow: hidden;       /* важно */
  min-height: 740px;
}

.reviews__list{
  height: 100%;
  overflow-y: auto;       /* скролл внутри */
  padding-right: 10px;
  scroll-behavior: smooth;

  overscroll-behavior: contain; /* чтобы страница не “тянулась” */
  -webkit-overflow-scrolling: touch;
}

/* скроллбар (по желанию) */
.reviews__list::-webkit-scrollbar{ width: 10px; }
.reviews__list::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.18);
  border-radius: 999px;
}
.reviews__list::-webkit-scrollbar-track{ background: transparent; }

.review-card{
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.9);
  padding: 18px 18px 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.review-card + .review-card{ margin-top: 18px; }

.review-card__head{
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}
.review-card__user{
  display:flex;
  gap: 16px;
  align-items: flex-start;
}
.review-card__avatar{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #9BFF1A;
  display:grid;
  place-items:center;
  flex: 0 0 auto;
}
.review-card__avatar img{ width: 28px; height: 28px; display:block; filter: brightness(0); }

.review-card__name{
  font-family:"Inter", sans-serif;
  font-weight: 500;            /* Medium */
  font-size: 26px;
  color:#fff;
  line-height: 1.1;
}
.review-card__date{
  margin-top: 6px;
  font-family:"Inter", sans-serif;
  font-weight: 100;            /* Thin */
  font-size: 16px;
  color: rgba(255,255,255,.75);
}
.review-card__stars{
  display:flex;
  gap: 8px;
  margin-top: 6px;
}
.review-card__stars img{ width: 26px; height: 26px; display:block; }

.review-card__text{
  margin: 0;
  font-family:"Inter", sans-serif;
  font-weight: 300;            /* Light */
  font-size: 20px;
  color:#fff;
  line-height: 1.28;
}

/* ===== Right: form ===== */
.form-card{
  border-radius: 25px;
  background: rgba(43,43,43,.65);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
  padding: 18px 18px 20px;
}

.form-card__title{
  font-family:"Inter", sans-serif;
  font-weight: 400;            /* Regular */
  font-size: 35px;
  color:#fff;
  margin: 2px 0 18px;
}

.form-card__label{
  display:block;
  margin: 16px 0 10px;
  font-family:"Inter", sans-serif;
  font-weight: 500;            /* Medium */
  font-size: 28px;
  color:#fff;
}

.form-card__input,
.form-card__textarea{
  width:100%;
  border: 0;
  outline: none;
  border-radius: 8px;
  padding: 12px 14px;
  background: #D9D9D9;
  color: #000;
  font-family:"Inter", sans-serif;
  font-weight: 300;          
  font-size: 16px;
}
.form-card__textarea{ resize: none; }

.rate{
  display:flex;
  gap: 14px;
  padding: 4px 0 6px;
}
.rate__star{
  border:0;
  background:none;
  padding:0;
  cursor:pointer;
  width: 40px;
  height: 40px;
  display:grid;
  place-items:center;
}
.rate__star img{ width: 36px; height: 36px; display:block; }

.form-card__btn{
  margin-top: 18px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 14px 16px;
  background: #01FF01;
  color:#000;
  font-family:"Inter", sans-serif;
  font-weight: 500;            /* Medium */
  font-size: 25px;
  cursor:pointer;
}
.form-card__btn:active{ transform: translateY(1px); }

.form-card__hr{
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 999px;
  margin: 18px 0 14px;
}

.form-card__rating{
  display:flex;
  align-items:center;
  gap: 12px;
  font-family:"Inter", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color:#fff;
}
.form-card__rating img{ width: 34px; height: 34px; display:block; }

.form-card__msg {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.35;
}

.form-card__msg--ok {
  background: rgba(1, 255, 1, .12);
  border: 1px solid rgba(1, 255, 1, .45);
  color: #01ff01;
  box-shadow: 0 0 24px rgba(1, 255, 1, .08);
}

.form-card__msg--error {
  background: rgba(255, 55, 55, .12);
  border: 1px solid rgba(255, 55, 55, .45);
  color: #ff6b6b;
  box-shadow: 0 0 24px rgba(255, 55, 55, .08);
}

.form-card__input:focus,
.form-card__textarea:focus {
  box-shadow: 0 0 0 2px rgba(1,255,1,.35);
}

/* ==============================================FAQ============================================== */
.faq__container{
  padding: 0 94px;
  margin-top: 52px;
}

/* список вопросов */
.faq__list{
  display:grid;
  gap: 24px;
  margin: 0px 100px;
}

.faq-item{
  border-radius: 25px;
  background: rgba(43,43,43,.65);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
}

/* кнопка вопроса */
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  color:#fff;
  text-align:left;
}

.faq-q__text{
  font-family: "Inter", sans-serif;
  font-weight: 400; /* Regular */
  font-size: 30px;
  letter-spacing: -0.02em; /* -2% */
}

/* стрелка */
.faq-q__chev{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-right: 3px solid rgba(255,255,255,.85);
  border-bottom: 3px solid rgba(255,255,255,.85);
  transform: rotate(45deg); /* вниз */
  transition: transform .25s ease, border-color .25s ease;
  margin-left: 10px;
}

/* ответ */
.faq-a{
  max-height: 0;
  opacity: 0;
  transition: max-height .35s ease, opacity .25s ease;
  padding: 0 32px;
}

.faq-a p{
  padding-block-end: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.02em;
  color:#B1B1B1;
}

/* активное состояние */
.faq-item.is-open{
  border-color: rgba(1,255,1,.85);
  box-shadow:
    0 22px 60px rgba(0,0,0,.55),
    0 0 0 1px rgba(1,255,1,.35);
}

.faq-item.is-open .faq-q__chev{
  transform: rotate(-135deg); /* вверх */
  border-color: rgba(1,255,1,.9);
}

.faq-item.is-open .faq-a{
  opacity: 1;
}

/* низ секции */
.faq__footer{
  margin-top: 46px;
  text-align:center;
}

.faq__hint{
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.02em;
  color:#fff;
  margin-bottom: 32px;
}

.faq__link{
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.02em;
  color:#01FF01;
  text-decoration:none;
}
.faq__link:hover{
  text-decoration: underline;
  text-decoration-color: #01FF01;
}

/* ==============================================Map============================================== */
.findus__container{
  padding: 0 94px;
  margin-top: 52px;
}

/* карта-карточка */
.findus__map{
  position: relative;
  display:block;
  width: 100%;
  height: clamp(420px, 58vh, 720px);
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;

  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
  background: #151515;
  min-height: 640px;
}

.findus__iframe{
  width: 100%;
  height: 100%;
  display:block;

  /* чуть приглушаем реальную карту под стиль */
  filter: grayscale(.85) brightness(.72) contrast(1.05) saturate(.9);
  transform: scale(1.02);
}

/* виньетка + верхнее затемнение (как на макете) */
.findus__mapfx{
  position:absolute;
  inset:0;
  pointer-events:none;

  background:
    radial-gradient(60% 55% at 50% 35%, rgba(0,0,0,.05) 0%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.78) 100%),
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 38%, rgba(0,0,0,.55) 100%);
}

/* декоративный маркер по центру */
.findus__pin{
  position:absolute;
  left:50%;
  top:50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -60%);
  pointer-events:none;

  border: 2px solid rgba(255,255,255,.92);
  border-radius: 999px;

  box-shadow:
    0 10px 30px rgba(0,0,0,.55),
    0 0 0 10px rgba(255,255,255,.08);
}

.findus__pin::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
}

/* строка адреса */
.findus__addr{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  text-decoration:none;
}

.findus__addr-ico{
  width: 30px;
  height: 30px;
  display:block;
}

.findus__addr-text,
.findus__addr-arrow{
  font-family:"Inter", sans-serif;
  font-weight:300;               /* Inter Light */
  font-size:20px;
  letter-spacing:-0.02em;        /* -2% */
  color:#fff;
}

.findus__addr:hover .findus__addr-text{
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.85);
  text-underline-offset: 6px;
}

/* лёгкий hover на карте */
.findus__map:hover .findus__iframe{
  filter: grayscale(.78) brightness(.78) contrast(1.08) saturate(.95);
}

/* ==============================================Footer============================================== */
.footer{
  margin-top: 100px;              /* отступ от предыдущей секции */
  background: #D9D9D9;
  color:#000;
  padding: 48px 0 22px;
}

.footer__inner{
  margin: 0 100px;                /* как просил: немного уже */
  display:grid;
  grid-template-columns: 1.15fr 0.9fr 1.35fr 0.9fr;
  gap: 60px;
  align-items:start;
}

.footer__title{
  margin: 0 0 22px;
  font-family:"Inter", sans-serif;
  font-weight:500;                 /* Medium */
  font-size:26px;
  color:#000;
}

.footer__text{
  font-family:"Inter", sans-serif;
  font-weight:300;                 /* Light */
  font-size:14px;
  color:#000;
  line-height:1.35;
}

.footer__brand .footer__text{
  margin: 10px 0 22px;
}

.footer__logo{
  width: 210px;
  height:auto;
  display:block;
}

.footer__item{
  display:flex;
  gap: 16px;
  align-items:flex-start;
  margin: 14px 0;
}

.footer__item--top{ margin-top: 8px; }

.footer__ico{
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display:block;
  margin-top: 2px;
}

.footer__link{
  text-decoration:none;
  color:inherit;
}

.footer__link:hover .footer__text{
  text-decoration: underline;
  text-underline-offset: 6px;
}

.footer__socials{
  display:flex;
  gap: 18px;
  margin-top: 18px;
}

.footer__social{
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background:#2F2F2F;
  display:grid;
  place-items:center;
  text-decoration:none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.footer__social img{
  width: 34px;
  height: 34px;
  display:block;
  filter: brightness(100);
}

.footer__social:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
}

.footer__line{
  height: 2px;
  background:#000;
  margin: 34px 100px 12px;
  opacity: .85;
}

.footer__copy{
  text-align:center;
  font-family:"Inter", sans-serif;
  font-weight:300;
  font-size:20px;
  color:#000;
  margin: 0 100px;
}

/* ==============================================Adaptive============================================== */
@media (max-width: 1200px){
  .hero__content{ left: 24px; bottom: 64px; }
  .hero__title{ font-size: 52px; }
  .hero__subtitle{ font-size: 20px; }
  .bikes{ padding: 0 24px; }
  .bikes__grid{ grid-template-columns: 1fr; }
  .info-card__title, .bikes__head-title{ font-size: 34px; }
  .slide img{ max-height: 420px; }
  .tracks{ padding: 0 24px; }
  .routes-grid{ grid-template-columns: 1fr; }
  .route-card{ min-height: 520px; }
  .tracks-info__grid{ grid-template-columns: 1fr; }
  .training-layout{ grid-template-columns: 1fr; }
  .footer__inner{
    grid-template-columns: 1fr 1fr;
    margin: 0 40px;
  }
  .footer__line, .footer__copy{ margin-left:40px; margin-right:40px; }
}

/* ========== Планшет: всё помещается в плашку ========== */
@media (max-width: 1100px){
  .site-header{ padding: 0 24px; }
  .header-bar{ padding: 0 20px; }

  .nav{ gap: 44px; min-width: 0; }

  /* уменьшаем текст */
  .nav-link, .nav-btn{
    font-size: 22px;           
    letter-spacing: .05em;
  }
  .contacts__trigger .nav-link{ font-size: 22px; }

  .logo img{ height: 42px; }
  .hero__content{ left: 24px; bottom: 64px; }
  .hero__title{ font-size: 52px; }
  .hero__subtitle{ font-size: 20px; }

  .eco__grid{ grid-template-columns: 1fr; }
  
  .reviews__grid{ grid-template-columns: 1fr; }
  .reviews__feed{ height: 520px; }
  .findus__container{ margin: 0 40px; }
}

@media (max-width: 920px){
  /* навигация */
  .nav{ gap: 26px; }
  .nav-link, .nav-btn{ font-size: 20px; }
  .contacts__trigger .nav-link{ font-size: 20px; }
  .logo img{ height: 38px; }

  /* текст в плажках про байки */
  .info-card__rows{
    grid-template-columns: 1fr;
  }
}

/* ========== Телефон: включаем бургер, прячем обычное меню ========== */
@media (max-width: 760px){
  .site-header{ padding: 0 12px; }
  .header-bar{ height: 64px; padding: 0 16px; }

  /* прячем обе навигации */
  .nav.left, .nav.right{ display: none; }
  .nav{ gap: 16px; }

  /* логотип оставляем */
  .logo img{ height: 34px; }

  /* бургер показываем */
  .burger{ display: inline-flex; }
  .hero{ padding-bottom: 84px; }
  .to-top{ right: 16px; bottom: 18px; }
  .hero__content{ left: 16px; bottom: 56px; max-width: 92vw; }
  .hero__title{ font-size: 42px; }
  .hero__subtitle{ font-size: 16px; }
  .hero__to-top{
    right: 16px;
    bottom: 18px;
  }

  /* текст в плажках про байки */
  .info-card__rows{
    grid-template-columns: 1fr;
  }
  
  .eco__container{ width: calc(100% - 32px); }
  .eco-card, .eco-wide{ padding: 22px; gap: 20px; }
  .eco-card__title, .eco-wide__title{ font-size: 24px; }
  .eco-card__text, .eco-wide__text, .eco-wide__accent{ font-size: 18px; }
  .findus__container{ margin: 0 18px; }
  .findus__addr-text, .findus__addr-arrow{ font-size: 18px; }
  .footer__inner{ grid-template-columns: 1fr; margin: 0 18px; gap: 28px; }
  .footer__line, .footer__copy{ margin-left:18px; margin-right:18px; }
  .footer__social{ width:60px; height:60px; }
}

