:root {
  --bg: #fbfbf8;
  --paper: #ffffff;
  --ink: #083f24;
  --text: #3f4843;
  --muted: #6c7771;
  --green: #006b35;
  --green-2: #0b4b2b;
  --mint: #eef6f1;
  --line: #d8e2dc;
  --yellow: #ffd91a;
  --shadow: 0 18px 50px rgba(8, 63, 36, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at 88% 8%, rgba(0, 107, 53, 0.08), transparent 280px), var(--bg);
  font-family: "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

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

.header,
.section,
.footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: rgba(251, 251, 248, 0.88);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}

.brand img {
  width: 190px;
  height: auto;
}

.header-link {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 90px);
  padding: 56px 0 86px;
}

.overline {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 660px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 16px 30px rgba(0, 107, 53, 0.2);
  font-weight: 800;
}

.price {
  color: var(--green);
  font-size: 28px;
  font-weight: 900;
}

.hero-product {
  position: relative;
  width: 100%;
  min-height: 500px;
  padding: 34px;
  border: 4px solid var(--line);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-product img {
  width: 100%;
  max-width: 600px;
  margin: 132px auto 0;
  filter: drop-shadow(0 22px 26px rgba(8, 63, 36, 0.14));
}

.angle-badge {
  position: absolute;
  left: 34px;
  top: 34px;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
}

.product-label {
  position: absolute;
  left: 124px;
  top: 43px;
  color: var(--ink);
  text-transform: uppercase;
}

.product-label strong,
.product-label span { display: block; }
.product-label strong { font-size: 21px; font-weight: 900; }
.product-label span { margin-top: 5px; color: var(--muted); font-weight: 700; }

.parent-problem,
.benefits,
.routine,
.final-offer {
  padding-bottom: 74px;
}

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

.section-heading h2,
.routine h2,
.offer-card h2 {
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.08;
}

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

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

.soft-card,
.benefit-card,
.routine-card,
.offer-card {
  border: 2px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.soft-card,
.benefit-card {
  padding: 26px;
}

.soft-card span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
}

.soft-card h3,
.benefit-card h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.16;
}

.soft-card p,
.benefit-card p,
.routine p,
.offer-card p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.5;
}

.green-panel {
  display: grid;
  width: min(1120px, calc(100% - 40px));
  grid-template-columns: 1fr 260px;
  gap: 32px;
  align-items: center;
  margin-bottom: 74px;
  padding: 46px;
  border-radius: 34px;
  color: #ffffff;
  background: linear-gradient(135deg, #006b35, #063f24);
  box-shadow: var(--shadow);
}

.green-panel h2 {
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
}

.green-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  line-height: 1.5;
}

.panel-product {
  display: grid;
  min-height: 300px;
  place-items: center;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
}

.panel-product img {
  width: 150px;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.18));
}

.routine {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: center;
}

.routine-card {
  display: grid;
  width: 100%;
  justify-items: center;
  gap: 20px;
  padding: 28px;
  text-align: center;
}

.routine-card img {
  width: 155px;
}

.routine-card strong,
.routine-card span {
  display: block;
}

.routine-card strong {
  color: var(--green);
  font-size: 30px;
  font-weight: 900;
}

.routine-card span {
  margin-top: 8px;
  color: var(--muted);
}

.quote-band {
  margin-bottom: 74px;
  padding: 70px 0;
  background: #dff3e7;
  text-align: center;
}

.quote-eyebrow {
  margin-bottom: 22px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

blockquote {
  margin: 0 auto 28px;
  max-width: 820px;
  color: var(--green);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.18;
}

.quote-text {
  max-width: 600px;
  margin: 0 auto;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.offer-card {
  display: grid;
  justify-items: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 34px;
  text-align: center;
}

.offer-card img {
  width: 180px;
  margin-bottom: 28px;
  filter: drop-shadow(0 18px 24px rgba(8, 63, 36, 0.12));
}

.offer-card .price {
  margin-bottom: 12px;
}

.offer-card .button {
  margin-top: 18px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 36px;
  border-top: 2px solid var(--line);
}

.footer p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .header,
  .section,
  .footer {
    width: min(100%, calc(100% - 28px));
  }

  .hero,
  .problem-grid,
  .benefits,
  .green-panel,
  .routine {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    min-height: auto;
    padding-top: 32px;
  }

  .hero-product {
    order: -1;
    width: 100%;
    min-height: 430px;
    padding: 24px;
  }

  .hero-product img {
    width: 100%;
    max-width: 620px;
    margin-top: 100px;
  }

  .angle-badge {
    left: 22px;
    top: 22px;
    width: 58px;
    height: 58px;
  }

  .product-label {
    left: 96px;
    top: 28px;
  }

  .product-label strong { font-size: 16px; }
  h1 { font-size: 43px; }
  .lead, .green-panel p { font-size: 18px; }
  .green-panel, .offer-card { padding: 26px; }

  .routine-card,
  .panel-product {
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
  }

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

@media (max-width: 520px) {
  .header-link { display: none; }
  .brand img { width: 152px; }
  h1 { font-size: 35px; }
  .hero-actions, .button { width: 100%; }
  .hero-product { min-height: 330px; }
  .hero-product img { margin-top: 112px; }
}
