* { box-sizing: border-box; font-family: Arial, sans-serif; }
body { margin: 0; background: #f5f5f5; }
.wrapper {
  max-width: 480px;
  margin: auto;
  background: #fff;
}

section { padding: 20px; text-align: center; }
img { width: 100%; border-radius: 12px; }

h1, h2 { margin-bottom: 10px; }

.subtitle { color: #555; }

.benefits-row {
  display: flex;
  justify-content: space-between;
  margin: 16px 0;
}

.benefit {
  flex: 1;
  text-align: center;
}

.benefit .icon {
  font-size: 28px;
  margin-bottom: 6px;
  line-height: 1;
}

.benefit span {
  display: block;
  font-size: 13px;
  font-weight: 600;
}


.price { font-size: 24px; margin: 10px 0; }
.old { text-decoration: line-through; color: #999; margin-right: 10px; }
.new { color: #e60000; font-weight: bold; }

.btn, button {
  background: #e60000;
  color: #fff;
  padding: 15px;
  display: block;
  border-radius: 10px;
  text-decoration: none;
  margin: 15px auto;
  border: none;
  width: 100%;
}

.timer { font-weight: bold; color: #000; }
.limited { color: #e60000; }

ul { text-align: left; padding-left: 20px; }

.carousel .review { display: none; }
.carousel .review.active { display: block; }

.how {
  background: #f8f8f8;
  border-radius: 20px;
}

.how h2 {
  margin-bottom: 20px;
}

.pain {
  padding: 48px 20px;
  background: linear-gradient(180deg, #fff6f6 0%, #ffffff 100%);
  text-align: center;
}

.pain h2 {
  font-size: 26px;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 16px;
}

.pain img {
  max-width: 320px;
  margin: 0 auto 24px;
  display: block;
}

.pain ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 420px;
  text-align: left;
}

.pain ul li {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* Плавна анімація появи */
.pain ul li {
  opacity: 0;
  transform: translateY(10px);
  animation: painFade 0.6s ease forwards;
}

.pain ul li:nth-child(1) { animation-delay: 0.1s; }
.pain ul li:nth-child(2) { animation-delay: 0.2s; }
.pain ul li:nth-child(3) { animation-delay: 0.3s; }
.pain ul li:nth-child(4) { animation-delay: 0.4s; }
.pain ul li:nth-child(5) { animation-delay: 0.5s; }

@keyframes painFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.specs {
  padding: 60px 20px;
  background: #f8f9fb;
}

.specs-container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.specs-image img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 32px;
  display: block;
  border-radius: 20px;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.specs-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.specs-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.specs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: #4caf50;
  border-radius: 50%;
}

/* Мобільна оптимізація */
@media (max-width: 480px) {
  .specs {
    padding: 40px 16px;
  }

  .specs-title {
    font-size: 26px;
  }
}



.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.step {
  background: #fff;
  border-radius: 16px;
  padding: 14px 10px 18px;
  position: relative;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.step-num {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e60000;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 30px;
  margin: 16px 0 10px;
}

.step p {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.step p span {
  display: block;
  font-size: 12px;
  font-weight: normal;
  color: #666;
  margin-top: 4px;
}


.order-form {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  margin-top: 20px;
}

.form-field {
  position: relative;
  margin-bottom: 16px;
}

.form-field input {
  width: 100%;
  padding: 16px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
  background: #fff;
  transition: all .2s ease;
}

.form-field input:focus {
  border-color: #e60000;
  box-shadow: 0 0 0 2px rgba(230,0,0,.1);
}

.form-field label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: #f8f8f8;
  padding: 0 6px;
  font-size: 13px;
  color: #777;
  pointer-events: none;
  transition: .2s ease;
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label {
  top: -6px;
  font-size: 11px;
  color: #e60000;
}

.order-btn {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff2a2a, #e60000);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform .1s ease, box-shadow .1s ease;
  box-shadow: 0 8px 20px rgba(230,0,0,.35);
}

.order-btn:active {
  transform: scale(0.97);
  box-shadow: 0 4px 10px rgba(230,0,0,.4);
}

.form-note {
  font-size: 12px;
  color: #555;
  margin-top: 10px;
}


.footer {
  text-align: center;
  padding: 26px 16px 30px;
  background: #f7f7f7;
  border-top: 1px solid #e5e5e5;
}

.footer-brand {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 12px;
  color: #555;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-note {
  font-size: 11px;
  color: #888;
}


.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup-box {
  background: #fff;
  width: 90%;
  max-width: 420px;
  padding: 24px 20px 26px;
  border-radius: 22px;
  position: relative;
  text-align: center;
  animation: popupShow .3s ease;
}

@keyframes popupShow {
  from {
    transform: translateY(20px) scale(.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.popup-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.popup-box h3 {
  margin: 0 0 8px;
}

.popup-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 18px;
  cursor: pointer;
  opacity: .6;
}

.popup-close:hover {
  opacity: 1;
}

.popup-form {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.popup-note {
  font-size: 11px;
  color: #777;
  margin-top: 10px;
}

