@import url('https://fonts.googleapis.com/css2?family=TT+Firs+Neue:wght@400;500;700&display=swap');

@font-face {
  font-family: 'TT Firs Neue';
  src: url('fonts/TTFirsNeue-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'TT Firs Neue';
  src: url('fonts/TTFirsNeue-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'TT Firs Neue';
  src: url('fonts/TTFirsNeue-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

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

:root {
  --font: 'TT Firs Neue', 'Helvetica Neue', Arial, sans-serif;
  --color-white: #ffffff;
}

html,
body {
  width: 100%;
  font-family: var(--font);
  background: #04060B;
  color: var(--color-white);
  overflow-x: hidden;
}

/* HERO */

.hero {
  position: relative;
  width: 100%;
  min-height: unset;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #04060B;
}

.hero__container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
  z-index: 1;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 24, 40, 0) 84%, #101828 99.52%),
    linear-gradient(90deg, rgba(0, 0, 0, 0) 80%, #000000 100%);
  z-index: 2;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 3.5rem 4rem 0;
  width: 100%;
}

.hero__left {
  display: grid;
  grid-template-columns: auto auto;
  row-gap: 2rem;
  column-gap: 3rem;
  align-items: start;
}

.hero__nav {
  display: contents;
}

.hero__nav-btn {
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 6.25rem;
  color: var(--color-white);
  font-family: var(--font);
  font-size: clamp(0.8rem, 1.2vw, 1.2rem);
  font-weight: 400;
  padding: 0.5rem 3rem;
  cursor: pointer;
  transition: border-color 0.2s;
}

.hero__logo img {
  height: clamp(3rem, 3vw, 4rem);
  display: block;
}

.hero__meta {
  display: contents;
}

.hero__meta-label {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
  padding-top: 0.15rem;
  align-self: center;
}

.hero__logo {
  display: flex;
  align-items: flex-start;
}

.hero__meta-date {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.4;
}

.hero__meta-place {
  font-size: clamp(0.85rem, 1.2vw, 1.2rem);
  color: var(--color-white);
  line-height: 1.5;
  margin-top: 0.1rem;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 3rem 6rem;
}

.hero__title {
  font-size: clamp(3rem, 10vw, 10rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0;
}

.hero__subtitle {
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
  text-align: left;
  margin-left: auto;
  width: fit-content;
  margin-top: 1rem;
  margin-right: 25%;
}

/* PLATFORM */

.platform {
  position: relative;
  width: 100%;
  min-height: 100svh;
  background: #101828;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20rem 0rem 10rem 4rem;
  overflow: hidden;
}

.platform__badge {
  display: inline-block;
  border: 1px solid #166EFF;
  border-radius: 6.25rem;
  font-size: 36px;
  font-weight: 400;
  padding-top: 10px;
  padding-right: 60px;
  padding-bottom: 10px;
  padding-left: 60px;
  margin-bottom: 5rem;
  color: #166EFF;
  background-color: var(--color-white);
  width: fit-content;
}

.platform__text {
  position: relative;
  z-index: 1;
}

.platform__title {
  font-size: clamp(1.5rem, 8vw, 5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.platform__features {
  font-size: clamp(1.5rem, 3vw, 3.5rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-white);
}

.platform__note {
  margin-top: 5rem;
  background: #E3E8FF;
  padding: 2rem;
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: #101828;
}

.platform__note strong {
  font-weight: 600;
}

.platform__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.platform__image {
  position: static;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 5rem;
  width: 65%;
  align-self: flex-end;
  pointer-events: none;
}

.platform__image img {
  width: 100%;
  height: auto;
  display: block;
}

.invite__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin-right: 100px;
  align-self: flex-end;
}

.invite__item {
  color: var(--color-white);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.4;
  padding: 1.5rem 1.5rem 1.5rem 0;
  border-bottom: 1px solid #E3E8FF;
  width: calc(100% + 15px);
}

.invite__item:last-child {
  border-bottom: none;
}

/* DISCUSS */

.discuss {
  background: #E3E8FF;
  padding: 8rem 8rem;
}

.discuss__grid {
  display: flex;
  gap: 2rem;
}

.discuss__grid--1 {
  margin-bottom: 6rem;
  justify-content: space-between;
}

.discuss__grid--2 {
  justify-content: space-between;
  padding: 0 5rem;
  gap: 2rem;
}

.discuss__card {
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  min-width: 428px;
  min-height: 664px;
  max-width: 428px;
  max-height: 664px;
}

.discuss__card--1 {
  background: #212747;
  color: #fff;
}

.discuss__card--2 {
  background: #4058BE;
  color: #fff;
}

.discuss__card--3 {
  background: #263470;
  color: #fff;
}

.discuss__card--4 {
  background: #263470;
  color: #fff;
}

.discuss__card p {
  font-family: 'TT Firs Neue', sans-serif;
  font-weight: 400;
  font-size: 29px;
  line-height: 1.3;
  padding: 3rem 2rem 0;
  margin: 0;
  flex-shrink: 0;
}

.discuss__card strong {
  font-weight: 600;
}

.discuss__card img {
  width: 90%;
  display: block;
  border-radius: 20px;
  margin: 0 auto;
  margin-top: auto;
  flex-shrink: 0;
  padding-top: 50px;
  padding-right: 35px;
  padding-bottom: 50px;
  padding-left: 35px;
}

@media screen and (max-width: 1300px) {

  .discuss__grid--1 {
    margin-bottom: 5rem;
  }

  .discuss__grid--2 {
    padding: 0 3rem;
  }

  .discuss__card {
    min-width: 350px;
    min-height: 564px;
    max-width: 350px;
    max-height: 564px;
  }

  .discuss__card p {
    font-size: 25px;
    line-height: 1.3;
    padding: 3rem 2rem 0;
  }

  .discuss__card img {
    padding-top: 40px;
    padding-right: 25px;
    padding-bottom: 40px;
    padding-left: 25px;
  }

}

@media screen and (max-width: 1000px) {

  .discuss__grid--1 {
    margin-bottom: 4rem;
  }

  .discuss__grid--2 {
    padding: 0rem;
  }

  .discuss__card {
    min-width: 330px;
    min-height: 530px;
    max-width: 330px;
    max-height: 530px;
  }

  .discuss__card p {
    font-size: 25px;
    line-height: 1.3;
    padding: 3rem 2rem 0;
  }

  .discuss__card img {
    padding-top: 40px;
    padding-right: 25px;
    padding-bottom: 40px;
    padding-left: 25px;
  }
}

@media screen and (max-width: 900px) {

  .discuss {
    padding: 5rem 2rem 4rem;
  }

  .discuss__grid--1 {
    margin-bottom: 3rem;
  }

  .discuss__grid--2 {
    padding: 0rem;
  }

  .discuss__card {
    min-width: 300px;
    min-height: 600px;
    max-width: 300px;
    max-height: 600px;
  }

  .discuss__card p {
    font-size: 25px;
    line-height: 1.3;
    padding: 3rem 2rem 0;
  }

  .discuss__card img {
    padding-top: 30px;
    padding-right: 25px;
    padding-bottom: 30px;
    padding-left: 25px;
  }
}

@media screen and (max-width: 768px) {

  .discuss {
    padding: 4rem 1rem 4rem;
  }

  .discuss__grid--1 {
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .discuss__grid--2 {
    flex-direction: column;
    padding: 0;
  }

  .discuss__card {
    min-width: 100%;
    max-width: 100%;
    min-height: auto;
    max-height: none;
    border-radius: 16px;
  }

  .discuss__card img {
    padding: 15px 20px 25px;
    width: 85%;
  }
}

/* PRODUCTS */

.products {
  background: #E3E8FF;
  border: 8px solid rgba(255, 255, 255, 1);
  padding: 4rem;
  min-height: 60svh;
  padding-bottom: 20rem;
  padding-top: 15rem;
}

.products-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.products__title {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 400;
  color: #212747;
  line-height: 1.3;
  margin-bottom: 8rem;
  max-width: 600px;
}

.products__tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 2rem;
}

.products__tag {
  border: 0.5px solid #212747;
  border-radius: 40px;
  font-size: 32px;
  font-weight: 400;
  padding: 10px;
  color: #212747;
  text-align: center;
  background: var(--color-white);
  white-space: nowrap;
}

.products__tag--bold {
  font-weight: 600;
}

.products-container__title {
  margin-left: 5rem;
}

/* PROGRAM */

.program {
  background: #101828;
  padding: 10rem 4rem 8rem;
}

.program__title {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 3rem;
}

.program__date {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 8rem;
}

.program__date-brace {
  font-size: clamp(2rem, 6vw, 6rem);
  font-weight: 400;
  color: #166EFF;
  line-height: 1.2;
}

.program__date-sub {
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 400;
  color: #E3E8FF;
}

.program__body {
  display: flex;
  flex-direction: column;
}

.program__body>.program__row:first-of-type {
  margin-left: 24rem;
}

.program__full-divider {
  height: 1px;
  background: #E3E8FF;
  margin: 3rem 0;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.program__section {
  display: grid;
  grid-template-columns: 22rem 1fr;
  align-items: start;
  gap: 0 2rem;
}

.program__part-label {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: sticky;
  top: 2rem;
}

.program__part-badge {
  display: inline-block;
  border: 1px solid #E3E8FF;
  border-radius: 6.25rem;
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  font-weight: 400;
  padding: 1.5rem 5rem;
  color: #E3E8FF;
  width: fit-content;
  white-space: nowrap;
}

.program__part-title {
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  font-weight: 600;
  color: #166EFF;
  line-height: 1.3;
}

.program__section-rows {
  display: flex;
  flex-direction: column;
}

.program__row {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 2rem;
  padding: 3rem 0;
  align-items: center;
}

.program__divider {
  width: 100%;
  height: 1px;
  background: #E3E8FF;
}

.program__time {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  color: var(--color-white);
  white-space: nowrap;
}

.program__event-title {
  font-size: clamp(0.9rem, 1.3vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 0.1rem;
  color: #166EFF;
}

.program__event-post {
  font-size: clamp(0.7rem, 1.3vw, 1.1rem);
  font-weight: 400;
  margin-bottom: 0.1rem;
  color: #166EFF;
}

.program__event-desc {
  font-size: clamp(0.9rem, 1.3vw, 1.3rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.5;
}

/* CTA */

.cta {
  background: #101828;
  padding: 10rem 4rem 15rem;
}

.cta-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 72px;
  max-width: 1440px;
  margin: 0 auto;
}

.cta__card {
  background: #263470;
  border-radius: 1.5rem;
  border: 1px solid rgba(227, 232, 255, 1);
  width: 310px;
  height: 410px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem 2.5rem;
  position: relative;
  overflow: visible;
}

.cta__card--left {
  padding-top: 0;
  justify-content: flex-end;
  gap: 1.5rem;
  background: #263470;
}

.cta__card--right {
  justify-content: center;
  gap: 3rem;
  padding-top: 3rem;
  background: #212747;
}

.cta__image {
  position: relative;
  margin-top: -50px;
  width: 90%;
  flex-shrink: 0;
}

.cta__image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 2rem #1a6eff55);
}

.cta__circle {
  width: 162px;
  height: 162px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #166EFF;
}

.cta__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta__venue {
  font-size: clamp(1.1rem, 1.1vw, 1.3rem);
  font-weight: 400;
  color: #E3E8FF;
  text-align: center;
  line-height: 1.6;
}

.cta__btn {
  background: #166EFF;
  border: none;
  border-radius: 6.25rem;
  color: var(--color-white);
  font-family: var(--font);
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  font-weight: 500;
  padding: 0.8rem 2.5rem;
  margin-top: 2rem;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

.cta__btn:hover {
  filter: brightness(.95);
}

.footer img {
  width: 100%;
  display: block;
}

.mobile-header {
  display: none;
}

.mobile-hero-extras {
  display: none;
}

@media (max-width: 640px) {
  .cta__card--right .cta__btn {
    margin-top: 50px;
  }
}

@media (max-width: 1200px) {

  .program__section {
    grid-template-columns: 1fr;
  }

  .program__part-label {
    flex-direction: column;
    align-items: flex-start;
  }

  .program__section-rows {
    display: flex;
    flex-direction: column;
  }

  .program__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .program__body>.program__row:first-of-type {
    margin-left: 0;
  }

  .products {
    padding: 2rem;
    min-height: 60svh;
    padding-top: 10rem;
    padding-bottom: 15rem;
  }

  .products__title {
    font-size: 1.7rem;
    margin-bottom: 4rem;
  }

  .products__tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .products__tag {
    font-size: 1.2rem;
    padding: 0.75rem 2rem;
  }

  .products-container__title {
    margin-left: 0rem;
  }

}

@media (max-width: 768px) {
  .hero {
    min-height: unset;
    padding-bottom: 2rem;
  }

  .hero__bg::after {
    background:
      linear-gradient(180deg, rgba(16, 24, 40, 0) 83.65%, #101828 100%),
      linear-gradient(270deg, #04060B 0%, rgba(4, 6, 11, 0) 20%);
  }

  .invite__item {
    font-size: 17px;
  }

  .invite__list {
    margin-right: 15px;
  }
}

@media (max-width: 640px) {
  .mobile-header {
    display: flex;
    justify-content: flex-end;
    padding: 1.5rem;
    background: #101828;
  }

  .mobile-header img {
    height: clamp(2rem, 3vw, 3rem);
    display: block;
  }

  .hero__logo {
    display: none;
  }

  .hero__meta-info {
    display: none;
  }

  .hero__subtitle {
    display: none;
  }

  .hero__header {
    padding: 2rem 2rem 0;
  }

  .hero__left {
    row-gap: 1rem;
    column-gap: 2rem;
  }

  .hero__nav-btn {
    padding: 0.5rem 2rem;
  }

  .hero__content {
    padding: 4rem 2rem 6rem;
  }

  .platform {
    padding: 2rem 0rem 2rem 2rem;
  }

  .platform__badge {
    font-size: 17px;
    padding: 0.5rem 2rem;
    margin-bottom: 3rem;
  }

  .platform__bottom {
    flex-direction: column;
  }

  .platform__image {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    order: 1;
  }

  .platform__note {
    order: 2;
    margin-top: 1.5rem;
    margin-bottom: 4rem;
    width: calc(100% + 3rem);
    margin-left: -3rem;
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    text-align: left;
  }

  .mobile-hero-extras {
    display: block;
    margin-bottom: 4rem;
  }

  .mobile-hero-extras .hero__subtitle {
    display: block;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    color: var(--color-white);
    margin: 0;
    margin-bottom: 2rem;
    margin-top: 2rem;
  }

  .mobile-hero-extras .hero__meta-date {
    font-weight: 600;
    color: var(--color-white);
    font-size: 22px;
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .mobile-hero-extras .hero__meta-place {
    color: var(--color-white);
    font-size: 13px;
    line-height: 1.5;
  }

  .products {
    padding: 2rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    border: 2px solid rgba(255, 255, 255, 1);
  }

  .products__tags {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .products__tag {
    white-space: normal;
  }

  .program {
    padding: 5rem 2rem 8rem;
  }

  .program__date {
    margin-bottom: 4rem;
  }

  .program__body>.program__row:first-of-type {
    margin-left: 0;
  }

  .program__section {
    grid-template-columns: 1fr;
  }

  .program__part-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .program__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .cta {
    padding: 5rem 2rem 10rem;
  }

  .cta-container {
    flex-direction: column;
    align-items: center;
    gap: 100px;
  }

  .cta__card {
    width: 100%;
    max-width: 350px;
    padding: 0 2rem 2.5rem;
  }

  .cta__circle {
    margin-top: 1rem;
  }

  .hero__left {
    row-gap: 1rem;
    column-gap: 1rem;
  }

  .hero__nav-btn {
    padding: 0.5rem 1.5rem;
    margin-bottom: 1rem;
  }

  .hero__content {
    padding: 2rem 2rem 3rem;
  }

  .program__time {
    margin-bottom: 1rem;
  }

}

.reg-modal__inner {
  position: relative;
  background: #212747;
  border: 1px solid #E3E8FF;
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  margin: auto;
  font-family: var(--font);
  color: #fff;
  overflow-y: auto;
}

.reg-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.reg-modal__close:hover {
  opacity: 1;
}

.reg-modal__title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 2rem;
  padding-right: 2rem;
}

.reg-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reg-form__row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.reg-form__field {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.reg-form__label,
.reg-form__section-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: #E3E8FF;
  margin-bottom: 0.4rem;
}

.reg-form__section-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.5rem;
}

.reg-form__input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #E3E8FF;
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  padding: 0.5rem 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.reg-form__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.reg-form__input:focus {
  border-bottom-color: #166EFF;
}

.reg-form__input.is-error {
  border-bottom-color: #9933ff;
}

.reg-form__error {
  font-size: 0.78rem;
  color: #9933ff;
  margin-top: 0.3rem;
  display: none;
}

.reg-form__error.visible {
  display: block;
}

.reg-form__error--consent {
  margin-top: -1rem;
}

.reg-form__contact-toggle {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.reg-form__toggle-btn {
  background: transparent;
  border: 1.5px solid #E3E8FF;
  border-radius: 6.25rem;
  color: #E3E8FF;
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.5rem 1.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.reg-form__toggle-btn--active {
  border-color: #166EFF;
  background-color: #166EFF;
  color: var(--color-white);
}

.reg-form__contact-field {
  width: 100%;
}

.reg-form__checkboxes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reg-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #E3E8FF;
}

.reg-form__checkbox-box {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.05rem;
}

.reg-form__checkbox-box input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}

.reg-form__checkbox-custom {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border: 1.5px solid #E3E8FF;
  border-radius: 4px;
  background: transparent;
  transition: background 0.15s, border-color 0.15s;
}

.reg-form__checkbox-box input:checked+.reg-form__checkbox-custom {
  background: #166EFF;
  border-color: #166EFF;
}

.reg-form__checkbox-box input:checked+.reg-form__checkbox-custom::after {
  content: '';
  display: block;
  width: 6px;
  height: 11px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

.reg-form__checkbox-custom.is-checked {
  background-color: #166EFF;
  border-color: #166EFF;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7l4 4 6-6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
}

.reg-form__checkbox-custom.is-checked::after {
  display: none;
}

.reg-form__link {
  color: #2CC2FF;
  text-decoration: none;
}

.reg-form__link:hover {
  text-decoration: underline;
}

.reg-form__submit {
  background: #166EFF;
  border: none;
  border-radius: 6.25rem;
  color: #fff;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 2rem;
  cursor: pointer;
  width: 100%;
  transition: filter 0.2s;
  margin-top: 0.5rem;
}

.reg-form__submit:hover {
  filter: brightness(1.1);
}

.reg-form__disclaimer {
  font-size: 1rem;
  color: #E3E8FF;
  line-height: 1.5;
  text-align: left;
}


@media (max-width: 540px) {
  .reg-modal__inner {
    padding: 2.5rem 1.25rem 2rem;
    border-radius: 1rem;
    margin: 1rem auto;
  }

  .reg-form__row--2col {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .reg-modal__title {
    font-size: 1.35rem;
  }
}

.reg-form__checkbox-box .wpcf7-form-control-wrap,
.reg-form__checkbox-box .wpcf7-form-control,
.reg-form__checkbox-box .wpcf7-list-item {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
}

.reg-form__checkbox-box .wpcf7-list-item label {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.reg-form__checkbox-box input[type="checkbox"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #212747 inset;
  -webkit-text-fill-color: #ffffff;
  caret-color: #ffffff;
  transition: background-color 5000s ease-in-out 0s;
}

.wpcf7-not-valid-tip {
  color: #9933ff !important;
}

.anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

.reg-form__input-hidden {
  display: none !important;
}

.reg-form__contact-field {
    margin-bottom: 1.5rem;
}