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

/* Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

/* Set core body defaults */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0 auto;
  text-rendering: optimizeSpeed;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-color: #000000;
  color: #ffffff;
}

main {
  flex: 1;
  width: 100%;
}

a {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.content {
  max-width: 1360px;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* CSS Custom Properties */
:root {
  --purple-primary: #a363ff;
  --purple-hover: #7c3aed;
  --black: #000000;
  --text-white: #ffffff;
  --text-gray: #9ca3af;
}

.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

.loading .spinner {
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hero-section__section {
  position: relative;
  color: #ffffff;
  padding: 54px 40px 0;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: visible;
  justify-content: center;
}
@media (max-width: 1023px) {
  .hero-section__section {
    padding: 40px 36px 0;
  }
}
@media (max-width: 767px) {
  .hero-section__section {
    padding: 16px 24px 0;
  }
}

.hero-section__container {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: stretch;
  gap: 64px;
}
@media (max-width: 1023px) {
  .hero-section__container {
    gap: 36px;
  }
}
@media (max-width: 767px) {
  .hero-section__container {
    flex-direction: column;
    gap: 12px;
  }
}

.hero-section__content {
  width: 100%;
  display: flex;
  height: auto;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 0;
}
@media (max-width: 1023px) {
  .hero-section__content {
    padding: 28px 0;
  }
}
@media (max-width: 767px) {
  .hero-section__content {
    padding: 24px 0;
  }
}

.hero-section__logos {
  display: flex;
  gap: 38px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .hero-section__logos {
    gap: 12px;
    margin-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .hero-section__logos {
    margin-bottom: 32px;
  }
}

.hero-section__logo {
  display: block;
}

.hero-section__background {
  position: absolute;
  right: -282px;
  bottom: -154px;
  width: 1271px;
  height: 1042px;
  object-fit: cover;
  overflow: visible;
  z-index: -1;
}
@media (max-width: 1023px) {
  .hero-section__background {
    width: 715px;
    height: 584px;
    right: -158px;
    top: 224px;
  }
}
@media (max-width: 767px) {
  .hero-section__background {
    display: none;
  }
}

.hero-section__title {
  font-size: 42px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .hero-section__title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .hero-section__title {
    line-height: 30px;
    margin-bottom: 32px;
  }
}

.hero-section__subtext {
  width: 100%;
  margin-bottom: 40px;
  font-size: 28px;
  line-height: 34px;
}
@media (max-width: 1023px) {
  .hero-section__subtext {
    margin-bottom: 36px;
    font-size: 24px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .hero-section__subtext {
    margin-bottom: 32px;
  }
}

.hero-section__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .hero-section__features {
    gap: 10px;
    margin-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .hero-section__features {
    gap: 8px;
    margin-bottom: 32px;
  }
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  background-color: #a363ff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}
.feature-icon img,
.feature-icon svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.feature-icon svg {
  stroke: black;
}

.feature-text {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .feature-text {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .feature-text {
    font-size: 18px;
    line-height: 24px;
  }
}

.hero-section__footer-text {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .hero-section__footer-text {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .hero-section__footer-text {
    font-size: 22px;
    line-height: 26px;
  }
}

.commercial-form__section {
  width: 100%;
  max-width: 648px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 24px;
  border-radius: 15px;
  background: rgba(71, 71, 71, 0.5);
  backdrop-filter: blur(18px);
}
@media (max-width: 1023px) {
  .commercial-form__section {
    max-width: 100%;
  }
}
.commercial-form__section form {
  width: 100%;
}

.commercial-form__header-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 12px;
  gap: 12px;
}
@media (max-width: 1023px) {
  .commercial-form__header-container {
    padding: 0 10px;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .commercial-form__header-container {
    padding: 0 8px;
    gap: 8px;
  }
}

.commercial-form__form-header {
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .commercial-form__form-header {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .commercial-form__form-header {
    font-size: 24px;
    line-height: 28px;
  }
}

.commercial-form__form-sub {
  font-size: 16px;
  line-height: 22px;
}
@media (max-width: 1023px) {
  .commercial-form__form-sub {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .commercial-form__form-sub {
    font-size: 14px;
  }
}

.commercial-form__input-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1023px) {
  .commercial-form__input-group {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .commercial-form__input-group {
    gap: 16px;
  }
}

.commercial-form__input-field {
  position: relative;
}
.commercial-form__input-field label {
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  padding: 0 12px;
}
@media (max-width: 1023px) {
  .commercial-form__input-field label {
    font-size: 13px;
    line-height: 18px;
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .commercial-form__input-field label {
    font-size: 12px;
    line-height: 16px;
    padding: 0 8px;
  }
}
.commercial-form__input-field input {
  width: 100%;
  background-color: #141616;
  border: 1px solid transparent;
  padding: 12px;
  border-radius: 4px;
  color: #ffffff;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .commercial-form__input-field input {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .commercial-form__input-field input {
    padding: 8px;
  }
}
.commercial-form__input-field input.commercial-form__field-error {
  border: 1px solid #ef4444;
  background-color: #1a0f0f;
}
.commercial-form__input-field input.commercial-form__field-error:focus {
  border-color: #ef4444;
}
.commercial-form__input-field input:focus {
  outline: none;
  border-color: #a363ff;
}

.commercial-form__error-message {
  display: block;
  position: absolute;
  color: #ef4444;
  font-size: 12px;
  line-height: 16px;
  margin-top: 4px;
  padding: 0 12px;
}
@media (max-width: 1023px) {
  .commercial-form__error-message {
    font-size: 11px;
    line-height: 15px;
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .commercial-form__error-message {
    font-size: 10px;
    line-height: 14px;
    padding: 0 8px;
  }
}

.commercial-form__divider {
  width: 100%;
  background: #232525;
  height: 2px;
  margin: 24px 0;
}
@media (max-width: 1023px) {
  .commercial-form__divider {
    margin: 20px 0;
  }
}
@media (max-width: 767px) {
  .commercial-form__divider {
    margin: 16px 0;
  }
}

.commercial-form__checkbox-group {
  padding: 0 12px;
  margin-bottom: 24px;
}
.commercial-form__checkbox-group .commercial-form__error-message {
  margin-top: 2px;
  padding: 0;
}

.commercial-form__checkbox-group-label {
  display: block;
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 22px;
}
@media (max-width: 1023px) {
  .commercial-form__checkbox-group-label {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .commercial-form__checkbox-group-label {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 18px;
  }
}

.commercial-form__checkbox-row {
  display: flex;
  gap: 24px;
}

.commercial-form__custom-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 16px;
  line-height: 22px;
}
@media (max-width: 1023px) {
  .commercial-form__custom-checkbox {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .commercial-form__custom-checkbox {
    font-size: 14px;
  }
}

.commercial-form__submit-btn {
  width: 100%;
  background-color: #a363ff;
  color: #ffffff;
  border: none;
  padding: 8px 24px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  transition: background-color 0.3s;
}
@media (max-width: 767px) {
  .commercial-form__submit-btn {
    font-size: 14px;
    line-height: 22px;
  }
}
.commercial-form__submit-btn:hover {
  background-color: #7c3aed;
}
.commercial-form__submit-btn.loading .commercial-form__btn-text {
  display: none;
}

.commercial-form__recaptcha-wrapper {
  width: 100%;
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .commercial-form__recaptcha-wrapper {
    padding: 0 10px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .commercial-form__recaptcha-wrapper {
    padding: 0 8px;
    margin-bottom: 16px;
  }
}
.commercial-form__recaptcha-wrapper .g-recaptcha {
  display: inline-block;
}
.commercial-form__recaptcha-wrapper .g-recaptcha > div {
  display: inline-block;
}
.commercial-form__recaptcha-wrapper .g-recaptcha:focus-within {
  border-color: #a363ff;
  outline: none;
}

.commercial-form__validation-summary {
  display: block;
  position: absolute;
  color: #ef4444;
  font-size: 12px;
  line-height: 16px;
  padding: 0 12px;
}
@media (max-width: 1023px) {
  .commercial-form__validation-summary {
    font-size: 11px;
    line-height: 15px;
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .commercial-form__validation-summary {
    font-size: 10px;
    line-height: 14px;
    padding: 0 8px;
  }
}
.commercial-form__validation-summary ul {
  list-style-type: none;
}

.commercial-form__disclaimer {
  font-size: 11px;
  line-height: 16px;
  margin-top: 16px;
}
@media (max-width: 1023px) {
  .commercial-form__disclaimer {
    font-size: 10px;
    line-height: 14px;
  }
}
@media (max-width: 767px) {
  .commercial-form__disclaimer {
    font-size: 9px;
  }
}

.brand-carousel__section {
  display: flex;
  justify-content: center;
  overflow: hidden;
  background: #232525;
  padding: 64px 40px;
  margin-top: 40px;
}
@media (max-width: 1023px) {
  .brand-carousel__section {
    padding: 60px 36px;
  }
}
@media (max-width: 767px) {
  .brand-carousel__section {
    padding: 54px 24px;
  }
}

.brand-carousel__container {
  width: 100%;
}

.brand-carousel__header {
  font-size: 50px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 24px;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .brand-carousel__header {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .brand-carousel__header {
    font-size: 28px;
  }
}

.brand-carousel__subheader {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 32px;
  color: #f1f7f6;
}
@media (max-width: 1023px) {
  .brand-carousel__subheader {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .brand-carousel__subheader {
    font-size: 18px;
    line-height: 24px;
  }
}

.brand-carousel__wrapper {
  position: relative;
  width: 100%;
}

.brand-carousel__track {
  display: flex;
  gap: 64px;
  width: max-content;
}

.brand-carousel__item {
  flex-shrink: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px;
}
@media (max-width: 1023px) {
  .brand-carousel__item {
    height: 60px;
    margin: 20px;
  }
}
@media (max-width: 767px) {
  .brand-carousel__item {
    height: 48px;
    margin: 16px;
  }
}

.brand-logo {
  width: auto;
  object-fit: contain;
}

.our-brands-cards__section {
  display: flex;
  justify-content: center;
  padding: 24px 40px 12px;
  margin-top: 40px;
}
@media (max-width: 1023px) {
  .our-brands-cards__section {
    padding: 20px 36px 10px;
  }
}
@media (max-width: 767px) {
  .our-brands-cards__section {
    padding: 16px 24px 8px;
  }
}

.our-brands-cards__container {
  text-align: center;
}

.our-brands-cards__header {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .our-brands-cards__header {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .our-brands-cards__header {
    font-size: 28px;
    margin-bottom: 16px;
  }
}

.our-brands-cards__subheader {
  min-height: 84px;
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #f1f7f6;
}
@media (max-width: 1023px) {
  .our-brands-cards__subheader {
    min-height: 60px;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .our-brands-cards__subheader {
    min-height: 120px;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 16px;
  }
}

.our-brands-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .our-brands-cards__grid {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .our-brands-cards__grid {
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }
}

.our-brands-cards__card {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  padding-top: 37px;
  border-radius: 8px;
  border: 1px solid #5f6261;
  background: #000000;
  overflow: hidden;
}

.our-brands-cards__card-text {
  padding: 0 32px;
  margin-bottom: 28px;
}
@media (max-width: 1023px) {
  .our-brands-cards__card-text {
    padding: 0 28px;
  }
}
@media (max-width: 767px) {
  .our-brands-cards__card-text {
    padding: 0 24px;
  }
}

.our-brands-cards__logo {
  margin-bottom: 24px;
  height: 57px;
}
.our-brands-cards__logo img {
  max-height: 57px;
}

.our-brands-cards__image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.our-brands-cards__description {
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .our-brands-cards__description {
    font-size: 14px;
    line-height: 22px;
  }
}

.our-brands-cards__footer {
  font-size: 17px;
  line-height: 22px;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .our-brands-cards__footer {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .our-brands-cards__footer {
    font-size: 15px;
    line-height: 18px;
  }
}

.info-cards__section {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding: 0 40px;
}
@media (max-width: 1023px) {
  .info-cards__section {
    padding: 0 36px;
  }
}
@media (max-width: 767px) {
  .info-cards__section {
    padding: 0 32px;
  }
}

.info-cards__container {
  text-align: center;
  width: 100%;
}

.info-cards__header-container {
  padding: 24px 0 12px;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .info-cards__header-container {
    padding: 20px 0 10px;
    margin-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .info-cards__header-container {
    padding: 16px 0 8px;
    margin-bottom: 32px;
  }
}

.info-cards__header {
  font-size: 50px;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1023px) {
  .info-cards__header {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .info-cards__header {
    font-size: 28px;
  }
}

.info-cards__subheader {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  margin-top: 24px;
}
@media (max-width: 1023px) {
  .info-cards__subheader {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .info-cards__subheader {
    font-size: 18px;
    line-height: 24px;
  }
}

.info-cards__footer {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .info-cards__footer {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .info-cards__footer {
    font-size: 14px;
  }
}

.media-reach__section {
  display: flex;
  justify-content: center;
}

.media-reach__container {
  text-align: center;
  width: 100%;
}

.media-reach__grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .media-reach__grid {
    margin-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .media-reach__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
}

.media-reach__card {
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: space-between;
  height: 236px;
  padding: 24px;
  border-radius: 8px;
  background: #232525;
  transform: auto;
  transition: transform 0.1s ease;
}
@media (max-width: 1023px) {
  .media-reach__card {
    height: 218px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .media-reach__card {
    height: 136px;
    padding: 16px;
  }
}
.media-reach__card:hover {
  transform: translateY(-4px);
}

.media-reach__card-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media (max-width: 1023px) {
  .media-reach__card-title {
    font-size: 54px;
  }
}

.media-reach__card-description {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .media-reach__card-description {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .media-reach__card-description {
    font-size: 14px;
  }
}

.global-audience__section {
  display: flex;
  justify-content: center;
}

.global-audience__container {
  text-align: center;
  width: 100%;
}

.global-audience__grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .global-audience__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.global-audience__card {
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: space-between;
  height: 202px;
  padding: 24px;
  border-radius: 8px;
  background: #232525;
  transform: auto;
  transition: transform 0.1s ease;
}
@media (max-width: 1023px) {
  .global-audience__card {
    height: 248px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .global-audience__card {
    height: 208px;
    padding: 16px;
  }
}
.global-audience__card:hover {
  transform: translateY(-4px);
}

.global-audience__card-title {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 12px;
}
@media (max-width: 1023px) {
  .global-audience__card-title {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .global-audience__card-title {
    font-size: 22px;
    line-height: 26px;
  }
}

.global-audience__card-description {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .global-audience__card-description {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .global-audience__card-description {
    font-size: 14px;
  }
}

.cta-section__section {
  display: flex;
  justify-content: center;
  padding: 40px;
  margin-top: 40px;
}
@media (max-width: 1023px) {
  .cta-section__section {
    padding: 36px;
  }
}
@media (max-width: 767px) {
  .cta-section__section {
    padding: 32px;
  }
}

.cta-section__container {
  width: 100%;
  background: #232525;
  border-radius: 8px;
  text-align: center;
  margin: 0 auto;
  padding: 54px 40px;
}
@media (max-width: 1023px) {
  .cta-section__container {
    padding: 50px 36px;
  }
}
@media (max-width: 767px) {
  .cta-section__container {
    padding: 46px 32px;
  }
}

.cta-section__title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 32px;
}
@media (max-width: 1023px) {
  .cta-section__title {
    font-size: 32px;
    margin-bottom: 28px;
  }
}
@media (max-width: 767px) {
  .cta-section__title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}

.cta-section__description {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 32px;
  color: #f1f7f6;
}
@media (max-width: 1023px) {
  .cta-section__description {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 28px;
  }
}
@media (max-width: 767px) {
  .cta-section__description {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
  }
}

.cta-section__button {
  display: block;
  width: fit-content;
  background: #a363ff;
  color: #ffffff;
  padding: 8px 24px;
  margin: auto;
  border-radius: 4px;
  transition: background 0.3s;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .cta-section__button {
    font-size: 14px;
    line-height: 22px;
  }
}
.cta-section__button:hover {
  background: #7c3aed;
}

.products-services__section {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding: 0 40px;
}
@media (max-width: 1023px) {
  .products-services__section {
    padding: 0 36px;
  }
}
@media (max-width: 767px) {
  .products-services__section {
    padding: 0 32px;
  }
}

.products-services__container {
  width: 100%;
  text-align: center;
}

.products-services__header-container {
  padding: 24px 0 12px;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .products-services__header-container {
    padding: 20px 0 10px;
    margin-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .products-services__header-container {
    padding: 16px 0 8px;
    margin-bottom: 32px;
  }
}

.products-services__header {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .products-services__header {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .products-services__header {
    font-size: 28px;
  }
}

.products-services__subheader {
  font-size: 22px;
  line-height: 28px;
}
@media (max-width: 1023px) {
  .products-services__subheader {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .products-services__subheader {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 32px;
  }
}

.products-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1023px) {
  .products-services__grid {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .products-services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.products-services__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 452px;
  width: 100%;
  padding: 24px;
  border-radius: 4px;
  border: 2px solid #232525;
  gap: 20px;
  text-align: left;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 1023px) {
  .products-services__card {
    height: 290px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .products-services__card {
    height: 336px;
    padding: 16px;
  }
}

.products-services__card-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .products-services__card-title {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .products-services__card-title {
    font-size: 16px;
    line-height: 20px;
  }
}

.products-services__card-description {
  font-size: 16px;
  line-height: 22px;
}
@media (max-width: 1023px) {
  .products-services__card-description {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .products-services__card-description {
    font-size: 14px;
  }
}

.divider__section {
  display: flex;
  justify-content: center;
  width: 100%;
}

.divider__container {
  width: 100%;
  margin-top: 40px;
}

.divider__line {
  display: block;
  background: #232525;
  height: 2px;
  margin: 0;
  border: none;
}

.footer-section {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 40px;
  margin-top: auto;
}
@media (max-width: 1023px) {
  .footer-section {
    padding: 36px;
  }
}
@media (max-width: 767px) {
  .footer-section {
    padding: 32px;
  }
}

.footer-section__container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  font-size: 12px;
  line-height: 17px;
}
@media (max-width: 1023px) {
  .footer-section__container {
    font-size: 11px;
    line-height: 15px;
  }
}
@media (max-width: 767px) {
  .footer-section__container {
    align-items: flex-start;
    text-align: left;
    flex-direction: column;
    gap: 4px;
  }
}

.footer-section__info {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .footer-section__info {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .footer-section__info {
    align-items: flex-start;
    gap: 4px;
  }
}
.footer-section__info a {
  color: #a363ff;
}

.footer-section__copyright {
  text-align: left;
}

.footer-section__logos {
  display: flex;
  align-items: center;
  max-width: 182px;
  height: 100%;
  gap: 16px;
  justify-content: flex-end;
  margin-left: 12%;
}
@media (max-width: 1023px) {
  .footer-section__logos {
    width: 100%;
    max-width: 178px;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .footer-section__logos {
    max-width: 145px;
    justify-content: flex-start;
    gap: 12px;
  }
}

.footer-section__logo {
  display: block;
  align-items: flex-end;
}
@media (max-width: 1023px) {
  .footer-section__logo {
    justify-content: center;
  }
}
.footer-section__logo img {
  display: block;
}
.footer-section__logo a {
  display: block;
  cursor: pointer;
}

.thank-you__section {
  display: flex;
  justify-content: center;
  padding: 54px 40px;
}
@media (max-width: 1023px) {
  .thank-you__section {
    padding: 40px 36px;
  }
}
@media (max-width: 767px) {
  .thank-you__section {
    padding: 16px 24px;
  }
}

.thank-you__container {
  width: 100%;
  max-width: 1440px;
}

.thank-you__logos {
  display: flex;
  gap: 38px;
  padding-top: 32px;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .thank-you__logos {
    padding-top: 28px;
    margin-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .thank-you__logos {
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    margin-bottom: 8px;
  }
}

.thank-you__logo {
  display: block;
  width: min-content;
}

.thank-you__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px 0 80px;
}
@media (max-width: 1023px) {
  .thank-you__content {
    gap: 20px;
    padding: 20px 0 70px;
  }
}
@media (max-width: 767px) {
  .thank-you__content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 16px 0 36px;
  }
}

.thank-you__image {
  display: flex;
  justify-content: center;
}
.thank-you__image img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

.thank-you__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 1023px) {
  .thank-you__text {
    gap: 28px;
  }
}
@media (max-width: 767px) {
  .thank-you__text {
    gap: 24px;
  }
}

.thank-you__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1023px) {
  .thank-you__header {
    gap: 14px;
  }
}
@media (max-width: 767px) {
  .thank-you__header {
    gap: 12px;
  }
}

.thank-you__header-text {
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
}
@media (max-width: 1023px) {
  .thank-you__header-text {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .thank-you__header-text {
    font-size: 28px;
    line-height: 30px;
  }
}

.thank-you__subheader {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}
@media (max-width: 1023px) {
  .thank-you__subheader {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .thank-you__subheader {
    font-size: 16px;
    line-height: 20px;
  }
}

.thank-you__email {
  font-size: 17px;
  line-height: 22px;
}
@media (max-width: 1023px) {
  .thank-you__email {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .thank-you__email {
    font-size: 15px;
    line-height: 18px;
  }
}

.thank-you__info {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #f1f7f6;
}
@media (max-width: 1023px) {
  .thank-you__info {
    font-size: 13px;
    line-height: 18px;
  }
}
@media (max-width: 767px) {
  .thank-you__info {
    font-size: 12px;
    line-height: 16px;
  }
}

.thank-you__description {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}
@media (max-width: 1023px) {
  .thank-you__description {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .thank-you__description {
    font-size: 16px;
    line-height: 20px;
  }
}

.thank-you__divider {
  height: 1px;
  background-color: #232525;
  width: 100%;
}

/* Error Page Styles */
.error-page__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 32px;
}

.error-page__container {
  margin: auto;
  width: 100%;
}

/* Logos Top Section */
.error-page__logos {
  margin-bottom: 64px;
  display: flex;
  gap: 38px;
  align-items: center;
}
@media (max-width: 767px) {
  .error-page__logos {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

.error-page__logo-img {
  max-height: 65px;
  object-fit: contain;
}

.error-page__content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-top: 24px;
}
@media (max-width: 1023px) {
  .error-page__content {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .error-page__content {
    flex-direction: column;
    padding-top: 16px;
  }
}

/* Icon */
.error-page__icon {
  width: 668px;
  height: 417px;
}
@media (max-width: 1023px) {
  .error-page__icon {
    width: auto;
    height: 210px;
  }
}
@media (max-width: 767px) {
  .error-page__icon {
    height: 160px;
  }
}
.error-page__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Text Column */
.error-page__text-column {
  flex: 1;
}

.error-page__title {
  padding-top: 24px;
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 38px;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .error-page__title {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 14px;
  }
}
@media (max-width: 767px) {
  .error-page__title {
    padding-top: 0;
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 12px;
  }
}

.error-page__description {
  font-size: 20px;
  line-height: 24px;
  color: #f1f7f6;
  margin-bottom: 32px;
}
@media (max-width: 1023px) {
  .error-page__description {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .error-page__description {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 24px;
  }
}
.error-page__description a {
  color: #a363ff;
}

.error-page__code {
  font-size: 26px;
  line-height: 30px;
  color: #f1f7f6;
  margin-bottom: 32px;
}
@media (max-width: 1023px) {
  .error-page__code {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .error-page__code {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 0;
  }
}

/*# sourceMappingURL=main.css.map */
