@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #212121;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}
.container {
  max-width: 1278px;
  margin: 0 auto;
  padding: 0 40px;
}


.section__heading {
  font-size: 52px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -2.08px;
  margin-bottom: 30px;
  background: linear-gradient(229deg, #FDE7BB 0%, #9E6D38 20%, #E9B86E 50%, #9D6933 66%, #E9B86E 83%, #683E23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn--gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  border-radius: 109px;
  background: linear-gradient(135deg, #ddb87e 0%, #b68d56 100%);;
  color: #212121;
  font-size: 18px;
  font-weight: 500;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn--gold.short {
   max-width: 350px;
}
.btn--gold.short-centered {
  max-width: 350px;
  display: block;
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
}

.btn--gold-sm {
  padding: 12px 40px;
}
.btn--gold-full {
  width: 100%;
}
.btn--gold-centered {
  display: flex;
  margin: 30px auto 0;
  width: fit-content;
}
.btn--gold:hover {
  opacity: 0.85;
}

.hero {
  position: relative;
  width: 100%;
  height: 710px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.hero__glow--1 {
  width: 568px;
  height: 568px;
  right: 160px;
  top: 50%;
  transform: translateY(-50%);
  background: #884157;
  filter: blur(112px);
}
.hero__glow--2 {
  width: 330px;
  height: 330px;
  right: 250px;
  top: 50%;
  transform: translateY(-50%) translateX(40px);
  background: #4A1223;
  filter: blur(65px);
}
.hero .container {
  position: relative;
  z-index: 2;
  height: 710px;
  display: flex;
  flex-direction: column;
}
.hero__inner {
  flex: 1;
  display: grid;
  grid-template-columns: 560px 1fr;
  align-items: center;
  padding-bottom: 20px;
  overflow: visible;
}
.hero__left {
  overflow: visible;
  color: #fff;
}
.hero__subtitle {
  font-size: 33px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  text-align: left;
}
.hero__title {
  font-size: 82px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;
  white-space: nowrap;
  width: max-content;
  letter-spacing: -3.28px;
  background: linear-gradient(229deg, #FDE7BB 0%, #9E6D38 20%, #E9B86E 50%, #9D6933 66%, #E9B86E 83%, #683E23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 564px;
}
.hero__desc strong {
  font-weight: 900;
}
.hero__badges {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__right {
  position: relative;
  height: 100%;
}
.hero__right--form {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 20px;
}
.hero__product {
  position: absolute;
  left: 50%;
  transform: translateX(-34%);
  bottom: -50px;
  max-width: 500px;
  height: 500px;
  object-fit: contain;
  z-index: 4;
}
.hero--cta {
  height: 710px;
  overflow: visible;
  z-index: 1;
}
.hero--cta .container {
  height: auto;
  padding-bottom: 60px;
}
.hero--cta .hero__inner {
  align-items: flex-start;
  padding-top: 40px;
}
.hero--cta .hero__left {
  color: #fff;
}
.hero--cta .hero__title {
  font-size: 82px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  flex-shrink: 0;
  color: #fff;
}
.nav__logo {
  height: 60px;
  width: auto;
}
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #E9B86E;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.nav__burger span:nth-child(3) { width: 20px; margin-left: auto; }
.nav__burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger--open span:nth-child(2) { opacity: 0; }
.nav__burger--open span:nth-child(3) {width: 24px; transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: #46222D;
  padding: 80px 20px 40px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.nav__mobile--open {
  transform: translateX(0);
  pointer-events: all;
}
.nav__mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__mobile-overlay--open {
  opacity: 1;
  pointer-events: all;
}
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.nav__mobile-links a {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
.nav__links {
  display: flex;
  gap: 60px;
}
.nav__links a {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  transition: opacity 0.2s;
}
.nav__links a:hover {
  opacity: 0.75;
}

.badge {
  border-radius: 10px;
  border: 1px solid #FDE7BB;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  padding: 13px 15px;
  color: #fff;
  text-align: center;
}
.badge:nth-child(1) { width: 186px; }
.badge:nth-child(2) { width: 204px; }
.badge:nth-child(3) { width: 132px; }

.savings {
  position: absolute;
  right: 0;
  top: 40px;
  width: 351px;
  min-height: 187px;
  border: 1px solid #FDE7BB;
  border-radius: 10px;
  z-index: 6;
  background: transparent;
  padding: 16px 15px 20px 37px;
}
.savings--inline {
  position: static;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  width: 100%;
  max-width: 628px;
  height: auto;
  min-height: unset;
  margin-top: 24px;
  padding: 35px 35px 22px 37px;
}
.savings--inline .savings__title {
  flex-shrink: 0;
  margin-bottom: auto;
}
.savings--inline .savings__body {
  list-style: disc;
}
.savings--inline .savings__body li + li {
  margin-top: 4px;
}
.savings__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(229deg, #FDE7BB 0%, #9E6D38 20%, #E9B86E 50%, #9D6933 66%, #E9B86E 83%, #683E23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.savings__body {
  line-height: 1.45;
  color: #fff;
}
.savings__amount {
  font-size: 22px;
  font-weight: 800;
}
.savings__label {
  font-size: 18px;
  font-weight: 400;
}

.video-section {
  background: #fff;
  padding: 80px 0 100px;
}
.video-section__wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  display: block;
  width: 100%;
}
.video-section__wrap:hover .play {
  opacity: 0.85;
  transform: translate(-50%, -50%) scale(1.06);
}
.video-section__thumb {
  width: 100%;
  height: 598px;
  object-fit: cover;
  display: block;
}

.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ddb87e 0%, #b68d56 100%);;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play {
  width: 80px;
  height: 80px;
}
.play__icon {
  width: 38px;
  height: 38px;
  position: relative;
  left: 3px;
}

.video-box {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 10px;
  overflow: hidden;
}
.video-box--shorts {
  padding-bottom: 0;
  aspect-ratio: 9 / 16;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
@supports not (aspect-ratio: 9 / 16) {
  .video-box--shorts { padding-bottom: 177.78%; }
}
.video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.reviews__item {
  position: relative;
}
.reviews__item iframe {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: none;
  border-radius: 16px;
}
@supports not (aspect-ratio: 9 / 16) {
  .reviews__item { padding-bottom: 177.78%; }
  .reviews__item iframe { position: absolute; inset: 0; height: 100%; }
}
.reviews__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  border-radius: 16px;
}
.reviews__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}
.reviews__play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.reviews__overlay.is-playing .reviews__play-btn::after {
  border: none;
  width: 7px;
  height: 26px;
  background: #fff;
  box-shadow: 12px 0 0 #fff;
  margin-left: -10px;
}

.form-section {
  position: relative;
  background: transparent;
  padding: 80px 0;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  left: -10%;
  right: -10%;
  top: 0;
  bottom: 0;
  background: #fff;
  border-radius: 50% / 40px;
  z-index: 0;
}
.form-section .container {
  position: relative;
  z-index: 1;
}
.form-section--alt {
  background: #F5EEEB;
}
.form-section__layout {
  display: grid;
  grid-template-columns: 1fr 522px;
  gap: 20px;
  align-items: start;
}
.form-section__layout--reversed {
  direction: rtl;
}
.form-section__layout--reversed > * {
  direction: ltr;
}
.form-section__left {
  position: relative;
  z-index: 1;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-section__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  color: #212121;
}
.form-section__title div{
  max-width: 522px;
  text-align: center;
  margin: 0 auto;
}
.form-section__title-gold {
   background: linear-gradient(229deg, #FDE7BB 0%, #9E6D38 20%, #E9B86E 50%, #9D6933 66%, #E9B86E 83%, #683E23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.form-section__title--grad span {
  background: linear-gradient(229deg, #FDE7BB 0%, #9E6D38 20%, #E9B86E 50%, #9D6933 66%, #E9B86E 83%, #683E23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.form-section__text {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  color: #212121;
  letter-spacing: -0.72px;
  max-width: 520px;
  margin: 0 auto;

}
.form-section__brand {
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -1.36px;
  background: linear-gradient(229deg, #FDE7BB 0%, #9E6D38 20%, #E9B86E 50%, #9D6933 66%, #E9B86E 83%, #683E23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.form-section__hair {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: left center;
  pointer-events: none;
  z-index: 2;
}
.form-section__hair--right {
  left: auto;
  right: 0;
  object-position: right center;
}
.form-section__product {
  max-width: 472px;
  margin-top: auto;
  margin: 0 auto;
}
.form-section__card {
  background: #46222D;
  border-radius: 30px;
  padding: 60px 53px;
}
.form-section__card--hero {
  width: 522px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__field,
.form__field--half > div,
.form__field--address > div {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.form__field--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.form__field--address {
  display: grid;
  grid-template-columns: 1fr 96px 96px;
  gap: 8px;
}
.form label:not(.form__consent) {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 2px;
}
.form input[type=text],
.form input[type=email],
.form input[type=tel] {
  width: 100%;
  height: 50px;
  background: #fff;
  border: 1px solid #9D9D9D;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 16px;
  font-family: inherit;
  color: #212121;
  outline: none;
  transition: border-color 0.2s;
}
.form input[type=text]:focus-visible,
.form input[type=email]:focus-visible,
.form input[type=tel]:focus-visible {
  border-color: #9D6933;
}
.form__consent {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-top: 8px;
}
.form__consent input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form__consent span:last-of-type {
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.64px;
}
.form__consent-box {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, #ddb87e 0%, #b68d56 100%);;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form__consent-box::after {
  content: "";
  width: 12px;
  height: 9px;
  border-left: 2px solid #212121;
  border-bottom: 2px solid #212121;
  transform: rotate(-45deg) translate(1px, -1px);
  display: none;
}
.form__consent input[type=checkbox]:checked + .form__consent-box::after {
  display: block;
}

.benefits {
  background: transparent;
  padding: 80px 0 100px;
  position: relative;
  overflow: visible;
}
.benefits::before {
  content: '';
  position: absolute;
  left: -10%;
  right: -10%;
  top: 0;
  bottom: 0;
  background: #F5EEEB;
  border-radius: 50% / 40px;
  z-index: 0;
  overflow: hidden;
}
.benefits__hair {
  position: absolute;
  right: 92px;
  top: -170px;
  height: 100%;
  max-width: 344px;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
  transform: rotate(25deg); 
  z-index: 3;

}
.benefits .container {
  position: relative;
  z-index: 1;
}
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.benefits__card {
  border-radius: 30px;
  padding: 50px 30px;
}
.benefits__card--dark {
  background: #46222D;
  color: #fff;
}
.benefits__card--light {
  background: #fff;
  color: #212121;
}
.benefits__card-title {
  font-size: 26px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -1.04px;
}
.benefits__card-title strong {
  font-weight: 800;
}
.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.benefits__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  line-height: 1.4;
}
.benefits__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-top: 1px;
}

.reviews {
  background: #fff;
  padding: 80px 0 0;
}
.reviews__swiper {
  margin-bottom: 30px;
}
.reviews__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.reviews__item:hover .play {
  opacity: 0.85;
  transform: translate(-50%, -50%) scale(1.06);
}
.reviews__placeholder {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #46222D;
  border-radius: 16px;
}
.reviews__cover {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.reviews__dots {
  display: flex;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.reviews__dot {
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.reviews__dot--active {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #ddb87e 0%, #b68d56 100%);
}
.reviews__dot:not(.reviews__dot--active) {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid #FDE7BB !important;
}

.about {
  background: transparent;
  position: relative;
  overflow: visible;
  margin-bottom: 80px;
}
.about::before {
  content: '';
  position: absolute;
  left: -10%;
  right: -10%;
  top: 0;
  bottom: 0;
  background: #F6EFEB;
  border-radius: 50% / 40px;
  z-index: 0;
}
.about .container {
  position: relative;
  z-index: 1;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__title {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2.08px;
  margin-bottom: 8px;
  background: linear-gradient(229deg, #FDE7BB 0%, #9E6D38 20%, #E9B86E 50%, #9D6933 66%, #E9B86E 83%, #683E23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about__location {
  font-size: 18px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 24px;
}
.about__text {
  font-size: 18px;
  line-height: 1.7;
  color: #212121;
}
.about__text strong {
  font-weight: 800;
}
.about__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__list li {
  font-size: 18px;
  line-height: 1.6;
  color: #212121;
  padding-left: 24px;
  position: relative;
  list-style: none;
}
.about__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
}
.about__list strong { font-weight: 800; }
.about__right{
  margin-top: -45px;
}
.about__img {
  max-width: 463px;
}
.about__price {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about__price-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-label {
  font-size: 18px;
  font-weight: 800;
  color: #212121;
  letter-spacing: -0.72px;
}
.price-value {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2.08px;
  background: linear-gradient(229deg, #FDE7BB 0%, #9E6D38 20%, #E9B86E 50%, #9D6933 66%, #E9B86E 83%, #683E23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.guarantee-section {
  padding-bottom: 60px;
  text-align: center;
}
.guarantee__title {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2.08px;
  margin-bottom: 20px;
  background: linear-gradient(229deg, #FDE7BB 0%, #9E6D38 20%, #E9B86E 50%, #9D6933 66%, #E9B86E 83%, #683E23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.guarantee__text {
  font-size: 18px;
  line-height: 1.5;
  color: #212121;
  max-width: 849px;
  margin: 0 auto;
}

.footer {
  background: #2A1018;
  color: #fff;
  margin-top: 112px;
}
.footer__inner {
  max-width: 1278px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 90px;
  min-height: 136px;
}
.footer__logo {
  height: 66px;
  width: auto;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  transition: opacity 0.2s;
}
.footer__col a:hover {
  opacity: 0.75;
}
.footer__col p {
  font-size: 18px;
  line-height: 1.4;
}
.footer__socials {
  display: flex;
  gap: 30px;
}
.footer__socials a {
  color: #fff;
  transition: opacity 0.2s;
}
.footer__socials a:hover {
  opacity: 0.75;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal--open {
  display: flex;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.modal__dialog {
  position: relative;
  width: 522px;
  background: #46222D;
  border-radius: 30px;
  padding: 46px 53px 46px 53px;
  overflow: hidden;
  z-index: 1;
}
.modal__glow {
  position: absolute;
  width: 443px;
  height: 443px;
  left: -233px;
  top: -42px;
  background: #884157;
  border-radius: 50%;
  filter: blur(87px);
  pointer-events: none;
  z-index: 0;
}
.modal__dialog > *:not(.modal__glow):not(.modal__close) {
  position: relative;
  z-index: 1;
}
.modal__close {
  position: absolute;
  top: 15px;
  right: 30px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #9B9B9B;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0;
}
.modal__close span {
  position: absolute;
  width: 10px;
  height: 1.5px;
  background: #9B9B9B;
  border-radius: 1px;
}
.modal__close span:first-child {
  transform: rotate(45deg);
}
.modal__close span:last-child {
  transform: rotate(-45deg);
}
.modal__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(229deg, #FDE7BB 0%, #9E6D38 20%, #E9B86E 50%, #9D6933 66%, #E9B86E 83%, #683E23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.modal__form {
  gap: 8px;
}
.modal__pretitle {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E9B86E;
  margin: 0 0 10px;
}
.modal__subtitle {
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin: -20px 0 24px;
}

@media (max-width: 1200px) {
  .hero__title { font-size: 64px; }
  .hero__inner { grid-template-columns: 500px 1fr; }
  .hero__subtitle { font-size: 26px; }
  .savings { width: 300px; }
  .form-section__layout { grid-template-columns: 1fr 460px; }
  .hero--cta .hero__inner { grid-template-columns: 500px 1fr; }
  .section__heading { font-size: 42px; }
}
.mobile { display: none; }
@media (min-width: 901px) {
  .reviews__overlay { display: none; }
  .reviews__swiper .swiper-pagination { display: none; }
}
.reviews__swiper .swiper-pagination {
  position: static;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.reviews__swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid #ddb87e;
  opacity: 1;
  border-radius: 50%;
  margin: 0 !important;
}
.reviews__swiper .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #ddb87e 0%, #b68d56 100%);
  border: none;
}

@media (max-width: 900px) {
  .container{
    padding: 0 20px;
  }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav { padding: 12px 0; }
  .nav__logo { height: 44px; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }
  .btn--gold{padding: 10px 50px; max-width: inherit; margin: 0 auto; margin-top: 10px; min-height: 66px; display: flex; align-items: center; text-align: center; white-space: normal;}
  .hero__bg{max-height: 1030px;}
  .hero { height: auto; min-height: unset; overflow: hidden; }
  .hero .container { height: auto; padding-bottom: 40px; position: relative; }
  .hero__inner { display: flex; flex-direction: column; padding-bottom: 0; gap: 0; }
  .hero__right { position: static;  flex-direction: column;  height: auto; display: flex; margin-left: 0;     align-items: flex-end; justify-content: center; }
  .savings { position: static; max-width: 201px; min-height: unset; padding: 15px 15px 7px 13px; }
  .savings__title,  .savings__amount, .savings__label{ font-size: 15px;}
  .hero__product { position: static; transform: none; height: 260px; max-width: 100%; left: auto; bottom: auto; }
  .hero__title { font-size: 42px; letter-spacing: -1.5px; white-space: normal; text-align: center; width: auto; }
  .hero__subtitle { font-size: 24px; text-align: center; }
  .hero__left{width: 100%;}
  .hero__desc { font-size: 16px; margin: 0 auto; margin-bottom: 20px; text-align: center; max-width: 340px; }
  .hero__badges { flex-direction: column; gap: 6px; margin-bottom: 20px; }
  .badge { height: 54px;  width: 100%;font-size: 18px; }
  .badge:nth-child(1) { width: auto; }
  .badge:nth-child(2) { width: auto; }
  .badge:nth-child(3) { width: auto; }
  .about__price-row{flex-direction: column; gap: 5px; }
  /* Section heading */
  .section__heading { font-size: 32px; letter-spacing: -1px; }

  /* Video */
  .video-section { padding: 50px 0 60px; }
  .video-section__thumb { height: 220px; }

  /* Form section */
  .form-section { padding-bottom: 50px; padding-top: 0; }
  .form-section__layout { grid-template-columns: 1fr; }
  .form-section__layout--reversed { direction: ltr; }
  .form-section__left { padding-top: 0; align-items: center; text-align: center; }
  .form-section__title { font-size: 32px; }
  .form-section__text { font-size: 18px; max-width: 335px; }
  .form-section__product { height: auto; max-width: 346px; }
  .form-section__card { padding: 40px 30px; border-radius: 20px; }
  .form-section__hair { display: none; }

  /* Benefits */
  .benefits { padding: 50px 0 60px; }
  .benefits__hair { display: none; }
  .benefits__grid { grid-template-columns: 1fr; }
  .benefits .section__heading { margin: 0 auto; margin-bottom: 20px; margin-top: 20px; max-width: 345px; }

  /* Reviews */
  .reviews { padding: 50px 0 60px; }
  .reviews .section__heading{
    max-width: 345px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  /* About */
  .about { padding: 50px 0 0; margin-bottom: 50px; overflow: hidden; }
  .about__inner { grid-template-columns: 1fr; }
  .about__right img{ width: auto; display: flex; height: auto; max-width: 278px; margin: 0 auto;}
  .about__title { font-size: 32px; text-align: center; }
  .about__text { font-size: 15px; }
  .about__price { margin-top: 24px; }
  .price-value { font-size: 36px; margin-bottom: 20px; }
  .about__location{ text-align: center; }
  .about__price{ align-items: center;
  }
  .about__list{justify-content: center ; align-items: center;}
  .about__list li{ max-width: 325px;}

  .benefits__card{
    padding: 30px 20px;
    border-radius: 30px;
  }
  /* Guarantee */
  .guarantee-section { padding: 40px 0; }
  .guarantee__title { font-size: 35px; }
  .guarantee__text { font-size: 18px; }
  .price-value{
    font-size: 52px;
    margin-bottom: 0;
  }

  /* Hero CTA */
  .hero--cta { height: auto; overflow: visible; padding-bottom: 40px; }
  .hero--cta .container { height: auto; }
  .hero--cta .hero__inner { grid-template-columns: 1fr; align-items: start; }
  .hero--cta .hero__right { display: flex;padding-top: 24px; justify-content: center; }
  .form-section__card--hero { width: 100%; }
  .savings--inline { max-width: 100%; }
  .savings{
    width: auto;
  }
  .hero--cta .hero__title { font-size: 40px; }
  .hero--cta{
    max-height: unset;
  }
  /* Footer */
  .footer__inner { flex-direction: column; gap: 24px; align-items: center; padding: 40px 20px; }
  .footer{margin-top: 0px;}
  /* Modal */
  .modal__dialog { width: calc(100vw - 32px); padding: 30px 20px; }
  .modal__title { font-size: 26px; }

  /* Savings inline */
  .savings--inline { }
  .footer__socials{ justify-content: center;  }
  .footer__col{align-items: center;}
  .mobile{ display: flex; }
  .desktop{ display: none; }
}



@media (max-width: 768px) {
  .benefits::before {
    left: 0;
    right: 0;
    border-radius: 50% / 30px;
    background: #F5EEEB;
  }
}

