@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --bg: #acb037;
  --bg-deep: #8f9c2e;
  --text: #1f2a10;
  --muted: #33451c;
  --accent: #8fae32;
  --accent-dark: #5f7720;
  --accent-soft: #cadc81;
  --highlight: #dfec9f;
  --card: #f5f9e8;
  --line: rgba(63, 79, 40, 0.2);
  --shadow: 0 24px 70px rgba(45, 63, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #c0c85f 0%, var(--bg) 36%, var(--bg-deep) 100%);
}

.page {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 248, 225, 0.4), transparent 70%);
  filter: blur(5px);
  z-index: 0;
}

.page::before {
  top: -120px;
  left: -160px;
}

.page::after {
  bottom: 10%;
  right: -200px;
}

section,
header,
footer {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: transparent;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-title {
  margin: 0;
  font-weight: 700;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.brand-subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding: 24px 64px 0;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-copy h1 {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 3.4vw, 3.6rem);
  margin: 12px 0 16px;
  line-height: 1.12;
  letter-spacing: -0.4px;
}

.hero-tagline {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 500;
  color: var(--accent-dark);
  letter-spacing: 0.4px;
  font-style: italic;
}

.company-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border-radius: 18px;
  border: 1px solid rgba(95, 119, 32, 0.34);
  background: linear-gradient(140deg, rgba(248, 252, 236, 0.95), rgba(235, 244, 206, 0.92));
  box-shadow: 0 14px 28px rgba(45, 63, 22, 0.13);
  margin: 10px 0 20px;
}

.company-logo-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #fbfdef;
  border: 1px solid rgba(95, 119, 32, 0.26);
  box-shadow: inset 0 0 0 1px rgba(250, 253, 239, 0.8);
}

.company-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.company-text {
  display: grid;
  gap: 2px;
}

.company-text strong {
  font-size: 0.95rem;
  color: var(--text);
}

.company-text span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.eyebrow {
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--accent-dark);
  text-transform: uppercase;
  font-size: 0.8rem;
}

.lead {
  font-size: 1.05rem;
  line-height: 1.72;
  color: #283819;
  max-width: 62ch;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 22px;
}

.hero-points span {
  padding: 10px 16px;
  background: rgba(143, 174, 50, 0.2);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0;
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9dbd3f, #5f7720);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(61, 81, 28, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(61, 81, 28, 0.34);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(95, 119, 32, 0.45);
  color: #335013;
  background: rgba(245, 249, 232, 0.7);
  box-shadow: none;
}

.btn-cta {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
}

.trust {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  font-size: 0.9rem;
}

.trust strong {
  display: block;
}

.media-card {
  background: var(--card);
  padding: 16px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  backdrop-filter: saturate(110%);
}

.media-badge {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.media-placeholder {
  height: 360px;
  border-radius: 18px;
  background: linear-gradient(135deg, #b6cb5a, #6f8826);
  position: relative;
  overflow: hidden;
}

.media-placeholder::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.5);
}

.media-photo {
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: #e7f0cb;
}

.media-photo.alt {
  height: 320px;
}

.hero-media .media-photo.alt {
  height: 390px;
}

.hero-media .media-img {
  object-position: center center;
}

.hero-media .media-caption {
  color: #2f4117;
  font-weight: 600;
}

.media-photo.logo {
  height: 260px;
  background: #f7fbe9;
  display: grid;
  place-items: center;
}

.media-img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}

.media-img.logo {
  object-fit: contain;
  padding: 18px;
  background: #fbfdef;
}

.media-placeholder.alt {
  height: 320px;
  background: linear-gradient(135deg, #cde08c, #7e9930);
}

.media-placeholder.video {
  height: 420px;
  background: linear-gradient(135deg, #bfd367, #6a8426);
}

.media-caption {
  margin: 12px 4px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 76px 64px;
}

.section + .section {
  margin-top: 10px;
}

.interest .section-grid {
  background: rgba(246, 251, 233, 0.66);
  border: 1px solid rgba(95, 119, 32, 0.22);
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 16px 34px rgba(45, 63, 22, 0.11);
}

.desire {
  background: rgba(246, 251, 233, 0.28);
  border-top: 1px solid rgba(95, 119, 32, 0.18);
  border-bottom: 1px solid rgba(95, 119, 32, 0.18);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.proof .section-grid {
  align-items: start;
  gap: 56px;
}

.section-media {
  display: grid;
  gap: 20px;
}

.video-panel {
  background: rgba(249, 252, 238, 0.85);
  border-radius: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px rgba(45, 63, 22, 0.12);
}

.video-scroll {
  display: grid;
  gap: 16px;
  max-height: 720px;
  overflow-y: auto;
  padding-right: 6px;
  scroll-snap-type: y mandatory;
}

.video-scroll::-webkit-scrollbar {
  width: 8px;
}

.video-scroll::-webkit-scrollbar-thumb {
  background: rgba(95, 119, 32, 0.45);
  border-radius: 999px;
}

.section-copy h2 {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: #2b3d18;
  line-height: 1.6;
}

.feature-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(248, 252, 236, 0.86);
  border: 1px solid rgba(95, 119, 32, 0.2);
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.sublead {
  color: #2f4117;
  line-height: 1.66;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit {
  background: rgba(250, 253, 239, 0.9);
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(95, 119, 32, 0.2);
  font-weight: 600;
  color: #263a16;
}

.fine-print {
  margin: 24px auto 0;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 1200px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.testimonial {
  background: var(--card);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 26px rgba(46, 64, 22, 0.1);
  display: grid;
  gap: 12px;
  font-size: 0.95rem;
  color: #2e4019;
  position: relative;
}

.testimonial::before {
  content: "";
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.testimonial span {
  color: var(--accent-dark);
  font-weight: 600;
}

.testimonial-scroll {
  max-height: 520px;
  overflow-y: auto;
  padding-right: 8px;
}

.testimonial-scroll::-webkit-scrollbar {
  width: 8px;
}

.testimonial-scroll::-webkit-scrollbar-thumb {
  background: rgba(95, 119, 32, 0.45);
  border-radius: 999px;
}

.video-stack {
  display: grid;
  gap: 16px;
}

.video-card {
  background: var(--card);
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(46, 64, 22, 0.1);
}

.video-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.video-embed {
  width: 100%;
  border-radius: 14px;
  background: #202c12;
  object-fit: cover;
}

.video-embed.landscape {
  aspect-ratio: 16 / 9;
}

.video-embed.portrait {
  aspect-ratio: 9 / 16;
  max-height: 520px;
}

.video-embed.long {
  max-height: 560px;
}

.video-card {
  scroll-snap-align: start;
}

.video-card.portrait {
  max-width: 380px;
  margin: 0 auto;
}

.promo {
  padding-top: 40px;
}

.promo-card {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: 32px;
  background: linear-gradient(145deg, #f2f7df, #e5f0c4);
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(95, 119, 32, 0.24);
  max-width: 1200px;
  margin: 0 auto;
}

.promo-copy h2 {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-top: 8px;
}

.promo-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 16px 0 20px;
}

.promo-price .old {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 1.1rem;
}

.promo-price .new {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.promo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 8px;
  color: #2d3f18;
}

.stock {
  font-weight: 600;
  color: var(--accent-dark);
}

.promo-note {
  margin-top: 18px;
  display: grid;
  gap: 6px;
  color: #2d3f18;
  font-size: 0.92rem;
}

.promo-side {
  background: rgba(250, 253, 239, 0.9);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  display: grid;
  gap: 10px;
  text-align: center;
  justify-items: center;
}

.promo-logo {
  width: 300px;
  height: auto;
  object-fit: contain;
}


.company {
  font-weight: 700;
}

.company-sub {
  font-size: 0.9rem;
  color: #364923;
}

.contact {
  font-weight: 700;
  color: var(--accent-dark);
}

.footer {
  padding: 40px 64px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2e4019;
  border-top: 1px solid rgba(95, 119, 32, 0.22);
  background: rgba(247, 251, 234, 0.74);
}

@media (max-width: 1024px) {
  .nav,
  .hero-grid,
  .section,
  .section-grid,
  .footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-grid,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .promo-card {
    grid-template-columns: 1fr;
  }

  
  .video-scroll {
    max-height: 520px;
  }

  .trust {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .hero {
    padding-bottom: 40px;
  }

  .section {
    padding: 56px 24px;
  }

  .interest .section-grid {
    padding: 18px;
    border-radius: 22px;
  }

  .hero-media .media-photo.alt,
  .interest .media-photo.alt {
    height: 320px;
    padding: 0;
  }

  .hero-media .media-img,
  .interest .media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-media .media-img {
    object-position: 34% 58%;
  }

  .interest .media-img {
    object-position: 42% 52%;
  }

  .hero-media .media-caption,
  .interest .media-caption {
    text-align: center;
  }

  .hero-grid {
    padding: 16px 24px 0;
  }

  .footer {
    flex-direction: column;
    gap: 10px;
    padding: 24px 20px 32px;
    text-align: center;
    font-size: 0.85rem;
  }

  .promo-card {
    padding: 24px;
  }

  .promo-side {
    padding: 18px;
    gap: 8px;
  }

  .promo-logo {
    width: 140px;
  }

  .company-sub,
  .contact {
    font-size: 0.85rem;
  }

  .promo-copy {
    text-align: left;
  }

  .promo-price {
    justify-content: flex-start;
  }

  .promo-price .old {
    font-size: 0.9rem;
  }

  .promo-price .new {
    font-size: 1.7rem;
  }

  .promo-list {
    justify-items: start;
    text-align: left;
  }

  .promo-note {
    justify-items: start;
    text-align: left;
  }

  .btn-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    line-height: 1.3;
    min-height: 56px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .btn-cta.btn-live {
    transform-origin: center center;
  }

  .footer {
    font-size: 0.78rem;
  }

  .footer .brand-title {
    font-size: 0.95rem;
  }

  .footer .brand-subtitle {
    font-size: 0.82rem;
  }

  .footer p {
    font-size: 0.78rem;
  }

  .video-scroll {
    max-height: none;
  }
}

/* CTA animation: subtle pulse without disappearing */
.btn-live {
  animation: ctaPulse 1.5s ease-in-out infinite;
  will-change: transform, box-shadow, filter;
}

.btn-live:hover {
  animation-play-state: paused;
}

@keyframes ctaPulse {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 14px 30px rgba(61, 81, 28, 0.28);
    filter: brightness(1);
  }
  50% {
    transform: translateY(-2px) scale(1.018);
    box-shadow: 0 20px 38px rgba(61, 81, 28, 0.36);
    filter: brightness(1.06);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 14px 30px rgba(61, 81, 28, 0.28);
    filter: brightness(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-live {
    animation: none;
  }
}

/* Proof layout: text normal (no scroll), videos scattered top/mid/bottom */
.proof-header {
  max-width: 1200px;
  margin: 0 auto 28px;
}

.proof-header h2 {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 0 0 8px;
}

.proof-row {
  max-width: 1200px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.proof-row-mid {
  grid-template-columns: 0.9fr 1.1fr;
}

.proof-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.proof-video {
  display: grid;
}

.proof-video-top {
  margin-top: 0;
}

.proof-video-mid {
  margin-top: 58px;
}

.proof-video-bottom {
  margin-top: 96px;
}

.proof-video-card {
  background: rgba(250, 253, 239, 0.9);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 28px rgba(45, 63, 22, 0.14);
  padding: 16px;
}

.proof-video-card.portrait {
  max-width: 390px;
  margin-left: auto;
}

.proof-video-card.landscape {
  max-width: 560px;
}

.proof-video-card .video-label {
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .proof-row,
  .proof-row-mid {
    grid-template-columns: 1fr;
  }

  .proof-text-grid {
    grid-template-columns: 1fr;
  }

  .proof-video-mid,
  .proof-video-bottom {
    margin-top: 0;
  }

  .proof-video-card.portrait,
  .proof-video-card.landscape {
    max-width: 100%;
    margin-left: 0;
  }
}
