:root {
  --bg: #fbf4ea;
  --bg-2: #fff8ee;
  --card: rgba(255,255,255,.90);
  --text: #221912;
  --muted: #66584d;
  --line: rgba(74, 54, 38, .12);
  --accent: #ff8900;
  --accent-dark: #df7200;
  --accent-soft: #fff0dc;
  --shadow: 0 18px 42px rgba(63, 43, 24, .10);
  --radius: 24px;
  --radius-sm: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 137, 0, .12), transparent 30%),
    linear-gradient(180deg, #fffaf2 0%, var(--bg) 44%, #fffaf5 100%);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 82px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.page-shell {
  width: min(100%, 724px);
  margin-inline: auto;
  padding: 0 18px;
}

.section { padding: 18px 0; }
.section--tight { padding-top: 8px; }

.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.70);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  gap: 18px;
  padding-top: 18px;
}

.image-card {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,245,232,.92)),
    radial-gradient(circle at 80% 18%, rgba(255, 137, 0, .10), transparent 44%);
}

.image-card--hero {
  padding: 12px;
}

.hero-product {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  margin-inline: auto;
  border-radius: 18px;
}

.hero__content {
  display: grid;
  gap: 12px;
  align-content: center;
}

.badge {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ffa629);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255, 137, 0, .22);
}

.eyebrow {
  margin: 0;
  font-weight: 850;
  color: #3d2a1c;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 0;
  font-size: clamp(29px, 8.4vw, 40px);
  line-height: 1.07;
  letter-spacing: -.045em;
}
h2 {
  margin-bottom: 12px;
  font-size: clamp(23px, 6.8vw, 32px);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.lead, .feature-card p, .review-card p, .form-note { color: var(--muted); }
.lead { margin-bottom: 0; font-size: 15px; }

.price-row {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}
.price-row__old {
  color: #90857c;
  font-size: 22px;
  line-height: 1;
  font-weight: 750;
  text-decoration: line-through;
}
.price-row__new {
  color: var(--accent-dark);
  font-size: 42px;
  line-height: .95;
  font-weight: 950;
  letter-spacing: -.04em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 22px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -.01em;
}
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ff9c0d);
  box-shadow: 0 14px 28px rgba(255, 137, 0, .25);
}
.btn--primary:hover { background: linear-gradient(135deg, var(--accent-dark), #ff9208); }
.btn--wide { width: 100%; }

.quick-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.mini-card,
.benefit-card,
.audience-grid article,
.review-card {
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 28px rgba(54, 40, 28, .07);
}
.mini-card {
  min-height: 94px;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 14px 10px;
  text-align: center;
}
.mini-card__icon,
.icon,
.audience-grid span {
  color: #7c5128;
  font-size: 28px;
  line-height: 1;
}
.mini-card strong { font-size: 14px; }

.feature-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,239,218,.90)),
    radial-gradient(circle at 100% 0%, rgba(255, 137, 0, .10), transparent 40%);
}
.feature-card__text p { margin-bottom: 0; }
.feature-card__media img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  margin-inline: auto;
}

.section-head {
  margin-bottom: 14px;
  text-align: center;
}
.section-head--left { text-align: left; }

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  min-height: 76px;
}
.benefit-card .icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent-soft);
}
.benefit-card strong { font-size: 15px; }

.section--photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.photo-card {
  margin: 0;
  padding: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
}
.photo-card img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  margin-inline: auto;
  border-radius: 18px;
  background: #fff7ee;
}

.split-section {
  display: grid;
  gap: 14px;
}
.panel { padding: 20px; }
.panel h2 { margin-bottom: 14px; }
.spec-list { display: grid; margin: 0; }
.spec-list div {
  display: grid;
  grid-template-columns: .95fr 1.25fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.spec-list div:last-child { border-bottom: 0; }
.spec-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}
.spec-list dd {
  margin: 0;
  font-size: 13px;
  font-weight: 850;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.audience-grid article {
  min-height: 114px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 14px 10px;
  text-align: center;
}
.audience-grid strong { font-size: 13px; line-height: 1.22; }

.reviews-grid {
  display: grid;
  gap: 12px;
}
.review-card { padding: 18px; }
.review-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #8b5e35, #d48b3b);
  font-weight: 950;
}
.stars {
  color: #f6a400;
  font-size: 14px;
  letter-spacing: 1px;
}
.review-card p { margin-bottom: 0; }
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.before-after figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #fff7ee;
}
.before-after img {
  width: 100%;
  height: auto;
  max-height: 190px;
  object-fit: contain;
  object-position: center;
}
.before-after figcaption {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #fff;
  background: rgba(34, 25, 18, .72);
  font-size: 12px;
  font-weight: 850;
}

.kit-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  overflow: hidden;
}
.kit-card img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  background: #fff7ee;
}
.check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 750;
}
.check-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--text);
  font-weight: 950;
}

.guarantee-card {
  padding: 20px;
  text-align: center;
}
.guarantee-grid {
  display: grid;
  gap: 10px;
}
.guarantee-grid article {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,248,240,.88);
}
.guarantee-grid strong { font-size: 14px; }

.order-card {
  padding: 20px;
  text-align: center;
}
.order-form {
  display: grid;
  gap: 12px;
  text-align: left;
}
.order-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}
.order-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  background: #fff;
  outline: 0;
  box-shadow: 0 10px 24px rgba(54, 40, 28, .05);
}
.order-form input:focus {
  border-color: rgba(255, 137, 0, .66);
  box-shadow: 0 0 0 4px rgba(255, 137, 0, .12);
}
.order-form .btn { width: 100%; }
.form-note {
  margin: 0;
  font-size: 12px;
  text-align: center;
}

.footer {
  padding: 10px 0 28px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}
.footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 8px;
}
.footer a { font-weight: 700; }
.footer p { margin: 0; }

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94);
  border-top: 1px solid var(--line);
  box-shadow: 0 -16px 34px rgba(43,32,24,.10);
  backdrop-filter: blur(16px);
}
.sticky-cta strong {
  color: var(--accent-dark);
  font-size: 25px;
  line-height: 1;
  font-weight: 950;
}
.sticky-cta span {
  display: inline-block;
  margin-left: 8px;
  color: #94877d;
  text-decoration: line-through;
  font-size: 13px;
  font-weight: 750;
}
.sticky-cta .btn {
  min-height: 48px;
  min-width: 150px;
  border-radius: 15px;
}

/* Legal and thank-you pages */
.legal-page { padding-bottom: 0; }
.legal-hero { padding: 42px 0 20px; }
.container { width: min(100% - 32px, 724px); margin-inline: auto; }
.legal-card,
.thanks-card {
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(255,255,255,.70);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.legal-card { padding: 22px; }
.legal-card h1 { font-size: clamp(30px, 8vw, 48px); line-height: 1.07; }
.legal-card h2 { margin-top: 28px; font-size: clamp(22px, 6vw, 32px); }
.legal-card p,
.legal-card li { color: var(--muted); }
.legal-card ul { padding-left: 20px; }
.thanks {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 26px 0;
}
.thanks-card {
  width: min(100% - 32px, 620px);
  padding: 28px;
  text-align: center;
}
.thanks-card .badge { margin-inline: auto; margin-bottom: 16px; }
.thanks-card p { color: var(--muted); }

@media (min-width: 560px) {
  .quick-benefits { grid-template-columns: repeat(4, 1fr); }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .section--photos { grid-template-columns: repeat(3, 1fr); }
  .photo-card img { min-height: 190px; }
  .reviews-grid { grid-template-columns: 1.05fr 1fr 1fr; }
  .guarantee-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 680px) {
  body { padding-bottom: 90px; }
  .page-shell { padding-inline: 44px; }
  .hero {
    grid-template-columns: .95fr 1.04fr;
    align-items: center;
    gap: 28px;
    padding-top: 28px;
  }
  .hero-product { max-height: 420px; }
  .feature-card {
    grid-template-columns: 1fr .9fr;
    align-items: center;
    padding: 32px;
  }
  .split-section { grid-template-columns: 1fr 1fr; }
  .kit-card { grid-template-columns: .85fr 1.25fr; align-items: center; }
  .order-form { grid-template-columns: 1fr 1fr 170px; align-items: end; }
  .order-form .form-note { grid-column: 1 / -1; }
  .sticky-cta {
    left: 50%;
    right: auto;
    width: min(724px, 100%);
    transform: translateX(-50%);
  }
}

.topline {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255,250,243,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -.02em;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 34px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ffad32);
  box-shadow: 0 10px 24px rgba(255,137,0,.25);
}
.brand__text { font-size: 15px; }
.topline__link { color: var(--accent-dark); font-weight: 850; }
.section-kicker {
  display: inline-block;
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
