:root {
  --bg: #F7F5F0;
  --white: #FFFFFF;
  --text: #141210;
  --muted: #6B6560;
  --green: #1A6B45;
  --green-mid: #2D8A5A;
  --green-light: #E6F5EE;
  --orange: #F55C1B;
  --orange-dark: #D44A0C;
  --orange-glow: rgba(245,92,27,0.25);
  --yellow: #FFD600;
  --red: #E02020;
  --border: #E2DDD6;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  
}
}

/* RATING BAR */
.rating-bar {
  background: #1A6B45; color: #fff;
  padding: 10px 24px;
  font-size: 13px; font-weight: 600;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.rating-bar .stars { color: var(--yellow); font-size: 15px; letter-spacing: 2px; }
.rating-bar .verified { color: rgba(255,255,255,0.75); font-size: 11px; margin-top: 3px; }

.wrap { max-width: 680px; margin: 0 auto; padding: 0 18px; }

/* HERO */
.hero { background: var(--white); padding: 16px 0 0; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-light); color: var(--green);
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 4px; margin-bottom: 12px;
}
.hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 5.5vw, 34px); font-weight: 900;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 10px;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero .sub { font-size: 15px; color: var(--muted); font-style: italic; margin-bottom: 22px; }

/* REAL IMAGE */
.real-img {
  width: 100%; border-radius: 12px; display: block;
  margin: 20px 0; object-fit: cover;
}
.real-img-round { border-radius: 12px; }

/* CTA */
.cta-big {
  display: block; width: 100%;
  background: var(--orange); color: #fff;
  font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 800;
  text-align: center; text-decoration: none;
  padding: 20px 24px; border-radius: 10px; border: none; cursor: pointer;
  box-shadow: 0 8px 28px var(--orange-glow);
  margin: 20px 0 8px; letter-spacing: -0.01em;
  transition: background 0.18s, transform 0.12s;
}
.cta-big:hover { background: var(--orange-dark); transform: translateY(-2px); }
.cta-sub { text-align: center; font-size: 12px; color: var(--muted); margin-bottom: 20px; }

/* LEAD */
.lead-section { background: var(--white); padding: 32px 0 24px; }
.lead-section p { margin-bottom: 14px; color: #2A2520; font-size: 16px; }

.callout-box {
  background: #FFF7F0; border: 2px solid var(--orange);
  border-radius: 10px; padding: 18px 20px; margin: 22px 0;
  font-size: 17px; font-weight: 700; line-height: 1.55;
}
.green-box {
  background: var(--green-light); border-left: 5px solid var(--green);
  border-radius: 0 10px 10px 0; padding: 18px 20px; margin: 20px 0;
  font-size: 15.5px; line-height: 1.7;
}
.green-box strong { color: var(--green); }

/* SEC DIVIDER */
.sec-divider { background: var(--green); padding: 14px 18px; }
.sec-divider .wrap { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.sec-divider .num { font-family: 'Unbounded', sans-serif; font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.sec-divider .dots { display: flex; gap: 5px; }
.sec-divider .dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.sec-divider .dot.active { background: var(--yellow); }

/* REASON */
.reason-card { background: var(--white); padding: 32px 0 24px; }
.reason-card.alt { background: #F2EEE8; }
.reason-label { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.reason-num-badge {
  background: var(--green); color: #fff;
  font-family: 'Unbounded', sans-serif; font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 4px; letter-spacing: 0.06em;
}
.reason-tag-text { font-size: 11px; font-weight: 800; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.reason-card h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(18px, 4.5vw, 22px); font-weight: 900;
  line-height: 1.25; letter-spacing: -0.02em; margin-bottom: 20px;
}
.reason-card h2 .accent { color: var(--green); }
.reason-card p { margin-bottom: 13px; font-size: 15.5px; color: #2A2520; line-height: 1.72; }
.insight {
  border-left: 4px solid var(--green-mid); background: var(--green-light);
  border-radius: 0 8px 8px 0; padding: 14px 18px; margin: 18px 0;
  font-style: italic; font-size: 15.5px; line-height: 1.65;
}
.insight strong { font-style: normal; color: var(--green); }
.danger-box {
  background: #FFF3F3; border: 2px solid #F0AAAA;
  border-radius: 10px; padding: 16px 18px; margin: 18px 0;
  font-size: 15px; line-height: 1.7;
}
.danger-box strong { color: var(--red); }

/* VIDEO SECTION */
.video-section {
  background: #0F2D1F;
  padding: 36px 0;
}
.video-section .v-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--yellow); color: #141210;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 4px; margin-bottom: 16px;
}
.video-section h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(18px, 4.5vw, 24px); font-weight: 900;
  color: #fff; line-height: 1.25; letter-spacing: -0.02em; margin-bottom: 8px;
}
.video-section .v-sub { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 20px; }
.video-wrap {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  margin-bottom: 8px;
}
.video-wrap video { width: 100%; display: block; max-height: 480px; object-fit: cover; }
.v-caption { font-size: 12px; color: rgba(255,255,255,0.45); text-align: center; font-style: italic; margin-top: 8px; }

/* PRODUCT */
.product-hero {
  background: linear-gradient(160deg, #0F4028 0%, #1A6B45 60%, #228B55 100%);
  padding: 40px 0 36px;
}
.product-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--yellow); color: #141210;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 4px; margin-bottom: 16px;
}
.product-hero h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(20px, 5vw, 28px); font-weight: 900;
  color: #fff; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 6px;
}
.product-hero .tagline { color: rgba(255,255,255,0.7); font-size: 13px; margin-bottom: 22px; letter-spacing: 0.04em; }
.steps-list { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 28px; }
.step-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 14px 16px;
}
.step-num {
  background: var(--orange); color: #fff;
  font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 11px;
  min-width: 28px; height: 28px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.step-text { color: #fff; font-size: 14.5px; line-height: 1.6; }
.step-text strong { color: var(--yellow); }
.cta-big.green-cta { background: var(--yellow); color: #141210; box-shadow: 0 8px 28px rgba(255,214,0,0.3); }
.cta-big.green-cta:hover { background: #E6C100; }

/* REVIEWS */
.reviews-section { background: var(--white); padding: 36px 0 28px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.section-eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--green); border-radius: 2px; }
.reviews-section h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(19px, 4.5vw, 24px); font-weight: 900;
  line-height: 1.25; margin-bottom: 28px; letter-spacing: -0.02em;
}
.review-card {
  border: 1.5px solid var(--border); border-radius: 14px;
  margin-bottom: 24px; background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07); overflow: hidden;
}
.review-photo { width: 100%; display: block; }
.review-body-wrap { padding: 18px 18px 16px; }
.rev-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rev-ava {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), #A8DFC0);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 17px; color: var(--green);
  flex-shrink: 0;
}
.rev-meta .name { font-weight: 700; font-size: 14.5px; }
.rev-meta .info { font-size: 12px; color: var(--muted); }
.rev-stars { color: #F4A01C; font-size: 16px; letter-spacing: 1px; margin-top: 1px; }
.rev-title { font-weight: 800; font-size: 14.5px; color: var(--green); margin-bottom: 8px; }
.rev-body { font-size: 14.5px; line-height: 1.72; color: #2A2520; }
.rev-body strong { color: var(--text); }
.verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700; color: var(--green); background: var(--green-light);
  padding: 3px 10px; border-radius: 100px; margin-top: 12px;
}

/* TRUST */
.trust-strip { background: var(--green); padding: 28px 0; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.trust-item {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 16px 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.trust-item .t-icon { font-size: 26px; }
.trust-item .t-title { font-size: 13px; font-weight: 800; color: #fff; line-height: 1.3; }
.trust-item .t-desc { font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* OFFER */
.offer-section { background: #141210; padding: 40px 0 36px; }
.offer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 4px; margin-bottom: 16px;
}
.offer-section h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(20px, 5vw, 26px); font-weight: 900;
  color: #fff; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 10px;
}
.offer-section .offer-sub { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 10px; }
.countdown-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; }
.countdown-wrap .cd-label { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 600; }
.countdown-boxes { display: flex; gap: 4px; }
.cd-box {
  background: var(--orange); color: #fff;
  font-family: 'Unbounded', sans-serif; font-size: 16px; font-weight: 900;
  width: 44px; height: 44px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.cd-sep { color: rgba(255,255,255,0.6); font-size: 20px; font-weight: 700; align-self: center; }
.stock-bar {
  background: #1E1B18; border-radius: 8px; padding: 12px 14px; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.stock-bar .s-text { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 600; flex: 1; }
.stock-bar .s-text span { color: var(--orange); font-weight: 800; }
.stock-progress { flex: 2; height: 8px; background: #333; border-radius: 4px; overflow: hidden; }
.stock-fill { height: 100%; width: 17%; background: var(--orange); border-radius: 4px; }
.offer-guarantee {
  margin-top: 14px; display: flex; align-items: center;
  justify-content: center; gap: 14px; flex-wrap: wrap;
}
.g-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 600; }

footer { background: #0D0B09; padding: 24px 18px; text-align: center; }
footer p { font-size: 11.5px; color: rgba(255,255,255,0.3); line-height: 1.8; }

@keyframes pulseBtn { 0%,100%{box-shadow:0 8px 28px rgba(245,92,27,0.25);} 50%{box-shadow:0 8px 40px rgba(245,92,27,0.55);} }
.hero .cta-big { animation: pulseBtn 2.2s ease-in-out infinite; }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }
.animate { opacity: 0; }
.animated { animation: fadeUp 0.55s ease both; }