*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: clamp(14px, 1vw, 16px);
}

:root {
    --font-size-H2: clamp(2.45vw, 2.55vw, 2.55vw); /* Было 88px → 6.29rem / regular128*/
    --font-size-H3: clamp(1.41vw, 1.51vw, 1.51vw); /* Было 48px → 3.43rem / italicTT69*/
    --font-size-button: clamp(1.17vw, 2.34vw, 2.34vw); /* Было 32px → 2.29rem */
    --font-size-p: clamp(0.88vw, 1.2vw, 1.2vw); /* Было 16px → 1rem */
    --font-size-ul: clamp(0.85vw, 1.5vw, 1.5vw);
    --main: #1f2d3d; 
    /* --accent: #d13636; */
    --accent: #f34723;
    --accent-font: #F6EFE5;

    --line-height-H2: clamp(2.34vw, 5.05vw, 5.05vw); /* Было 69px → 4.93rem */
    --line-height-H3: clamp(1.76vw, 3vw, 3vw); /* Было 41px → 2.93rem */
    --line-height-H4: clamp(1.41vw, 1.98vw, 1.98vw); /* Было 41px → 2.93rem  / 27px*/
    --line-height-p: clamp(1.41vw, 1.98vw, 1.98vw); /* Было 41px → 2.93rem  / 27px*/
}

body{
   font-family: 'Montserrat', sans-serif;
   /* background-color: #F6EFE5; */
}

a{
   text-decoration: none;
   color: inherit;
}
header {
    padding: 10px 20px;
    text-align: center;
}

h1,.H1 {
    text-transform: uppercase;
    color: #1f2d3d;
    text-align: center;
    font-size: 4.62rem;
    font-family: "DM Serif Display", serif;
    font-weight: 700;
    letter-spacing: -0.01rem;
    line-height: 105%;
    
}
p{
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 135%;
}

ul {
    display: flex;
    flex-direction: column;
    padding: 2vw;
    min-width: 320px;
    box-sizing: border-box;
    align-self: stretch;  
    list-style: none; 
}

#ulBorder {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    padding: 2vw;
    border-radius: 23px;
    list-style: none;
    box-shadow: 0 0 20px rgb(244 67 54);
    max-width: 550px;
    min-width: 320px;
    box-sizing: border-box;
    align-self: stretch;
}

li {
    margin-bottom: 1.2vw;
    font-size: clamp(1vw, 1.3vw, 1.5vw);
    line-height: 1.6;
    position: relative;
    padding-left: 1vw;
    color: #1f2d3d;
    font-weight: 400;
    font-family: "Heebo", sans-serif;
    border-radius: 15px;
    /* background-image: linear-gradient(0.208turn, #f7e9c0 0%, rgba(255, 247, 5, 0) 100%); */
    border-color: transparent;
}

header p{
    color: var(--accent);
    margin: 0 auto;
}

H2,H3{
    color: var(--main);
    font-family: "Heebo", sans-serif;
    text-align: center;
}

H2{
font-weight: 600;
}

H3{
font-weight: 400;
}

.cta_ H3{
  color: var(--main); 
}
.HeadlineWrapper H1{
  color: var(--accent);
}

H2{
    font-size: var(--font-size-H2);    
}

H3{
    font-size: var(--font-size-H3);
}

main{
    width: 100%;
    margin: 0 auto;
}

section{
    padding: 1vw 2vw;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 4.5vw;
    align-items: center;
    justify-content: center;
    margin-bottom: 5vw;
}

blockquote {
  font-style: italic;
  color: #1f2d3d;
  border-left: 4px solid #ccc;
  padding-left: 1em;
  margin: 2em 0;
}
/**/
.Headline {
  background-color: #f34723;
  width: 100%;
  margin: 0;
  padding: 5px 10px;
  text-align: center;
  /* box-sizing: border-box; */
}

.headline-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  max-width: 100%;
  overflow: hidden;
}

.headline-logo {
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  max-height: 32px;
  flex-shrink: 0;
}

.headline-text {
  color: #ffffff;
  font-size: 12px;
  line-height: 1.3;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;       /* максимум 2 строки */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Мобильные стили */
@media screen and (max-width: 768px) {
  .headline-inner {
    gap: 10px;
  }

  .headline-logo {
    max-height: 28px;
  }

  .headline-text {
    font-size: 11px;
    -webkit-line-clamp: 4;
    line-height: 1.3;
    text-align:justify;
  }
}

/**/

.HeadlineWrapper{
    background-color: #fdf8e0; 
    width: 90%;
    /* margin: 0 auto 2vw; */
    margin: 1vw auto;
    padding: 1vw 2vw;
    border: 1px solid #1f2d3d;
    border-radius: 2rem;
    text-align: center;
}

.HeadlineOver h2,
#ulBorder h2{
    width: 90%; 
    margin: auto; 
    padding: 1vw 2vw;    
    text-align: center;
    font-family: "DM Serif Display", serif;
    text-transform: uppercase;
    color: #1f2d3d;
}
.HeadlineOver h3,
#ulBorder h3{
    font-weight: 400;
    width: 90%; 
    margin: auto; 
    text-align: center;
}

#str_1{
    color: #f34723;
    font-weight: 600;
}

#str_2{
    font-weight: 600;
}

.objections-list {
  display: flex;
  flex-wrap: wrap;           /* ⬅ Позволяет элементам переходить на новую строку */
  justify-content: center;   /* Центрируем по горизонтали */
  gap: 2.5vw;                /* Отступы между карточками */
  margin-bottom: 4vw;
}

.objections-list > div {
  flex: 1 1 80%;
}

.objection-item h3 {
 text-align: left;
    color: #1f2d3d;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
  .objections-list > div {
    flex: 1 1 100%;
  }
}

.cta_ {
    margin: 0 auto 2vw;
    width: 50%;
    /* background-color: #fffddf; */
    color: #1f2d3d;
    text-align: center;
    border-radius: 2rem;
    border: 1px solid #fffddf;
    transition: all 0.3s ease-in-out;
  }

.cta_1{
  margin-left: 2vw;
  /* width: 40%; */
  background-color: #fffddf;
  color: #1f2d3d;
  text-align: center;
  transition: all 0.3s ease-in-out;
  padding: 0 2vw;
  margin-bottom: 2lvw;
} 

/* Десктоп: поднимаем кнопку */
.shift-up {
  margin-top: -10vw;
}

/* Мобильная версия: сбрасываем */
@media (max-width: 768px) {
  .shift-up {
    margin-top: 2vw !important;
    margin-left:5vw !important;
  }
}


.cta_ h2 {
    margin-bottom: 15px;
    color: #1f2d3d;
  }

.cta_ button { 
    text-transform: uppercase;
    margin-top: 3vw;
    padding: 14px 32px;
    background-color: #f34723;
    color: #fff;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

.cta_ button:hover {
    background-color: #293048;
  }

#hover button:hover {
    background-color: #d13718;
  }

.cta_a a {  
    font-size: var( --font-size-H3);
    /* font-weight: 600; */
    width: 60%; 
    text-transform: uppercase;
    padding: 14px 32px;
    background-color: #f34723;
    color: #fff;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 1vw auto 3vw;
    display: block;
    text-align: center;
    }

.cta_a a:hover {
    background-color: #293048;
  }

#countdown{
  font-size: 1.3rem;
  color: #fff;
  background-color: #1f2d3d;
  display: block;
  padding: 2.6rem 2.5rem;
  border-radius: 23px;
  margin: 1vw auto 0;
  text-align: center;
  width: 60%;
}

#emailForm,
#emailForm1,
#emailForm2,
#emailForm3,
#emailForm4,
#emailForm5 {
  /* display: none; */
  margin-top: 2vw;
  animation: fadeIn 0.5s ease-in-out forwards;
}

#emailForm input[type="email"],
#emailForm1 input[type="email"],
#emailForm2 input[type="email"],
#emailForm3 input[type="email"],
#emailForm4 input[type="email"],
#emailForm5 input[type="email"] {
  padding: 12px;
  width: 90%;
  max-width: 360px;
  /* font-size: 16px; */
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 12px;
}

#emailPrompt{
  width: 62%;
  margin: 2vw auto;
  padding: 30px;
  border: 1px solid #deb88736;
  background: #deb88736;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  #emailPrompt {
    width: 100%;
    padding: 6vw;
  }
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

@media screen and (max-width: 768px) {
  section {
    flex-direction: column;
  }
  .section-image, .section-content {
    width: 100%;
  }
  .cta {
    width: 90%;
  }
}

.consent-container{
  margin: 1vw auto;
  width: 80%;
}

@media screen and (max-width: 768px) {
  .consent-container{
  font-size: 1.8vw;
}
}
    
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
}

.review-card {
  background: #fdf5e6;
  padding: 1.5vw;
  border-radius: 12px;
  flex: 1 1 30%;
  text-align: center;
}

.review-photo {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  object-fit: cover;
  margin-bottom: 1vw;
  margin: auto;
}

.review-text, 
.review-text_1 {
  position: relative;
  font-style: italic;
  font-size: 1vw;
  text-align: left;  
  padding-left: 1.2em;
  margin: 0.3em 0;
}

.row-top .review-card_1 .review-text::before,
.row-bottom .review-card_1 .review-text::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: #f34723;
  font-size: 1.5em;
  line-height: 1;
  font-style: normal;
}

.review-author {
  margin-top: 1vw;
}

.niche-table-section {
  display: block !important;
  padding: 5vw 6vw;
}

#benefitsWrapper {
  gap: 2rem; 
  align-items: center;  
  flex-wrap: wrap;
  display: flex;
  margin-bottom: 5vw;
  border-radius: 23px;
  overflow: hidden;
  background-color: #fdf8e0;
}

.benefits-left {
  flex: 0 0 35%;
  /* flex: 0 0 50%;  */
  /* background: #e52b50; */
  background: linear-gradient(to bottom, #f34723, #7b0028);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2vw; /* теперь padding — только для отступа текста, а не высоты */
  text-align: center;
  border-radius: 23px;
}

.benefits-left_ {
  flex: 0 0 50%;
  background: linear-gradient(to bottom, #f34723, #7b0028);
  color: white;
  display: flex;
  flex-direction: column; /* вертикально: сверху вниз */
  align-items: center;
  justify-content: center;
  padding: 2vw;
  text-align: center;
  border-radius: 23px;
  gap: 2vw; 
}

.benefits-left h2 {
  margin: 0;
  color: #ffffff;
}

.benefits-right {
  flex: 0 0 50%;
  margin-right: 5vw;
}

.brush-list {
  list-style: none;
  padding-left: 0;
}

.brush-list li {
  margin-bottom: 1vw;
  font-size: 1.2vw;
  line-height: 1.5;
  color: #1f2d3d;
  position: relative;
  padding-left: 2.5em;
}

.brush-check {
  position: absolute;
  left: 0;
  top: -0.5em;
  font-size: 1.8em;
  color: #f34723;
  font-family: 'Brush Script MT', cursive;
}

.review-card p.review-author {
  position: relative;
  padding-left: 3em;
  margin-bottom: 1.5vw;
  color: #1f2d3d;
  text-align: left;
}

.review-card p.review-author::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 2em;
  height: 2em;
  background-size: contain;
  background-repeat: no-repeat;
}

.benefits-right ul {
  list-style: none; 
  padding-left: 0;
}

.benefits-right ul li {
  position: relative;
  padding-left: 2em; /* отступ слева для треугольника */
  margin-bottom: 1.2vw;
  color: #1f2d3d;
  font-size: 1.2vw;
  line-height: 1.5;
}

.benefits-right ul li::before{
  content: "▸";
  position: absolute;
  left: 0;
  top: -0.3em;
  font-size: 1.8em;
  color: #f34723;
}

.badges-wrapper {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2vw;
  margin-bottom: 2vw;
  align-items: flex-start;
}

.badge {
  text-align: center;
}

.badge img {
  width: 6vw;
  display: block;
  margin: 0 auto;
}

.badge p {
  font-size: 1vw;
  margin-top: 0.5vw;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 60px 40px 10px 40px;
  background-color: #1f2d3d;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  font-size: 0.7rem;
  line-height: 1.0rem;
}

.footer > div {
  /* flex: 1;*/
  min-width: 200px; 
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  color: #b99758;
}

.footer-copy p {
  margin: 0;
  color: white;
  font-size: 0.87rem;
}

#footer-links,
#footer-links p{
  text-align: right;
  font-size: 0.7rem;
  line-height: 1.0rem; 
  color: white;
}

.bonus-item p { 
  background: #fffddf; 
  border-left: 4px solid #f34723; 
  padding: 1vw; 
  border-radius: 4px;
  }

#imgPosition_1{
  width: 30vw; 
  margin-left: 66.4vw; 
  margin-top: -38vw; 
  float: right; 
  display: block;
  /* width: 43vw;
  margin-left: 56.4vw;
  margin-top: -37vw; */
  }

  #imgPosition_11{
  width: 37vw; 
  margin-left: 60vw; 
  margin-top: -26vw;
  }

  #imgPosition_2{
  width: 34vw;
  }

  .imgScreen{
  height: auto;
  width: 100%;
  max-width: 100%;
  border-radius: 2rem;
  }

#imgPosition_3{
  width: 45vw;
  display: block;
  margin: auto;
  background-color: #1f2d3d;
  border-radius: 2rem;
  padding: 2vw;
  margin-bottom: 2vw;
  }

  #imgPosition_33{
  width: 35vw;
  display: block;
  margin: auto;
  background-color: transparent;
  border-radius: 2rem;
  padding: 2vw;
  margin-bottom: 2vw;
  }
  
.grid-layout-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2vw;
  display: flex;
  flex-direction: column;
  gap: 3vw;
}

/* Первый ряд */
.row-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 равных колонки */
  gap: 2vw;
}

.column-text {
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
  grid-column: span 1; /* каждая текстовая колонка = 1 колонка */
}

/* Второй ряд */
.row-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 7 равных колонок */
  gap: 2vw;
  align-items: stretch;
}

/* CTA-блок по центру занимает 2 колонки */
.cta-center {
  grid-column: span 2;
  background: #f34723;
  color: white;
  padding: 2vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  margin: auto;
  height: 100%;
  background-color: #1f2d3d;
  border-radius: 2rem;
  border: 1px solid #feffdb;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.cta-center button {
  background-color: #f34723;
  padding: 1vw 2vw;
  border: none;
  border-radius: 23px;
  font-size: 1.2vw;
  cursor: pointer;
  color: white;
  transition: 0.3s ease;
}

.cta-center button:hover {
  background-color: #2e4258bf; 
}

.review-card_1 {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 1.4vw;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  font-size: 1vw;
  color: #1f2d3d;
  flex: 1 1 20%;
  flex-direction: column;
  justify-content: space-between;
}

/* Грид-контейнер для бонусов */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2vw;
  margin-top: 3vw;
}

/* Карточка бонуса */
.bonus-card {
  padding: 2vw 1.5vw;  
}

/* Заголовки */
.bonus-card h4 {
  color: #f34723;
  margin-bottom: 0.5vw;
  text-transform: uppercase;
  font-weight: bold;
}

.bonus-card h3 {
  color: #1f2d3d;
  margin-bottom: 0.8vw;
  text-align: left;
  width: 100%;
}

/* Описание бонуса */
.bonus-card p {
  color: #293048;
  margin-bottom: 0.8vw;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .bonus-card {
    padding: 6vw 4vw;
  }

  .bonuses-grid {
    gap: 6vw;
  }
}

.old-price {
    text-decoration: line-through;
    color: #deb887; 
    opacity: 0.7; 
}

.new-price {
    color: rgb(119, 17, 17);
}

@media (max-width: 768px) {
  html {
    font-size: 14px; /* фиксируем размер, чтобы избежать перегрузки clamp */
  }

  h1, .H1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  section {
    flex-direction: column;
    padding: 6vw 4vw;
    gap: 6vw;
  }

  .cta_, .cta_1 {
    width: 100%;
    margin: 0 auto 5vw;
  }

  .email-form input[type="email"],
  #emailForm input[type="email"] {
    font-size: 1rem;
    width: 100%;
  }

  .cta-center button,
  .cta_ button {
    font-size: 1rem;
    padding: 12px 24px;
    width: 100%;
  }

  .reviews-grid {
    flex-direction: column;
  }

  .review-card_1 {
    font-size: 1rem;
    padding: 6vw;
  }

  .review-text,
  .review-text_1 {
    font-size: 1rem;
  }

  .review-author {
    font-size: 0.95rem;
    padding-left: 1.5em;
  }

  .badge img {
    width: 18vw;
  }

  .badge p {
    font-size: 0.85rem;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  #countdown {
    font-size: 1rem;
    width: 90%;
    padding: 1.5rem;
  }

  #imgPosition_1,
  #imgPosition_2,
  #imgPosition_3 {
    width: 100%;
    margin: 0 auto 5vw;
  }

  #imgPosition_33 {
    width: 80vw;           
    padding: 0;            
    margin: 4vw auto;      
  }

  #imgPosition_33 img {
    height: auto;
    border-radius: 1rem;  
  }

  .HeadlineOver h3,
  #ulBorder h3{
    width: 100%; 
}

  .grid-layout-custom {
    padding: 4vw;
  }

  .row-top,
  .row-bottom {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .cta-center {
    grid-column: auto;
    padding: 6vw;
  }

  .bonus-card h3,
  .bonus-card p {
    text-align: left;
  }

  .benefits-right ul li,
  .brush-list li {
    font-size: 1rem;
    padding-left: 1.5em;
  }

  .benefits-left,
  .benefits-left_ {
    flex: 1 1 100%;
    padding: 5vw;
  }

  .benefits-right {
    flex: 1 1 100%;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #imgPosition_1,
  #imgPosition_11 {
    order: -1;
    width: 70vw;
    margin: 0 auto 4vw;
  }
  #imgPosition_1 img,
  #imgPosition_11 img {
    width: 100%;
    height: auto;
  }

  .HeadlineWrapper {
    width: 90% !important;
    margin: 4vw auto;
  }

  header h1,
  header h3 {
    padding-left: 0 !important;
    margin-left: 0 !important;
    width: 90% !important;
    text-align: center !important;
  }

  .cta_ {
    width: 90% !important;
    margin-top: 3vw; 
  }

  .cta_a a {
    font-size: var(--font-size-H2);
    width: 90%;
  }
  .HeadlineOver h2{
    width: 100%;
    text-align: center;
  }

  .email-form input[type="email"] {
    font-size: 1rem !important;
    padding: 10px;
  }

  .email-form button {
    width: 100%;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-links,
  .footer-copy,
  #footer-links {
    width: 100%;
    text-align: center;
  }

  #footer-links p {
    float: none !important;
    margin: 0.3em 0;
    text-align: center;
  }
}
