.hero {
  padding: 80px 0;
  background: var(--white);
}

.hero__heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 100px;
  line-height: 1;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.hero__row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 2;
  min-width: 0;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
}

.hero__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.hero__cta {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.hero__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 12px;
  min-width: 0;
}

.hero__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  text-decoration: underline;
  line-height: 1.5;
}

.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
}

.hero__stat-num {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 30px;
  color: var(--purple);
  line-height: 1.2;
  text-align: right;
}

.hero__stat-text {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  line-height: 1.3;
  text-align: right;
}

.hero__deco-row {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  overflow: hidden;
}

.hero__deco {
  width: 63px;
  height: 63px;
  flex-shrink: 0;
}

.hero__flipped {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  transform: rotate(180deg);
}

.hero__divider {
  width: 100px;
  height: 2px;
  background: var(--dark);
  margin: 40px 0 20px;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 70px;
  line-height: 0.9;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-top: 60px;
}

.offer {
  padding: 60px 0;
  background: var(--white);
}

.offer__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}

.offer__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 50px;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 1.2;
}

.offer__desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.3;
  text-align: justify;
  color: var(--dark);
}

.offer__desc p + p {
  margin-top: 12px;
}

.offer__cards {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.offer__card {
  flex: 1;
  border-radius: 20px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer__card--light {
  background: var(--light-purple);
}

.offer__card--dark {
  background: var(--dark-purple);
}

.offer__card-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.offer__card-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

.offer__card--light .offer__card-title {
  color: var(--dark);
}

.offer__card--dark .offer__card-title {
  color: var(--off-white);
}

.offer__card-desc {
  font-family: var(--font-body);
  font-size: 16px;
  text-align: justify;
  line-height: 1.3;
}

.offer__card--light .offer__card-desc {
  color: var(--dark);
}

.offer__card--dark .offer__card-desc {
  color: var(--off-white);
}

.offer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.offer__quote {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 50px;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 0.9;
  font-style: normal;
  flex: 1;
}

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

.testimonials__header {
  margin-bottom: 30px;
}

.testimonials__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 50px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.935;
  margin-bottom: 20px;
}

.testimonials__line {
  width: 100%;
  height: 2px;
  display: block;
  margin-bottom: 10px;
}

.testimonials__cards {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.testimonials__card {
  flex: 1;
  border-radius: 20px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonials__card--white {
  background: var(--white);
}

.testimonials__card--dark {
  background: var(--dark-purple);
}

.testimonials__card-img {
  width: 100%;
  height: 216px;
  object-fit: cover;
  border-radius: 17px;
  display: block;
}

.testimonials__card-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

.testimonials__card--white .testimonials__card-name {
  color: var(--dark);
}

.testimonials__card--dark .testimonials__card-name {
  color: var(--off-white);
}

.testimonials__card-quote {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.3;
  text-align: justify;
}

.testimonials__card--white .testimonials__card-quote {
  color: var(--dark);
}

.testimonials__card--dark .testimonials__card-quote {
  color: var(--off-white);
}

.faq {
  padding: 80px 0;
  background: var(--white);
}

.faq__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 50px;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 40px;
}

.faq__title .accent {
  color: var(--dark-purple);
}

.faq__container {
  border: 0.833px solid #000;
  border-radius: 25px;
  padding: 0 25px;
}

.faq__item {
  padding: 28px 0;
  border-bottom: 0.833px solid rgba(0,0,0,0.15);
  cursor: pointer;
  user-select: none;
}

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

.faq__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq__question {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  color: var(--dark);
  line-height: 1.2;
}

.faq__toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__icon {
  display: block;
  width: 20px;
  height: 20px;
}

.faq__icon--big {
  width: 60px;
  height: 60px;
  display: none;
}

.faq__item.is-open .faq__icon {
  display: none;
}

.faq__item.is-open .faq__icon--big {
  display: block;
}

.faq__answer {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  color: var(--dark);
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.38s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.faq__item.is-open .faq__answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }

  .hero__row {
    flex-direction: column;
    gap: 24px;
  }

  .hero__heading {
    font-size: 40px;
    margin-bottom: 24px;
  }

  .hero__left {
    flex: none;
    width: 100%;
    gap: 20px;
  }

  .hero__cta {
    position: static;
    display: block;
    width: fit-content;
    margin-top: 16px;
  }

  .hero__right {
    width: 100%;
    padding-top: 0;
    gap: 20px;
  }

  .hero__deco-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero__deco {
    flex-shrink: 0;
  }

  .hero__flipped {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  .hero__divider {
    width: 60px;
    margin: 24px 0 12px;
  }

  .hero__subtitle {
    font-size: 40px;
    margin-top: 0;
  }

  .offer {
    padding: 40px 0;
  }

  .offer__title {
    font-size: 30px;
  }

  .offer__header {
    gap: 16px;
    margin-bottom: 30px;
  }

  .offer__cards {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
  }

  .offer__card {
    width: 100%;
  }

  .offer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .offer__quote {
    font-size: 30px;
  }

  .testimonials {
    padding: 40px 0;
  }

  .testimonials__title {
    font-size: 30px;
  }

  .testimonials__cards {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }

  .testimonials__card {
    width: 100%;
  }

  .faq {
    padding: 40px 0;
  }

  .faq__title {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .faq__question {
    font-size: 18px;
  }

  .faq__container {
    padding: 0 16px;
  }

  .faq__item {
    padding: 20px 0;
  }
}
