/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
ul { margin: 0 0 1rem; padding-left: 0; list-style: none; }

/* ===== Container ===== */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container { padding: 0 1.5rem; }
}

/* ===== Header ===== */
.header {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.25rem;
  color: #1a5f3c;
  font-weight: 400;
}
.logo strong { font-weight: 700; }
.logo:hover { text-decoration: none; }

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav a {
  color: #6b7280;
  font-size: 0.9rem;
}
.nav a:hover { color: #1a5f3c; }
.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  border-radius: 4px;
}
.search-btn:hover { color: #1a5f3c; }
.search-btn:focus-visible { outline: 2px solid #1a5f3c; outline-offset: 2px; }

/* ===== Main ===== */
.main { padding: 2rem 0 3rem; }

@media (min-width: 768px) {
  .main { padding: 2.5rem 0 4rem; }
}

/* ===== Hero ===== */
.hero { margin-bottom: 2.5rem; }
.hub-hero {
  margin-bottom: 2rem;
  text-align: center;
}
.hub-hero__lead {
  margin: 0 auto;
  max-width: 56ch;
  color: #4b5563;
}
.hero__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: #111;
  text-align: center;
}
.hero__title-main { display: block; }
.hero__title-sub { font-size: 0.9em; font-weight: 600; color: #333; }
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .hero__content { flex-direction: row; align-items: flex-start; gap: 2rem; }
}
.hero__image-wrap {
  flex-shrink: 0;
  max-width: 320px;
}
.hero__image { border-radius: 8px; }
.hero__text { margin: 0; }
.hero__text p { margin: 0 0 1rem; }
.hero__text p:last-child { margin-bottom: 0; }
.hero__lead { font-size: 1.05rem; }

/* ===== Product list (hub) ===== */
.product-list {
  display: grid;
  gap: 1rem;
  justify-items: center;
}
@media (min-width: 640px) {
  .product-list { grid-template-columns: repeat(2, minmax(0, 1fr)); justify-items: stretch; }
}
.product-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem;
  border: 1px solid #eee;
  border-radius: 14px;
  background: #fff;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.product-card:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  border-color: #e5e7eb;
}
.product-card:focus-visible { outline: 2px solid #1a5f3c; outline-offset: 3px; }
.product-card__media img { margin: 0 auto; border-radius: 10px; }
.product-card__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
}
.product-card__subtitle {
  margin: 0.25rem 0 1rem;
  color: #4b5563;
}
.product-card__body {
  text-align: center;
}
.product-card__cta {
  pointer-events: none;
  display: inline-block;
}

/* ===== Content pages (privacy/terms/contact) ===== */
.content { max-width: 860px; }
.content__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  line-height: 1.2;
  color: #111;
  text-align: center;
}
.content__lead {
  margin: 0 auto 1.5rem;
  max-width: 70ch;
  color: #4b5563;
  text-align: center;
}
.content__body {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 1.25rem;
}
.content__body h2 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.1rem;
  color: #111;
}
.content__body h2:first-child { margin-top: 0; }
.content__body p { margin: 0 0 1rem; }
.content__body p:last-child { margin-bottom: 0; }
.content__body a { color: #1a5f3c; }

.contact-form {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}
.field { display: grid; gap: 0.4rem; }
.field__label { font-weight: 600; color: #111; }
.field__input {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  outline: none;
}
.field__textarea { resize: vertical; }
.field__input:focus-visible {
  border-color: #1a5f3c;
  box-shadow: 0 0 0 3px rgba(26, 95, 60, 0.15);
}
.contact-form__fineprint {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}

/* ===== Section title ===== */
.section-title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #111;
}

/* ===== What Is ===== */
.what-is {
  margin-bottom: 2rem;
}
.what-is p { margin: 0 0 0.75rem; }
.what-is p:last-child { margin-bottom: 0; }
 
.benefits {
  margin-bottom: 2.5rem;
}
.benefits__content {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 14px;
  background: #f0f4f2;
}
@media (min-width: 640px) {
  .benefits__content {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
    align-items: center;
  }
}
.benefits__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.benefits__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.benefits__list li:last-child { margin-bottom: 0; }
.benefits__note {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: #4b5563;
}
.benefits__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .benefits__cta {
    align-items: center;
    text-align: center;
  }
}

.video-presell {
  margin-bottom: 2.5rem;
}
.video-presell p {
  margin: 0 0 0.75rem;
  color: #4b5563;
}
.video-presell__wrapper {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 1rem auto 1.25rem;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.video-presell__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-presell__note {
  font-size: 0.95rem;
  text-align: center;
}
.video-presell__cta {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 639px) {
  .hero__image-wrap {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25em;
  height: 1.25em;
  margin-top: 0.15em;
  font-size: 0.85em;
  font-weight: bold;
  line-height: 1;
}
.icon--check::before { content: "✓"; color: #22c55e; }
.icon--cross::before { content: "✕"; color: #dc2626; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
.btn--green {
  background: #1a5f3c;
  box-shadow: 0 2px 8px rgba(26, 95, 60, 0.6);
}
.btn--green:hover {
  background: #155030;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 95, 60, 0.35);
}
.btn--green-pulse {
  animation: pulse 0.7s ease-in-out infinite;
}
.btn--orange {
  background: #c17d2e;
  box-shadow: 0 2px 8px rgba(193, 125, 46, 0.3);
  animation: pulse-orange 1s ease-in-out infinite;
}
.btn--orange:hover {
  background: #a86a26;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(193, 125, 46, 0.35);
}
@keyframes pulse {
  0%   { box-shadow: 0 2px 8px rgba(26, 95, 60, 0.6); transform: scale(1); }
  50%  { box-shadow: 0 0 0 14px rgba(26, 95, 60, 0.2); transform: scale(1.03); }
  100% { box-shadow: 0 2px 8px rgba(26, 95, 60, 0.6); transform: scale(1); }
}
@keyframes pulse-orange {
  0%   { box-shadow: 0 2px 8px rgba(193, 125, 46, 0.3); }
  50%  { box-shadow: 0 0 0 12px rgba(193, 125, 46, 0.0); }
  100% { box-shadow: 0 2px 8px rgba(193, 125, 46, 0.3); }
}
/* ===== Review section ===== */
.review {
  margin-bottom: 2rem;
  text-align: center;
}
.review__list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: inline-block;
  text-align: left;
}
.review__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.review__list li:last-child { margin-bottom: 0; }
.review__cta {
  display: flex;
  justify-content: center;
}
.review__cta .btn {
  width: auto;
}

.hero__mobile-cta {
  display: none;
  margin-top: 1rem;
  text-align: center;
}

@media (max-width: 639px) {
  .hero__mobile-cta {
    display: block;
  }
  .hero .review__cta {
    display: none;
  }
}

@media (max-width: 480px) {
  .review__cta .btn {
    width: 100%;
    max-width: 420px;
  }
}

/* ===== Footer ===== */
.footer {
  padding: 1.5rem 0;
  background: #f9fafb;
  border-top: 1px solid #eee;
  text-align: center;
}
.footer__disclosure {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: #6b7280;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.9rem;
}
.footer__nav a { color: #6b7280; }
.footer__nav a:hover { color: #1a5f3c; }
.footer__dot { color: #9ca3af; }

@media (max-width: 480px) {
  .header__inner { flex-direction: column; align-items: flex-start; }
  .nav a { font-size: 0.85rem; }
  .btn { width: 100%; }
}
