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

body {
  font-family: 'Open Sans';
}

.container {
  max-width: 1280px;
  margin: 0 auto;

  width: 100%;
}

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

@font-face {
  font-family: 'Open Sans';
  src: url('/fontsATa9a/opensans-variablefontATa9a.woff2')
    format('woff2-variations');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

/* header */

.headerTopATa9a {
  background: #556bfc;
}

.headerTopTextATa9a {
  margin: 0;
  padding: 10px 0;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.headerMainATa9a {
  background: #000032;
}

.headerInnerATa9a {
  display: flex;
  align-items: center;
  height: 72px;
}

.logoATa9a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logoMainATa9a {
  height: 40px;
}

.logoCxATa9a {
  height: 34px;
}

.headerRightATa9a {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.navListATa9a a {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.headerActionsATa9a {
  display: flex;
  gap: 12px;
}

.btnLoginATa9a {
  padding: 8px 22px;
  border-radius: 100px;
  background: #556bfc;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.btnRegisterATa9a {
  padding: 8px 22px;
  border-radius: 100px;
  border: 2px solid #556bfc;
  background: rgba(85, 107, 252, 0.24);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.burgerATa9a {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 16px;
}

.burgerATa9a span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.burgerATa9a.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.burgerATa9a.open span:nth-child(2) {
  opacity: 0;
}
.burgerATa9a.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* MOBILE MENU */
.mobileMenuATa9a {
  position: fixed;
  inset: 0;
  background: #000032;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 80px 24px 24px;
  z-index: 999;
}

.mobileMenuATa9a.open {
  transform: translateX(0);
}

.mobileCloseATa9a {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

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

.mobileNavListATa9a li {
  margin-bottom: 20px;
}

.mobileNavListATa9a a {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .headerRightATa9a {
    display: none;
  }

  .burgerATa9a {
    display: flex;
    margin-left: auto;
  }

  .logoMainATa9a {
    height: 32px;
  }

  .logoCxATa9a {
    height: 26px;
  }
}

.containerATa9a {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.heroATa9a {
  padding: 80px 0;
  background-image: url('/imagesATa9a/hero-gradient-deskATa9a.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-innerATa9a {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-badgeATa9a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 100px;
  background: #fff;
  font-family: 'Open Sans';
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 24px;
}

.hero-titleATa9a {
  font-family: 'Open Sans';
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}

.hero-textATa9a {
  font-family: 'Open Sans';
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 32px;
}

.hero-actionsATa9a {
  display: flex;
  gap: 16px;
}

.hero-btnATa9a {
  height: 52px;
  width: 100%;
  padding: 0 28px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans';
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hero-btn--primaryATa9a {
  background: #fff;
  color: #556bfc;
}

.hero-btn--secondaryATa9a {
  border: 2px solid #fff;
  background: #3dc0ee;
  color: #fff;
}

.hero-timerATa9a {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
}

.timer-titleATa9a {
  font-family: 'Open Sans';
  font-size: 24px;
  font-weight: 700;
  color: #000032;
}

.timer-dateATa9a {
  font-family: 'Open Sans';
  font-size: 16px;
  color: #000032;
  margin-bottom: 20px;
}

.timer-gridATa9a {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
  max-width: 409px;
}

.timer-itemATa9a {
  padding: 8px;
  border-radius: 8px;
  background: radial-gradient(
    72.24% 72.24% at 50% 27.76%,
    #111178 0%,
    #09094b 100%
  );
  text-align: center;
}

.timer-numATa9a {
  font-family: 'Open Sans';
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.timer-labelATa9a {
  font-family: 'Open Sans';
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.timer-descATa9a {
  font-family: 'Open Sans';
  font-size: 14px;
  color: #000032;
  margin-bottom: 20px;
  max-width: 409px;
}

.timer-btnATa9a:hover {
  background-position: right center;
}

.timer-btnATa9a {
  height: 52px;
  width: 409px;
  border-radius: 100px;
  border: 2px solid #fff;

  background-image: linear-gradient(
    to right,
    #f6d365 0%,
    #fda085 51%,
    #f6d365 100%
  );
  background-size: 200% auto;
  background-position: left center;

  font-family: 'Open Sans';
  font-size: 14px;
  font-weight: 700;
  color: #000032;

  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  transition: background-position 0.35s ease;
}

.timer-catATa9a {
  position: absolute;
  right: -20px;
  bottom: -9px;
  width: 180px;
}

/* TABLET */
@media (max-width: 1199px) {
  .hero-innerATa9a {
    grid-template-columns: 1fr;
  }

  .hero-timerATa9a {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .heroATa9a {
    padding: 40px 0;
    background-image: url('/imagesATa9a/hero-gradient-mbATa9a.webp');
  }

  .hero-titleATa9a {
    font-size: 32px;
  }

  .hero-textATa9a {
    font-size: 16px;
  }

  .hero-actionsATa9a {
    flex-direction: column;
  }

  .timer-gridATa9a {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .timer-catATa9a {
    display: none;
  }

  .hero-badgeATa9a {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .timer-numATa9a {
    font-size: 24px;
  }
  .timer-labelATa9a {
    font-size: 12px;
  }

  .timer-btnATa9a {
    width: 100%;
  }
}

.tiersATa9a {
  padding: 100px 20px;
  background: #000032;
}

.tiersATa9a__container {
  max-width: 1200px;
  margin: 0 auto;
}

.tiersATa9a__head {
  text-align: center;
  margin-bottom: 60px;
}

.tiersATa9a__title {
  color: #fff;
  font-family: 'Open Sans';
  font-size: 32px;
  font-weight: 700;
}

.tiersATa9a__title span {
  color: #556bfc;
}

.tiersATa9a__subtitle {
  margin-top: 12px;
  color: #fff;
  font-family: 'Open Sans';
  font-size: 15px;
  font-weight: 400;
}

.tiersATa9a__list {
  display: flex;
  gap: 32px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tierCardATa9a {
  flex: 1 1 0;
  max-width: 410px;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid #455ca8;
  background: radial-gradient(
    72.24% 72.24% at 50% 27.76%,
    #111178 0%,
    #09094b 100%
  );
  box-shadow: 0 0 10px rgba(140, 140, 255, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tierCardATa9a:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(140, 140, 255, 0.45);
}

.tierCardATa9a__name {
  color: #fff;
  font-family: 'Open Sans';
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.tierCardATa9a__price {
  color: #fff;
  font-family: 'Open Sans';
  font-size: 36px;
  font-weight: 700;
}

.tierCardATa9a__meta {
  margin-top: 6px;
  color: #8d8d8d;
  font-family: 'Open Sans';
  font-size: 15px;
}

.tierCardATa9a__features {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  width: 100%;
}

.tierCardATa9a__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Open Sans';
  font-size: 15px;
  margin-bottom: 12px;
}

.tierCardATa9a__features li::before {
  content: '';
  width: 24px;
  height: 24px;
  background: url('/imagesATa9a/check-iconATa9a.webp') no-repeat center /
    contain;
}

.tierCardATa9a__btn {
  margin-top: auto;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid #556bfc;
  color: #fff;
  font-family: 'Open Sans';
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
  width: 100%;
  text-align: center;
}

.tierCardATa9a__btn:hover {
  background: #556bfc;
}

.tierCardATa9a__btn--active {
  background: #556bfc;
}

.tierCardATa9a--popular {
  position: relative;
  border-radius: 30px;
  border: 1px solid #455ca8;
  background: radial-gradient(
    72.24% 72.24% at 50% 27.76%,
    #111178 0%,
    #09094b 100%
  );
  box-shadow: 0 0 15px 0 rgba(254, 210, 37, 0.6);
}

.tierCardATa9a__badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 14px;
  border-radius: 0 30px 0 30px;
  background: linear-gradient(90deg, #fed225 0%, #fab917 50.48%, #f6a009 100%);
  color: #000032;
  font-family: 'Open Sans';
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .tiersATa9a__list {
    gap: 24px;
  }

  .tierCardATa9a {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .tiersATa9a__list {
    flex-direction: column;
    align-items: center;
  }

  .tierCardATa9a {
    max-width: 100%;
  }
}

.howWorksATa9a {
  padding: 100px 20px;
  background: #000032;
}

.howWorksATa9a__container {
  max-width: 1200px;
  margin: 0 auto;
}

.howWorksATa9a__head {
  text-align: center;
  margin-bottom: 60px;
}

.howWorksATa9a__title {
  color: #fff;
  font-family: 'Open Sans';
  font-size: 32px;
  font-weight: 700;
}

.howWorksATa9a__title span {
  color: #556bfc;
}

.howWorksATa9a__subtitle {
  margin-top: 12px;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 15px;
  font-weight: 400;
}

.howWorksATa9a__list {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.howCardATa9a {
  flex: 1 1 0;
  max-width: 360px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid #556bfc;
  background: radial-gradient(
    72.24% 72.24% at 50% 27.76%,
    #111178 0%,
    #09094b 100%
  );
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.howCardATa9a:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(85, 107, 252, 0.45);
}

.howCardATa9a__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 100px;
  background: #556bfc;
  color: #fff;
  font-family: 'Open Sans';
  font-size: 24px;
  font-weight: 700;
}

.howCardATa9a__title {
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 24px;
  font-weight: 700;
}

.howCardATa9a__text {
  color: #fff;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1024px) {
  .howWorksATa9a__list {
    gap: 24px;
  }

  .howCardATa9a {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .howWorksATa9a__list {
    flex-direction: column;
    align-items: center;
  }

  .howCardATa9a {
    max-width: 100%;
    transform: none;
  }

  .howCardATa9a:hover {
    transform: scale(1.03);
  }
}

.impactSectionATa9a {
  padding: 80px 20px;
  background: #000032;
}

.impactInnerATa9a {
  max-width: 1200px;
  margin: 0 auto;
}

.impactTitleATa9a {
  color: #fff;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.impactTitleATa9a span {
  color: #556bfc;
}

.impactDescATa9a {
  color: #fff;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 15px;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 48px;
}

.impactListATa9a {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.impactItemATa9a {
  border-radius: 30px;
  background: #09094b;
  padding: 20px;
  text-align: center;
}

.impactImgATa9a {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 20px;
  display: block;
}

.impactValueATa9a {
  color: #fff;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.impactLabelATa9a {
  color: #fff;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 15px;
  font-weight: 400;
}

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

@media (max-width: 640px) {
  .impactSectionATa9a {
    padding: 60px 16px;
  }

  .impactTitleATa9a {
    font-size: 26px;
  }

  .impactDescATa9a {
    font-size: 14px;
    margin-bottom: 36px;
  }

  .impactListATa9a {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.participantsATa9a {
  padding: 80px 20px;
  background: #000032;
}

.participants-innerATa9a {
  max-width: 1180px;
  margin: 0 auto;
}

.participants-titleATa9a {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.participants-titleATa9a span {
  color: #556bfc;
}

.participants-descATa9a {
  max-width: 720px;
  margin: 0 auto 48px;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
}

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

.participant-cardATa9a {
  position: relative;
  padding: 20px;
  border-radius: 30px;
  border: 1px solid #556bfc;

  background: radial-gradient(
    72.24% 72.24% at 50% 27.76%,
    #111178 0%,
    #09094b 100%
  );

  box-shadow: 0 6px 10px rgba(85, 107, 252, 0.25),
    0 0 6px rgba(85, 107, 252, 0.15);

  cursor: pointer;

  transition: transform 0.35s cubic-bezier(0.155, 1.105, 0.295, 1.12),
    box-shadow 0.35s cubic-bezier(0.155, 1.105, 0.295, 1.12);
}

.participant-cardATa9a:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 26px rgba(85, 107, 252, 0.45),
    0 10px 14px rgba(0, 0, 0, 0.25);
}

.participant-amountATa9a {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;

  background: linear-gradient(90deg, #fed225 0%, #fab917 50.48%, #f6a009 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.participant-nameATa9a {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.participant-locationATa9a {
  color: #8d8d8d;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 6px;
}

.participant-dateATa9a {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
}

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

  .participant-cardATa9a {
    margin: 10px;
  }
}

@media (max-width: 600px) {
  .participants-listATa9a {
    grid-template-columns: 1fr;
  }

  .participants-titleATa9a {
    font-size: 28px;
  }
}

.aboutATa9a {
  background: #000032;
  padding: 80px 0;
}

.aboutATa9a__top {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 44px;
}

.aboutATa9a__title {
  margin: 0 0 12px;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.aboutATa9a__title span {
  color: #556bfc;
}

.aboutATa9a__subtitle {
  margin: 0 auto 22px;
  max-width: 980px;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.9;
}

.aboutATa9a__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 420px;
  height: 56px;
  padding: 0 26px;
  border-radius: 100px;
  border: 2px solid #fff;
  background: linear-gradient(90deg, #fed225 0%, #fab917 50.48%, #f6a009 100%);
  color: #000032;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aboutATa9a__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
}

.aboutATa9a__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: stretch;
}

.aboutATa9a__text {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 420px;
}

.aboutATa9a__text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #556bfc;
  opacity: 1;
}

.aboutATa9a__textInner {
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.aboutATa9a__textInner p {
  margin: 0;
  color: #fff;
  font-family: 'Open Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.95;
}

.aboutATa9a__media {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.aboutATa9a__img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

/* TABLET */
@media (max-width: 1024px) {
  .aboutATa9a {
    padding: 70px 0;
  }

  .aboutATa9a__title {
    font-size: 34px;
  }

  .aboutATa9a__content {
    gap: 28px;
  }

  .aboutATa9a__cta {
    min-width: 360px;
  }

  .aboutATa9a__img {
    max-height: 520px;
  }
}

@media (max-width: 767px) {
  .aboutATa9a {
    padding: 56px 0;
  }

  .aboutATa9a__top {
    margin-bottom: 24px;
  }

  .aboutATa9a__title {
    font-size: 28px;
  }

  .aboutATa9a__cta {
    width: 100%;
    min-width: 0;
    height: 54px;
  }

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

  .aboutATa9a__media {
    order: 1;
  }

  .aboutATa9a__text {
    order: 2;
    min-height: auto;
  }

  .aboutATa9a__textInner {
    padding-left: 18px;
    gap: 14px;
  }

  .aboutATa9a__textInner p {
    font-size: 15px;
  }

  .aboutATa9a__img {
    max-height: 320px;
  }
}

.footerATa9a {
  background: #000032;
  padding: 70px 20px 60px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.footerATa9a__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footerATa9a__notice {
  border-radius: 30px;
  border: 1px dashed #556bfc;
  background: #09094b;
  padding: 34px 34px 28px;
  margin-bottom: 55px;
}

.footerATa9a__noticeTitle {
  margin: 0 0 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.footerATa9a__noticeText {
  margin: 0;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.footerATa9a__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 1.25fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 60px;
}

.footerATa9a__brandTop {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footerATa9a__brandTop img {
  max-width: 130px;
}

.footerATa9a__brandLogo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footerATa9a__brandName {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footerATa9a__brandText {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.95;
}

.footerATa9a__title {
  margin: 0 0 14px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

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

.footerATa9a__list li {
  margin: 0 0 10px;
}

.footerATa9a__link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}

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

.footerATa9a__contactItem {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.footerATa9a__contactItem img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-top: 2px;
}

.footerATa9a__hours {
  margin-top: 18px;
}

.footerATa9a__hoursTitle {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
}

.footerATa9a__hoursText {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.footerATa9a__lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 40px 0 55px;
}

.footerATa9a__lowerText {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.95;
}

.footerATa9a__resources {
  text-align: center;
}

.footerATa9a__resourcesTitle {
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 700;
}

.footerATa9a__logos {
  display: flex;
  justify-content: center;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.footerATa9a__logoItem {
  width: 140px;
  height: 56px;
  border-radius: 14px;
  background: rgba(9, 9, 75, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footerATa9a__logoItem img {
  max-height: 32px;
  max-width: 110px;
  object-fit: contain;
}

.footerATa9a__help {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .footerATa9a__grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footerATa9a__lower {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footerATa9a__logos {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .footerATa9a {
    padding: 60px 16px 50px;
  }

  .footerATa9a__notice {
    padding: 26px 18px 18px;
    margin-bottom: 40px;
  }

  .footerATa9a__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 40px;
  }

  .footerATa9a__title {
    font-size: 22px;
    text-align: left;
  }

  .footerATa9a__brandName {
    font-size: 12px;
  }

  .footerATa9a__logos {
    gap: 12px;
  }

  .footerATa9a__logoItem {
    width: 132px;
    height: 54px;
  }
}

.contactATa9a {
  background: #000032;
  padding: 80px 20px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.contact-containerATa9a {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-headATa9a {
  text-align: center;
  margin-bottom: 60px;
}

.contact-titleATa9a {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-titleATa9a span {
  color: #556bfc;
}

.contact-subtitleATa9a {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.9;
}

.contact-bodyATa9a {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.contact-formTitleATa9a {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-formATa9a input,
.contact-formATa9a textarea {
  width: 100%;
  border-radius: 10px;
  background: #09094b;
  border: none;
  padding: 14px 16px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 14px;
}

.contact-formATa9a textarea {
  min-height: 120px;
  resize: none;
}

.contact-formATa9a input::placeholder,
.contact-formATa9a textarea::placeholder {
  color: #bfc3ff;
}

.contact-btnATa9a {
  width: 100%;
  height: 48px;
  border-radius: 100px;
  background: linear-gradient(90deg, #fed225 0%, #fab917 50%, #f6a009 100%);
  border: none;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
}

.contact-noteATa9a {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 12px;
}

.contact-infoATa9a {
  margin-top: 30px;
  border-radius: 20px;
  background: #09094b;
  padding: 20px;
}

.contact-infoATa9a h2 {
  font-size: 16px;
  margin-bottom: 14px;
}

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

.contact-infoATa9a li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
}

.contact-infoATa9a img {
  width: 18px;
  margin-top: 2px;
}

.contact-rightATa9a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-rightATa9a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  padding: 20px;
}

@media (max-width: 900px) {
  .contact-bodyATa9a {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-titleATa9a {
    font-size: 28px;
  }

  .contact-rightATa9a img {
  }
}

.faqATa9a {
  background: #000032;
  padding: 80px 20px;
}

.faq-containerATa9a {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-titleATa9a {
  color: #fff;
  font-family: 'Open Sans';
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
}

.faq-listATa9a {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-itemATa9a {
  border-radius: 999px;
  background: radial-gradient(
    72.24% 72.24% at 50% 27.76%,
    #111178 0%,
    #09094b 100%
  );
  box-shadow: 0 0 14px rgba(85, 107, 252, 0.35);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-itemATa9a:hover {
  box-shadow: 0 0 20px rgba(85, 107, 252, 0.55);
}

.faq-questionATa9a {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 26px;
  cursor: pointer;

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

  color: #fff;
  font-family: 'Open Sans';
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.faq-arrowATa9a {
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-itemATa9a.active .faq-arrowATa9a {
  transform: rotate(-135deg);
}

.faq-answerATa9a {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition: max-height 0.35s ease, padding 0.35s ease;

  color: #fff;
  font-family: 'Open Sans';
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.faq-itemATa9a.active .faq-answerATa9a {
  max-height: 200px;
  padding: 0 26px 20px;
}

@media (max-width: 768px) {
  .faq-titleATa9a {
    font-size: 22px;
  }

  .faq-questionATa9a {
    font-size: 15px;
    padding: 18px 20px;
  }

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

.terms {
  padding: 70px 0;
  background-color: #000032;
  text-align: left;
}

.terms h1 {
  color: #fff;
  font-family: 'Open Sans';
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.terms h2 {
  margin: 20px 0 16px 0;
  color: #fff;
  font-family: 'Open Sans';
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.terms ul li {
  list-style-type: disc;
  margin-left: 20px;
}

.terms p,
a,
ul,
li {
  color: #fff;
  font-family: 'Open Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

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

/* popup */
.popup-overlayATa9a {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  display: none;
  z-index: 999;
}

.popupATa9a {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  max-width: calc(100vw - 32px);
  padding: 64px 40px;

  border-radius: 20px;
  border: 1px solid #c7d0ff;
  background: rgba(29, 47, 134, 0.46);
  backdrop-filter: blur(10.800000190734863px);

  display: none;
  z-index: 1000;
}

.popup-formATa9a {
  display: flex;
  flex-direction: column;
}

.popup-titleATa9a {
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.popup-textATa9a {
  margin: 20px 0 20px;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.popup-inputATa9a {
  height: 64px;
  padding: 0 28px;
  border-radius: 10px;
  background: #aeaee6;

  color: #000032;
  font-family: 'Open Sans';
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  border: none;
  outline: none;
}

.popup-inputATa9a + .popup-inputATa9a {
  margin-top: 16px;
}

.popup-btnATa9a {
  margin-top: 20px;
  height: 50px;

  border-radius: 100px;
  border: 2px solid #556bfc;
  background: rgba(85, 107, 252, 0.24);

  color: #fff;
  font-family: 'Open Sans';
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  cursor: pointer;
}

.popup-bottomATa9a {
  margin: 20px 0 0;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.popup-linkATa9a {
  background: transparent;
  border: none;
  padding: 0;
  margin-left: 8px;
  cursor: pointer;

  color: #556bfc;
  font-family: 'Open Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.popupATa9a.active,
.popup-overlayATa9a.active {
  display: block;
}

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

  .popup-titleATa9a {
    font-size: 26px;
  }

  .popup-textATa9a {
    font-size: 14px;
  }

  .popup-inputATa9a {
    height: 58px;
    padding: 0 20px;
  }

  .popup-bottomATa9a,
  .popup-linkATa9a {
    font-size: 15px;
  }
}

.cookieATa9a {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999;

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

  padding: 20px 32px;

  border-top: 1px solid #455ca8;
  border-bottom: 1px solid #455ca8;
  background: radial-gradient(
    72.24% 72.24% at 50% 27.76%,
    #111178 0%,
    #09094b 100%
  );
  box-shadow: 0 0 10px 0 rgba(140, 140, 255, 0.4);
}

.cookie-textATa9a {
  margin: 0;
  color: #fff;
  font-family: 'Open Sans';
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 900px;
}

.cookie-linkATa9a {
  color: #8fa3ff;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-btnATa9a {
  flex-shrink: 0;
  padding: 14px 36px;

  border-radius: 999px;
  border: none;
  cursor: pointer;

  border-radius: 100px;
  border: 2px solid #fff;
  background: linear-gradient(90deg, #fed225 0%, #fab917 50.48%, #f6a009 100%);
  color: #000032;

  font-family: 'Open Sans';
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .cookieATa9a {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-btnATa9a {
    width: 100%;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}
