/* Основные стили страницы */
* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: #2f2f2f;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: normal;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}

/* Общие стили */
ul, ol {
  padding: 0;
  margin: 0;
}

.container {
  padding: 0 18px;
  max-width: 500px;
  margin: 0 auto;
}

.container__wrapper {
  width: 100%;
}

/* Хедер */
.header {
  background-color: #fff;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .15);
}

.header__wrapper {
  display: flex;
  flex-direction: column;
}

.header__wrapper-top {
  display: flex;
  align-items: center;
  padding: 0 18px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.header__wrapper-bottom {
  padding: 4px 16px;
  padding-right: 6px;
  padding-top: 14px;
  padding-left: 32px;
  position: relative;
}

.header__menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 16px;
  margin-right: 8px;
}

.menu__line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background-color: #21409a;
}

.menu__line--short {
  width: 70%;
}

.logo {
  display: block;
  width: 116px;
  height: auto;
  margin-right: auto;
}

.header__icon-wrapper {
  position: relative;
}

.header__icon-wrapper::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  background-color: #21409a;
  border-radius: 10px;
}

.icon-live {
  position: relative;
  display: block;
  width: 25px;
  height: auto;
  color: #21409a;
  stroke-width: 2px;
}

.header__wrapper-list {
  width: 100%;
  display: flex;
  list-style-type: none;
  overflow-x: auto;
}

.header__wrapper-list::-webkit-scrollbar {
  width: 0;
}

.header__wrapper-list::before {
  position: absolute;
  content: '';
  top: 13px;
  right: 6px;
  width: 10px;
  height: 24px;
  background: linear-gradient(rgba(255, 255, 255, .6) 0% 20%, #fff);
  z-index: 2;
}

.header__wrapper-item {
  min-width: max-content;
  padding: 4px 24px;
  padding-left: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: #2f2f2f;
}

.header__wrapper-item--active {
  color: #009076;
}

/* Баннер */
.main-banner {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 8px;
}

/* Хлебные крошки */
.breadcrumbs {
  display: flex;
  align-items: center;
  padding: 10px 18px;
  margin-top: 5px;
}

.breadcrumbs__link {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: #009076;
}

.breadcrumbs span {
  margin: 0 5px;
  color: #009076;
}

/* Мейн */
.main {
  width: 100%;
  padding: 0 18px;
  padding-bottom: 20px;
  box-sizing: border-box;
}

.main__avtor {
  text-align: center;
  font-size: 12px;
  margin: 16px 0;
}

.main__avtor span {
  color: #009076;
}

.data {
  color: #666;
}

/* Основные секции */
.hero, .problem, .solution, .story, .how-it-works, .expert, .fomo, .statistics, .order-section {
  padding: 20px 18px;
  margin-bottom: 20px;
}

/* Заголовки */
.section-title {
  margin: 0;
  font-size: 23px;
  line-height: 30px;
  font-weight: 600;
  color: #009076;
  text-align: center;
  margin-bottom: 16px;
}

.title {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 8px;
  color: #2f2f2f;
}

/* Текст */
.text {
  margin: 0;
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 16px;
  font-family: 'Times New Roman', Times, serif;
  color: #2f2f2f;
}

.text--second {
  color: #009076;
}

.text--center {
  text-align: center;
}

.text--small {
  font-size: 12px;
  line-height: 12px;
}

/* Выделенный текст */
.allocated__text {
  padding-left: 15px;
  border-left: 5px solid #009076;
  margin-left: 3px;
  margin: 16px 0;
}

.allocated__text p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

.new-allocated__text {
  background-color: #4CAF50;
  color: #ffffff;
  padding: 20px;
  border-radius: 5px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  font-weight: bold;
}

/* Hero секция */
.hero {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.hero-title {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: #009076;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 24px;
  color: #2f2f2f;
  margin-bottom: 20px;
}

.highlight {
  color: #009076;
  font-weight: 600;
}

/* Геймификация */
.gamification-block {
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  margin: 20px 0;
}

.gamification-number {
  font-size: 56px;
  font-weight: 900;
  color: #009076;
  margin-bottom: 12px;
  text-shadow: 0 4px 8px rgba(0, 144, 118, 0.3);
  animation: numberPulse 2s ease-in-out infinite;
  will-change: transform;
  transform: translateZ(0);
}

@keyframes numberPulse {
  0%, 100% {
    transform: translateZ(0) scale(1);
  }
  50% {
    transform: translateZ(0) scale(1.05);
  }
}

.gamification-text {
  font-size: 16px;
  line-height: 22px;
  color: #2f2f2f;
}

/* Проблемы */
.problem {
  background-color: #f7f7f7;
  border-radius: 5px;
  padding: 20px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.problem-item {
  background-color: #fff;
  padding: 16px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #e6e6e6;
}



.problem-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 8px;
}

.problem-item p {
  font-size: 14px;
  line-height: 20px;
  color: #666;
  margin: 0;
}

/* Решение */
.solution {
  background-color: #eff8f0;
  border: 1px solid #29a289;
  border-radius: 5px;
  padding: 20px;
}

.feature {
  background-color: #fff;
  padding: 16px;
  border-radius: 5px;
  margin-bottom: 16px;
  border: 1px solid #e6e6e6;
}

.feature h3 {
  color: #009076;
  font-size: 18px;
  margin-bottom: 8px;
}

.feature p {
  font-size: 16px;
  line-height: 22px;
  color: #2f2f2f;
  margin: 0;
}

/* История */
.story {
  background-color: #f7f7f7;
  border-radius: 5px;
  padding: 20px;
}

.story-text p {
  font-size: 16px;
  line-height: 24px;
  color: #2f2f2f;
  margin-bottom: 16px;
}

.story-text p:last-child {
  margin-bottom: 0;
}

/* Статистика использования */
.stats-block {
  background: linear-gradient(135deg, #f7f7f7 0%, #e6e6e6 100%);
  padding: 32px 24px;
  border-radius: 20px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.stats-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #009076, #007a63);
}

.stats-block h3 {
  color: #009076;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-item {
  padding: 24px 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
  transform: translateZ(0) translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: #009076;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:last-child {
  margin-bottom: 0;
}

.stat-item .stat-number {
  font-size: 36px;
  font-weight: 900;
  color: #009076;
  margin-bottom: 12px;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 144, 118, 0.2);
}

.stat-item .stat-label {
  font-size: 16px;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 12px;
  line-height: 1.4;
}

.stat-description {
  color: #666;
  line-height: 1.5;
  font-weight: 500;
  font-size: 14px;
}

/* Как это работает */
.how-it-works {
  background-color: #f7f7f7;
  border-radius: 5px;
  padding: 20px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.step {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #e6e6e6;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-2px);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: #009076;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step h3 {
  color: #009076;
  font-size: 18px;
  margin-bottom: 12px;
}

.step p {
  font-size: 16px;
  line-height: 22px;
  color: #2f2f2f;
  margin: 0;
}

/* Эксперты */
.expert {
  background-color: #f7f7f7;
  border-radius: 5px;
  padding: 20px;
}

.expert-slider {
  position: relative;
  margin-bottom: 20px;
}

.expert-slide {
  display: none;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
}

.expert-slide.active {
  display: block;
}

.expert-card {
  text-align: center;
}

.expert-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
}

.expert-photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #009076, #007a63);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 144, 118, 0.3);
}

.expert-name {
  color: #009076;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.expert-title {
  color: #666;
  font-size: 14px;
  margin-bottom: 16px;
}

.expert-quote {
  font-size: 16px;
  line-height: 24px;
  color: #2f2f2f;
  font-style: italic;
  margin: 0;
}

.expert-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.expert-nav-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.expert-nav-btn.active,
.expert-nav-btn:hover {
  background-color: #009076;
}

/* FOMO секция */
.fomo {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 20px;
  margin: 32px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.fomo .section-title {
  color: #009076;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.fomo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.fomo-item {
  background-color: #fff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.fomo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fomo-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 5px 5px 0 0;
}

.fomo-item.urgent::before {
  background: linear-gradient(90deg, #009076, #007a63);
}

.fomo-item.social::before {
  background: linear-gradient(90deg, #009076, #007a63);
}

.fomo-item.scarcity::before {
  background: linear-gradient(90deg, #009076, #007a63);
}



.fomo-item h3 {
  color: #2f2f2f;
  font-size: 15px;
  margin-bottom: 6px;
}

.fomo-item p {
  font-size: 13px;
  line-height: 18px;
  color: #666;
  margin-bottom: 8px;
}

.fomo-stats {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.fomo-stats .stat {
  background: linear-gradient(135deg, #009076, #007a63);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 144, 118, 0.2);
}

.fomo-counter,
.stock-counter {
  text-align: center;
}

.counter-number,
.stock-number {
  font-size: 24px;
  font-weight: 700;
  color: #009076;
  display: block;
}

.counter-label,
.stock-label {
  font-size: 12px;
  color: #666;
}

.fomo-warning {
  background-color: #fff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fomo-warning::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #009076, #007a63);
  border-radius: 12px 12px 0 0;
}



.fomo-warning h3 {
  color: #2f2f2f;
  font-size: 15px;
  margin-bottom: 8px;
}

.warning-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.warning-list li {
  font-size: 13px;
  line-height: 18px;
  color: #666;
  margin-bottom: 4px;
  padding-left: 12px;
  position: relative;
}

.warning-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #009076;
  font-weight: bold;
}

.fomo-cta {
  text-align: center;
}

.fomo-message {
  font-size: 16px;
  line-height: 22px;
  color: #2f2f2f;
  margin-bottom: 16px;
}

.fomo-message strong {
  color: #009076;
}

.fomo-button {
  display: inline-block;
  background: linear-gradient(135deg, #009076, #007a63);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 144, 118, 0.3);
}

.fomo-button:hover {
  background: linear-gradient(135deg, #007a63, #006b56);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 144, 118, 0.4);
}

/* Статистика */
.statistics {
  background-color: #f7f7f7;
  border-radius: 5px;
  padding: 20px;
}

.statistics .section-title {
  color: #2f2f2f;
  margin-bottom: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  background-color: #fff;
  padding: 16px;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  text-align: center;
  position: relative;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 5px 5px 0 0;
}

.stat-card.shocking::before {
  background-color: #dc2626;
}

.stat-card.personal::before {
  background-color: #009076;
}

.stat-card.success::before {
  background-color: #4CAF50;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #009076;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 4px;
  line-height: 1.2;
}

.stat-description {
  color: #666;
  line-height: 1.3;
  font-weight: 500;
  font-size: 12px;
}

.personal-message {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  margin-top: 20px;
  position: relative;
}

.personal-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #009076;
  border-radius: 5px 5px 0 0;
}



.personal-message h3 {
  color: #2f2f2f;
  font-size: 18px;
  margin-bottom: 12px;
}

.personal-message p {
  font-size: 16px;
  line-height: 22px;
  color: #2f2f2f;
  margin: 0;
}

.personal-message strong {
  color: #ac0100;
}

.personal-message em {
  color: #009076;
  font-style: italic;
}

/* Форма заказа */
.order-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 0;
  padding: 40px 20px;
  position: relative;
}

.order-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.offer-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.06);
  margin: 0 auto;
  max-width: 720px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 0 12px 24px rgba(0, 0, 0, 0.08);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #21409a, #3b82f6, #8b5cf6, #ec4899);
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.product-showcase {
  text-align: center;
  margin: 24px 0;
  position: relative;
}

.product-showcase::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: 50%;
  z-index: -1;
}

.product-bottle {
  max-width: 350px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.product-bottle:hover {
  transform: scale(1.05) rotate(2deg);
}

.price {
  font-size: 28px;
  font-weight: 800;
  color: #059669;
  margin: 24px 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.old-price {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}

.old-price::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -4px;
  right: -4px;
  height: 2px;
  background: linear-gradient(90deg, #ef4444, #dc2626);
  transform: translateY(-50%);
}

.discount {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(239, 68, 68, 0.3);
  animation: pulse 2s infinite;
}

.urgency-timer {
  margin: 20px 0;
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 16px;
  border: 2px solid #f59e0b;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.timer-label {
  font-size: 14px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timer-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.timer-number {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
  min-width: 40px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
  animation: pulse 1s infinite;
}

.timer-unit .timer-label {
  font-size: 10px;
  font-weight: 600;
  color: #92400e;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.timer-separator {
  font-size: 20px;
  font-weight: 800;
  color: #dc2626;
  margin-top: -8px;
  animation: pulse 1s infinite;
}

/* Форма */
.order-form {
  margin-top: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.order-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #059669);
}

.form-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.form-logo {
  width: 100px;
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.form-title {
  font-size: 22px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #1f2937, #374151);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



.form-progress {
  margin-bottom: 20px;
  text-align: center;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #059669);
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.form-inputs {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  height: 52px;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  color: #1f2937;
  box-sizing: border-box;
  transition: all 0.3s ease;
  background: #ffffff;
  font-weight: 500;
}

.form-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  transform: translateZ(0) translateY(-1px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input.success {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.phone-input-wrapper {
  position: relative;
}

.flag-indicator {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.flag-icon {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  background: linear-gradient(to bottom, #ff0000 50%, #ffffff 50%);
  border: 1px solid #ccc;
}

.error-message {
  color: #ac0100;
  font-size: 12px;
  margin-top: 4px;
  min-height: 16px;
}

.order-button {
  width: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  padding: 18px 24px;
  border: none;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 1px;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
  transform: translateZ(0);
}

.order-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.order-button:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateZ(0) translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.4);
}

.order-button:hover::before {
  left: 100%;
}

.order-button:active {
  transform: translateZ(0) translateY(0);
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.order-button:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.order-button.invalid {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}



.order-button.ready {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  animation: successPulse 1.5s infinite;
}

@keyframes successPulse {
  0%, 100% {
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
  }
  50% {
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.6), 0 0 0 4px rgba(16, 185, 129, 0.2);
  }
}



/* Sticky кнопка заказа */
.sticky-order {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  padding: 16px 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.sticky-order.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sticky-order-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-order-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-price {
  font-size: 20px;
  font-weight: 800;
  color: #059669;
}

.sticky-discount {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.sticky-order-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sticky-order-button:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(16, 185, 129, 0.4);
}

.sticky-icon {
  font-size: 16px;
}

/* Футер */
.footer {
  background-color: #e6e6e6;
  border-top: 4px solid #009076;
  padding: 24px 18px;
  margin-top: 40px;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  width: 160px;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-link {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #009076;
}

.footer-text {
  color: #666;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

/* Мобильные стили */
@media (max-width: 600px) {
  .header {
    position: static;
  }
  
  .main-banner {
    margin-bottom: 4px;
    max-width: 100%;
    height: auto;
  }
  
  .hero {
    padding-top: 20px;
  }
  
  .hero-title {
    font-size: 20px;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .gamification-block {
    padding: 12px;
  }
  
  .gamification-number {
    font-size: 24px;
  }
  
  .gamification-text {
    font-size: 12px;
  }
  
  .sticky-order {
    display: block;
  }
  
  .expert-card {
    padding: 12px;
  }
  
  .expert-photo {
    width: 50px;
    height: 50px;
  }
  
  .expert-name {
    font-size: 14px;
  }
  
  .expert-quote {
    font-size: 12px;
  }
  
  .section-title {
    font-size: 18px;
  }
  
  .fomo {
    padding: 12px;
  }
  
  .fomo-item {
    padding: 8px;
  }
  
  .fomo-item h3 {
    font-size: 14px;
  }
  
  .fomo-item p {
    font-size: 12px;
  }
  
  .objections {
    padding: 16px 12px;
  }
  
  .objection-item {
    padding: 12px;
  }
  
  .order-form {
    padding: 16px;
  }
  
  .form-input {
    height: 44px;
    font-size: 16px; /* Предотвращает зум на iOS */
  }
  
  .order-button {
    padding: 16px 20px;
    font-size: 16px;
  }
}

/* Планшеты */
@media (min-width: 601px) and (max-width: 1024px) {
  .container {
    max-width: 800px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .fomo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .objections-content {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .objection-item {
    flex: 1;
    min-width: 250px;
  }
}

/* Большие экраны */
@media (min-width: 1025px) {
  .container {
    max-width: 1200px;
  }
  
  .fomo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .objections-content {
    flex-direction: row;
  }
  
  .objection-item {
    flex: 1;
  }
}

/* Анимации */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateZ(0) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateZ(0) translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -8px, 0);
  }
  70% {
    transform: translate3d(0, -4px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-text {
  height: 1em;
  margin-bottom: 0.5em;
}

.skeleton-button {
  height: 48px;
  width: 100%;
}

/* Анимации для формы */
.offer-card {
  animation: fadeInUp 0.8s ease-out;
  will-change: transform, opacity;
  transform: translateZ(0);
}

.form-group {
  animation: slideInLeft 0.6s ease-out;
}

.form-group:nth-child(2) {
  animation-delay: 0.1s;
}



.order-button {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Анимации для статистики */
.stats-block {
  animation: fadeInUp 0.8s ease-out;
}

.stat-item {
  animation: slideInLeft 0.6s ease-out;
}

.stat-item:nth-child(2) {
  animation-delay: 0.1s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.2s;
}



@keyframes shine {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Политики */
.policy-page {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 18px;
  background-color: #fff;
}

.policy-page .section-title {
  color: #009076;
  margin-bottom: 20px;
}

.policy-content {
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
}

.policy-content h3 {
  color: #009076;
  font-size: 18px;
  margin-bottom: 12px;
}

.policy-content p {
  font-size: 16px;
  line-height: 22px;
  color: #2f2f2f;
  margin-bottom: 16px;
}

.back-link {
  text-align: center;
  margin-top: 20px;
}

.back-link a {
  color: #009076;
  text-decoration: none;
  font-weight: 600;
}

.back-link a:hover {
  text-decoration: underline;
}

/* Закрытие возражений */
.objections {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 24px 16px;
  margin: 24px 0;
}

.objections .section-title {
  color: #1f2937;
  text-align: center;
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 800;
}

.objections-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.objection-item {
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.objection-item:hover {
  transform: translateZ(0) translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



.objection-item h3 {
  color: #374151;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.objection-item p {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.honest-cta {
  background: linear-gradient(135deg, #009076, #007a63);
  padding: 20px 16px;
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 144, 118, 0.3);
}

.honest-cta h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.honest-cta p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}

/* Страница благодарности */
.thank-you-page {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 18px;
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.thank-you-content {
  text-align: center;
  background-color: transparent;
  padding: 20px;
  border-radius: 5px;
}

.thank-you-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.thank-you-title {
  font-size: 28px;
  font-weight: 700;
  color: #009076;
  margin-bottom: 12px;
}

.thank-you-subtitle {
  font-size: 18px;
  line-height: 24px;
  color: #2f2f2f;
  margin-bottom: 24px;
}

.call-notice {
  background-color: transparent;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 24px;
  text-align: left;
}



.call-notice h3 {
  color: #009076;
  font-size: 18px;
  margin-bottom: 12px;
}

.call-notice p {
  font-size: 16px;
  line-height: 22px;
  color: #2f2f2f;
  margin-bottom: 12px;
}

.call-notice ul {
  list-style: none;
  padding: 0;
}

.call-notice li {
  font-size: 16px;
  line-height: 22px;
  color: #2f2f2f;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.call-notice li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #009076;
  font-weight: bold;
}

.product-image {
  text-align: center;
  margin: 24px 0;
}

.thank-you-product {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(1.1) contrast(1.1);
  background-blend-mode: multiply;
}

.order-details {
  background-color: transparent;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 24px;
}

.order-details h3 {
  color: #009076;
  font-size: 18px;
  margin-bottom: 12px;
}

.order-info p {
  font-size: 16px;
  line-height: 22px;
  color: #2f2f2f;
  margin-bottom: 8px;
}

.action-buttons {
  text-align: center;
}

.btn-primary {
  display: inline-block;
  background-color: #009076;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #007a63;
}

/* Честные ожидания на странице благодарности */
.honest-expectations {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 20px 16px;
  border-radius: 16px;
  margin: 20px 0;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.honest-expectations h3 {
  color: #1f2937;
  text-align: center;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 700;
}

.expectations-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.expectation-item {
  background: #ffffff;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  text-align: center;
  transition: all 0.3s ease;
}

.expectation-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



.expectation-item h4 {
  color: #009076;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.expectation-item p {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.3;
  margin: 0;
}

/* === Detik-style header (no hamburger) === */
.header.detik-header{
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.detik-topbar{ display:flex; align-items:center; justify-content:space-between; padding: 10px 12px; }
.detik-logo img{ height:28px; display:block; }
.detik-actions{ display:flex; align-items:center; gap:10px; }
.icon-btn{ position:relative; display:inline-flex; align-items:center; justify-content:center; width:34px; height:34px; border:none; background:#fff; border-radius:8px; cursor:pointer; }
.icon-btn .icon{ width:22px; height:22px; display:block; }
.icon-btn:active{ transform:scale(0.96); }
.icon-btn .live-badge{ position:absolute; top:-6px; right:-6px; background:#2463EB; color:#fff; font-weight:700; font-size:9px; padding:2px 4px; border-radius:4px; line-height:1; letter-spacing:.5px; }
.detik-nav{ overflow:hidden; border-top: 1px solid rgba(0,0,0,0.03); }
.detik-nav-list{ display:flex; gap:18px; list-style:none; margin:0; padding: 10px 12px; overflow-x:auto; -webkit-overflow-scrolling:touch; white-space:nowrap; scroll-snap-type:x proximity; overscroll-behavior-x: contain; }
.detik-nav-list::-webkit-scrollbar{ display:none; }
.detik-nav-list{ scrollbar-width:none; }
.detik-nav-item{ flex:0 0 auto; scroll-snap-align:start; position:relative; }
.detik-nav-item a{ text-decoration:none; color:#111; font-size:14px; font-weight:600; }
.detik-nav-item.rekomendasi .red-dot{ position:absolute; top:0; left:100%; transform: translateX(2px) translateY(-2px); width:6px; height:6px; border-radius:50%; background:#ef4444; }


/* === Detik-style header (no hamburger) === */
.header.detik-header{
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.detik-topbar{ display:flex; align-items:center; justify-content:space-between; padding: 10px 12px; }
.detik-logo img{ height:28px; display:block; }
.detik-actions{ display:flex; align-items:center; gap:10px; }
.icon-btn{ position:relative; display:inline-flex; align-items:center; justify-content:center; width:34px; height:34px; border:none; background:#fff; border-radius:8px; cursor:pointer; }
.icon-btn .icon{ width:22px; height:22px; display:block; }
.icon-btn:active{ transform:scale(0.96); }
.icon-btn .live-badge{ position:absolute; top:-6px; right:-6px; background:#2463EB; color:#fff; font-weight:700; font-size:9px; padding:2px 4px; border-radius:4px; line-height:1; letter-spacing:.5px; }
.detik-nav{ overflow:hidden; border-top: 1px solid rgba(0,0,0,0.03); }
.detik-nav-list{ display:flex; gap:18px; list-style:none; margin:0; padding: 10px 12px; overflow-x:auto; -webkit-overflow-scrolling:touch; white-space:nowrap; scroll-snap-type:x proximity; overscroll-behavior-x: contain; }
.detik-nav-list::-webkit-scrollbar{ display:none; }
.detik-nav-list{ scrollbar-width:none; }
.detik-nav-item{ flex:0 0 auto; scroll-snap-align:start; position:relative; }
.detik-nav-item a{ text-decoration:none; color:#111; font-size:14px; font-weight:600; }
.detik-nav-item.rekomendasi .red-dot{ position:absolute; top:0; left:100%; transform: translateX(2px) translateY(-2px); width:6px; height:6px; border-radius:50%; background:#ef4444; }

/* === Detik-style footer === */
.site-footer{
  margin-top: 40px;
  background:#f1f2f4;
  border-top:1px solid rgba(0,0,0,0.06);
  padding:24px 12px 32px;
  color:#111;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.site-footer .footer-inner{ max-width:980px; margin:0 auto; text-align:center; }
.site-footer .footer-logo{ height:34px; margin:6px auto; display:block; }
.site-footer .footer-subline{
  display:flex; align-items:center; gap:8px; justify-content:center;
  opacity:0.8; font-size:14px; margin-top:4px;
}
.site-footer .footer-network{ height:20px; }
.site-footer .footer-links{
  display:flex; flex-wrap:wrap; gap:10px; row-gap:6px;
  list-style:none; padding:0; margin:18px 0 12px;
  justify-content:center; font-size:14px;
}
.site-footer .footer-links li{ position:relative; padding-right:10px; }
.site-footer .footer-links li:not(:last-child)::after{
  content:"•"; position:absolute; right:-2px; top:0; opacity:.5;
}
.site-footer .footer-links a{ color:#111; text-decoration:none; }
.site-footer .footer-links a:hover{ text-decoration:underline; }
.site-footer .footer-social{
  display:flex; gap:12px; justify-content:center; list-style:none;
  padding:0; margin:14px 0 18px;
}
.site-footer .footer-social a{
  width:36px; height:36px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none;
}
.site-footer .footer-social svg{ width:20px; height:20px; fill:#fff; }
/* brand colors */
.footer-social a.wa{ background:#25D366; }
.footer-social a.fb{ background:#1877F2; }
.footer-social a.x{ background:#111; }
.footer-social a.ig{ background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.footer-social a.li{ background:#0A66C2; }
.footer-social a.yt{ background:#FF0000; }
.footer-social a.tt{ background:#000; }
.site-footer .footer-download{ margin:6px 0 8px; opacity:0.8; }
.site-footer .footer-stores{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:14px; }
.site-footer .footer-stores img{ height:32px; display:block; }
.site-footer .footer-copy{ opacity:0.7; font-size:14px; }