:root {
  --ink: #20231f;
  --muted: #6e746d;
  --cream: #f7f4ed;
  --cream-2: #eee8dc;
  --white: #ffffff;
  --steel: #8d928e;
  --green: #365d4a;
  --green-dark: #274638;
  --gold: #d4b06f;
  --danger: #c94436;
  --line: #e4e2dc;
  --shadow: 0 16px 45px rgba(27, 35, 30, .10);
  --radius: 20px;
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
.container { width: min(100% - 28px, 520px); margin: 0 auto; }

.hero { padding: 22px 0 34px; background: radial-gradient(circle at 85% 5%, #fff 0, #f9f6ef 37%, #efe9dd 100%); }
.hero--bottom { padding-top: 38px; border-top: 1px solid var(--line); }
.hero__container { display: flex; flex-direction: column; gap: 14px; }
.eyebrow { align-self: center; padding: 7px 12px; border-radius: 999px; background: rgba(54,93,74,.10); color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.hero__title { margin: 0; font-size: clamp(28px, 8vw, 38px); line-height: 1.05; text-align: center; letter-spacing: -.035em; font-weight: 900; }
.hero__subtitle { margin: -3px auto 2px; max-width: 440px; text-align: center; color: #565c56; font-size: 15px; line-height: 1.55; }
.hero__media { position: relative; overflow: hidden; border-radius: 24px; background: #ddd; box-shadow: var(--shadow); aspect-ratio: 1 / 1; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.13), transparent 27%, transparent 68%, rgba(0,0,0,.22)); pointer-events: none; }
.hero__media-top { position: absolute; z-index: 2; top: 12px; left: 12px; padding: 8px 11px; border-radius: 12px; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); font-weight: 800; font-size: 12px; box-shadow: 0 7px 20px rgba(0,0,0,.10); }
.discount-badge { position: absolute; z-index: 2; top: 12px; right: 12px; width: 76px; height: 76px; display: flex; align-items: center; justify-content: center; white-space: nowrap; border-radius: 50%; background: var(--danger); color: white; border: 3px solid rgba(255,255,255,.94); box-shadow: 0 8px 20px rgba(201,68,54,.35); font-size: 21px; line-height: 1; font-weight: 900; transform: rotate(5deg); }
.stock-badge { position: absolute; z-index: 2; bottom: 13px; left: 50%; transform: translateX(-50%); width: max-content; max-width: calc(100% - 28px); padding: 9px 14px; border-radius: 999px; background: rgba(33,36,32,.92); color: white; font-size: 13px; font-weight: 800; box-shadow: 0 8px 22px rgba(0,0,0,.24); }
.stock-dot { display: inline-block; width: 8px; height: 8px; margin-right: 6px; border-radius: 50%; background: #ffcf64; box-shadow: 0 0 0 4px rgba(255,207,100,.16); animation: stockPulse 1.5s ease-in-out infinite; }
@keyframes stockPulse { 50% { transform: scale(1.25); opacity: .68; } }

.price-card { display: grid; grid-template-columns: 1fr 1.15fr; overflow: hidden; border-radius: 18px; background: white; box-shadow: 0 9px 30px rgba(27,35,30,.09); border: 1px solid rgba(54,93,74,.09); }
.price-card > div { min-height: 82px; padding: 13px 12px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.price-card__old { color: var(--muted); background: #fbfbf8; }
.price-card__new { background: var(--green); color: white; }
.price-card__label { font-size: 11px; font-weight: 700; opacity: .8; margin-bottom: 5px; text-transform: uppercase; letter-spacing: .05em; }
.price-card__old-value { text-decoration: line-through; font-size: 17px; font-weight: 800; }
.price-card__new-value { font-size: 24px; font-weight: 900; letter-spacing: -.02em; }

.urgency-card { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 14px; border: 1px solid #ead9b7; border-radius: 18px; background: #fff9eb; }
.urgency-card strong { display: block; margin-bottom: 3px; font-size: 14px; }
.urgency-card > div:first-child span { color: #776542; font-size: 11px; line-height: 1.35; }
.timer__clock { display: flex; align-items: center; justify-content: center; gap: 4px; }
.timer__item { min-width: 42px; padding: 7px 5px; border-radius: 10px; background: var(--ink); color: white; text-align: center; }
.timer__item span { display: block; font-size: 17px; line-height: 1; font-weight: 900; }
.timer__item small { display: block; margin-top: 4px; font-size: 8px; opacity: .7; }
.timer__separator { font-size: 17px; font-weight: 800; color: #8a7959; }
.timer__clock--bottom { margin: 4px auto 0; }
.bottom-stock { margin: 0 auto; font-size: 13px; font-weight: 800; color: #8a392f; }

.form { display: flex; flex-direction: column; gap: 10px; padding: 17px; border-radius: 20px; background: rgba(255,255,255,.96); box-shadow: var(--shadow); border: 1px solid rgba(42,52,46,.08); }
.form__heading { font-size: 18px; font-weight: 900; text-align: center; }
.form__note { margin: -3px 6px 2px; color: var(--muted); text-align: center; font-size: 12px; line-height: 1.45; }
.form__input { width: 100%; padding: 15px 14px; border: 1px solid #d9ddd8; border-radius: 12px; background: #fafbf9; color: var(--ink); font-size: 16px; outline: none; transition: .2s; }
.form__input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(54,93,74,.10); background: white; }
.form__input.error { border-color: var(--danger); background: #fff9f8; }
.form__trust { color: var(--muted); font-size: 11px; text-align: center; }
.btn { display: block; width: 100%; padding: 16px 18px; border: 0; border-radius: 13px; text-decoration: none; text-align: center; font-size: 15px; line-height: 1.2; font-weight: 900; cursor: pointer; transition: transform .15s, filter .15s; }
.btn:active { transform: translateY(1px) scale(.995); }
.btn:disabled { opacity: .65; cursor: wait; }
.btn--primary { color: white; background: linear-gradient(180deg, #426f59, #315543); box-shadow: 0 10px 22px rgba(49,85,67,.24); }
.btn--primary:hover { filter: brightness(1.03); }

.section { padding: 44px 0; }
.section--white { background: white; }
.section--soft { background: var(--cream); }
.section-heading { margin-bottom: 22px; text-align: center; }
.section-heading h2 { margin: 6px 0 8px; font-size: 26px; line-height: 1.12; letter-spacing: -.025em; }
.section-heading p { margin: 0 auto; max-width: 430px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.section-kicker { color: var(--green); font-size: 11px; font-weight: 900; letter-spacing: .11em; }

.use-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.use-card { min-height: 165px; padding: 16px 13px; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: 0 7px 22px rgba(30,37,32,.05); }
.use-card__icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--cream); font-size: 21px; }
.use-card h3 { margin: 12px 0 6px; font-size: 15px; line-height: 1.2; }
.use-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }

.benefit-list { display: flex; flex-direction: column; gap: 10px; }
.benefit-card { display: grid; grid-template-columns: 44px 1fr; gap: 11px; padding: 15px; border-radius: 17px; background: white; border: 1px solid #e6e0d5; box-shadow: 0 6px 20px rgba(40,45,41,.04); }
.benefit-card__num { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--green); color: white; font-size: 12px; font-weight: 900; }
.benefit-card h3 { margin: 1px 0 5px; font-size: 15px; line-height: 1.25; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.5; }

.demo-grid { display: grid; gap: 14px; }
.demo-card { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 8px 25px rgba(29,34,30,.07); }
.demo-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.demo-card figcaption { padding: 15px; color: #565c56; font-size: 13px; line-height: 1.55; }
.demo-card strong { color: var(--ink); }
.section-cta { margin-top: 15px; }

.spec-card { overflow: hidden; border-radius: 22px; background: white; border: 1px solid #e6e0d5; box-shadow: 0 12px 30px rgba(34,40,36,.07); }
.spec-card__img { width: 100%; background: white; }
.spec-card__content { padding: 17px; }
.included-pill { margin-bottom: 14px; padding: 10px 12px; border-radius: 12px; background: #edf3ef; color: var(--green-dark); text-align: center; font-size: 13px; font-weight: 800; }
.spec-list { margin: 0; }
.spec-list div { display: grid; grid-template-columns: 105px 1fr; gap: 10px; padding: 11px 0; border-bottom: 1px solid #eee; }
.spec-list div:last-child { border-bottom: 0; }
.spec-list dt { color: var(--muted); font-size: 12px; }
.spec-list dd { margin: 0; text-align: right; font-size: 12.5px; font-weight: 700; }

.reviews { background: #f8f8f6; }
.reviews__list { display: flex; flex-direction: column; gap: 12px; }
.review-card { padding: 17px; border-radius: 18px; background: white; border: 1px solid #e7e7e2; box-shadow: 0 8px 22px rgba(30,35,31,.05); }
.review__header { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; }
.review__photo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.review__header strong { font-size: 14px; }
.review__stars { margin-top: 3px; color: #d4a13d; letter-spacing: 1px; font-size: 12px; }
.review-card p { margin: 0 0 10px; color: #4f554f; font-size: 13px; line-height: 1.55; }
.review__date { color: #939891; font-size: 11px; }
.review__product-image { width: 100%; max-height: 340px; margin: 2px 0 10px; border-radius: 13px; object-fit: cover; }

.steps { display: flex; flex-direction: column; gap: 10px; }
.step { display: grid; grid-template-columns: 44px 1fr; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 17px; }
.step > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: white; font-weight: 900; }
.step h3 { margin: 1px 0 4px; font-size: 15px; }
.step p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.5; }
.delivery-banner { display: grid; grid-template-columns: 42px 1fr; gap: 12px; margin-top: 15px; padding: 15px; border-radius: 18px; background: #eef5f0; color: var(--green-dark); }
.delivery-banner__icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: white; font-weight: 900; }
.delivery-banner strong { font-size: 14px; }
.delivery-banner p { margin: 4px 0 0; font-size: 12px; }

.faq__accordion { display: flex; flex-direction: column; gap: 9px; }
.faq__item { overflow: hidden; border: 1px solid #e2dccf; border-radius: 15px; background: white; }
.faq__item summary { position: relative; padding: 15px 42px 15px 15px; list-style: none; cursor: pointer; font-size: 13.5px; font-weight: 800; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 15px; top: 50%; transform: translateY(-50%); font-size: 20px; color: var(--green); }
.faq__item[open] summary::after { content: "–"; }
.faq__item p { margin: 0; padding: 0 15px 15px; color: var(--muted); font-size: 12.5px; line-height: 1.55; }

.footer { padding: 27px 0 32px; background: #20231f; color: #d7dbd6; }
.footer__inner { text-align: center; }
.footer__brand { color: white; font-size: 16px; font-weight: 900; }
.footer p { margin: 6px 0 15px; color: #aeb4ad; font-size: 11px; }
.footer__links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 14px; }
.footer__links a { color: #e7eae6; font-size: 11px; text-decoration: underline; text-underline-offset: 3px; }

.legal-page { min-height: 100vh; background: var(--cream); padding: 28px 0 48px; }
.legal-card { padding: 22px; border-radius: 20px; background: white; box-shadow: var(--shadow); }
.legal-card h1 { margin: 0 0 18px; font-size: 27px; line-height: 1.1; }
.legal-card h2 { margin: 24px 0 8px; font-size: 17px; }
.legal-card p, .legal-card li { color: #555c55; font-size: 13px; line-height: 1.6; }
.legal-back { display: inline-block; margin-bottom: 16px; color: var(--green); font-size: 13px; font-weight: 800; text-decoration: none; }
.thanks-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at top, #fdfbf6 0, #efe9dd 100%); }
.thanks-card { width: min(100%, 480px); padding: 28px 22px; border-radius: 24px; background: white; text-align: center; box-shadow: var(--shadow); }
.thanks-icon { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 14px; border-radius: 50%; background: var(--green); color: white; font-size: 28px; font-weight: 900; }
.thanks-card h1 { margin: 0 0 10px; font-size: 28px; line-height: 1.1; }
.thanks-card p { margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.6; }

@media (max-width: 380px) {
  .container { width: min(100% - 20px, 520px); }
  .hero__title { font-size: 27px; }
  .urgency-card { grid-template-columns: 1fr; text-align: center; }
  .use-card { min-height: 175px; }
  .price-card__new-value { font-size: 21px; }
}
