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

/* =========================
   LATO
========================= */
@font-face {
  font-family: 'Lato';
  src: url('/assets/fontsKIMF/lato-regularKIMF.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('/assets/fontsKIMF/lato-boldKIMF.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================
     POPPINS
  ========================= */
@font-face {
  font-family: 'Poppins';
  src: url('/assets/fontsKIMF/poppins-regularKIMF.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fontsKIMF/poppins-boldKIMF.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  background-image: url('/assets/imagesKIMF/bg-starKIMF.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.container {
  max-width: 1240px;
  padding: 0 16px;
  margin: auto;
}
.headerKIMF {
  background: #1d181b;
  position: relative;
}

.header-innerKIMF {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}

.logoKIMF {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-width: 0;
}

.logo-iconKIMF {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.logo-textKIMF {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.logo-accentKIMF {
  color: #ff9500;
}

.navKIMF {
  display: flex;
}

.nav-listKIMF {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-linkKIMF {
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.header-actionsKIMF {
  display: flex;
  gap: 14px;
}

.btn-loginKIMF {
  padding: 15px 20px;
  border-radius: 30px;
  border: 1px solid #ff9500;
  color: #ff7900;
  font-family: Poppins;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.btn-signupKIMF {
  padding: 15px 20px;
  border-radius: 30px;
  background: radial-gradient(
    76.21% 89.33% at 4.81% -10.17%,
    #ff9500 0%,
    #ff7900 41.09%,
    #c05000 100%
  );
  color: #fff;
  font-family: Poppins;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

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

.burgerKIMF span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

.mobile-menuKIMF {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #1d181b;
}

.mobile-menuKIMF.open {
  display: block;
  z-index: 1;
}

.mobile-navKIMF {
  list-style: none;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-navKIMF a {
  color: #fff;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .navKIMF {
    display: none;
  }

  .burgerKIMF {
    display: flex;
  }

  .header-innerKIMF {
    flex-wrap: wrap;
    row-gap: 14px;
  }

  .logo-textKIMF {
    font-size: 15.942px;
  }

  .header-actionsKIMF {
    width: 100%;
    order: 3;
    gap: 12px;
  }

  .btn-loginKIMF,
  .btn-signupKIMF {
    flex: 1;
    padding: 12px 16px;
    font-size: 20px;
    text-align: center;
  }
}

/* hero */

.heroKIMF {
  background: url('/assets/imagesKIMF/hero-gradientKIMF.webp') lightgray 50% / cover
    no-repeat;
  padding: 80px 0;
  overflow: hidden;
  padding-bottom: 0;
}

.hero-innerKIMF {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.hero-contentKIMF {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badgeKIMF {
  align-self: center;
  padding: 10px 16px;
  border-radius: 20px;
  background: #69366e;
  backdrop-filter: blur(3px);
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-titleKIMF {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 52px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.hero-subtitleKIMF {
  color: #fff;
  font-family: Poppins;
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.hero-subtitleKIMF span {
  color: #fdc72a;
}

.hero-descKIMF {
  color: #fff;
  font-family: Poppins;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
}

.hero-timerKIMF {
  display: flex;
  gap: 24px;
  padding: 20px 28px;
  border-radius: 50px;
  margin-bottom: 10px;
  width: fit-content;
}

.timer-itemKIMF {
  text-align: center;
}

.timer-number {
  padding: 10px;
  border-radius: 50px;
  background: #69366e;
}

.timer-itemKIMF span {
  display: block;
  color: #fff;
  font-family: Poppins;
  font-size: 36px;
  font-weight: 500;
  line-height: 120%;
}

.timer-itemKIMF small {
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

.hero-btnKIMF {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 32px;
  border-radius: 30px;
  background: radial-gradient(
    76.21% 89.33% at 4.81% -10.17%,
    #ff9500 0%,
    #ff7900 41.09%,
    #c05000 100%
  );
  color: #fff;
  font-family: Poppins;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
  width: 100%;
  max-width: 413px;
  margin-bottom: 40px;
}

.hero-imageKIMF {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-imageKIMF img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .hero-innerKIMF {
    flex-direction: column;
  }

  .hero-imageKIMF {
    align-items: flex-end;
  }
}

@media (max-width: 768px) {
  .hero-titleKIMF {
    font-size: 36px;
  }

  .hero-subtitleKIMF {
    font-size: 28px;
  }

  .hero-descKIMF {
    font-size: 18px;
  }

  .hero-timerKIMF {
    gap: 16px;
    padding: 16px 20px;
  }

  .timer-itemKIMF span {
    font-size: 28px;
  }
  .hero-innerKIMF {
    gap: 0;
  }
}

.packsKIMF {
  padding: 80px 0;
}

.packs-titleKIMF {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}

.packs-titleKIMF::after {
  content: '';
  display: block;
  max-width:  431px;
  height: 5px;
  background: #ef0000;
  margin: 12px auto 0;
  border-radius: 3px;
}

.packs-descKIMF {
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 4px #000;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 40px;
}

.packs-listKIMF {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pack-cardKIMF {
  border-radius: 10px;
  border: 2px solid #ff9500;
  background: #1d181b;
  padding: 24px;
}

.pack-titleKIMF {
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 4px #000;
  font-family: Poppins;
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 20px;
}

.pack-infoKIMF {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.pack-pillKIMF {
  width: 129px;
  padding: 20px;
  border-radius: 50px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.pack-pillKIMF strong {
  color: #ff9500;
  font-family: Poppins;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
}

.pack-pillKIMF span {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

.pack-chipKIMF {
  width: 129px;
  height: 144px;
  margin-left: 40px;
}

.pack-btnKIMF {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  border-radius: 30px;
  background: radial-gradient(
    76.21% 89.33% at 4.81% -10.17%,
    #ff9500 0%,
    #ff7900 41.09%,
    #c05000 100%
  );
  color: #fff;
  font-family: Poppins;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
  width: 100%;
}

@media (max-width: 1031px) {
  .packsKIMF {
    padding: 48px 0;
  }

  .packs-titleKIMF {
    font-size: 22px;
  }

  .packs-titleKIMF::after {
    width: 90px;
    height: 4px;
  }

  .packs-descKIMF {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .pack-cardKIMF {
    padding: 16px;
  }

  .pack-titleKIMF {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .pack-infoKIMF {
    gap: 10px;
    margin-bottom: 16px;
  }

  .pack-pillKIMF {
    width: 104px;
    padding: 14px;
    border-radius: 40px;
    margin-right: 0;
  }

  .pack-pillKIMF strong {
    font-size: 24px;
  }

  .pack-pillKIMF span {
    font-size: 11px;
  }

  .pack-chipKIMF {
    width: 104px;
    height: auto;
    margin-left: 12px;
  }

  .pack-btnKIMF {
    height: 48px;
    font-size: 20px;
  }
}

@media (max-width: 705px) {
  .packs-listKIMF {
    grid-template-columns: 1fr;
  }
  .packsKIMF {
    padding: 48px 0;
  }

  .packs-titleKIMF {
    font-size: 22px;
  }

  .packs-titleKIMF::after {
    width: 90px;
    height: 4px;
  }

  .packs-descKIMF {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .pack-cardKIMF {
    padding: 16px;
  }

  .pack-titleKIMF {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .pack-infoKIMF {
    gap: 10px;
    margin-bottom: 16px;
  }

  .pack-pillKIMF {
    width: 104px;
    padding: 14px;
    border-radius: 40px;
    margin-right: 0;
  }

  .pack-pillKIMF strong {
    font-size: 24px;
  }

  .pack-pillKIMF span {
    font-size: 11px;
  }

  .pack-chipKIMF {
    width: 104px;
    height: auto;
    margin-left: 12px;
  }

  .pack-btnKIMF {
    height: 48px;
    font-size: 20px;
  }
}
.contact-headKIMF {
  text-align: center;
  padding: 80px 0 40px;
}

.contact-titleKIMF {
  color: #fff;
  font-family: Poppins;
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  display: inline-block;
}

.contact-titleKIMF::after {
  content: '';
  display: block;
  max-width: 431px;
  height: 5px;
  background: #ef0000;
  margin: 12px auto 0;
  border-radius: 3px;
}

.contact-descKIMF {
  margin-top: 12px;
  color: #fff;
  text-shadow: 0 1px 4px #000;
  font-family: Poppins;
  font-size: 20px;
  line-height: 120%;
}

.contact-bodyKIMF {
  background: #1d181b;
  padding: 60px 0;
}

.contact-wrapperKIMF {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.contact-boxKIMF {
  flex: 1;
  max-width: 788px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 20px;
}

.contact-infoKIMF,
.contact-formKIMF {
  background: #e5e5e5;
  border-radius: 10px;
  padding: 24px;
}

.contact-infoKIMF {
  width: 300px;
  flex-shrink: 0;
}

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

.contact-infoKIMF li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  margin-bottom: 16px;
  align-items: start;
}

.contact-infoKIMF p {
  margin: 0;
  font-family: Poppins;
  font-size: 14px;
  line-height: 120%;
  word-break: break-word;
}

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

.contact-formKIMF {
  flex: 1;
}

.contact-formKIMF h3,
.contact-infoKIMF h3 {
  font-family: Poppins;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-formKIMF label {
  display: block;
  font-family: Poppins;
  font-size: 14px;
  margin-bottom: 12px;
}

.contact-formKIMF input,
.contact-formKIMF textarea {
  width: 100%;
  margin-top: 6px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  background: transparent;
  padding: 6px 0;
  font-family: Poppins;
  font-size: 12px;
}

.contact-formKIMF textarea {
  resize: none;
  height: 60px;
}

.contact-btnKIMF {
  margin-top: 16px;
  width: 100%;
  height: 48px;
  border-radius: 30px;
  border: none;
  background: radial-gradient(
    76.21% 89.33% at 4.81% -10.17%,
    #ff9500 0%,
    #ff7900 41.09%,
    #c05000 100%
  );
  color: #fff;
  font-family: Poppins;
  font-size: 20px;
  cursor: pointer;
}

.contact-successKIMF {
  display: none;
  margin-top: 14px;
  font-family: Poppins;
  font-size: 14px;
  color: #1b7f2a;
  text-align: center;
}

.contact-imageKIMF {
  width: 441px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.contact-imageKIMF img {
  width: 441px;
  height: 441px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .contact-wrapperKIMF {
    flex-direction: column;
    align-items: center;
  }

  .contact-boxKIMF {
    flex-direction: column;
    max-width: 100%;
  }

  .contact-infoKIMF,
  .contact-formKIMF {
    width: 100%;
  }

  .contact-imageKIMF {
    width: 100%;
  }
}

/* ===== FAQ BLOCK (DESKTOP FIRST) ===== */

.faqKIMF {
  padding: 80px 0;
  background: radial-gradient(circle at top, #2a1a14, #12090c);
}

.faq-headKIMF {
  text-align: center;
  margin-bottom: 40px;
}

.faq-titleKIMF {
  color: #fff;
  font-family: Poppins;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-titleKIMF::after {
  content: '';
  display: block;
  max-width: 431px;
  height: 4px;
  background: #ef0000;
  margin: 12px auto 0;
  border-radius: 3px;
}

.faq-descKIMF {
  margin-top: 12px;
  color: #fff;
  font-family: Poppins;
  font-size: 18px;
}

/* LAYOUT */
.faq-wrapperKIMF {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* LIST */
.faq-listKIMF {
  flex: 1;
  min-width: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-itemKIMF {
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 16px;

  background:
    linear-gradient(#201018, #201018) padding-box,
    linear-gradient(
      -241deg,
      rgba(255, 149, 0, 0.35) 0%,
      #201512 15%,
      #FF9500 100%
    ) border-box;

  border: 2px solid transparent;
  backdrop-filter: blur(3px);
}


.faq-itemKIMF h3 {
  margin: 0 0 6px;
  color: #ff9500;
  font-family: Lato;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}

.faq-itemKIMF p {
  color: #FFF;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
}

/* IMAGE — FIXED SIZE ON DESKTOP */
.faq-imageKIMF {
  width: 441px;
  height: 441px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.faq-imageKIMF img {
  width: 441px;
  height: 441px;
  object-fit: contain;
  display: block;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .faq-wrapperKIMF {
    flex-direction: column;
    align-items: center;
  }

  .faq-imageKIMF {
    width: 320px;
    height: 320px;
    margin-top: 24px;
  }

  .faq-imageKIMF img {
    width: 320px;
    height: 320px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .faq-titleKIMF {
    font-size: 22px;
  }

  .faq-descKIMF {
    font-size: 14px;
  }

  .faq-itemKIMF {
    padding: 16px;
  }

  .faq-itemKIMF h3 {
    font-size: 14px;
  }

  .faq-itemKIMF p {
    font-size: 13px;
  }

  .faq-imageKIMF {
    width: 240px;
    height: 240px;
  }

  .faq-imageKIMF img {
    width: 240px;
    height: 240px;
  }
}
.footerKIMF {
  background: radial-gradient(circle at top, #2a1a14, #12090c);
  padding: 60px 0 30px;
  color: #fff;
}

.footer-containerKIMF {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* LOGO */
.footer-logoKIMF {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logoIconKIMF {
  width: 32px;
}

.footer-logoTextKIMF {
  font-family: Poppins;
  font-size: 18px;
  color: #fff;
}

.footer-logoAccentKIMF {
  color: #ff9500;
}

/* TEXT */
.footer-textMainKIMF {
  font-family: Poppins;
  font-size: 18px;
  line-height: 120%;
}

/* NAV */
.footer-navKIMF ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
}

.footer-navKIMF a {
  color: #fff;
  text-shadow: 0 1px 4px #000;
  font-family: Poppins;
  font-size: 20px;
  text-decoration: none;
}

/* BOX */
.footer-boxKIMF {
  background: #2d1d25;
  border-radius: 10px;
  padding: 20px;
}

.footer-boxKIMF h3 {
  font-family: Poppins;
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-boxKIMF p {
  font-family: Poppins;
  font-size: 16px;
  text-shadow: 0 1px 1px rgba(0,0,0,.25);
}

/* RESPONSIBLE */
.footer-respKIMF h2 {
  font-family: "Poppins",sans-serif;
  font-size: 18px;
}

.footer-respKIMF p {
  font-family: Poppins;
  font-size: 16px;
  text-shadow: 0 1px 1px rgba(0,0,0,.25);
}

.footer-linksOrangeKIMF ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;

  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
}

.footer-linksOrangeKIMF a {
  color: #ff9500;
  text-shadow: 0 1px 4px #000;
  font-family: Poppins;
  font-size: 20px;
  text-decoration: none;
}

.footer-noteKIMF {
  font-family: Poppins;
  font-size: 16px;
  font-style: italic;
  text-shadow: 0 1px 1px rgba(0,0,0,.25);
}

/* PARTNERS */
.footer-partnersKIMF {
  width: 100%;
}

.footer-partnersListKIMF {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  align-items: center;
  justify-content: space-between; /* 🔥 ВАЖНО */
  width: 100%;
}

.footer-partnersItemKIMF {
  display: flex;
  align-items: center;
}

.footer-ageKIMF {
  font-family: Montserrat;
  font-size: 40px;
  font-weight: 700;
  color: #ff9500;
  text-shadow: 0 1px 4px #000;
}

.footer-partnersItemKIMF img {
  max-height: 36px;
  object-fit: contain;
  display: block;
}

/* BOTTOM */
.footer-bottomKIMF {
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-navKIMF ul,
  .footer-linksOrangeKIMF ul {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .footer-partnersListKIMF {
    flex-direction: column;
    gap: 24px;
  }
}



.terms{
  padding: 40px 0;
  color: #FFF;
text-shadow: 0 1px 4px #000;
font-family: "Poppins", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 120%; /* 24px */
}

.terms a{
  color: #FFF;
  text-shadow: 0 1px 4px #000;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
}

.terms h1:after {
  content: '';
  display: block;
 max-width: 431px;
  height: 5px;
  background: #ef0000;
  margin: 12px auto 0;
  border-radius: 3px;
}

.terms h1{
color: #FFF;
text-align: center;
font-family: "Poppins" ,sans-serif;
font-size: 28px;
font-style: normal;
font-weight: 700;
line-height: 120%; 
text-transform: uppercase;
margin-bottom: 30px;


}

.terms ul li, .terms li{
  list-style: disc;
  margin-left: 25px;
}


.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  opacity:0;
  pointer-events:none;
  transition:.25s;
  z-index:999;
}
.popup-overlay.active{
  opacity:1;
  pointer-events:auto;
}

.popup{
  opacity:0;
  pointer-events:none;
  transition:.25s;
  z-index:1000;
}
.popup.active{
  opacity:1;
  pointer-events:auto;
}

.popup-card{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:520px;
  max-width:92%;
  background:#fff;
  border-radius:10px;
  border:2px solid #ff9500;
  padding:22px 26px 20px;
}

.popup-close{
  position:absolute;
  top:10px;
  right:12px;
  border:none;
  background:none;
  font-size:28px;
  cursor:pointer;
  color:#000;
}

.popup-title{
  color:#000;
  text-align:center;
  font-family:Poppins, sans-serif;
  font-size:40px;
  font-weight:700;
  line-height:120%;
  text-transform:uppercase;
  margin:4px 0 10px;
}

.popup-subtitle{
  color:#151515;
  text-align:center;
  font-family:Poppins, sans-serif;
  font-size:24px;
  line-height:120%;
  margin:0 0 18px;
}

.popup-label{
  display:block;
  color:#151515;
  font-family:Poppins, sans-serif;
  font-size:14px;
  margin:0 0 10px;
}

.popup-input{
  width:100%;
  border:none;
  border-bottom:1px solid rgba(0,0,0,.35);
  padding:7px 0;
  margin-top:6px;
  font-family:Poppins, sans-serif;
  outline:none;
}

.popup-checkbox{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-family:Poppins, sans-serif;
  font-size:12px;
  color:#151515;
  margin:10px 0 14px;
}

.popup-checkbox a{
  color:#151515;
  text-decoration:underline;
}

.popup-bottomText{
  text-align:center;
  font-family:Poppins, sans-serif;
  font-size:12px;
  margin-top:10px;
  color:#151515;
}

.popup-linkBtn{
  border:none;
  background:none;
  cursor:pointer;
  color:#151515;
  text-decoration:underline;
  font-family:Poppins, sans-serif;
  font-size:12px;
  padding:0;
}

.popup-btn{
  width:100%;
  height:48px;
  border-radius:30px;
  border:none;
  background:linear-gradient(180deg,#ff9500 0%, #c05000 100%);
  color:#fff;
  font-family:Poppins, sans-serif;
  font-size:18px;
  cursor:pointer;
}

.popup-btnSmall{
  max-width:220px;
  margin:0 auto;
  display:block;
}

.popup-btnWide{
  width:280px;
  max-width:100%;
}

.popup-btn.outline{
  background:#fff;
  color:#000;
  border:1px solid #ff9500;
  text-align: center;
  padding: 10px;
}

.popup-cookie{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:22px;
  width:min(1120px,92vw);
  background:#fff;
  border-radius:10px;
  border:2px solid #ff9500;
  padding:18px 22px;
}

.popup-cookieInner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:28px;
}

.popup-titleLeft{
  text-align:left;
  margin:0 0 12px;
}

.popup-cookieDesc{
  margin:0;
  color:#151515;
  font-family:Poppins, sans-serif;
  font-size:18px;
  line-height:120%;
  max-width:520px;
}

.popup-cookieActions{
  display:flex;
  gap:20px;
  align-items:center;
}

@media (max-width:700px){
  .popup-card{
    width:340px;
    padding:18px;
  }
  .popup-title{font-size:28px;}
  .popup-subtitle{font-size:16px;}
  .popup-btn{height:44px;font-size:16px;}
  .popup-cookie{
    width:340px;
    bottom:14px;
    padding:18px;
  }
  .popup-cookieInner{
    flex-direction:column;
    align-items:stretch;
  }
  .popup-cookieDesc{
    font-size:14px;
    max-width:100%;
  }
  .popup-cookieActions{
    flex-direction:column;
    gap:12px;
  }
  .popup-btnWide{
    width:100%;
  }
}

@media (max-width:380px){
  .popup-card,
  .popup-cookie{
    width:92%;
  }
}
