:root {
  --bg: #f8faf6;
  --surface: #ffffff;
  --surface-soft: #f0f5ec;
  --ink: #1a2016;
  --muted: #5e6958;
  --line: #d5dfd0;
  --primary: #4a9e5c;
  --primary-dark: #3a7d48;
  --accent: #b8dba0;
  --success: #2d8f4e;
  --shadow: 0 20px 60px rgba(20, 40, 15, 0.10);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f4f9f0 0%, #ffffff 22%, #f8faf6 100%);
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.announcement-bar {
  background: #1a2016;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
}

.hero {
  padding: 18px 0 56px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 28px;
}

.brand {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-cta {
  padding: 14px 20px;
  background: rgba(74, 158, 92, 0.14);
  color: var(--primary-dark);
}

.hero-content,
.grid-two,
.offer-wrap,
.trust-grid,
.final-cta-box {
  display: grid;
  gap: 32px;
}

.hero-content,
.offer-wrap,
.trust-grid,
.final-cta-box {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-two {
  grid-template-columns: 1.1fr 0.9fr;
}

.eyebrow,
.section-tag,
.shot-badge,
.popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow,
.section-tag,
.shot-badge {
  color: var(--primary-dark);
}

.hero h1,
.section h2 {
  margin: 14px 0 16px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(42px, 8vw, 74px);
}

.section h2 {
  font-size: clamp(30px, 5vw, 52px);
}

.lead,
.feature-card p,
.review-card p,
.offer-copy p,
.final-cta-box p,
.summary,
.faq-list p,
.solution-box p,
.trust-stat span,
.bundle-top span,
.hero-points span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.rating-row,
.hero-points,
.hero-actions,
.trust-mini,
.thumb-grid,
.feature-grid,
.gallery-grid,
.bundle-grid,
.review-grid {
  display: grid;
  gap: 16px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.hero-points div,
.trust-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.hero-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0 18px;
}

.btn {
  min-height: 58px;
  padding: 16px 24px;
  font-size: 16px;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 18px 34px rgba(74, 158, 92, 0.28);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: #fff;
  border-color: var(--line);
}

.btn.wide,
.btn.large {
  width: 100%;
}

.hero-visual,
.product-card,
.solution-box,
.feature-card,
.bundle-card,
.review-card,
.trust-panel,
.final-cta-box,
.faq-list details {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual {
  padding: 22px;
  background: linear-gradient(180deg, #ddf0d0 0%, #f5faf0 100%);
}

.product-card,
.solution-box,
.feature-card,
.bundle-card,
.review-card,
.trust-panel,
.faq-list details {
  padding: 22px;
  border: 1px solid rgba(213, 223, 208, 0.72);
}

.main-shot {
  margin-bottom: 16px;
}

.thumb-grid,
.gallery-grid,
.feature-grid,
.bundle-grid,
.review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid,
.bundle-grid,
.review-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  border: 2px dashed rgba(74, 158, 92, 0.28);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(220, 240, 210, 0.96));
  color: #4a7040;
  font-weight: 700;
  padding: 18px;
}

.image-placeholder.tall {
  min-height: 430px;
}

.image-placeholder.small {
  min-height: 180px;
}

.image-placeholder.medium {
  min-height: 220px;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.6;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 800;
}

.check-list.negative li::before {
  content: '•';
  color: var(--primary-dark);
}

.soft-bg {
  background: linear-gradient(180deg, rgba(240, 245, 236, 0.78), rgba(255, 255, 255, 0.85));
}

.section-head {
  margin-bottom: 28px;
}

.section-head.center {
  text-align: center;
}

.feature-card h3,
.bundle-top h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.offer {
  padding-top: 32px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 18px;
}

.old-price {
  color: #9f9fa3;
  text-decoration: line-through;
  font-weight: 700;
}

.new-price,
.bundle-price {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.bundle-card {
  position: relative;
}

.bundle-card.featured {
  border: 2px solid var(--primary);
  transform: translateY(-8px);
}

.popular-badge {
  color: #fff;
  background: var(--primary);
  padding: 8px 12px;
  border-radius: 999px;
  position: absolute;
  top: -14px;
  right: 18px;
}

.review-card strong,
.trust-stat strong {
  font-size: 20px;
}

.trust-panel {
  display: grid;
  gap: 18px;
  align-content: center;
}

.trust-stat {
  display: grid;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.trust-stat:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 14px 0 0;
}

.final-cta-box {
  align-items: center;
  padding: 28px;
  background: linear-gradient(135deg, #1a2016, #2a3524);
  color: #fff;
}

.final-cta-box p,
.final-cta-box .section-tag {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 980px) {
  .hero-content,
  .grid-two,
  .offer-wrap,
  .trust-grid,
  .final-cta-box,
  .gallery-grid,
  .bundle-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 24px;
  }

  .bundle-card.featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 56px 0;
  }

  .container {
    width: min(100% - 20px, 1120px);
  }

  .nav {
    padding-bottom: 20px;
  }

  .hero-actions,
  .thumb-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .announcement-bar {
    font-size: 12px;
  }

  .brand {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section h2 {
    font-size: 32px;
  }

  .lead,
  .feature-card p,
  .review-card p,
  .offer-copy p,
  .final-cta-box p,
  .faq-list p,
  .hero-points span {
    font-size: 16px;
  }

  .image-placeholder.tall {
    min-height: 320px;
  }

  .new-price,
  .bundle-price {
    font-size: 32px;
  }
}
