:root {
  --bg: #f3f6f2;
  --surface: #ffffff;
  --surface-2: #eef5ef;
  --text: #17221c;
  --muted: #647067;
  --green: #0b5b43;
  --green-2: #0f7a59;
  --gold: #f3c84b;
  --orange: #ff7a1a;
  --red: #e4402f;
  --line: #dbe4dc;
  --shadow: 0 14px 38px rgba(15, 45, 31, 0.12);
  --shadow-soft: 0 8px 24px rgba(15, 45, 31, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0 0 104px;
  background: radial-gradient(circle at top, #e7f0e8 0, var(--bg) 34%, #f8faf7 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body, button, input {
  font: inherit;
}

img {
  max-width: 100%;
}

main {
  padding-bottom: 42px;
}

.page {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 14px 14px 0;
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8f4 100%);
  border: 1px solid rgba(11, 91, 67, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 14px;
}

.hero-product {
  background: linear-gradient(145deg, #ffffff 0%, #eef5ee 100%);
  border: 1px solid rgba(11, 91, 67, 0.08);
  border-radius: 26px;
  padding: 10px;
  box-shadow: var(--shadow-soft);
}

.hero-product img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.hero-content {
  padding: 18px 4px 4px;
}

.topline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.badge,
.section-label,
.stock-note,
.save-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 800;
}

.badge {
  background: var(--gold);
  color: #1e281e;
  padding: 8px 12px;
  font-size: 13px;
  box-shadow: 0 6px 16px rgba(243, 200, 75, 0.28);
}

.stock-note {
  background: #edf6ef;
  color: var(--green);
  border: 1px solid rgba(11, 91, 67, 0.15);
  padding: 8px 10px;
  font-size: 12px;
}

.product-name {
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(30px, 8vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(24px, 6.4vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

h3 {
  font-size: 17px;
  line-height: 1.18;
  margin-bottom: 7px;
}

.lead,
.section > p,
.order-text {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 16px;
}

.price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #10271e;
  color: #ffffff;
  border-radius: 22px;
  padding: 16px;
  margin: 16px 0 12px;
  box-shadow: 0 14px 30px rgba(16, 39, 30, 0.22);
}

.price-label {
  display: block;
  color: #d7e6dc;
  font-size: 13px;
  margin-bottom: 4px;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.old-price {
  color: #a9b9ad;
  font-size: 18px;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.new-price {
  color: var(--gold);
  font-size: 42px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.save-badge {
  background: var(--orange);
  color: #ffffff;
  padding: 9px 10px;
  font-size: 12px;
  white-space: nowrap;
}

.timer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff7dd;
  border: 1px solid rgba(243, 200, 75, 0.42);
  border-radius: 18px;
  padding: 13px 14px;
  margin-bottom: 14px;
}

.timer-card span {
  color: #665b33;
  font-size: 14px;
  font-weight: 700;
}

.timer-card strong {
  color: #be321f;
  font-size: 24px;
  letter-spacing: 0.02em;
}

.btn,
.sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 17px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:active,
.sticky-btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #f0ad1e 100%);
  color: #1f1707;
  box-shadow: 0 12px 24px rgba(255, 122, 26, 0.24);
}

.btn-light {
  background: #ffffff;
  color: var(--green);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.quick-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.mini-card,
.benefit-card,
.scenario-card,
.audience-grid article,
.guarantee-grid article,
.review-card,
.photo-grid figure {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.mini-card {
  padding: 12px;
  min-height: 92px;
}

.mini-card span,
.benefit-card span,
.scenario-card span,
.audience-grid span,
.guarantee-grid span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: #edf6ef;
  border-radius: 13px;
  font-size: 20px;
  margin-bottom: 8px;
}

.mini-card p {
  font-weight: 800;
  font-size: 14px;
  line-height: 1.22;
  margin-bottom: 0;
}

.section {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(11, 91, 67, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 22px 16px;
  margin-top: 14px;
}

.section-label {
  background: #e7f2e9;
  color: var(--green);
  padding: 7px 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.accent-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
  color: #ffffff;
}

.accent-section .section-label {
  background: rgba(255, 255, 255, 0.16);
  color: #fff7d2;
}

.accent-section p {
  color: #d7eadf;
}

.benefit-grid,
.scenario-grid,
.audience-grid,
.guarantee-grid,
.review-list,
.photo-grid {
  display: grid;
  gap: 12px;
}

.benefit-card,
.scenario-card,
.audience-grid article,
.guarantee-grid article,
.review-card {
  padding: 15px;
}

.benefit-card p,
.scenario-card p,
.audience-grid p,
.guarantee-grid p,
.review-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 0;
}

.scenario-grid,
.audience-grid,
.guarantee-grid {
  grid-template-columns: 1fr;
}

.photo-grid {
  grid-template-columns: 1fr 1fr;
}

.photo-grid figure {
  margin: 0;
  padding: 8px;
}

.photo-grid img,
.kit-photo {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 14px;
  background: #f7f9f6;
}

.photo-grid figcaption {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 4px 2px;
  text-align: center;
}

.spec-table {
  display: grid;
  gap: 8px;
}

.spec-row {
  display: grid;
  gap: 5px;
  background: #f7faf7;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 12px;
}

.spec-row span {
  color: var(--muted);
  font-size: 13px;
}

.spec-row strong {
  color: var(--text);
  font-size: 15px;
}

.kit-photo {
  border: 1px solid var(--line);
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
}

.kit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.kit-list li {
  position: relative;
  background: #f7faf7;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 12px 12px 40px;
  font-weight: 800;
}

.kit-list li::before {
  content: "✓";
  position: absolute;
  left: 13px;
  top: 11px;
  color: var(--green);
  font-weight: 900;
}

.stars {
  color: #e2a80e;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 900;
}

.review-card strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
}

.order-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef7ef 100%);
  scroll-margin-top: 16px;
}

.order-form {
  display: grid;
  gap: 10px;
}

.order-form label {
  font-weight: 900;
  color: var(--text);
}

.order-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid #ccd9cf;
  border-radius: 16px;
  background: #ffffff;
  color: var(--text);
  padding: 0 15px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02);
}

.order-form input:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 4px rgba(15, 122, 89, 0.12);
}

.order-form button {
  margin-top: 6px;
}

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

.footer {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 18px 16px 116px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin-bottom: 10px;
}

.footer a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 50;
  width: min(calc(100% - 24px), 500px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 91, 67, 0.16);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 14px 36px rgba(16, 39, 30, 0.2);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sticky-cta.is-hidden {
  transform: translate(-50%, 120%);
  opacity: 0;
  pointer-events: none;
}

.sticky-info {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  gap: 2px;
}

.sticky-info strong {
  color: var(--red);
  font-size: 22px;
  line-height: 1;
}

.sticky-info span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.sticky-btn {
  width: auto;
  min-width: 128px;
  min-height: 48px;
  padding: 0 18px;
  background: var(--green);
  color: #ffffff;
  box-shadow: none;
}

.legal-page {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 18px 14px 80px;
}

.legal-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: 22px 16px;
}

.legal-card h1 {
  font-size: 30px;
}

.legal-card h2 {
  font-size: 21px;
  margin-top: 20px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card a {
  color: var(--green);
  font-weight: 900;
}

.thanks-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.thanks-card {
  width: min(100%, 480px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 26px 18px;
  text-align: center;
}

.thanks-card .check {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e7f4eb;
  color: var(--green);
  font-size: 34px;
  margin-bottom: 14px;
}

.thanks-card p {
  color: var(--muted);
}

@media (min-width: 440px) {
  .scenario-grid,
  .audience-grid,
  .guarantee-grid,
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .sticky-cta {
    display: none;
  }

  .footer {
    padding-bottom: 34px;
  }
}
