/* Base */
:root{
  color-scheme: light;
  --bg: #ffffff;
  --bg2: #ffffff;
  --card: #ffffff;
  --card2: #ffffff;
  --text: rgba(17,24,39,0.96);
  --muted: rgba(17,24,39,0.72);
  --muted2: rgba(17,24,39,0.55);
  --border: rgba(17,24,39,0.12);
  --accent: #ff8200;
  --accent2: #ff9a33;
  --accent3: #cc6800;
  --danger: #ff5c7a;
  --ok: #62f0a2;

  --radius: 16px;
  --radius2: 22px;
  --shadow: 0 14px 40px rgba(0,0,0,0.38);
  --container: 1120px;
  --header-h: 66px;

  --fs-1: 14px;
  --fs-2: 16px;
  --fs-3: 18px;
  --fs-4: 28px;
  --fs-5: 40px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
[id]{ scroll-margin-top: calc(var(--header-h) + 28px); }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 10% 0%, rgba(255,130,0,0.12), transparent 58%),
    radial-gradient(900px 600px at 90% 20%, rgba(255,154,51,0.10), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: var(--container);
  padding: 0 16px;
  margin: 0 auto;
}

.skipLink{
  position: absolute;
  left: -9999px;
  top: 8px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 1000;
}
.skipLink:focus{ left: 16px; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 66px;
}
.brand{
  /* display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-top: 4px;
  
}
.brand:hover{
  text-decoration: none;
}
.brand__logo{
  display: block;
  height: 24px;
  width: auto;
}
.brand__slogan{
  margin: 0;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text);
}
.brand__sloganAccent{
  color: #ff8200;
}
.brand__logo--footer{
  height: 24px;
}
.brand__mark{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: rgba(0,0,0,0.82);
}
.brand__text{ font-size: 15px; }
.brand--footer .brand__text{ font-size: 14px; }

.nav{
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__link{
  font-size: var(--fs-1);
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
}
.nav__link:hover{
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav__cta{ margin-left: 6px; }

.header__burger{
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(17,24,39,0.03);
  color: var(--text);
  cursor: pointer;
}
.header__burgerIcon{
  display: block;
  width: 20px;
  height: 14px;
}

/* Hero */
.hero{
  /* первый экран */
  min-height: calc(100svh - var(--header-h));
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}
.hero__bg{
  position: absolute;
  inset: 0;
  background:
    /* решение как на вашем скрине: белая зона слева + плавный переход к фото справа */
    linear-gradient(90deg,
      rgba(255,255,255,0.95) 0%,
      rgba(255,255,255,0.95) 52%,
      rgba(255,255,255,0.84) 62%,
      rgba(255,255,255,0.58) 72%,
      rgba(255,255,255,0.24) 82%,
      rgba(255,255,255,0.00) 90%
    ),
    radial-gradient(900px 500px at 15% 20%, rgba(255,130,0,0.08), transparent 62%),
    url("./images/bg-main.jpg");
  background-size: auto, auto, cover;
  background-position: left center, left center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  opacity: 1;
  pointer-events: none;
}
.hero__inner{
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 22px;
  align-items: center;
}
.hero__content{
  max-width: 760px;
}
.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(17,24,39,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  margin: 0 0 12px;
}
.hero__title{
  font-size: var(--fs-5);
  line-height: 1.05;
  margin: 0 0 12px;
  text-shadow: 0 1px 2px rgba(255,255,255,0.60);
}
.hero__subtitle{
  font-size: var(--fs-3);
  color: rgba(17,24,39,0.82);
  margin: 0 0 18px;
  max-width: 50ch;
  text-shadow: 0 1px 2px rgba(255,255,255,0.55);
}
.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}
.hero__trust{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(17,24,39,0.80);
  text-shadow: 0 1px 2px rgba(255,255,255,0.50);
}
.hero__trust strong{ color: var(--text); }
.hero__card{
  /* сейчас скрываем, чтобы hero выглядел как на примере */
  display: none;
}
/* стили карточки оставлены, но отключены вместе с display:none; вернём при необходимости */
.hero__cardTitle{ margin: 0 0 10px; font-size: 16px; }
.hero__cardText{ margin: 0 0 10px; color: var(--muted); }
.hero__cardHint{ margin: 0; color: var(--muted2); font-size: 13px; }
.hero__cardList{ margin: 0 0 10px; padding-left: 18px; color: var(--muted); }
.hero__cardList li{ margin: 8px 0; }
.hero__cardList strong{ color: var(--text); }

/* Sections & cards */
.section{ padding: 54px 0; }
.section--alt{ background: rgba(17,24,39,0.03); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--no-divider{ border-top: 0; border-bottom: 0; }
.section__head{ margin: 0 0 18px; }
.section__title{ margin: 0 0 6px; font-size: var(--fs-4); }
.section__desc{ margin: 0; color: var(--muted); max-width: 70ch; }

.grid2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.grid2 > *{
  /* важно для CSS Grid: даём карточкам сжиматься, иначе возможен overflow по горизонтали */
  min-width: 0;
}

.grid3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.grid3 > *{ min-width: 0; }

/* Participants */
.participantCard__img{
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
  margin: 0 0 12px;
  /* background: rgba(17,24,39,0.04); */
  
}
.participantCard__title{
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 16px;
}
.participantCard__text{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Why section: keep columns equal height and gifts carousel in 2-card pages */
.whyGrid{ align-items: stretch; }
.whyCard{ height: 100%; }
.whyGifts{ display: flex; flex-direction: column; }
.whyGifts .snap{ flex: 1; }
.whyGifts__note{ margin-top: auto; }

#giftsTrack.snap__track{
  grid-auto-columns: calc((100% - 12px) / 2);
}

/* Reviews: show 4 cards per "page" on desktop */
#reviewsTrack.snap__track{
  grid-auto-columns: 100%;
}

.reviewsPage{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: stretch;
}

@media (max-width: 720px){
  .reviewsPage{ grid-template-columns: 1fr; }
}

/* Apply section: equal height form + reviews */
.applyGrid{
  align-items: stretch;
  gap: 12px;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}
.applyCard{ height: 100%; }
.applyReviewsCard{ display: flex; flex-direction: column; }
.applyReviewsCard .snap{ flex: 1; }
.applyReviews__note{ margin-top: auto; }
.applyFormCard{ display: flex; flex-direction: column; }
.applyFormCard .form{ flex: 1; }
.form__note{ font-size: 12px; line-height: 1.35; }

/* Mobile: don't force equal-height/flex stretching in Apply section */
@media (max-width: 720px){
  .applyGrid{ align-items: start; }
  .applyCard{ height: auto; }
  .applyFormCard{ display: block; }
  .applyFormCard .form{ flex: initial; }
  .applyReviewsCard{ display: block; }
  .applyReviewsCard .snap{ flex: initial; }
  .applyReviews__note{ margin-top: 12px; }
}
.card{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 18px;
  max-width: 100%;
}
.card--soft{ background: rgba(255,255,255,0.86); }
.card__title{ margin: 0 0 12px; font-size: 18px; }
.card__subtitle{ margin: 14px 0 10px; font-size: 14px; color: var(--muted); }
.card__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.card__actions{ display: inline-flex; gap: 8px; }

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li{ margin: 10px 0; }
.list--icons{
  list-style: none;
  padding-left: 0;
}
.list--icons li{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
}
.list__icon{
  width: 30px;
  height: 30px;
  color: var(--accent);
}
.list__icon--sm{
  width: 22px;
  height: 22px;
}
.rub{
  display: inline-block;
  margin-left: -0.1em;
}
.muted{ color: var(--muted); }
.link{ color: var(--accent); text-decoration: none; }
.link:hover{ text-decoration: underline; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--fs-2);
  text-decoration: none;
}
.btn--primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: rgba(0,0,0,0.84);
}
.btn--primary:hover{ text-decoration: none; filter: brightness(1.02); }
.btn--ghost{
  background: rgba(255,255,255,0.92);
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover{ text-decoration: none; background: rgba(17,24,39,0.03); }

.iconBtn{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
}
.iconBtn:hover{ background: rgba(17,24,39,0.03); }

/* Snap carousel */
.snap{ overflow: hidden; }
.snap__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.snap__track > *{
  scroll-snap-align: start;
}
.snapCard{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  padding: 14px;
  min-height: 120px;
}
.snapCard__img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin: 0 0 10px;
  background: rgba(17,24,39,0.04);
}
.snapCard__title{ margin: 0 0 8px; font-weight: 500; }
.snapCard__text{ margin: 0; color: var(--muted); font-size: 14px; }
.snapCard__meta{ margin-top: 10px; font-size: 12px; color: var(--muted2); }
.whyGiftsGrid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.whyGiftsGrid .snapCard{
  min-height: auto;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  padding: 14px;
}
.whyGiftsGrid .snapCard:nth-child(3){
  grid-column: 1 / -1;
  width: calc(50% - 6px);
  justify-self: center;
}
.whyGiftsGrid .snapCard__img{
  background: transparent;
  object-fit: contain;
}

@media (max-width: 720px){
  .whyGiftsGrid{
    grid-template-columns: 1fr;
  }
  .whyGiftsGrid .snapCard:nth-child(3){
    grid-column: auto;
    width: 100%;
  }
}

/* Reviews rating (stars) */
.reviewRatingRow{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px; /* keep same spacing as .snapCard__meta */
  margin-bottom: 10px; /* отделяем звёзды от текста отзыва */
}
.reviewStars{
  display: inline-flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}
.reviewStar{
  width: 14px;
  height: 14px;
  display: block;
  background-color: #FF8200;
  -webkit-mask: url("./images/star.svg") no-repeat center / contain;
  mask: url("./images/star.svg") no-repeat center / contain;
  opacity: 1;
}
.reviewStar.isEmpty{
  opacity: 0.25;
}
.reviewRatingText{
  color: var(--muted2);
  font-size: 12px;
}

/* Steps */
.steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step{
  text-align: left;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  padding: 16px;
  cursor: pointer;
  color: inherit;
}
.step:hover{ background: rgba(17,24,39,0.03); }
.step__num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: rgba(17,24,39,0.04);
  border: 1px solid var(--border);
  font-weight: 700;
  margin-bottom: 10px;
}
.step__title{ display: block; font-weight: 700; margin-bottom: 6px; }
.step__text{ display: block; color: var(--muted); font-size: 14px; }

/* FAQ */
.faq{
  display: grid;
  gap: 10px;
}
.faqItem{
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  overflow: hidden;
}
.faqItem summary{
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  font-weight: 700;
}
.faqItem summary::-webkit-details-marker{ display: none; }
.faqItem__body{
  padding: 0 16px 14px;
  color: var(--muted);
}
.faqItem__body p{ margin: 10px 0; }
.faqItem__body ul{ margin: 8px 0; padding-left: 18px; }

/* Form */
.form{ display: grid; gap: 4px; }
.form__row{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form__row--age-city{ grid-template-columns: minmax(0, 140px) minmax(0, 1fr); }
.form__row > *{ min-width: 0; }
.form__row--age-city > *{ min-width: 0; }
.form__row--age-city{ align-items: start; }
.field{ display: grid; gap: 2px; }
.field__label{ font-size: 13px; color: var(--muted); }
.field__input{
  -webkit-appearance: none;
  appearance: none;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.96);
  color: var(--text);
  outline: none;
  width: 100%;
  min-height: 46px;
  font-size: 16px;
  line-height: 1.2;
  font-family: inherit;
}
.field select.field__input{
  background-image: linear-gradient(45deg, transparent 50%, rgba(17,24,39,0.55) 50%),
    linear-gradient(135deg, rgba(17,24,39,0.55) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}
.field input[type="date"].field__input{
  padding-right: 12px;
  min-width: 0;
}
.field__input:focus{
  border-color: rgba(255,130,0,0.72);
  box-shadow: 0 0 0 3px rgba(255,130,0,0.18);
}
.field__input.isInvalid{
  border-color: rgba(255,92,122,0.72);
  box-shadow: 0 0 0 3px rgba(255,92,122,0.16);
}
.field__error{
  min-height: 16px;
  font-size: 12px;
  color: rgba(255,92,122,0.92);
}
[data-telegram-field][hidden]{
  display: none !important;
}

.citySearch{
  position: relative;
}
.citySearch__list{
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 12px 26px rgba(17,24,39,0.12);
  max-height: 240px;
  overflow-y: auto;
  display: grid;
  gap: 0;
  padding: 6px;
}
.citySearch__list[hidden]{
  display: none !important;
}
.citySearch__item{
  border: 0;
  margin: 0;
  width: 100%;
  text-align: left;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  padding: 11px 12px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.citySearch__item:hover,
.citySearch__item.isActive{
  background: rgba(255,130,0,0.12);
}
.citySearch__itemTitle{
  display: block;
  font-size: 16px;
  line-height: 1.25;
}
.citySearch__itemMeta{
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.25;
}
.citySearch__list::-webkit-scrollbar{
  width: 10px;
}
.citySearch__list::-webkit-scrollbar-thumb{
  background: rgba(17,24,39,0.18);
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.98);
}
.check{
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 4px;
}
.check__input{ position: absolute; opacity: 0; pointer-events: none; }
.check__box{
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.96);
  margin-top: 2px;
}
.check__input:checked + .check__box{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: transparent;
}
.check__text{ color: var(--muted); font-size: 13px; }
.check__text a{ color: var(--accent); }
.form__submit{ margin-top: 2px; }
.form__hint{ margin: 0; font-size: 13px; color: var(--muted2); }

/* Footer */
.footer{
  padding: 44px 0 0;
  border-top: 1px solid var(--border);
  background: rgba(17,24,39,0.02);
}
.footer__inner{
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 22px;
}
.footer__cols{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.footer__title{ margin: 0 0 10px; font-weight: 700; color: var(--text); }
.footer__link{ display: block; color: var(--muted); padding: 6px 0; }
.footer__link:hover{ color: var(--text); text-decoration: none; }
.footer__text{ margin: 6px 0; color: var(--muted); }
.footer__bottom{ border-top: 1px solid var(--border); padding: 14px 0; }
.footer__bottomInner{ display: flex; justify-content: space-between; gap: 12px; }

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 16px;
  z-index: 100;
}
.modal:not([hidden]){
  display: grid;
}
.modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(17,24,39,0.40);
}
.modal__dialog{
  position: relative;
  width: min(720px, 100%);
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow);
  padding: 16px;
}
.modal__close{
  position: absolute;
  right: 10px;
  top: 10px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  color: var(--text);
  cursor: pointer;
  font-size: 20px;
}
.modal__content{ padding: 10px 2px 2px; color: var(--text); }
.modal__content h3{ margin: 0 0 10px; }
.modal__content p{ color: var(--muted); }
.modal__content ul{ color: var(--muted); padding-left: 18px; }

/* Publications */
.pubs{ display: grid; gap: 10px; }
.pub{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  padding: 12px 14px;
}
.pub__title{ margin: 0 0 6px; font-weight: 700; }
.pub__meta{ margin: 0; font-size: 12px; color: var(--muted2); }

/* Responsive */
@media (max-width: 960px){
  :root{ --fs-5: 34px; }
  .header__burger{ display: inline-flex; }
  .nav{
    position: fixed;
    inset: 66px 0 auto 0;
    background: rgba(255,255,255,0.995);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  body.isNavOpen .nav{ display: flex; }
  .nav__link{ padding: 12px 12px; }
  .nav__cta{
    margin-left: 0;
    width: 100%;
  }
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__content{ max-width: 100%; }
  .hero__bg{
    background:
      linear-gradient(180deg,
        rgba(255,255,255,0.97) 0%,
        rgba(255,255,255,0.92) 62%,
        rgba(255,255,255,0.78) 82%,
        rgba(255,255,255,0.58) 100%
      ),
      radial-gradient(700px 420px at 20% 10%, rgba(255,130,0,0.08), transparent 62%),
      url("./images/bg-main.jpg");
    background-size: auto, auto, cover;
    background-position: top center, top left, center;
  }
  .steps{ grid-template-columns: repeat(2, 1fr); }
  .grid3{ grid-template-columns: repeat(2, 1fr); }
  .footer__inner{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .brand__logo{ height: 20px; }
  .grid2{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .form__row{ grid-template-columns: 1fr; }
  .footer__cols{ grid-template-columns: 1fr; }
  .snap__track{ grid-auto-columns: minmax(220px, 82%); }
  #giftsTrack.snap__track{ grid-auto-columns: minmax(220px, 92%); }
}

@media (max-width: 640px){
  .hero__bg{
    /* на мобиле делаем вертикальный оверлей, чтобы текст точно читался */
    background:
      linear-gradient(180deg,
        rgba(255,255,255,0.92) 30%,
        rgba(255,255,255,0.84) 74%,
        rgba(255,255,255,0.68) 94%,
        rgba(255,255,255,0.50) 100%
      ),
      radial-gradient(700px 420px at 20% 10%, rgba(255,130,0,0.08), transparent 22%),
      url("./images/bg-main.jpg");
    background-size: auto, auto, cover;
    background-position: top center, top left, center;
  }
}

/* Cookie consent */
.cookieConsent{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
}
.cookieConsent__inner{
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 10px 30px rgba(17,24,39,0.12);
  padding: 12px 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.cookieConsent__text{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.cookieConsent__actions{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.cookieConsent__btn{
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

@media (max-width: 720px){
  .cookieConsent{ left: 10px; right: 10px; bottom: 10px; }
  .cookieConsent__inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .cookieConsent__actions{
    width: 100%;
    justify-content: flex-end;
  }
}

