.hero {
  padding: 80px 0;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.display-heading {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(50px, 8.34vw, 100px);
  line-height: 0.9;
  color: var(--ink);
  text-transform: capitalize;
  font-variation-settings: "opsz" 14;
  white-space: nowrap;
}

.hero-row {
  display: flex;
  align-items: flex-start;
  gap: 66px;
}

.hero-left {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
}

.hero-figure {
  position: relative;
  width: 100%;
}

.hero-figure img {
  width: 100%;
  height: auto;
}

.hero-start {
  position: absolute;
  right: 0;
  bottom: 0;
}

.hero-right {
  flex: 0 0 333px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: var(--black);
  text-transform: capitalize;
  text-decoration: underline;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: var(--pink);
  text-transform: capitalize;
  line-height: 1.16;
}

.hero-stat-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 30px;
}

.hero-stat-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.hero-media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-arrow {
  width: 63.333px;
  height: 63.333px;
  margin-bottom: -52px;
  position: relative;
  z-index: 1;
}

.hero-media-img {
  width: 331.91px;
  max-width: 100%;
  height: auto;
  transform: rotate(180deg);
}

.about {
  padding: 80px 0;
}

.about .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--black);
}

.about-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 1.2;
  text-transform: uppercase;
  font-variation-settings: "opsz" 14;
}

.about-text p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  text-align: justify;
}

.about-text p + p {
  margin-top: 21px;
}

.features {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.feature-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 20px;
  border-radius: 20px;
  background: var(--light-pink);
}

.feature-card--dark {
  background: var(--maroon);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.feature-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.16;
  text-transform: capitalize;
  color: var(--black);
}

.feature-desc {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  text-align: justify;
  color: var(--black);
}

.feature-card--dark .feature-title,
.feature-card--dark .feature-desc {
  color: var(--cream);
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-cta-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--black);
  max-width: 800px;
  font-variation-settings: "opsz" 14;
}

.testimonials {
  background: var(--pink);
  padding: 80px 0;
}

.testimonials .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.testimonials-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 0.935;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
  width: 100%;
  font-variation-settings: "opsz" 14;
}

.divider-gradient {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-cards {
  display: flex;
  gap: 20px;
  width: 100%;
  align-items: stretch;
}

.testimonial-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 15px 20px;
  border-radius: 20px;
  background: var(--white);
}

.testimonial-card--dark {
  background: var(--maroon);
}

.testimonial-img {
  width: 100%;
  height: 216px;
  border-radius: 16.667px;
  object-fit: cover;
}

.testimonial-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.16;
  text-transform: capitalize;
  color: var(--black);
}

.testimonial-quote {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  text-align: justify;
  color: var(--black);
}

.testimonial-card--dark .testimonial-name,
.testimonial-card--dark .testimonial-quote {
  color: var(--cream);
}

.faq {
  padding: 80px 0;
}

.faq .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--black);
  font-variation-settings: "opsz" 14;
}

.faq-title span {
  color: var(--maroon);
}

.faq-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 30px 25px;
  border: 1px solid var(--black);
  border-radius: 25px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--black);
  padding-bottom: 10px;
}

.faq-q {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--black);
  flex: 1;
}

.faq-icon-sm {
  width: 18.333px;
  height: 19.167px;
  flex-shrink: 0;
  transform: rotate(90deg);
  margin-bottom: 5px;
}

.faq-a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.faq-a p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  text-align: justify;
  text-transform: lowercase;
  color: var(--black);
  max-width: 674px;
}

.faq-icon-lg {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  transform: rotate(90deg);
}

.faq-item[open] .faq-icon-sm {
  display: none;
}

.faq-item:not([open]) .faq-a {
  display: none;
}

@media (max-width: 900px) {
  .hero,
  .about,
  .testimonials,
  .faq {
    padding: 40px 0;
  }

  .hero .container,
  .about .container {
    gap: 20px;
  }

  .display-heading {
    font-size: 50px;
    white-space: normal;
  }

  .hero-row {
    flex-direction: column;
    gap: 20px;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .hero-start {
    position: static;
    align-self: flex-start;
  }

  .hero-right {
    flex: 1 1 auto;
    width: 100%;
    gap: 20px;
  }

  .hero-text {
    width: 100%;
  }

  .hero-stat {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero-media {
    align-items: center;
    width: 100%;
  }

  .about-title {
    font-size: 32px;
  }

  .features {
    flex-direction: column;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-title {
    width: 100%;
  }

  .about-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .about-cta-title {
    font-size: 32px;
  }

  .testimonials .container {
    gap: 20px;
  }

  .testimonials-title {
    font-size: 32px;
  }

  .testimonial-cards {
    flex-direction: column;
  }

  .faq-title {
    font-size: 32px;
  }

  .faq-icon-lg {
    width: 40px;
    height: 40px;
  }
}
