:root {
  --primary-green: #2d6a4f;
  --light-green: #52b788;
  --yellow-accent: #f4a50d;
  --bg-white: #ffffff;
  --section-bg-light: #f8f9f4;
  --text-dark: #1a1a1a;
  --text-muted: #555555;
  --border-light: #e0e0e0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  background: var(--bg-white);
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.55;
}

body.has-sticky-cta {
  padding-bottom: 84px;
}

#announcement-bar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #1a3d2b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 40px 10px 16px;
  font-family: Arial, sans-serif;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.4;
}

#announcement-bar.is-hidden {
  display: none;
}

.announcement-dot {
  width: 8px;
  height: 8px;
  background: #52b788;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

#announcement-close {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  opacity: 0.7;
}

#announcement-close:hover {
  opacity: 1;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

a {
  color: var(--primary-green);
  font-weight: 700;
}

section,
footer {
  padding: 48px 18px;
}

section > h2,
section > p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

h1 {
  margin-bottom: 14px;
  font-size: 2.25rem;
  line-height: 1.08;
}

h2 {
  margin-bottom: 12px;
  font-size: 1.8rem;
  line-height: 1.18;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
}

ul {
  padding-left: 22px;
}

li + li {
  margin-top: 8px;
}

.btn-primary,
.btn-secondary,
.btn-sticky,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  color: #ffffff;
  background: var(--primary-green);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #1b4332;
}

.btn-secondary {
  color: var(--primary-green);
  background: #ffffff;
  border: 2px solid var(--primary-green);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: #ffffff;
  background: var(--primary-green);
}

.btn-ghost {
  color: var(--primary-green);
  background: transparent;
  border: 2px solid var(--border-light);
}

.btn-full {
  width: 100%;
}

.media-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 18px;
  border: 2px dashed #b8b8b8;
  border-radius: 8px;
  background: #f0f0f0;
  color: var(--text-muted);
  text-align: center;
}

.media-frame-label {
  max-width: 260px;
  font-size: 0.95rem;
  font-weight: 700;
}

#hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 28px;
  background: linear-gradient(180deg, #f8f9f4 0%, #ffffff 100%);
}

.hero-image-frame {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 0;
  border-radius: 12px;
  background: #050505;
  box-shadow: 0 16px 34px rgba(28, 30, 33, 0.14);
  object-fit: cover;
}

.video-sound-wrap {
  position: relative;
}

.hero-video-wrap {
  width: 100%;
}

.video-sound-toggle {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  min-height: 38px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(5, 5, 5, 0.62);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.video-sound-toggle:hover,
.video-sound-toggle:focus-visible {
  background: rgba(5, 5, 5, 0.82);
}

.hero-eyebrow {
  margin-bottom: 10px;
  color: var(--primary-green);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 1.08rem;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-trust-row span {
  padding: 7px 10px;
  border: 1px solid rgba(45, 106, 79, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary-green);
  font-size: 0.82rem;
  font-weight: 800;
}

#trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  background: var(--primary-green);
}

.trust-badge {
  min-height: 128px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.trust-badge strong,
.trust-badge span {
  display: block;
}

.trust-badge strong {
  margin-bottom: 6px;
  font-size: 1rem;
}

.trust-badge span,
.trust-badge a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

#product-proof,
#how-it-works,
#delivery-info,
#reviews,
#faq {
  background: var(--section-bg-light);
}

#reviews {
  background: #f0f2f5;
}

.offer-grid,
.delivery-grid {
  display: grid;
  gap: 16px;
  max-width: 1120px;
  margin: 28px auto 0;
}

.photo-grid {
  display: flex;
  gap: 16px;
  max-width: 1120px;
  margin: 28px auto 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.proof-photo-card {
  position: relative;
  flex: 0 0 min(84vw, 340px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  background: #f0f2f5;
  scroll-snap-align: center;
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.08);
}

.proof-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-photo-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(5, 5, 5, 0.62);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.packing-steps {
  display: flex;
  gap: 16px;
  max-width: 1120px;
  margin: 28px auto 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.reel-track,
.review-track,
.proof-track,
.carousel-track,
.photo-grid,
.packing-steps,
.review-video-grid,
[class*="-track"],
[class*="-scroll"] {
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.reel-wrapper,
.review-wrapper,
.proof-wrapper,
[class*="-wrapper"]:has([class*="-track"]) {
  overflow-y: visible;
}

.offer-card,
.harvest-card,
.guarantee-card,
.fb-review-card,
.faq-item,
.form-card,
.thank-you-card,
.upsell-card,
.delivery-card {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.06);
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.offer-card-featured {
  border: 2px solid var(--primary-green);
}

@keyframes fire-glow {
  0%   { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.0), 0 4px 20px rgba(0,0,0,0.08); }
  30%  { box-shadow: 0 0 0 5px rgba(251, 146, 60, 0.35), 0 4px 28px rgba(220,38,38,0.22); }
  60%  { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0.18), 0 4px 32px rgba(251,146,60,0.28); }
  100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.0), 0 4px 20px rgba(0,0,0,0.08); }
}

.offer-card--best {
  border: 2px solid #dc2626;
  background: linear-gradient(160deg, #fff8f0 0%, #ffffff 60%);
  animation: fire-glow 2s ease-in-out infinite;
  position: relative;
}

.offer-card--best .offer-badge {
  background: linear-gradient(90deg, #dc2626 0%, #f97316 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.offer-card--best .offer-price {
  color: #dc2626;
}

.offer-card--best .btn-primary {
  background: linear-gradient(90deg, #dc2626 0%, #f97316 100%);
}

.offer-card--best .btn-primary:hover {
  background: linear-gradient(90deg, #b91c1c 0%, #ea6c10 100%);
}

.offer-qty {
  font-size: 1.25rem;
  font-weight: 900;
}

.offer-price {
  margin-top: 8px;
  color: var(--primary-green);
  font-size: 2.15rem;
  font-weight: 900;
}

.offer-per-pc {
  color: var(--text-muted);
  font-weight: 700;
}

.offer-tag {
  margin-top: 12px;
  color: var(--yellow-accent);
  font-weight: 900;
}

.offer-includes {
  flex: 1;
  margin: 18px 0 22px;
}

.offer-badge {
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--yellow-accent);
  color: #1a1a1a;
  font-size: 0.78rem;
  font-weight: 900;
}

.offer-savings {
  font-size: 0.78rem;
  color: #dc2626;
  font-weight: 700;
  background: #fff1f2;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  margin: 0.4rem 0;
  text-align: center;
}

.why-grid {
  display: grid;
  gap: 20px;
  max-width: 1040px;
  margin: 24px auto 0;
}

.why-reasons,
.harvest-card {
  padding: 24px;
}

.harvest-card {
  border-color: rgba(82, 183, 136, 0.45);
}

.harvest-math {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 800;
}

.harvest-value {
  color: var(--primary-green);
  font-size: 1.35rem;
  font-weight: 900;
}

.harvest-disclaimer {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.how-video-frame {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 12px;
  background: #050505;
  box-shadow: 0 16px 34px rgba(28, 30, 33, 0.14);
  object-fit: cover;
}

.how-video-wrap {
  max-width: 900px;
  margin: 26px auto;
}

.review-reels-header {
  max-width: 740px;
  margin: 30px auto 0;
}

.review-reels-header h2,
.review-reels-header p {
  margin-bottom: 6px;
  text-align: left;
}

.review-video-grid {
  display: flex;
  gap: 16px;
  max-width: 420px;
  margin: 18px auto 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 0 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.reel-card {
  position: relative;
  flex: 0 0 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 14px;
  background: #050505;
  box-shadow: 0 16px 34px rgba(28, 30, 33, 0.18);
  scroll-snap-align: center;
}

.review-video-frame {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 35%, rgba(0, 0, 0, 0.72) 100%);
}

.reel-play-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(5, 5, 5, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.reel-play-toggle span {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.reel-card.is-playing .reel-play-toggle {
  opacity: 0;
}

.reel-card.is-playing:hover .reel-play-toggle,
.reel-card.is-playing:focus-within .reel-play-toggle {
  opacity: 1;
}

.reel-side-actions {
  position: absolute;
  right: 12px;
  bottom: 54px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 54px;
}

.reel-profile {
  position: relative;
  width: 46px;
  height: 46px;
}

.reel-profile img {
  width: 46px;
  height: 46px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.reel-profile span {
  position: absolute;
  left: 50%;
  bottom: -8px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 2px solid #050505;
  border-radius: 50%;
  color: #ffffff;
  background: #f33e58;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  transform: translateX(-50%);
}

.reel-side-actions button {
  display: grid;
  justify-items: center;
  gap: 3px;
  width: 54px;
  min-height: 50px;
  padding: 0;
  border: 0;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.65));
}

.reel-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(5, 5, 5, 0.42);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.reel-side-actions button:hover .reel-icon,
.reel-side-actions button:focus-visible .reel-icon {
  background: rgba(255, 255, 255, 0.22);
}

.reel-side-actions button strong {
  color: #ffffff;
  font-size: 0.74rem;
  line-height: 1;
  text-align: center;
}

.reel-side-actions .reel-sound-toggle {
  position: static;
  width: 54px;
  min-height: 50px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.65));
}

.reel-side-actions .reel-sound-toggle .reel-icon {
  width: 38px;
  height: 38px;
  padding: 4px;
  font-size: 0.62rem;
  line-height: 1.05;
  text-align: center;
}

.reel-caption {
  position: absolute;
  left: 14px;
  right: 78px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  gap: 4px;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.25;
}

.reel-caption span {
  color: rgba(255, 255, 255, 0.88);
}

.reel-caption small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.steps-row {
  display: grid;
  gap: 12px;
  max-width: 1120px;
  margin: 24px auto 0;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px 12px;
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: #ffffff;
}

.step-num {
  display: flex;
  grid-row: span 2;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-green);
  color: #ffffff;
  font-weight: 900;
}

.step-label {
  font-weight: 900;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.packing-step {
  flex: 0 0 min(82vw, 310px);
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: #ffffff;
  scroll-snap-align: center;
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.06);
}

.packing-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  background: #f0f2f5;
}

.packing-step p {
  margin-bottom: 0;
}

.packing-step-num {
  margin-top: 14px;
  color: var(--primary-green);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.packing-step-label {
  margin: 4px 0 6px;
  font-weight: 900;
}

#delivery-info {
  background: #e8f7ef;
}

.delivery-grid {
  grid-template-columns: 1fr;
  max-width: 1040px;
}

.delivery-card {
  overflow: hidden;
  padding: 0 0 20px;
  text-align: center;
  box-shadow: none;
}

.delivery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f0f2f5;
}

.delivery-region {
  margin-top: 16px;
  color: var(--text-dark);
  font-size: 1.18rem;
  font-weight: 900;
}

.delivery-eta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--primary-green);
  font-size: 0.98rem;
  font-weight: 900;
}

@media (max-width: 767px) {
  .steps-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0;
  }

  .step {
    padding: 10px;
  }

  .step-num {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    margin-bottom: 6px;
  }

  .step-label {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 2px;
  }

  .step-desc {
    font-size: 0.72rem;
    line-height: 1.35;
    color: #555555;
  }

  #how-it-works h2 {
    font-size: 1.3rem;
  }

  #how-it-works {
    padding: 28px 14px;
  }
}

@media (max-width: 767px) {
  .delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin: 16px 0 0;
    overflow: visible;
  }

  .delivery-card {
    padding: 10px 6px 12px;
    border-radius: 8px;
    text-align: center;
    background: #ffffff;
  }

  .delivery-card img {
    aspect-ratio: 1 / 1;
  }

  .delivery-region {
    font-size: 0.72rem;
    font-weight: 700;
    margin-top: 8px;
  }

  .delivery-eta {
    font-size: 0.65rem;
    color: #ffffff;
    margin-top: 2px;
    padding: 3px 8px;
  }
}

.delivery-note {
  margin-top: 24px;
  font-weight: 800;
}

.guarantee-card,
.form-card,
.thank-you-card,
.upsell-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 26px;
}

.guarantee-icon {
  color: var(--primary-green);
  font-size: 2.5rem;
}

.guarantee-note {
  font-size: 0.92rem;
}

.fb-review-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 22px auto 0;
}

.fb-review-summary span {
  padding: 8px 12px;
  border: 1px solid #d8dde6;
  border-radius: 999px;
  color: #1c1e21;
  background: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
}

.fb-review-feed {
  display: grid;
  gap: 16px;
  max-width: 740px;
  margin: 28px auto 0;
}

.fb-review-card {
  padding: 14px 14px 12px;
  border-color: #d8dde6;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(28, 30, 33, 0.08);
}

.fb-review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fb-avatar {
  display: grid;
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  color: transparent;
  background: #c8875f;
}

img.fb-avatar {
  display: block;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 1px 4px rgba(28, 30, 33, 0.16);
}

.fb-avatar::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 8px;
  width: 28px;
  height: 17px;
  border-radius: 16px 16px 8px 8px;
  background: #171717;
  z-index: 2;
}

.fb-avatar::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: -7px;
  height: 18px;
  border-radius: 16px 16px 0 0;
  background: #1877f2;
}

.fb-avatar span {
  position: absolute;
  top: 14px;
  width: 26px;
  height: 25px;
  border-radius: 50%;
  background: #d69b73;
  z-index: 1;
}

.fb-avatar span::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 7px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #1c1e21;
  box-shadow: 9px 0 0 #1c1e21;
}

.fb-avatar span::after {
  content: "";
  position: absolute;
  left: 9px;
  bottom: 6px;
  width: 8px;
  height: 3px;
  border-bottom: 2px solid #7a3f2a;
  border-radius: 0 0 10px 10px;
}

.fb-avatar-1 span,
.fb-avatar-5 span {
  background: #d79868;
}

.fb-avatar-2 span,
.fb-avatar-4 span {
  background: #bf7f55;
}

.fb-avatar-3 span,
.fb-avatar-6 span {
  background: #e0aa7a;
}

.fb-avatar-1::after {
  background: #e85d75;
}

.fb-avatar-2::after {
  background: #2d6a4f;
}

.fb-avatar-3::after {
  background: #6c63ff;
}

.fb-avatar-4::after {
  background: #f4a50d;
}

.fb-avatar-5::after {
  background: #52b788;
}

.fb-avatar-6::after {
  background: #1877f2;
}

.fb-review-meta {
  min-width: 0;
}

.fb-name {
  color: #050505;
  font-weight: 900;
  line-height: 1.2;
}

.fb-post-info,
.fb-order-detail,
.fb-engagement {
  color: #65676b;
  font-size: 0.9rem;
}

.fb-review-text {
  margin-top: 12px;
  color: #050505;
}

.fb-order-detail {
  margin-top: 8px;
  font-weight: 800;
}

.fb-review-photo {
  display: block;
  width: 100%;
  max-height: 360px;
  min-height: 220px;
  margin-top: 12px;
  border-radius: 8px;
  object-fit: cover;
  background: #f0f2f5;
}

.fb-engagement {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e4e6eb;
}

.fb-reaction {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: -4px;
  place-items: center;
  border: 1px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.72rem;
  line-height: 1;
}

.fb-reaction.like {
  background: #1877f2;
}

.fb-reaction.love {
  background: #f33e58;
}

.fb-reaction.care,
.fb-reaction.wow {
  background: #f7b928;
}

.fb-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 6px 0;
  border-bottom: 1px solid #e4e6eb;
}

.fb-actions button {
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  color: #65676b;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.fb-actions button:hover,
.fb-actions button:focus-visible {
  background: #f0f2f5;
}

.fb-comment-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.fb-comment-controls button,
.fb-comment-toggle {
  border: 0;
  color: #65676b;
  background: transparent;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.fb-comment-controls button {
  padding: 5px 8px;
  border-radius: 999px;
}

.fb-comment-controls button:hover,
.fb-comment-controls button:focus-visible,
.fb-comment-controls button.is-active {
  color: #1877f2;
  background: #e7f3ff;
}

.fb-comments {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.fb-comment {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: flex-start;
  column-gap: 7px;
  gap: 7px;
}

.fb-comment.is-extra-comment {
  display: none;
}

.fb-review-card.comments-expanded .fb-comment.is-extra-comment {
  display: grid;
}

.fb-comment-avatar {
  grid-column: 1;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, #d69b73 0 34%, transparent 35%),
    radial-gradient(circle at 50% 13%, #171717 0 24%, transparent 25%),
    linear-gradient(135deg, #1877f2 0 50%, #52b788 51% 100%);
  box-shadow: 0 1px 3px rgba(28, 30, 33, 0.12);
}

img.fb-comment-avatar {
  display: block;
  object-fit: cover;
  background: #f0f2f5;
}

.fb-comment-avatar-2,
.fb-comment-avatar-7,
.fb-comment-avatar-12 {
  background:
    radial-gradient(circle at 50% 42%, #c8875f 0 34%, transparent 35%),
    radial-gradient(circle at 50% 13%, #171717 0 24%, transparent 25%),
    linear-gradient(135deg, #f4a50d 0 50%, #1877f2 51% 100%);
}

.fb-comment-avatar-3,
.fb-comment-avatar-8,
.fb-comment-avatar-13 {
  background:
    radial-gradient(circle at 50% 42%, #e0aa7a 0 34%, transparent 35%),
    radial-gradient(circle at 50% 13%, #171717 0 24%, transparent 25%),
    linear-gradient(135deg, #e85d75 0 50%, #6c63ff 51% 100%);
}

.fb-comment-avatar-4 {
  background:
    radial-gradient(circle at 50% 42%, #bf7f55 0 34%, transparent 35%),
    radial-gradient(circle at 50% 13%, #171717 0 24%, transparent 25%),
    linear-gradient(135deg, #2d6a4f 0 50%, #52b788 51% 100%);
}

.fb-comment-bubble {
  grid-column: 2;
  margin-top: 8px;
  padding: 9px 11px;
  border-radius: 16px;
  color: #050505;
  background: #f0f2f5;
  font-size: 0.9rem;
}

.fb-comment-bubble strong {
  color: #050505;
}

.fb-comment-actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #65676b;
  font-size: 0.78rem;
  font-weight: 800;
}

.fb-mini-reaction {
  display: inline-grid;
  width: 15px;
  height: 15px;
  margin-right: -3px;
  place-items: center;
  border: 1px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background: #1877f2;
  font-size: 0.55rem;
}

.fb-mini-reaction.love {
  background: #f33e58;
}

.fb-comment-reply {
  grid-column: 2;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 7px;
  margin-top: 2px;
}

.fb-comment-reply img {
  width: 26px;
  height: 26px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(28, 30, 33, 0.12);
}

.fb-comment-reply .fb-comment-bubble,
.fb-comment-reply .fb-comment-actions {
  grid-column: auto;
}

.fb-comment-toggle {
  margin-top: 8px;
  padding: 0;
}

.fb-comment-toggle:hover,
.fb-comment-toggle:focus-visible {
  color: #1877f2;
}

.faq-list {
  max-width: 820px;
  margin: 26px auto 0;
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-question {
  width: 100%;
  padding: 18px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  color: var(--text-dark);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  float: right;
  color: var(--primary-green);
  font-weight: 900;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

#order-form {
  background: #ffffff;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
}

.address-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 16px;
}

.address-row .form-group {
  margin-bottom: 0;
}

.address-row label {
  font-size: 0.78rem;
}

.address-row select {
  font-size: 0.78rem;
  padding: 0.4rem 0.5rem;
}

input[type="text"],
input[type="tel"],
select {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  color: var(--text-dark);
  font: inherit;
  background: #fff;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

select:disabled {
  background-color: #f4f4f4;
  color: #aaa;
  cursor: not-allowed;
}

input:focus,
select:focus {
  outline: 2px solid rgba(45, 106, 79, 0.25);
  border-color: var(--primary-green);
}

small {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
}

.bundle-options {
  display: grid;
  gap: 6px;
}

.bundle-option {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
}

.bundle-option input {
  flex-shrink: 0;
  margin: 0;
}

.bundle-option-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.bundle-name {
  font-size: 0.92rem;
  color: var(--text-dark);
}

.bundle-per {
  font-size: 0.72rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.bundle-badge {
  background: linear-gradient(90deg, #dc2626 0%, #f97316 100%);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 1px 6px;
  border-radius: 999px;
  text-transform: uppercase;
}

.bundle-option:hover {
  border-color: #2d6a4f;
  background: #f4faf7;
}

.bundle-option--best {
  border: 2px solid #dc2626;
  background: linear-gradient(160deg, #fff8f0 0%, #ffffff 60%);
  animation: fire-glow 2s ease-in-out infinite;
}

.bundle-option--best:hover {
  background: linear-gradient(160deg, #fff0e0 0%, #fff8f0 60%);
  border-color: #b91c1c;
}

.bundle-option--best .bundle-name strong {
  color: #dc2626;
}

#order-loading {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-loading-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  min-width: 220px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.order-loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e0e0e0;
  border-top-color: #2d6a4f;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.order-loading-text {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.order-loading-sub {
  font-size: 0.82rem;
  color: #666;
}

.urgency-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #fff4f4;
  border: 1px solid #ffcccc;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: #cc0000;
  font-weight: 600;
}

.urgency-countdown {
  font-size: 1.1rem;
  font-weight: 800;
  color: #cc0000;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}

.urgency-timer.urgency-warning {
  background: #fff0e0;
  border-color: #ffaa44;
  color: #cc6600;
}

.urgency-timer.urgency-warning .urgency-countdown {
  color: #cc6600;
}

.form-fixed-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border-light);
}

.form-reassurance {
  margin-top: 18px;
}

.form-reassurance p {
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.thank-you-card {
  text-align: center;
}

.upsell-product {
  display: grid;
  gap: 18px;
}

.upsell-photo {
  min-height: 220px;
}

.upsell-name {
  font-size: 1.15rem;
  font-weight: 900;
}

.upsell-price {
  margin: 6px 0 12px;
  color: var(--primary-green);
  font-size: 1.35rem;
  font-weight: 900;
}

.upsell-details .btn-primary,
.upsell-details .btn-ghost {
  width: 100%;
  margin-top: 10px;
}

#footer {
  background: var(--text-dark);
  color: #ffffff;
  text-align: center;
}

#footer p,
#footer a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}

.footer-copy {
  margin-bottom: 0;
}

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--primary-green);
  color: #ffffff;
  box-shadow: 0 -8px 24px rgba(26, 26, 26, 0.18);
}

.sticky-cta span {
  font-size: 0.9rem;
  font-weight: 800;
}

.btn-sticky {
  min-height: 42px;
  flex: 0 0 auto;
  color: var(--text-dark);
  background: var(--yellow-accent);
}

.is-hidden {
  display: none !important;
}

@media (min-width: 768px) {
  section,
  footer {
    padding: 72px 32px;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  #hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    align-items: center;
    max-width: none;
    padding: 72px 32px;
  }

  #hero .hero-image-frame {
    aspect-ratio: 1 / 1;
  }

  #hero .hero-video-wrap {
    order: 2;
  }

  #hero .hero-text {
    order: 1;
    max-width: 640px;
    justify-self: end;
  }

  #trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .photo-grid {
    max-width: 1120px;
  }

  .proof-photo-card {
    flex-basis: 340px;
  }

  .offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .offer-card-featured {
    transform: translateY(-10px);
  }

  .why-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: start;
  }

  .steps-row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .step {
    display: block;
    min-height: 210px;
    text-align: center;
  }

  .step-num {
    margin: 0 auto 12px;
  }

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

  .review-video-grid {
    max-width: 740px;
  }

  .reel-card {
    flex-basis: 315px;
  }

  .upsell-product {
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Modal overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.modal-product-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f8f9f4;
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
}

.modal-product-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.modal-product-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a1a;
}

.modal-product-badge {
  font-size: 0.72rem;
  color: #2d6a4f;
  margin-top: 0.25rem;
}

@media (max-width: 480px) {
  .modal-box {
    padding: 1rem;
    border-radius: 10px;
    max-height: 92vh;
  }

  .form-group {
    margin-bottom: 10px;
  }

  .address-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.3rem;
  }

  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 4px;
  }

  input[type="text"],
  input[type="tel"],
  select {
    min-height: 42px;
    padding: 10px;
    font-size: 0.95rem;
  }

  .address-row label {
    font-size: 0.68rem;
  }

  .address-row select {
    font-size: 0.68rem;
    padding: 0.35rem 0.25rem;
  }

  .bundle-option {
    padding: 7px 9px;
    font-size: 0.88rem;
  }

  .modal-close {
    top: 0.6rem;
    right: 0.6rem;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: #555555;
  padding: 0.25rem 0.5rem;
}

.modal-close:hover {
  color: #1a1a1a;
}

/* Prevent body scroll when modal open */
body.modal-open {
  overflow: hidden;
}

/* =====================
   PAGE ANIMATIONS
   ===================== */

/* Hero entrance, runs on load, no JS needed */
.hero-text .hero-eyebrow {
  animation: fadeSlideUp 0.5s ease-out both;
  animation-delay: 0.1s;
}

.hero-text h1 {
  animation: fadeSlideUp 0.55s ease-out both;
  animation-delay: 0.25s;
}

.hero-text .hero-sub {
  animation: fadeSlideUp 0.55s ease-out both;
  animation-delay: 0.4s;
}

.hero-text .btn-primary {
  animation: fadeSlideUp 0.55s ease-out both;
  animation-delay: 0.55s;
}

.hero-text .hero-trust-row {
  animation: fadeSlideUp 0.5s ease-out both;
  animation-delay: 0.7s;
}

/* Trust badges slide in staggered */
#trust-strip .trust-badge:nth-child(1) { animation: fadeSlideUp 0.45s ease-out both; animation-delay: 0.85s; }
#trust-strip .trust-badge:nth-child(2) { animation: fadeSlideUp 0.45s ease-out both; animation-delay: 1s; }
#trust-strip .trust-badge:nth-child(3) { animation: fadeSlideUp 0.45s ease-out both; animation-delay: 1.1s; }
#trust-strip .trust-badge:nth-child(4) { animation: fadeSlideUp 0.45s ease-out both; animation-delay: 1.2s; }

/* Scroll reveal base state */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

/* Stagger delays for groups */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* =====================
   THANK YOU MODAL
   ===================== */

.thankyou-modal-overlay {
  align-items: center;
  justify-content: center;
}

.thankyou-modal-box {
  max-width: 480px;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  animation: fadeSlideUp 0.4s ease-out both;
}

.thankyou-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.thankyou-content {
  padding: 1.5rem;
}

.thankyou-heading {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.thankyou-message {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.thankyou-divider {
  height: 1px;
  background: var(--border-light);
  margin-bottom: 1rem;
}

.thankyou-guide-heading {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.thankyou-guide-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.thankyou-guide-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.guide-mockup-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.thankyou-guide-info {
  flex: 1;
}

.thankyou-email-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.thankyou-email-form input[type="email"] {
  min-height: 52px;
  font-size: 1rem;
  padding: 14px;
}

.thankyou-skip {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  cursor: pointer;
  padding: 0.25rem 0;
  text-decoration: underline;
}

.thankyou-skip:hover {
  color: var(--text-dark);
}

#purchase-toast {
  position: fixed;
  left: 1rem;
  bottom: auto;
  right: auto;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.525rem 0.7rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  max-width: 210px;
  width: auto;
  font-size: 0.7rem;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.purchase-toast.is-hidden {
  display: none;
}

.purchase-toast.is-visible {
  transform: translateX(0);
}

#purchase-toast img,
#purchase-toast .toast-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.toast-body {
  flex: 1;
  min-width: 0;
}

.toast-name-location {
  margin: 0 0 2px;
  font-size: 0.7rem;
  line-height: 1.2;
  color: #1a1a1a;
  font-family: Arial, sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#purchase-toast .toast-name,
#purchase-toast #toast-name {
  font-weight: 700;
  font-size: 0.7rem;
  line-height: 1.2;
}

.toast-detail {
  margin: 0;
  font-size: 0.63rem;
  color: #555555;
  line-height: 1.2;
  font-family: Arial, sans-serif;
}

#purchase-toast .toast-location,
#purchase-toast .toast-pack,
#purchase-toast .toast-time,
#purchase-toast #toast-location,
#purchase-toast #toast-pack,
#purchase-toast #toast-time {
  font-size: 0.63rem;
  color: #555555;
  line-height: 1.2;
}

@media (max-width: 480px) {
  #purchase-toast {
    left: 0.75rem;
    bottom: auto;
    right: auto;
    max-width: 210px;
  }
}

@media (max-width: 480px) {
  .thankyou-photo {
    height: 180px;
  }

  .thankyou-content {
    padding: 1.1rem;
  }

  .thankyou-heading {
    font-size: 1.05rem;
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-sub {
  color: #555555;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.form-error {
  background: #fff0f0;
  border: 1px solid #ffcccc;
  color: #cc0000;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.thankyou-inline {
  text-align: center;
  padding: 2rem 1rem;
}

.thankyou-inline h3 {
  color: #2d6a4f;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.thankyou-inline p {
  color: #555555;
  margin-bottom: 1.5rem;
}
