/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

a {
  color: #a363ff;
  text-decoration: none;
}

.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 {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !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;
}

.hero-section__section {
  position: relative;
  color: #ffffff;
  padding: 54px 40px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: visible;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 64px;
}
@media (max-width: 1023px) {
  .hero-section__container {
    gap: 36px;
  }
}
@media (max-width: 767px) {
  .hero-section__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}

.hero-section__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 38px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      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;
  -o-object-fit: cover;
     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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.feature-icon {
  background-color: #a363ff;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.feature-icon img,
.feature-icon svg {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          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__header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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 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: none;
  padding: 12px;
  border-radius: 4px;
  color: #ffffff;
  -webkit-box-sizing: border-box;
          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:focus {
  outline: none;
  border-color: #a363ff;
}

.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;
}

.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 {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .commercial-form__checkbox-group-label {
    font-size: 15px;
    line-height: 18px;
  }
}

.commercial-form__checkbox-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.commercial-form__custom-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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__btn-purple {
  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;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media (max-width: 767px) {
  .commercial-form__btn-purple {
    font-size: 14px;
    line-height: 22px;
  }
}
.commercial-form__btn-purple:hover {
  background-color: #7c3aed;
}

.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;
    line-height: 13px;
  }
}

/* Form Validation Error Styles */
.commercial-form__error-message {
  display: block;
  color: #ff4444;
  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__input-field input.commercial-form__field-error {
  border: 2px solid #ff4444;
  background-color: #1a0f0f;
}

.commercial-form__input-field input.commercial-form__field-error:focus {
  border-color: #ff4444;
  outline: 2px solid rgba(255, 68, 68, 0.3);
}

.commercial-form__checkbox-row.commercial-form__field-error {
  border: 2px solid #ff4444;
  border-radius: 4px;
  padding: 8px;
  margin-bottom: 8px;
}

.brand-carousel__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.brand-carousel__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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;
  -o-object-fit: contain;
     object-fit: contain;
}

.our-brands-cards__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #f1f7f6;
}
@media (max-width: 1023px) {
  .our-brands-cards__subheader {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .our-brands-cards__subheader {
    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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 236px;
  padding: 24px;
  border-radius: 8px;
  background: #232525;
  -webkit-transform: auto;
          transform: auto;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-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 {
  -webkit-transform: translateY(-4px);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 202px;
  padding: 24px;
  border-radius: 8px;
  background: #232525;
  -webkit-transform: auto;
          transform: auto;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-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 {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.global-audience__card-title {
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #a363ff;
  color: #ffffff;
  padding: 8px 24px;
  margin: auto;
  border-radius: 4px;
  -webkit-transition: background 0.3s;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          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: 210px;
    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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 40px;
  margin-top: auto;
}
@media (max-width: 1023px) {
  .footer-section {
    padding: 36px;
  }
}
@media (max-width: 767px) {
  .footer-section {
    margin-top: 40px;
    padding: 32px;
  }
}

.footer-section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}
@media (max-width: 767px) {
  .footer-section__container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.footer-section__copyright {
  font-size: 12px;
  line-height: 17px;
}
@media (max-width: 1023px) {
  .footer-section__copyright {
    font-size: 11px;
    line-height: 15px;
  }
}

.footer-section__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 200px;
  height: 100%;
  gap: 16px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1023px) {
  .footer-section__logos {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer-section__logos {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 12px;
  }
}

.footer-section__logo {
  display: block;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 45%;
}
@media (max-width: 1023px) {
  .footer-section__logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .footer-section__logo {
    width: 40%;
  }
}
.footer-section__logo img {
  display: block;
}
.footer-section__logo a {
  display: block;
  cursor: pointer;
}

.thank-you__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: -webkit-box;
  display: -ms-flexbox;
  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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    margin-bottom: 8px;
  }
}

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

.thank-you__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.thank-you__image img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.thank-you__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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%;
}