:root {
  font-family:
    'Maven Pro',
    system-ui,
    -apple-system,
    sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #1e293b;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

/***** Utils *****/

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 1023px) {
  .mobile-hidden {
    display: none;
  }
}

.font-medium {
  font-weight: 500;
}

/***** CTA *****/

.cta {
  padding: 0.625rem 0.875rem;
  background-color: #f93573;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: 0.1s ease all;
}

.cta:hover {
  background-color: #e71763;
}

/***** Header *****/

.header {
  position: sticky;
  z-index: 10;
  top: 0;
  backdrop-filter: blur(5px);
  width: 100%;
  display: flex;
  justify-content: center;
  background: #ffffffdd;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
}

.header__inner {
  width: 100%;
  max-width: 1280px;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
}

.header__logo {
  height: 32px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__nav-link {
  text-decoration: none;
  color: #1e293b;
}

.header__nav-link:hover {
  text-decoration: underline;
}

/***** Hero *****/

.hero {
  display: flex;
  justify-content: center;
}

.hero__inner {
  width: 100%;
  max-width: 1280px;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .hero__inner {
    flex-direction: row;
  }
}

.hero__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero__text {
    align-items: flex-start;
    text-align: left;
  }
}

.hero__heading {
  font-size: 2rem;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .hero__heading {
    font-size: 3rem;
  }
}

.hero__heading--highlighted {
  color: #f93573;
}

.hero__cta {
  margin-top: 1rem;
}

.hero__preview {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  width: 100%;
  display: flex;
  justify-content: center;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.hero__preview:hover {
  transform: scale(1.015);
}

.hero__preview::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  background-color: #e61080;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8 5v14l11-7z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 9999px;
}

.hero__image {
  width: 100%;
  max-width: 540px;
  border-radius: 6px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1024px) {
  .hero__image {
    max-width: none;
  }
}

/***** Features *****/

.features {
  display: flex;
  justify-content: center;
}

.features__inner {
  width: 100%;
  max-width: 1280px;
  padding: 5rem 2rem;
  display: flex;
  gap: 4rem 2rem;
  justify-content: space-around;
  flex-wrap: wrap;
}

.features__feature {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 290px;
}

.features__feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.features__feature-heading {
  font-weight: 600;
  font-size: 1.25rem;
}

/***** Benefits *****/

.benefits {
  display: flex;
  justify-content: center;
}

.benefits__inner {
  width: 100%;
  max-width: 1280px;
  padding: 7rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  align-items: center;
}

.benefits__title {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  max-width: 580px;
}

.benefits__heading {
  font-weight: 600;
  font-size: 1.75rem;
}

@media (min-width: 1024px) {
  .benefits__heading {
    font-size: 2.25rem;
  }
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 4rem;
}

@media (min-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.benefits__benefit {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  max-width: 520px;
}

@media (min-width: 1024px) {
  .benefits__benefit {
    flex-direction: row;
  }
}

.benefits__benefit-icon {
  width: 2rem;
  height: auto;
  flex-shrink: 0;
}

.benefits__benefit-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefits__benefit-heading {
  font-weight: 500;
  font-size: 1.5rem;
}

.benefits__benefit-description {
  line-height: 1.375;
}

/***** Contact *****/

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

.contact__inner {
  width: 100%;
  max-width: 1280px;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6rem;
}

@media (min-width: 1024px) {
  .contact__inner {
    align-items: flex-start;
    flex-direction: row;
  }
}

.contact__person {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__person-heading {
  font-weight: 600;
  font-size: 1.5rem;
}

.contact__person-info {
  display: flex;
  gap: 2rem;
}

.contact__person-image {
  border-radius: 100%;
  width: 96px;
  height: auto;
}

.contact__person-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.contact__person-name {
  font-weight: 600;
  font-size: 1.25rem;
}

.contact__person-link {
  color: #1e293b;
  text-decoration: none;
}

.contact__person-link:hover {
  text-decoration: underline;
}

.contact__cta {
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.contact__cta-heading {
  font-weight: 600;
  font-size: 1.5rem;
}

.contact__cta-button {
  margin-top: 1.5rem;
}

/***** FAQ *****/

.faq {
  display: flex;
  justify-content: center;
}

.faq__inner {
  width: 100%;
  max-width: 1280px;
  padding: 7rem 2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .faq__inner {
    grid-template-columns: 1fr 2fr;
  }
}

.faq__title {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__heading {
  font-weight: 600;
  font-size: 1.75rem;
}

.faq__questions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq__question-title {
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.025em;
  padding: 0.5rem 0rem;
}

@media (min-width: 1024px) {
  .faq__question-title {
    padding: 0 0.75rem 0.5rem 0.75rem;
  }
}

.faq__question-answer {
  padding: 0;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .faq__question-answer {
    padding: 0 0.75rem;
  }
}

/***** Footer *****/

.footer {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  border-top: 1px solid #1e293b11;
}

.footer__inner {
  width: 100%;
  max-width: 1280px;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .footer__inner {
    flex-direction: row;
    align-items: center;
  }
}

.footer__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.footer__copyright {
  font-size: 0.875rem;
}

.footer__nav-item {
  color: #1e293b;
  text-decoration: none;
  font-size: 0.875rem;
}

.footer__nav-item:hover {
  text-decoration: underline;
}

/***** Legal *****/

.legal {
  display: flex;
  justify-content: center;
}

.legal__inner {
  width: 100%;
  max-width: 1280px;
  padding: 3rem 2rem;
}

.legal h1 {
  font-weight: 600;
  font-size: 2rem;
}

.legal h2 {
  font-weight: 600;
}

.legal__section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

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

.legal__privacy h2 {
  margin-top: 6rem;
}

.legal__privacy h3 {
  margin-top: 2rem;
}

.legal__privacy h4 {
  margin-top: 1.5rem;
}

.legal__privacy p {
  margin-top: 0.5rem;
}

/***** Testimonials *****/

.testimonials {
  display: flex;
  justify-content: center;
}

.testimonials__inner {
  width: 100%;
  max-width: 1280px;
  padding: 7rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 7rem;
  align-items: center;
}

.testimonials__title {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  max-width: 580px;
}

.testimonials__heading {
  font-weight: 600;
  font-size: 1.75rem;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .testimonials__heading {
    font-size: 2.25rem;
  }
}

/***** Testimonial *****/

.testimonial {
  position: relative;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  box-shadow: 0px 16px 32px -12px rgba(12, 12, 13, 0.05);
  transition-property: transform, box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0px 16px 32px -4px rgba(12, 12, 13, 0.05);
}

.testimonial__header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 24px 16px 24px 136px;
}

.testimonial__image {
  position: absolute;
  top: -24px;
  left: 0;
  rotate: -8deg;
  width: 110px;
  height: 130px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #f93573;
  box-shadow: 0 3px 10px rgb(0, 0, 0, 0.2);
}

.testimonial__person-name {
  font-size: 1.25rem;
  font-weight: 600;
}

.testimonial__person-description {
  font-size: 1rem;
  color: #334155;
}

.testimonial__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 24px;
}

.testimonial__title {
  font-size: 1.25rem;
  font-weight: 600;
}

.testimonial__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  line-height: 1.375;
}

/***** Overrides *****/

.gvideo-local {
  max-width: none !important;
}
