/* ============================================================================
   THANK YOU HERO - Страница благодарности
   ============================================================================ */

.thank-you-hero {
  padding: 80px 0 100px 0;
}

/* Title */
.thank-you-hero__title {
  font-size: 45px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

/* Subtitle */
.thank-you-hero__subtitle {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

/* Description */
.thank-you-hero__description {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 30px 0;
  max-width: 453px;
}

.thank-you-hero__description p {
  margin: 0 0 15px 0;
}

.thank-you-hero__description p:last-child {
  margin-bottom: 0;
}

/* Primary CTA button */
.thank-you-hero__cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 369px;
  max-width: 100%;
  height: 66px;
  padding: 0 30px;
  font-size: 22px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  background-color: #E2C08D;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.thank-you-hero__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226, 192, 141, 0.4);
  color: #ffffff;
}

/* Additional text */
.thank-you-hero__additional {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 20px 0;
  max-width: 453px;
}

/* Secondary buttons */
.thank-you-hero__secondary-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.thank-you-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  height: 66px;
  padding: 0 20px;
  font-size: 22px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #000000;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.thank-you-hero__btn-secondary:hover {
  background-color: rgba(226, 192, 141, 0.2);
  border-color: #E2C08D;
  transform: translateY(-2px);
}

/* Image */
.thank-you-hero__image-wrapper {
  width: 100%;
  max-width: 550px;
  height: 529px;
  margin-left: auto;
}

.thank-you-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

.thank-you-hero__image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #7F7F7F;
  border-radius: 40px;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 991px) {
  .thank-you-hero {
    padding: 60px 0 80px 0;
  }

  .thank-you-hero__image-wrapper {
    margin-left: 0;
    margin-top: 40px;
    height: 400px;
  }
}

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

  .thank-you-hero__title {
    font-size: 32px;
  }

  .thank-you-hero__subtitle,
  .thank-you-hero__description,
  .thank-you-hero__additional {
    font-size: 18px;
    max-width: 100%;
  }

  .thank-you-hero__cta-primary {
    width: 100%;
    min-width: auto;
    height: 56px;
    font-size: 18px;
  }

  .thank-you-hero__btn-secondary {
    flex: 1;
    min-width: auto;
    height: 56px;
    font-size: 16px;
  }

  .thank-you-hero__image-wrapper {
    height: 300px;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .thank-you-hero {
    padding: 30px 0 50px 0;
  }

  .thank-you-hero__title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .thank-you-hero__subtitle,
  .thank-you-hero__description,
  .thank-you-hero__additional {
    font-size: 16px;
  }

  .thank-you-hero__description {
    margin-bottom: 20px;
  }

  .thank-you-hero__cta-primary {
    height: 52px;
    font-size: 16px;
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .thank-you-hero__secondary-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .thank-you-hero__btn-secondary {
    width: 100%;
    height: 52px;
    font-size: 14px;
  }

  .thank-you-hero__image-wrapper {
    height: 250px;
    margin-top: 30px;
  }
}
