* {
  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%;
}

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

@media (max-width: 1400px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
}

@font-face {
  font-family: 'Roboto';
  src: url('/roboto-variablefontwdthwghtIHVG.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'Exo 2';
  src: url('/exo2-variablefontwghtIHVG.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
}

/* header */
.topbarIHVG {
  width: 100%;
  background: #cb8d06;
  color: #1f1f1f;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-align: center;
  padding: 8px 0;
}

.headerIHVG {
  background: #2e2321;
  position: relative;
  z-index: 30;
}

.header-containerIHVG {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logoIHVG img {
  width: 102.4px;
  height: auto;
  display: block;
}

.header-navIHVG {
  display: flex;
  align-items: center;
}

.header-listIHVG {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-linkIHVG {
  color: #e49256;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.header-linkIHVG:hover {
  opacity: 0.7;
}

/* ===== DESKTOP CTA (единственная кнопка) ===== */
.header-ctaIHVG {
  padding: 12px 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.47);
  background: #e49256;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 28px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.header-ctaIHVG:hover {
  opacity: 0.8;
}

/* ===== CTA inside mobile menu ONLY ===== */
.menu-ctaIHVG {
  padding: 12px 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.47);
  background: #e49256;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
  display: none;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

/* ===== BURGER (десктоп скрыт) ===== */
.burgerIHVG {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burgerIHVG span {
  width: 32px;
  height: 4px;
  border-radius: 4px;
  background: #e49256;
  transition: 0.3s;
}

.burgerIHVG.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burgerIHVG.active span:nth-child(2) {
  opacity: 0;
}

.burgerIHVG.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========== MOBILE < 920px ========== */
@media (max-width: 920px) {
  .header-navIHVG {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 30px 20px 40px;
    background: #2e2321;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: 0.35s ease;
  }

  .header-navIHVG.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-listIHVG {
    flex-direction: column;
    gap: 18px;
  }

  .header-ctaIHVG {
    display: none;
  }

  .menu-ctaIHVG {
    display: flex;
  }

  .burgerIHVG {
    display: flex;
  }
}

/* hero */

.heroIHVG {
  width: 100%;
  padding: 60px 20px 80px;
  display: flex;
  justify-content: center;
  background: #14100d;
}

.hero-contentIHVG {
  width: 100%;
  max-width: 1240px;
  border: 2px solid #8c7564;
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;

  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    url('/hero-bgIHVG.webp') center/cover no-repeat;

  background-blend-mode: normal;
}

.hero-titleIHVG {
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 48px;
  max-width: 900px;
  margin: 0 auto 26px;
}

.hero-textIHVG {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  max-width: 680px;
  margin: 0 auto 40px;
}

.hero-ctaIHVG {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 420px;
  padding: 16px 32px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.47);
  background: #e49256;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 28px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin: 0 auto;
}

.hero-ctaIHVG:hover {
  opacity: 0.85;
}

/* TABLET */
@media (max-width: 1024px) {
  .hero-contentIHVG {
    padding: 60px 40px;
  }

  .hero-titleIHVG {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-ctaIHVG {
    max-width: 360px;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .heroIHVG {
    padding: 40px 16px 60px;
  }

  .hero-contentIHVG {
    padding: 32px 22px 40px;
    border-radius: 24px;
  }

  .hero-titleIHVG {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 18px;
  }

  .hero-textIHVG {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 30px;
  }

  .hero-ctaIHVG {
    font-size: 22px;
    line-height: 26px;
    padding: 14px 26px;
    max-width: 100%;
  }
}

/* feauters */
.featuresIHVG {
  width: 100%;
  background: #14100d;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.features-listIHVG {
  max-width: 1240px;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.features-itemIHVG {
  background: #2e2321;
  border: 2px solid #8c7564;
  border-radius: 25px;
  padding: 40px 26px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-itemIHVG img {
  width: 80px;
  height: auto;
  margin-bottom: 24px;
}

.features-itemIHVG h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  color: #fff;
  margin: 0 0 18px;
  max-width: 90%;
}

.features-itemIHVG p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: #adadad;
  margin: 0 auto;
  max-width: 90%;
}

/* tablet: 2x2 */
@media (max-width: 1024px) {
  .features-listIHVG {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* mobile: 1 column */
@media (max-width: 640px) {
  .features-listIHVG {
    grid-template-columns: 1fr;
  }

  .features-itemIHVG {
    padding: 32px 22px 40px;
  }

  .features-itemIHVG h2 {
    font-size: 20px;
    line-height: 26px;
  }

  .features-itemIHVG img {
    width: 70px;
  }
}
/* demo  */
/* === DEMO SECTION === */
.demoIHVG {
  width: 100%;
  padding: 80px 20px;
  background: url('/demo-bgIHVG.webp') center/cover no-repeat;
  text-align: center;
}

.demo-titleIHVG {
  font-family: 'Exo 2', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: #fff;
  margin-bottom: 40px;
}

/* === CARD (на десктопе фиксированные размеры) === */
.demo-cardIHVG {
  width: 892px;
  height: 660px;
  margin: 0 auto;
  position: relative;
  border: 2px solid #8c7564;
  border-radius: 32px;
  overflow: hidden;

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

.demo-card-bgIHVG {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Кнопка */
.demo-btnIHVG {
  position: relative;
  z-index: 4;
  padding: 16px 32px;
  background: #e49256;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.47);
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

/* === IFRAME WRAP === */
.demo-iframe-wrapIHVG {
  display: none;
  width: 892px;
  height: 660px;
  margin: 40px auto 0;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 2px solid #8c7564;
}

/* фон под iframe */
.demo-iframe-bgIHVG {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: blur(4px);
}

.demo-iframeIHVG {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 4;
}

/* === TABLET === */
@media (max-width: 1024px) {
  .demo-cardIHVG {
    width: 100%;
    height: auto;
    padding: 80px 20px;
  }

  .demo-iframe-wrapIHVG {
    width: 100%;
    height: 520px;
  }

  .demo-iframeIHVG {
    height: 520px;
  }
}

/* === MOBILE === */
@media (max-width: 640px) {
  .demo-titleIHVG {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 28px;
  }

  .demo-cardIHVG {
    width: 100%;
    height: auto;
    padding: 60px 20px;
    border-radius: 24px;
  }

  .demo-btnIHVG {
    font-size: 20px;
    padding: 14px 26px;
  }

  .demo-iframe-wrapIHVG {
    width: 100%;
    height: 420px;
    border-radius: 24px;
  }

  .demo-iframeIHVG {
    height: 420px;
  }
}

/* info */

.infoIHVG {
  width: 100%;
  padding: 80px 20px;
  background: #14100d;
  text-align: center;
}

.info-listIHVG {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
  list-style: none;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.info-itemIHVG {
  background: #2e2321;
  border: 2px solid #8c7564;
  border-radius: 25px;

  padding: 40px 26px 48px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-itemIHVG img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 24px;
}

.info-itemIHVG h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  color: #fff;
  margin: 0 0 18px;
}

.info-itemIHVG p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: #adadad;
  margin: 0;
  max-width: 90%;
}

/* Tablet: 2×2 */
@media (max-width: 1024px) {
  .info-listIHVG {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
  .info-listIHVG {
    grid-template-columns: 1fr;
  }

  .info-itemIHVG {
    padding: 32px 22px 40px;
  }

  .info-itemIHVG img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .info-itemIHVG h2 {
    font-size: 20px;
    line-height: 26px;
  }
} /* ========== INTERACTIVE BASE ========== */
.interactiveIHVG {
  background: #14100d;
  padding: 24px 12px;
}

.interactive__cardIHVG {
  position: relative; /* ✅ главное! overlay будет поверх */
  overflow: hidden; /* ✅ блюр не вылезает */
  max-width: 1240px;
  margin: 0 auto;
  border: 2px solid #8c7564;
  border-radius: 24px;
  background: url('/interactive-bgIHVG.webp') center/cover no-repeat;
  padding: 40px 20px 32px;
  color: #fff;
}

.interactive__titleIHVG {
  margin: 0 0 8px;
  text-align: center;
  font-family: 'Exo 2';
  font-size: 34px;
  font-weight: 600;
}

.interactive__subtitleIHVG {
  margin: 0 0 24px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.interactive__meterIHVG {
  margin-bottom: 18px;
}

.interactive__meter-rowIHVG {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.interactive__trackIHVG {
  position: relative;
  height: 28px;
  border-radius: 28px;
  background: #1f1a18;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.interactive__fillIHVG {
  height: 100%;
  background: #e3a02f;
}

.interactive__dotsIHVG {
  position: absolute;
  inset: 0;
  list-style: none;
}

.interactive__dotsIHVG li {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}
.interactive__dotsIHVG li:nth-child(1) {
  left: 22%;
}
.interactive__dotsIHVG li:nth-child(2) {
  left: 40%;
}
.interactive__dotsIHVG li:nth-child(3) {
  left: 58%;
}
.interactive__dotsIHVG li:nth-child(4) {
  left: 76%;
}
.interactive__dotsIHVG li:nth-child(5) {
  left: 94%;
}

.interactive__questionIHVG {
  margin: 18px auto 14px;
  max-width: 1000px;
  text-align: center;
  font-family: 'Exo 2', sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.interactive__answersIHVG {
  max-width: 1040px;
  margin: 0 auto 24px;
  display: grid;
  gap: 14px;
  list-style: none;
}

.interactive__answerIHVG {
  display: block;
  padding: 18px 20px;
  border-radius: 14px;
  background: #1c1614;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.interactive__answerIHVG input {
  position: absolute;
  opacity: 0;
}

.interactive__answerIHVG input:checked + span,
.interactive__answerIHVG:has(input:checked) {
  box-shadow: inset 0 0 0 2px #6eb3ff, 0 0 0 2px rgba(110, 179, 255, 0.35);
}

.interactive__actionsIHVG {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.interactive__btnIHVG {
  height: 72px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-family: 'Exo 2', sans-serif;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
}

.interactive__btn--ghostIHVG {
  background: transparent;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.interactive__btn--primaryIHVG {
  background: #e49256;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
  margin-left: auto;
}
/* ===== Step 7 Overlay ===== */
.step7-overlayIHVG {
  position: absolute;
  inset: 0;
  z-index: 50;
  display: none;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);

  justify-content: center;
  align-items: center;

  border-radius: 24px;
  padding: 20px;
}

.step7-overlayIHVG.is-active {
  display: flex;
}

/* ===== Step 7 Card ===== */
.step7-cardIHVG {
  max-width: 820px;
  width: 100%;

  border-radius: 24px;

  padding: 60px 40px;
  text-align: center;

  color: #fff;
}

/* ===== Title (H1 style) ===== */
.step7-cardIHVG h2 {
  color: #fff;
  text-align: center;

  font-family: 'Exo 2', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;

  margin-bottom: 22px;
}

/* ===== Text ===== */
.step7-cardIHVG p {
  color: #fff;
  text-align: center;

  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;

  max-width: 620px;
  margin: 0 auto 36px auto;
}

/* ===== Button (NEW STYLE) ===== */
.step7-btnIHVG {
  display: inline-block;

  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.47);
  background: #e49256;

  padding: 16px 48px;

  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;

  text-decoration: none;
  transition: 0.2s ease;
}

.step7-btnIHVG:hover {
  opacity: 0.85;
}

/* disclaimer */

/* ===== Section ===== */
.a18plusIHVG {
  padding: 40px 16px;
  display: flex;
  justify-content: center;
  background-color: #14100d;
}

/* ===== Card ===== */
.a18plus__cardIHVG {
  max-width: 1240px;
  width: 100%;
  border-radius: 22px;
  border: 1px solid #8c7564; /* stroke */
  background: #2e2321; /* card background */
  padding: 40px 32px;
  text-align: center;
  color: #fff;
}

/* ===== Image ===== */
.a18plus__imgIHVG {
  width: 88px;
  height: auto;
  margin: 0 auto 16px auto;
  display: block;
}

/* ===== Title 18+ ===== */
.a18plus__titleIHVG {
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 8px;
}

/* ===== Subtitle: Disclaimer ===== */
.a18plus__subtitleIHVG {
  color: #adadad; /* text gray */
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 18px;
}

/* ===== Text Paragraph ===== */
.a18plus__textIHVG {
  color: #adadad; /* text gray */
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  max-width: 1020px;
  margin: 0 auto;
}

/* footer */
/* ========== FOOTER BASE ========== */
.footerIHVG {
  background: #15100e;
  padding: 60px 0 40px;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

/* ========== TOP SECTION (2 columns) ========== */
.footer__topIHVG {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
}

.footer__colIHVG {
  flex: 1;
  min-width: 0;
}

.footer__titleIHVG {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  color: #fff;
  margin-bottom: 20px;
}

.footer__textIHVG {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #adadad;
}

/* ========== PARTNER LOGOS ========== */
.footer__partnersIHVG {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin: 40px auto;
}

.partnerIHVG img {
  height: auto;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.partnerIHVG:hover img {
  opacity: 1;
}

/* ========== NAVIGATION (NEW STRUCTURE) ========== */
.footer__navIHVG {
  margin-top: 30px;
}

.footer__navIHVG > div {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer__navIHVG a {
  color: #e49256;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
  display: inline-block;
}

.footer__navIHVG a:hover {
  opacity: 0.75;
}

/* ========== TABLET (intermediate layout) ========== */
@media (max-width: 1200px) {
  .footer__topIHVG {
    gap: 40px;
  }

  .footer__titleIHVG {
    font-size: 22px;
  }
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .footer__topIHVG {
    flex-direction: column;
    gap: 40px;
  }

  .footer__partnersIHVG {
    flex-direction: column;
    gap: 20px;
  }

  .footer__navIHVG > div {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .footer__navIHVG a {
    font-size: 14px;
  }
}

/* game section */
.demo-2IHVG {
  background-color: #14100d;
  padding: 40px;
}

.demo-2IHVG .demo-titleIHVG {
  text-align: center;
}

/* TERMS BLOCK */
.terms {
  padding: 40px 16px;
  margin: 0 auto;
  background-color: #14100d;
}

/* Заголовки */
.terms h1,
.terms h2 {
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  margin: 0 0 20px;
}

.terms h1 {
  font-size: 34px;
  line-height: 38px;
}

.terms h2 {
  font-size: 24px;
  line-height: 28px;
}

/* Текст */
.terms p {
  color: #c1c1c1;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  margin: 0 0 16px;
}

/* Списки */
.terms ul {
  margin: 0 0 20px 18px;
  padding: 0;
}

.terms li {
  color: #c1c1c1;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 10px;
}

/* Адаптив */
@media (max-width: 768px) {
  .terms {
    padding: 28px 14px;
  }

  .terms h1 {
    font-size: 28px;
    line-height: 32px;
  }

  .terms h2 {
    font-size: 22px;
    line-height: 26px;
  }

  .terms p,
  .terms li {
    font-size: 15px;
    line-height: 20px;
  }
}
