:root {
  --ink: #172015;
  --muted: #697264;
  --line: #dfe7d4;
  --paper: #fbfcf7;
  --leaf: #24543a;
  --leaf-soft: #e8f1dc;
  --lime: #d9f24f;
  --sun: #ffc83d;
  --tomato: #e5452e;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(35, 64, 38, 0.14);
}

* {
  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(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 247, 0.88);
  border-bottom: 1px solid rgba(36, 84, 58, 0.12);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.trust-row,
.eyebrow,
.hero-actions,
.price-panel,
.strip,
.specs,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--leaf);
  background: var(--lime);
}

.nav {
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.nav a:hover {
  color: var(--leaf);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--leaf);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 68px);
  padding: clamp(34px, 6vw, 82px) clamp(18px, 5vw, 76px) 38px;
  background:
    linear-gradient(135deg, rgba(217, 242, 79, 0.22), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.eyebrow span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--leaf-soft);
  color: var(--leaf);
  font-weight: 900;
  font-size: 13px;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.primary-button {
  min-width: 210px;
  padding: 0 24px;
  color: var(--white);
  background: var(--tomato);
  box-shadow: 0 14px 28px rgba(229, 69, 46, 0.24);
}

.secondary-button {
  padding: 0 22px;
  color: var(--leaf);
  background: var(--white);
  border: 1px solid var(--line);
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.trust-row span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-card {
  position: relative;
  max-width: 520px;
  width: 100%;
  justify-self: center;
  padding: clamp(10px, 2vw, 16px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.sale-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(34, 32, 12, 0.2);
}

.price-panel {
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding: 16px;
  border-radius: 8px;
  background: var(--leaf);
  color: var(--white);
}

.muted {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.old-price {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
}

.new-price {
  color: var(--lime);
  font-size: 30px;
}

.strip {
  justify-content: center;
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 76px) 38px;
}

.strip div {
  width: min(30vw, 280px);
  min-height: 92px;
  padding: 20px;
  background: var(--ink);
  color: var(--white);
}

.strip div:first-child {
  border-radius: 8px 0 0 8px;
}

.strip div:last-child {
  border-radius: 0 8px 8px 0;
}

.strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--lime);
  font-size: 22px;
}

.section,
.showcase,
.order-section {
  padding: clamp(54px, 8vw, 100px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading span,
.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--leaf);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.section-heading h2,
.showcase-copy h2,
.order-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p,
.showcase-copy p,
.order-copy p,
.benefit-grid p,
.review-grid p,
.faq p {
  color: var(--muted);
  line-height: 1.6;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit-grid article,
.review-grid article,
.faq details,
.order-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(33, 50, 33, 0.06);
}

.benefit-grid article {
  padding: 24px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--leaf);
  font-weight: 900;
}

.benefit-grid h3,
.review-grid strong {
  margin-bottom: 10px;
  font-size: 18px;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  background: #eef5e5;
}

.showcase-media img,
.product-gallery img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.showcase-media img {
  aspect-ratio: 4 / 5;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.specs {
  flex-wrap: wrap;
  gap: 10px;
}

.specs div {
  min-width: 142px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.specs span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-gallery img {
  aspect-ratio: 1 / 1;
}

.reviews {
  background: var(--ink);
  color: var(--white);
}

.reviews .section-heading span,
.reviews .stars {
  color: var(--lime);
}

.reviews .section-heading p,
.reviews .review-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-grid article {
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.stars {
  margin-bottom: 14px;
  letter-spacing: 0;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  background: linear-gradient(135deg, var(--leaf) 0%, #1b3d2b 100%);
  color: var(--white);
}

.order-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.order-section .section-kicker {
  color: var(--lime);
}

.stock {
  display: inline-flex;
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.order-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  color: var(--ink);
}

.order-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.order-form input,
.order-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfcf7;
  font: inherit;
}

.order-form .primary-button {
  width: 100%;
  margin-top: 4px;
  font-size: 16px;
}

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

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
}

.footer {
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 76px) 96px;
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
}

.sticky-order {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 52px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--tomato);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(229, 69, 46, 0.32);
}

.sticky-order.is-visible {
  display: inline-flex;
}

@media (max-width: 980px) {
  .hero,
  .showcase,
  .order-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-card {
    max-width: 620px;
  }

  .benefit-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 10px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    min-height: 42px;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: 44px;
  }

  .strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .strip div {
    width: 100%;
    min-height: auto;
  }

  .strip div:first-child,
  .strip div:last-child {
    border-radius: 8px;
  }

  .benefit-grid,
  .review-grid,
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .hero-actions a,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .price-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 38px;
  }

  .section-heading h2,
  .showcase-copy h2,
  .order-copy h2 {
    font-size: 31px;
  }
}
