
    :root {
      --bg-page: #fff7ed;
      --bg-card: #ffffff;
      --bg-soft: #fffbeb;
      --text-main: #111827;
      --text-muted: #6b7280;
      --accent: #f97316;
      --accent-dark: #ea580c;
      --accent-soft: #fed7aa;
      --accent-strong: #f97316;
      --danger: #dc2626;
      --border: #fed7aa;
      --radius-lg: 20px;
      --radius-md: 14px;
      --shadow: 0 12px 30px rgba(249, 116, 22, 0.285);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #ffedd5 0, #fff7ed 40%, #ffe4c7 100%);
      color: var(--text-main);
      line-height: 1.6;
      font-size: 16px;
    }

    img { max-width: 100%; display: block; }

    .page {
      max-width: 480px;
      margin: 0 auto;
      background: linear-gradient(to bottom, #fff7ed, #ffffff);
      min-height: 100vh;
      box-shadow: 0 18px 40px rgba(0,0,0,0.18);
      padding-bottom: 90px;
    }

    @media (min-width: 481px) {
      body { padding: 16px 0; }
      .page { border-radius: 26px; overflow: hidden; }
    }

    section { padding: 22px 18px; }

    .section-header { margin-bottom: 10px; }

    .eyebrow {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--accent-dark);
      font-weight: 700;
    }

    h1 { font-size: 28px; font-weight: 800; margin-bottom: 6px; }
    h2 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
    p  { font-size: 16px; color: var(--text-muted); }

    .divider {
      height: 1px;
      background: linear-gradient(to right, transparent, #fed7aa, transparent);
    }

    /* 1. HERO */

    header.hero { padding: 0; }

    .hero-top-bar {
      padding: 8px 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      background: linear-gradient(90deg, #f97316, #fb923c);
      color: #fff7ed;
    }

    .hero-top-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
    }

      .main-img {
      width: 100%;
      height: auto;
      margin-bottom: 12px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
    }
    
    .hero-top-badge i { font-size: 14px; }

    .hero-top-note {
      font-size: 12px;
      opacity: 0.9;
    }

    .hero-img-wrap {
      width: 100%;
      background: radial-gradient(circle at top, #fed7aa 0, #f97316 50%, #7c2d12 100%);
    }

    .hero-img-wrap img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .hero-content {
      padding: 18px 18px 20px;
      background: linear-gradient(to bottom, #fff7ed, #ffffff);
    }

    .hero-tag-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 8px;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      padding: 4px 9px;
      border-radius: 999px;
      background: #fef3c7;
      color: #b45309;
      font-weight: 600;
    }

    .hero-tag.hot {
      background: #fee2e2;
      color: #b91c1c;
    }

    .hero-title {
      font-size: 27px;
      font-weight: 800;
      margin-bottom: 4px;
    }

    .hero-title span { color: var(--accent-dark); }

    .hero-subtitle {
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .hero-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .hero-price-left {
      display: flex;
      align-items: baseline;
      gap: 10px;
    }

    .hero-old {
      font-size: 15px;
      text-decoration: line-through;
      color: var(--text-muted);
    }

    .hero-new {
      font-size: 30px;
      font-weight: 900;
      color: var(--accent-dark);
    }

    .hero-discount-badge {
      font-size: 14px;
      padding: 5px 10px;
      border-radius: 999px;
      background: #f97316;
      color: #fff7ed;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: var(--shadow);
    }

    .hero-discount-badge i { font-size: 14px; }

    .hero-timer {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 10px;
      font-size: 14px;
      color: var(--danger);
      font-weight: 600;
      padding: 4px 8px;
      border-radius: 999px;
      background: #fee2e2;
    }

    .hero-timer span {
      background: #b91c1c;
      color: #fef2f2;
      padding: 2px 8px;
      border-radius: 999px;
      font-variant-numeric: tabular-nums;
    }

    .hero-usp-list {
      list-style: none;
      margin-top: 14px;
      margin-bottom: 14px;
    }

    .hero-usp-list li {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      margin-bottom: 6px;
      font-size: 15px;
    }

    .hero-usp-list i {
      color: var(--accent-dark);
      font-size: 18px;
      margin-top: 2px;
    }

    .btn {
      width: 100%;
      padding: 13px 16px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-size: 16px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease, opacity 0.1s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, #f97316, #ea580c);
      color: #fff7ed;
      box-shadow: var(--shadow);
    }

    .btn-primary:active {
      transform: translateY(1px);
      box-shadow: 0 8px 20px rgba(234, 88, 12, 0.6);
      opacity: 0.97;
    }

    .btn-secondary {
      margin-top: 8px;
      background: #ffffff;
      color: var(--accent-dark);
      border: 1px solid #fec89a;
      box-shadow: 0 6px 16px rgba(248, 250, 252, 0.5);
      font-size: 15px;
    }

    .btn i { font-size: 17px; }

    /* 2. КОРОТКИЕ ВЫГОДЫ */

    .benefit-row {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 8px;
    }

    .benefit-pill {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 12px 12px;
      border-radius: 16px;
      background: #fffbeb;
      border: 1px solid #fed7aa;
    }

    .benefit-icon {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: #f97316;
      color: #fff7ed;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 6px 16px rgba(249, 115, 22, 0.7);
    }

    .benefit-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .benefit-text {
      font-size: 15px;
      color: var(--text-muted);
    }

    /* 3. ПРОБЛЕМЫ */

    .problem-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 8px;
    }

    .problem-card {
      padding: 12px 12px;
      border-radius: var(--radius-md);
      background: #fef2f2;
      border: 1px solid #fecaca;
      display: flex;
      gap: 10px;
      font-size: 15px;
    }

    .problem-icon {
      width: 30px;
      height: 30px;
      border-radius: 999px;
      background: #fee2e2;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #b91c1c;
      flex-shrink: 0;
    }

    .problem-strong {
      font-weight: 700;
      margin-bottom: 2px;
      color: #b91c1c;
    }

    /* 4. ДЕТАЛЬНЫЕ ПРЕИМУЩЕСТВА */

    .how-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 8px;
    }

    .how-card {
      border-radius: var(--radius-md);
      padding: 12px;
      background: #fff7ed;
      border: 1px solid #fed7aa;
      font-size: 15px;
    }

    .how-title {
      font-weight: 700;
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .how-title i {
      color: var(--accent-dark);
    }

    .steps-list { list-style: none; margin-top: 4px; }
    .steps-list li { margin-bottom: 4px; color: var(--text-muted); }

    /* 5. ФОТО / ВИДЕО */

    .media-grid {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 8px;
    }

    .media-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: #fef3c7;
      box-shadow: 0 10px 26px rgba(248, 184, 99, 0.65);
    }

    .media-body {
      padding: 10px 12px 12px;
      font-size: 15px;
    }

    .media-title {
      font-weight: 700;
      margin-bottom: 2px;
    }

    .media-text { color: var(--text-muted); }

    .video-thumb { position: relative; }
    .video-thumb img { width: 100%; height: auto; }

    .play-btn {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 64px; height: 64px;
      border-radius: 999px;
      background: rgba(0,0,0,0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff7ed;
      font-size: 26px;
      backdrop-filter: blur(3px);
    }

    /* 6. ХАРАКТЕРИСТИКИ */

    .spec-wrap {
      background: #fffbeb;
      border-radius: var(--radius-lg);
      padding: 14px 12px;
      border: 1px solid #fed7aa;
      box-shadow: 0 10px 24px rgba(248, 184, 99, 0.5);
      margin-top: 8px;
    }

    .spec-list {
      list-style: none;
      font-size: 15px;
      margin-top: 4px;
    }

    .spec-list li {
      display: flex;
      justify-content: space-between;
      padding: 6px 0;
      border-bottom: 1px dashed #fed7aa;
    }

    .spec-list span:first-child { color: var(--text-muted); }
    .spec-list span:last-child  { font-weight: 600; }

    .kit-list {
      list-style: none;
      font-size: 15px;
      margin-top: 8px;
    }

    .kit-list li {
      display: flex;
      gap: 8px;
      margin-bottom: 4px;
      color: var(--text-muted);
    }

    .kit-list i {
      color: var(--accent-dark);
      margin-top: 3px;
    }

    /* 7. ОТЗЫВЫ */

    .reviews {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 8px;
    }

    .review-card {
      background: #fff7ed;
      border-radius: var(--radius-md);
      padding: 12px;
      border: 1px solid #fed7aa;
      box-shadow: 0 6px 16px rgba(248, 184, 99, 0.6);
      font-size: 15px;
    }

    .review-head {
      display: flex;
      justify-content: space-between;
      margin-bottom: 4px;
    }

    .review-name { font-weight: 700; }
    .review-meta { font-size: 14px; color: var(--text-muted); }

    .review-stars {
      font-size: 14px;
      color: #facc15;
    }

    /* 8. ДОСТАВКА / ОПЛАТА */

    .info-list {
      list-style: none;
      margin-top: 8px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 15px;
    }

    .info-item {
      display: flex;
      gap: 10px;
      color: var(--text-muted);
    }

    .info-item i {
      color: var(--accent-dark);
      margin-top: 3px;
      min-width: 18px;
      text-align: center;
    }

    /* 9. ФОРМА */

    .form-wrap {
      padding: 24px 18px 28px;
      background: #ffffff;
    }

    .form-sub {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .form-price-row {
      display: flex;
     align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .form-old {
      font-size: 15px;
      text-decoration: line-through;
      color: var(--text-muted);
    }

   .form-new {
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-dark);
}

    .form-sale {
      font-size: 14px;
      padding: 4px 10px;
      border-radius: 999px;
      background: #fef3c7;
      color: #b45309;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .form-sale i { font-size: 14px; }

    .form-row { margin-bottom: 12px; }

    .form-label {
      display: block;
      font-size: 15px;
      margin-bottom: 4px;
      color: var(--text-main);
    }

    .form-input,
    textarea.form-input {
      width: 100%;
      padding: 12px 14px;
      border-radius: 14px;
      border: 1px solid #fec89a;
      font-size: 16px;
      outline: none;
      background: #fffbeb;
    }

    .form-input::placeholder {
      color: #9ca3af;
    }

    .form-input:focus {
      border-color: var(--accent-dark);
      box-shadow: 0 0 0 1px rgba(234, 88, 12, 0.4);
      background: #ffffff;
    }

    .form-note {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 8px;
      text-align: center;
    }

    /* FOOTER */

    .footer {
      font-size: 13px;
      color: var(--text-muted);
      text-align: center;
      padding: 12px 12px 16px;
      border-top: 1px solid #fee2e2;
      background: #fff7ed;
    }

    .footer a { color: var(--accent-dark); }

    /* STICKY CTA */

    .sticky {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(90deg, #f97316, #fb923c);
      box-shadow: 0 -10px 26px rgba(0,0,0,0.35);
      z-index: 50;
    }

    .sticky-inner {
      max-width: 480px;
      margin: 0 auto;
      padding: 8px 14px 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-size: 14px;
      color: #fff7ed;
    }

    .sticky-price {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 20%;
    }

    .sticky-old {
      text-decoration: line-through;
      font-size: 13px;
      opacity: 0.85;
    }

    .sticky-new {
      font-size: 18px;
      font-weight: 800;
    }

    .sticky .btn {
      padding: 9px 14px;
      font-size: 14px;
      background: #fef3c7;
      color: #b45309;
      box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    }

    .sticky .btn:active {
      background: #ffe8a3;
    }
 