/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

/* fonts */

@font-face {
  font-family: 'Biryani';
  src: url('/fontsVGAC/biryani-regularVGAC.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Biryani';
  src: url('/fontsVGAC/biryani-semiboldVGAC.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Biryani';
  src: url('/fontsVGAC/biryani-boldVGAC.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Biryani';
  src: url('/fontsVGAC/biryani-extraboldVGAC.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* container */

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* header */

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* HEADER BASE */
.headerVGAC {
  background: #1d2c6e;
  color: #fff;
}

.header__innerVGAC {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

/* LOGO */
.header__logoVGAC {
  width: 60px;
  height: 60px;
  display: block;
}

/* DESKTOP NAV */
.header__navVGAC {
  margin-left: 48px;
}

.header__nav-listVGAC {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Biryani', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.header__nav-linkVGAC {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header__nav-linkVGAC::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #facc15; /* желтая линия под активным, как в макете */
  transition: width 0.2s ease;
}

.header__nav-linkVGAC:hover,
.header__nav-linkVGAC:focus-visible {
  color: #facc15;
}

.header__nav-link--activeVGAC {
  color: #facc15;
}

.header__nav-link--activeVGAC::after {
  width: 100%;
}

/* DESKTOP CTA BUTTON */
.header__ctaVGAC {
  border: none;
  cursor: pointer;
  padding: 10px 24px;
  border-radius: 10px;
  background: linear-gradient(90deg, #22c55e 0%, #059669 100%);
  color: #fff;
  font-family: 'Biryani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.header__ctaVGAC:hover,
.header__ctaVGAC:focus-visible {
  background: linear-gradient(90deg, #1ea851 0%, #04704e 100%);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.45);
}

.header__ctaVGAC:active {
  transform: translateY(1px);
  background: linear-gradient(90deg, #1ea851 0%, #04704e 100%);
}

/* BURGER */
.header__burgerVGAC {
  width: 32px;
  height: 24px;
  border: none;
  background: none;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  cursor: pointer;
}

.header__burgerVGAC span {
  display: block;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 999px;
}

/* MOBILE MENU OVERLAY */
.header__mobileVGAC {
  position: fixed;
  inset: 0;
  background: #1d2c6e;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 9999;
}

.header__mobileVGAC.header__mobile--openVGAC {
  transform: translateX(0);
}

.header__mobile-innerVGAC {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.header__mobile-topVGAC {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* CLOSE BUTTON (X) */
.header__closeVGAC {
  position: relative;
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  cursor: pointer;
}

.header__closeVGAC span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 999px;
}

.header__closeVGAC span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.header__closeVGAC span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* MOBILE NAV LIST */
.header__mobile-navVGAC {
  margin-top: 40px;
  flex: 1;
}

.header__mobile-listVGAC {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: 'Biryani', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.header__mobile-linkVGAC {
  color: #ffffff;
  text-decoration: none;
}

.header__mobile-linkVGAC:hover,
.header__mobile-linkVGAC:focus-visible {
  color: #facc15;
}

.header__mobile-link--activeVGAC {
  color: #facc15;
  position: relative;
}

.header__mobile-link--activeVGAC::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 40px;
  height: 2px;
  background: #facc15;
}

/* MOBILE CTA BUTTON */
.header__mobile-ctaVGAC {
  margin-top: auto;
  padding: 14px 24px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, #22c55e 0%, #059669 100%);
  color: #fff;
  font-family: 'Biryani', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  text-align: center;
}

.header__mobile-ctaVGAC:hover,
.header__mobile-ctaVGAC:focus-visible {
  background: linear-gradient(90deg, #1ea851 0%, #04704e 100%);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.45);
}

.header__mobile-ctaVGAC:active {
  transform: translateY(1px);
}

/* BODY NO-SCROLL WHEN MENU OPEN */
.no-scroll {
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .header__navVGAC,
  .header__ctaVGAC {
    display: none;
  }

  .header__burgerVGAC {
    display: flex;
  }
}

@media (max-width: 600px) {
  .header__innerVGAC {
    min-height: 72px;
  }

  .header__navVGAC {
    display: none;
  }
}

/* hero */

/* CONTAINER 1320px */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HERO SECTION */
.heroVGAC {
  background: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #4c1d95 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  font-family: 'Biryani', sans-serif;
}

/* BADGE */
.heroVGAC__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 9999px;
  border: 1px solid #f59e0b;
  background: rgba(245, 158, 11, 0.2);
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 400;
  color: #f59e0b;
}

.heroVGAC__badge img {
  width: 22px;
  height: 22px;
}

/* TITLE */
.heroVGAC__title {
  margin: 32px 0 20px;
  font-size: 72px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}

.heroVGAC__title span {
  color: #f59e0b;
}

/* TEXT */
.heroVGAC__text {
  color: #d1d5db;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 40px;
  max-width: 760px;
}

/* BUTTON */
.heroVGAC__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, #facc15 0%, #f97316 100%);
  padding: 14px 40px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.heroVGAC__btn img {
  width: 28px;
  height: 28px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .heroVGAC {
    padding: 60px 0;
  }

  .heroVGAC__title {
    font-size: 42px;
  }

  .heroVGAC__text {
    font-size: 16px;
    max-width: 90%;
  }

  .heroVGAC__btn {
    padding: 12px 24px;
    font-size: 18px;
  }

  .heroVGAC__btn img {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .heroVGAC__title {
    font-size: 34px;
  }

  .heroVGAC__title span {
    font-size: 36px;
  }

  .heroVGAC__badge {
    padding: 10px 16px;
    font-size: 14px;
  }

  .heroVGAC__badge img {
    width: 18px;
    height: 18px;
  }
}

/*  */
/* ==== CONTAINER ==== */
.containerVGAC {
  width: 100%;
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
}

/* ==== SECTION BACKGROUND ==== */
.jackpotVGAC {
  background: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #4c1d95 100%);
  padding: 90px 0;
  color: #fff;
  text-align: center;
}

/* ==== SECTION TITLE ==== */
.jackpotVGAC__title {
  font-family: Biryani, sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ==== SUBTITLE ==== */
.jackpotVGAC__subtitle {
  font-family: Biryani, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #d1d5db;
  max-width: 820px;
  margin: 0 auto 50px;
}

/* ==== CARD ==== */
.jackpotVGAC__card {
  border-radius: 10px;
  border: 1px solid rgba(245, 158, 11, 0.5);
  background: rgba(0, 0, 0, 0.2);
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* ==== CUPS LEFT/RIGHT ==== */
.jackpotVGAC__cup {
  width: 190px;
  flex-shrink: 0;
}

/* ==== CONTENT ==== */
.jackpotVGAC__content {
  flex: 1;
}

/* LABEL */
.jackpotVGAC__label {
  font-family: Biryani, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 18px;
  text-transform: uppercase;
}

/* AMOUNT */
.jackpotVGAC__amount {
  font-family: Biryani, sans-serif;
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
}

/* DRAW TEXT */
.jackpotVGAC__draw {
  font-family: Biryani, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #d1d5db;
  margin-bottom: 32px;
}

/* BUTTON */
.jackpotVGAC__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: 10px;
  background: linear-gradient(90deg, #22c55e 0%, #059669 100%);
  color: #fff;
  text-decoration: none;
  font-family: Biryani, sans-serif;
  font-size: 20px;
  font-weight: 700;
  transition: 0.2s;
}

.jackpotVGAC__btn:hover {
  background: linear-gradient(90deg, #1ea851 0%, #04704e 100%);
}

/* BUTTON CUP ICON */
.jackpotVGAC__btn img {
  width: 28px;
}

/* ==== MOBILE ADAPTIVE ==== */
@media (max-width: 900px) {
  .jackpotVGAC__card {
    flex-direction: column;
    padding: 30px 20px;
  }

  .jackpotVGAC__cup {
    width: 150px;
  }

  .jackpotVGAC__amount {
    font-size: 48px;
  }

  .jackpotVGAC__label {
    font-size: 24px;
  }

  .jackpotVGAC__draw {
    font-size: 18px;
  }
}

@media (max-width: 540px) {
  .jackpotVGAC__cup {
    width: 130px;
  }

  .jackpotVGAC__amount {
    font-size: 38px;
  }

  .jackpotVGAC__label {
    font-size: 22px;
  }

  .jackpotVGAC__subtitle {
    font-size: 18px;
  }

  .jackpotVGAC__title {
    font-size: 26px;
  }
}
/* Общий фон секции */
.top-partnersVGAC {
  background: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #4c1d95 100%);
  padding: 80px 0;
  color: #fff;
}

/* Контейнер */
.containerVGAC {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Заголовок */
.top-partners-titleVGAC {
  text-align: center;
  font-family: Biryani;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* Список карточек */
.top-partners-listVGAC {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
}

/* Карточка */
.top-partners-cardVGAC {
  flex: 1;
  padding: 26px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  text-align: center;
}

/* Блок логотипа */
.top-partners-logoBoxVGAC {
  height: 286px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 26px;
}

.partner-logoVGAC {
  width: 75%;
  height: auto;
  object-fit: contain;
}

/* Текстовые статусы */
.partner-tierVGAC {
  font-family: Biryani;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.partner-tierVGAC.gold {
  color: #ffea00;
}
.partner-tierVGAC.silver {
  color: #a2a2a2;
}
.partner-tierVGAC.bronze {
  color: #ac7924;
}

/* Звёзды */

.top-partners__stars {
  display: flex;
  gap: 6px;
  margin: 10px 0 8px;
  justify-content: center;
}

.starVGAC {
  width: 24px;
  height: 25px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Время */
.partner-timeVGAC {
  color: #d1d5db;
  font-family: Biryani;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
}

/* Сумма */
.partner-amountVGAC {
  font-family: Biryani;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

/* Платёжки */
.partner-payVGAC {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
}

.partner-payVGAC img {
  height: 32px;
}

/* Кнопка */
.partner-btnVGAC {
  display: block;
  width: 100%;
  padding: 14px 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #22c55e 0%, #059669 100%);
  font-family: Biryani;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 900px) {
  .top-partners-listVGAC {
    flex-direction: column;
  }
}

/*  */

.whyVGAC {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #4c1d95 100%);
}

/* Заголовок */
.why__titleVGAC {
  color: #fff;
  text-align: center;
  font-family: Biryani;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Подзаголовок */
.why__subtitleVGAC {
  color: #d1d5db;
  text-align: center;
  font-family: Biryani;
  font-size: 20px;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

/* GRID */
.why__listVGAC {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 0;
  margin: 0;
}

/* Карточка */
.why__itemVGAC {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 32px 24px;
  text-align: center;
}

/* Иконки */
.why__iconVGAC {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
}

/* Заголовок внутри карточки */
.why__item-titleVGAC {
  color: #fff;
  font-family: Biryani;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Текст внутри карточки */
.why__item-textVGAC {
  color: #d1d5db;
  font-family: Biryani;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

/* 📱 Адаптив */
@media (max-width: 1024px) {
  .why__listVGAC {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .whyVGAC {
    padding: 60px 0;
  }

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

  .why__subtitleVGAC {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .why__itemVGAC {
    padding: 28px 20px;
  }

  .why__item-titleVGAC {
    font-size: 18px;
  }

  .why__item-textVGAC {
    font-size: 15px;
  }
}

.howVGAC {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #4c1d95 100%);
}

.how-titleVGAC {
  color: #fff;
  text-align: center;
  font-family: Biryani;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.how-subVGAC {
  color: #d1d5db;
  text-align: center;
  font-family: Biryani;
  font-size: 20px;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 50px;
}

.how-listVGAC {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.how-itemVGAC {
  flex: 1;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 30px 20px;
}

.how-numVGAC {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: #f59e0b;
  color: #fff;
  font-family: Biryani;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.how-item-titleVGAC {
  color: #fff;
  font-family: Biryani;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.how-item-textVGAC {
  color: #d1d5db;
  font-family: Biryani;
  font-size: 16px;
  font-weight: 400;
}

/* MOBILE */
@media (max-width: 768px) {
  .how-listVGAC {
    flex-direction: column;
  }

  .how-itemVGAC {
    padding: 25px 18px;
  }

  .how-numVGAC {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

/* ==== БЛОК ФОН СЕКЦИИ ==== */
.winnersVGAC {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #4c1d95 100%);
  color: #fff;
}

/* ==== ТИТУЛКА ==== */
.winners__titleVGAC {
  text-align: center;
  font-family: Biryani;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.winners__subtitleVGAC {
  text-align: center;
  font-family: Biryani;
  font-size: 20px;
  font-weight: 700;
  color: #d1d5db;
  margin-bottom: 50px;
}

/* ==== LIST ==== */
.winners__listVGAC {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  padding: 0;
}

/* ==== CARD ==== */
.winner-cardVGAC {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 28px;
}

/* ==== TOP ==== */
.winner-card__topVGAC {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.winner-avatarVGAC {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.winner-nameVGAC {
  font-family: Biryani;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.winner-cityVGAC {
  font-family: Biryani;
  font-size: 16px;
  font-weight: 400;
  color: #9ca3af;
}

/* ==== GREEN BADGE ==== */
.winner-badgeVGAC {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 9999px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.2);
  padding: 6px 14px;
  font-family: Biryani;
  font-size: 14px;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: 18px;
}

/* ==== TEXT ==== */
.winner-textVGAC {
  font-family: Biryani;
  font-size: 16px;
  font-weight: 400;
  color: #d1d5db;
  margin-bottom: 20px;
}

/* ==== STARS ==== */
.winner-starsVGAC img {
  width: 20px;
  height: 20px;
}

/* ==== MOBILE ==== */
@media (max-width: 768px) {
  .winners__listVGAC {
    grid-template-columns: 1fr;
  }
}

/*  */

/* GLOBAL SECTION BACKGROUND */
.secureVGAC {
  background: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #4c1d95 100%);
  padding: 60px 0;
}

/* LAYOUT */
.secureVGAC__wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* MAIN GLASS BLOCKS (left + right big frames) */
.glass-block {
  flex: 1;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(
    180deg,
    rgba(30, 64, 175, 0.5) 0%,
    rgba(107, 33, 168, 0.5) 100%
  );
  backdrop-filter: blur(10px);
}

/* LEFT BLOCK TYPOGRAPHY */
.secureVGAC__title {
  color: #fff;
  font-family: Biryani;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.secureVGAC__subtitle {
  color: #d1d5db;
  font-family: Biryani;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.secureVGAC__list {
  list-style: none;
  padding: 0;
}

.secureVGAC__list li {
  color: #d1d5db;
  font-family: Biryani;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.secureVGAC__list img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* RIGHT INNER PANEL (EXTRA PODLOZHKA) */
.secureVGAC__inner {
  border-radius: 10px;
  border: 1px solid rgba(74, 222, 128, 0.5);
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  text-align: center;
}

/* RIGHT TYPOGRAPHY */
.secureVGAC__lock {
  width: 48px;
  margin-bottom: 20px;
}

.secureVGAC__right-title {
  color: #fff;
  font-family: Biryani;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.secureVGAC__right-text {
  color: #d1d5db;
  font-family: Biryani;
  font-size: 16px;
  margin-bottom: 30px;
}

/* STATS */
.secureVGAC__stats {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.secureVGAC__stat {
  padding: 20px;
  width: 200px;
  border-radius: 8px;
  text-align: center;
}

.stat-green {
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.2);
}

.stat-blue {
  border: 1px solid rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.2);
}

/* NUMBERS */
.secureVGAC__number {
  font-family: Biryani;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.green {
  color: #4ade80;
}
.blue {
  color: #60a5fa;
}

/* BADGES */
.secureVGAC__badge {
  font-family: Biryani;
  font-size: 14px;
  font-weight: 600;
}

/* ============================
   TABLET (до 900px)
   ============================ */
@media (max-width: 900px) {
  .secureVGAC {
    padding-left: 15px;
    padding-right: 15px;
  }
  .secureVGAC__wrap {
    flex-direction: column;
    gap: 30px;
  }

  .glass-block {
    width: 100%;
    padding: 30px;
  }

  .secureVGAC__title {
    font-size: 26px;
  }

  .secureVGAC__subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .secureVGAC__list li {
    font-size: 15px;
    gap: 8px;
  }

  .secureVGAC__right-title {
    font-size: 22px;
  }

  .secureVGAC__right-text {
    font-size: 15px;
    max-width: 100%;
  }

  .secureVGAC__stats {
    gap: 14px;
  }

  .secureVGAC__stat {
    width: 45%;
    padding: 16px;
  }

  .secureVGAC__number {
    font-size: 18px;
  }

  .secureVGAC__badge {
    font-size: 13px;
  }
}

/* ============================
     MOBILE (до 480px)
     ============================ */
@media (max-width: 480px) {
  .glass-block {
    padding: 24px 20px;
  }

  .secureVGAC__title {
    font-size: 22px;
    line-height: 1.3;
  }

  .secureVGAC__subtitle {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .secureVGAC__list li {
    font-size: 14px;
  }

  /* Правый блок */
  .secureVGAC__right-title {
    font-size: 20px;
  }

  .secureVGAC__right-text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  /* Статистика в 1 колонку */
  .secureVGAC__stats {
    flex-direction: column;
    gap: 14px;
  }

  .secureVGAC__stat {
    width: 100%;
    padding: 14px;
  }

  .secureVGAC__number {
    font-size: 18px;
  }

  .secureVGAC__badge {
    font-size: 13px;
  }

  /* внутренний правый стеклянный блок */
  .secureVGAC__inner {
    padding: 28px 18px;
  }

  .secureVGAC__lock {
    width: 42px;
    margin-bottom: 16px;
  }
}

/*  */

/* ================================
   ROOT SECTION (фон как в фигме)
================================ */
.appVGAC {
  padding: 70px 0 100px;
  background: linear-gradient(180deg, #301866 0%, #4a1a84 50%, #3b0f72 100%);
}

/* ================================
   TITLES
================================ */
.appVGAC__title {
  text-align: center;
  color: #fff;
  font-family: Biryani;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.appVGAC__subtitle {
  text-align: center;
  color: #d1d5db;
  font-family: Biryani;
  font-size: 18px;
  max-width: 760px;
  margin: 0 auto 70px;
}

/* ================================
   DESKTOP LAYOUT
================================ */
.appVGAC__wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

/* ================================
   LEFT BLOCK
================================ */
.appVGAC__left {
  width: 616px;
  flex-shrink: 0;
}

.appVGAC__left-inner {
  padding: 80px 100px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #2563eb 0%, #7e22ce 100%);
  backdrop-filter: blur(10px);
  text-align: center;
}

.appVGAC__phone {
  width: 80px;
  margin: 0 auto 20px;
}

.appVGAC__left-title {
  color: #fff;
  font-family: Biryani;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.appVGAC__left-desc {
  color: #e5e7eb;
  font-family: Biryani;
  font-size: 17px;
  margin-bottom: 40px;
}

/* Glass download text box */
.appVGAC__download {
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  font-family: Biryani;
  font-size: 20px;
  color: #fff;
}

/* ================================
   RIGHT BLOCK LIST
================================ */
.appVGAC__list {
  flex: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.appVGAC__item {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.appVGAC__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.appVGAC__item-title {
  color: #fff;
  font-family: Biryani;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.appVGAC__item-text {
  color: #d1d5db;
  font-family: Biryani;
  font-size: 16px;
  line-height: 1.4;
}

/* ================================
   TABLET VERSION
   (left и right идут вертикально,
    НО left остаётся сверху!)
================================ */
@media (max-width: 1100px) {
  .appVGAC__wrap {
    flex-direction: column;
    gap: 60px;
  }

  .appVGAC__left {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }

  .appVGAC__left-inner {
    padding: 60px 60px;
  }

  .appVGAC__list {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ================================
   MOBILE VERSION
   (Left block — ВСЕГДА ВНИЗУ)
================================ */
@media (max-width: 600px) {
  /* Меняем порядок: правый блок — первым, левый — последним */
  .appVGAC__wrap {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .appVGAC__left-inner {
    padding: 40px 30px;
  }

  .appVGAC__title {
    font-size: 22px;
  }

  .appVGAC__subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .appVGAC__left-title {
    font-size: 22px;
  }

  .appVGAC__left-desc {
    font-size: 14px;
  }

  .appVGAC__download {
    font-size: 16px;
    padding: 14px 0;
  }

  .appVGAC__icon {
    width: 48px;
    height: 48px;
  }

  .appVGAC__item {
    padding: 20px;
  }

  .appVGAC__item-title {
    font-size: 16px;
  }

  .appVGAC__item-text {
    font-size: 14px;
  }
}

.statsVGAC {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #4c1d95 100%);
}

.containerVGAC {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.stats-titleVGAC {
  color: #fff;
  font-family: Biryani;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.stats-subtitleVGAC {
  color: #d1d5db;
  font-family: Biryani;
  font-size: 18px;
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto 60px;
}

.stats-listVGAC {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats-itemVGAC {
  border-radius: 10px;
  border: 1px solid #f59e0b;
  background: rgba(245, 158, 11, 0.2);
  backdrop-filter: blur(10px);
  padding: 40px 20px;
}

.stats-numberVGAC {
  color: #fff;
  font-family: Biryani;
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 18px;
}

.stats-labelVGAC {
  color: #f59e0b;
  font-family: Biryani;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.stats-textVGAC {
  color: #fff;
  font-family: Biryani;
  font-size: 16px;
  line-height: 1.4;
}

/* ===================== */
/* TABLET */
/* ===================== */
@media (max-width: 992px) {
  .stats-listVGAC {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-numberVGAC {
    font-size: 38px;
  }

  .stats-labelVGAC {
    font-size: 18px;
  }
}

/* ===================== */
/* MOBILE */
/* ===================== */
@media (max-width: 640px) {
  .stats-listVGAC {
    grid-template-columns: 1fr;
  }

  .stats-itemVGAC {
    padding: 32px 20px;
  }

  .stats-numberVGAC {
    font-size: 34px;
  }
}

/* ========================= */
/* SECTION BACKGROUND */
/* ========================= */

.importantVGAC {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #4c1d95 100%);

  display: flex;
  justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
}

/* ========================= */
/* MAIN CONTENT BOX */
/* ========================= */

.important__boxVGAC {
  max-width: 1100px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(222, 74, 74, 0.5);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  padding: 60px 40px;
  text-align: center;
}

/* ========================= */
/* TEXT STYLES */
/* ========================= */

.important__ageVGAC {
  color: #f00;
  font-family: Biryani;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
}

.important__titleVGAC {
  color: #fff;
  font-family: Biryani;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.important__textVGAC {
  color: #d1d5db;
  font-family: Biryani;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  max-width: 900px;
  margin: 0 auto 50px;
}

/* ========================= */
/* LOGOS */
/* ========================= */

.important__logosVGAC {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.important__logo-itemVGAC {
  padding: 18px 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-purpleVGAC {
  border: 1px solid rgba(132, 71, 255, 0.3);
  background: rgba(132, 71, 255, 0.2);
}

.logo-orangeVGAC {
  border: 1px solid rgba(255, 107, 39, 0.3);
  background: rgba(255, 107, 39, 0.2);
}

.important__logo-itemVGAC img {
  max-height: 48px;
  width: auto;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {
  .important__boxVGAC {
    padding: 50px 30px;
  }

  .important__logosVGAC {
    gap: 20px;
  }
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 640px) {
  .important__boxVGAC {
    padding: 40px 20px;
  }

  .important__textVGAC {
    font-size: 15px;
  }

  .important__logo-itemVGAC {
    width: 100%;
    max-width: 320px;
    padding: 16px 22px;
  }

  .important__logosVGAC {
    flex-direction: column;
    align-items: center;
  }
}

/* footer */
.footerVGAC {
  background: #1d2c6e;
  padding: 80px 20px 50px;
  color: #fff;
  font-family: Biryani;
}

.footer__containerVGAC {
  max-width: 1240px;
  margin: 0 auto;
}

.footer__logosVGAC {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}

.footer-logo-itemVGAC {
  padding: 16px 22px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}

.footer-logo-itemVGAC img {
  max-height: 36px;
  width: auto;
}

.footer-logo-purpleVGAC {
  border: 1px solid rgba(132, 71, 255, 0.3);
  background: rgba(132, 71, 255, 0.2);
}

.footer-logo-orangeVGAC {
  border: 1px solid rgba(255, 107, 39, 0.3);
  background: rgba(255, 107, 39, 0.2);
}

.footer-logo-blueVGAC {
  border: 1px solid rgba(136, 162, 255, 0.3);
  background: rgba(136, 162, 255, 0.2);
}

.footer-logo-brownVGAC {
  border: 1px solid rgba(214, 122, 54, 0.3);
  background: rgba(214, 122, 54, 0.2);
}

.footer__gridVGAC {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer__titleVGAC {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer__descVGAC {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  max-width: 360px;
  color: #fff;
}

.footer__navVGAC ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__navVGAC li {
  margin-bottom: 10px;
}

.footer__navVGAC a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.footer__ageVGAC {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 25px 0 10px;
}

.age-redVGAC {
  color: #f00;
  font-size: 24px;
  font-weight: 800;
}

.age-textVGAC {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer__warningVGAC {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #fff;
}

.footer__copyVGAC {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.7;
}

.footer__colVGAC img {
  width: 60px;
  height: 60px;
}

@media (max-width: 992px) {
  .footer__logosVGAC {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__gridVGAC {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .footer__logosVGAC {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer-logo-itemVGAC {
    height: 68px;
    padding: 14px;
  }

  .footer__gridVGAC {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer__warningVGAC {
    text-align: left;
  }
}
.footer__iconVGAC {
  width: 60px;
  width: 60px;
  margin-bottom: 10px;
}

/* contact page */

/* ============================= */
/* PAGE BACKGROUND */
/* ============================= */

.contact-pageVGAC {
  background: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #4c1d95 100%);
  padding: 80px 20px;
  font-family: Biryani, sans-serif;
  color: #fff;
}

/* ============================= */
/* HEADER TEXT */
/* ============================= */

.contact-titleVGAC {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.contact-subVGAC {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
  color: #d1d5db;
  font-size: 20px;
  font-weight: 700;
}

/* ============================= */
/* GRID */
/* ============================= */

.contact-gridVGAC {
  display: flex;
  gap: 30px;
  align-items: flex-start; /* Левый остается маленьким */
}

/* ============================= */
/* LEFT BLOCK — фикс. размер */
/* ============================= */

.contact-leftVGAC {
  width: 441px;
  height: 545px; /* как в макете */
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

/* заголовок */
.contact-block-titleVGAC {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* элементы контактов */
.contact-itemVGAC {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 26px;
}

.contact-itemVGAC img {
  width: 38px;
  height: 38px;
}

.contact-itemVGAC label {
  font-size: 16px;
  opacity: 0.9;
}

.contact-itemVGAC p {
  font-size: 16px;
  font-weight: 700;
  margin-top: 4px;
}

/* ============================= */
/* RIGHT BLOCK — auto height */
/* ============================= */

.contact-rightVGAC {
  flex: 1;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.form-titleVGAC {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.form-descVGAC {
  text-align: center;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 28px;
}

/* ============================= */
/* FORM */
/* ============================= */

.formVGAC input,
.formVGAC textarea {
  width: 100%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(25px);
  border: none;
  padding: 16px;
  color: #fff;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 700;
}

.formVGAC textarea {
  height: 130px;
  resize: none;
}

.formVGAC input::placeholder,
.formVGAC textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 20px;
  font-weight: 700;
}

/* button */
.form-buttonVGAC {
  width: 100%;
  background: linear-gradient(90deg, #4ade80, #22c55e);
  padding: 16px;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.form-buttonVGAC:hover {
  opacity: 0.9;
}

.form-successVGAC {
  margin-top: 18px;
  text-align: center;
  font-size: 16px;
  color: #baffb8;
  display: none;
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 900px) {
  .contact-gridVGAC {
    flex-direction: column;
  }

  .contact-leftVGAC {
    width: 100%;
    height: auto; /* на мобилке авто */
  }

  .contact-rightVGAC {
    width: 100%;
  }

  .contact-subVGAC {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

/* ============================= */
/* TABLET FIX (768px – 1024px) */
/* ============================= */

@media (max-width: 1024px) and (min-width: 768px) {
  .contact-gridVGAC {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 20px;
    align-items: stretch;
  }

  /* левый блок уменьшенный, чтобы красиво влез */
  .contact-leftVGAC {
    width: 100%;
    height: 480px; /* специально уменьшил под tablet */
    padding: 24px;
  }

  .contact-block-titleVGAC {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .contact-itemVGAC img {
    width: 32px;
    height: 32px;
  }

  .contact-itemVGAC label {
    font-size: 14px;
  }

  .contact-itemVGAC p {
    font-size: 15px;
  }

  /* правый блок */
  .contact-rightVGAC {
    padding: 24px;
  }

  .form-titleVGAC {
    font-size: 20px;
  }

  .form-descVGAC {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .formVGAC input,
  .formVGAC textarea {
    font-size: 15px;
    padding: 14px;
  }

  .formVGAC input::placeholder,
  .formVGAC textarea::placeholder {
    font-size: 16px;
  }

  .form-buttonVGAC {
    padding: 14px;
    font-size: 16px;
  }
}

/* terms */

.termsVGAC {
  background: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #4c1d95 100%);
  padding: 80px 20px;
  color: #fff;
  font-family: Biryani, sans-serif;
}

.terms-titleVGAC {
  color: #f59e0b;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.terms-introVGAC {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  max-width: 760px;
  margin-bottom: 40px;
}

.terms-listVGAC {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
}

.terms-itemVGAC {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.terms-subtitleVGAC {
  color: #f59e0b;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.terms-sublistVGAC {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.terms-sublistVGAC li {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

/* TABLET */
@media (max-width: 1024px) {
  .terms-listVGAC {
    gap: 32px 40px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .termsVGAC {
    padding: 50px 16px;
  }

  .terms-listVGAC {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .terms-titleVGAC {
    font-size: 30px;
  }

  .terms-subtitleVGAC {
    font-size: 20px;
  }

  .terms-sublistVGAC li {
    font-size: 16px;
  }
}

/*  */

/* ===== SECTION BACKGROUND ===== */
.faq-sectionVGAC {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #4c1d95 100%);
}

.faq-containerVGAC {
  max-width: 900px;
  margin: 0 auto;
}

/* ===== TITLE ===== */
.faq-titleVGAC {
  color: #fff;
  text-align: center;
  font-family: Biryani, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* ===== LIST ===== */
.faq-listVGAC {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== ITEM (CLOSED) ===== */
.faq-itemVGAC {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: 0.3s;
}

/* ===== ITEM (OPEN) ===== */
.faq-itemVGAC.openVGAC {
  border-radius: 10px;
  border: 1px solid rgba(74, 222, 128, 0.5);
  background: rgba(74, 222, 128, 0.1);
}

/* ===== QUESTION BUTTON ===== */
.faq-questionVGAC {
  width: 100%;
  padding: 20px;

  color: #fff;
  text-align: center;
  font-family: Biryani, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 800; /* жирный */
  line-height: normal;

  background: none;
  border: none;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON */
.faq-iconVGAC {
  width: 20px;
  height: 20px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s ease;
}

/* ROTATE ICON ON OPEN */
.faq-itemVGAC.openVGAC .faq-iconVGAC {
  transform: rotate(-135deg);
}

/* ===== ANSWER ===== */
.faq-answerVGAC {
  color: #fff;
  font-family: Biryani, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400; /* обычный */
  line-height: normal;

  padding: 0 20px;
  overflow: hidden;

  /* Анимация */
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}

/* ANSWER WHEN OPEN */
.faq-itemVGAC.openVGAC .faq-answerVGAC {
  padding: 0 20px 20px;
  max-height: 300px;
  opacity: 1;
}

/* ===== MOBILE ADAPTIVE ===== */
@media (max-width: 480px) {
  .faq-titleVGAC {
    font-size: 24px;
  }

  .faq-questionVGAC {
    font-size: 18px;
    padding: 16px;
  }

  .faq-answerVGAC {
    font-size: 18px;
    padding: 0 16px;
  }

  .faq-itemVGAC.openVGAC .faq-answerVGAC {
    padding: 0 16px 16px;
  }

  .faq-iconVGAC {
    width: 18px;
    height: 18px;
  }
}

/* чуть более мягкий вариант для мелких экранов */
@media (max-width: 380px) {
  .faq-questionVGAC {
    font-size: 17px;
    text-align: left;
  }

  .faq-answerVGAC {
    font-size: 17px;
    text-align: left;
  }
}

/* popups */
/* ======================================================
   BASE OVERLAY
====================================================== */

.popup-overlayVGAC {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
}

.popup-overlayVGAC.activeVGAC {
  display: flex;
}

/* ======================================================
   POPUP BOX (UNIVERSAL)
====================================================== */

.popup-boxVGAC {
  width: 100%;
  max-width: 680px; /* << YOUR WIDTH */
  padding: 32px 28px;
  border-radius: 10px;
  border: 1px solid rgba(74, 222, 128, 0.5);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);

  color: #fff;
  font-family: Biryani, sans-serif;

  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.popup-box--scrollVGAC {
  max-height: 90vh;
  overflow-y: auto;
}

/* ======================================================
   HEADINGS
====================================================== */

.popup-titleVGAC {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.popup-subtitleVGAC {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
}

/* ======================================================
   GENERAL TEXT
====================================================== */

.popup-textVGAC {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  opacity: 0.95;
}

.popup-linkVGAC {
  cursor: pointer;
  color: #22c55e;
  font-size: 18px;
  text-decoration: underline;
  align-self: flex-start;
}

/* ======================================================
   BUTTONS
====================================================== */

.btnVGAC {
  min-width: 180px;
  padding: 14px 26px;
  border-radius: 10px;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: Biryani, sans-serif;
}

/* зелёная */
.btn-primaryVGAC {
  background: linear-gradient(90deg, #22c55e 0%, #059669 100%);
  color: #fff;
}

/* прозрачная с зелёной рамкой */
.btn-outlineVGAC {
  background: transparent;
  border: 1px solid #22c55e;
  color: #22c55e;
}

/* тёмная (Personnaliser) */
.btn-darkVGAC {
  background: #324739;
  color: #fff;
}

/* hover */
.btnVGAC:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* buttons row */
.popup-actionsVGAC {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

/* ======================================================
   FORM INPUTS
====================================================== */

.popup-formVGAC {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.popup-inputVGAC {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.popup-inputVGAC::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.popup-inputVGAC:focus {
  outline: none;
  box-shadow: 0 0 0 1px #22c55e;
}

/* ======================================================
   COOKIE SETTINGS SPECIAL DESIGN
====================================================== */

.cookie-listVGAC {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-itemVGAC {
  padding: 20px 22px;
  border-radius: 10px;
  border: 1px solid rgba(74, 222, 128, 0.5);
  background: rgba(0, 0, 0, 0.4);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.cookie-titleVGAC {
  color: #f59e0b;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cookie-descVGAC {
  font-size: 16px;
  opacity: 0.9;
}

/* toggle */
.cookie-toggleVGAC {
  width: 74px;
  height: 34px;
  border-radius: 10px;
  background: #324739;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.cookie-toggleVGAC.is-onVGAC {
  background: linear-gradient(90deg, #22c55e 0%, #059669 100%);
}

.cookie-toggle-circleVGAC {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease;
}

.cookie-toggleVGAC.is-onVGAC .cookie-toggle-circleVGAC {
  transform: translateX(40px);
}

/* ======================================================
   CHECKBOX (REGISTER)
====================================================== */

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

.checkbox-inputVGAC {
  display: none;
}

.checkbox-boxVGAC {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #22c55e;
  position: relative;
}

.checkbox-boxVGAC::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: linear-gradient(90deg, #22c55e, #059669);
  transform: scale(0);
  transition: 0.15s ease;
}

.checkbox-inputVGAC:checked + .checkbox-boxVGAC::after {
  transform: scale(1);
}

/* ======================================================
   STATUS POPUPS
====================================================== */

.status-boxVGAC {
  width: 100%;
  max-width: 540px;
  padding: 28px 30px;
  border-radius: 10px;
  border: 1px solid rgba(74, 222, 128, 0.5);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;

  display: flex;
  gap: 22px;
  align-items: center;
}

.status-textVGAC {
  font-size: 18px;
}

/* icons */
.status-iconVGAC {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  position: relative;
}

/* success */
.status-icon--successVGAC {
  border: 2px solid #22c55e;
}

.status-icon--successVGAC::after {
  content: '';
  position: absolute;
  inset: 16px 18px 14px 16px;
  border-right: 4px solid #22c55e;
  border-bottom: 4px solid #22c55e;
  transform: rotate(45deg);
}

/* error */
.status-icon--errorVGAC {
  border: 2px solid #ef4444;
}

.status-icon--errorVGAC::before,
.status-icon--errorVGAC::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 26px;
  width: 4px;
  height: 24px;
  background: #ef4444;
}

.status-icon--errorVGAC::before {
  transform: rotate(45deg);
}

.status-icon--errorVGAC::after {
  transform: rotate(-45deg);
}

/* ======================================================
   ADAPTIVE
====================================================== */

@media (max-width: 520px) {
  .popup-boxVGAC {
    max-width: 92%;
    padding: 24px 18px;
  }

  .cookie-itemVGAC {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px;
  }

  .cookie-toggleVGAC {
    align-self: flex-end;
    transform: scale(0.9);
  }

  .btnVGAC {
    width: 100%;
  }
}
