/* ============================================================
   Venus Factor Presell Stylesheet
   Brand colors extracted from site images:
   - Primary green/teal: #b83280 / #3aab6d (brand accent)
   - CTA button gold/yellow: #f7c600
   - Dark text: #1a1a1a
   - Light bg: #f9f9f9 / #ffffff
   - Teal accent (FDA badge): #1b6b7a
   - GMP green: #4a7c3f
   Font: Nunito Sans (headings), Roboto (body)
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Nunito Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background: #fff;
}

/* ---- UTILITY ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: #555;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  letter-spacing: 0.04em;
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(180deg, #f7c600 0%, #e6a800 100%);
  color: #1a1a1a;
  box-shadow: 0 4px 14px rgba(247, 198, 0, 0.45);
  text-transform: uppercase;
}
.btn-primary:hover {
  background: linear-gradient(180deg, #ffe033 0%, #f0b800 100%);
  box-shadow: 0 6px 18px rgba(247, 198, 0, 0.55);
  transform: translateY(-1px);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: 8px;
}

.btn-xl {
  padding: 20px 56px;
  font-size: 1.25rem;
  border-radius: 10px;
}

.btn-nav {
  background: #f7c600;
  color: #1a1a1a;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 5px;
  text-transform: uppercase;
}
.btn-nav:hover {
  background: #ffe033;
}

.btn-buy {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, #f7c600 0%, #e09900 100%);
  color: #1a1a1a;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(224, 153, 0, 0.4);
  transition: all 0.2s;
}
.btn-buy:hover {
  background: linear-gradient(180deg, #ffe033 0%, #f0b800 100%);
  transform: translateY(-1px);
}

/* ---- NAVIGATION ---- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #b83280;
  transition: box-shadow 0.3s;
}
#site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.navbar {
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.nav-logo {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.nav-logo sup { font-size: 0.65rem; vertical-align: super; }
.nav-logo:hover { color: #f7c600; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: #f7c600; }

/* ---- HERO SECTION ---- */
.hero-section {
  background: #fff;
  padding: 60px 0 50px;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero-image {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  max-height: 520px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-text h1 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #b83280;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-bullets {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 24px;
  color: #333;
}

.hero-bullets li {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.hero-desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.8;
}

.hero-cta-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: 'Nunito Sans', sans-serif;
  transition: color 0.2s;
}
.hero-cta-link:hover {
  color: #b83280;
}

/* ---- WHY CHOOSE SECTION ---- */
.why-section {
  background: #fdf3f8;
  padding: 64px 0;
  border-top: 1px solid #e2f0e7;
  border-bottom: 1px solid #e2f0e7;
}

.why-section .section-title { margin-bottom: 40px; }

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.badge-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.badge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.badge-card img {
  width: 100px;
  height: auto;
  margin-bottom: 16px;
}

.badge-card h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.badge-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ---- REVIEWS SECTION ---- */
.reviews-section {
  background: #fff;
  padding: 72px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.review-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.review-photo {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.review-stars {
  height: 22px;
  width: auto;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  font-size: 0.95rem;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.review-location {
  color: #888;
  font-weight: 400;
  margin-left: 4px;
}

.verified-badge {
  display: inline-block;
  background: #fbeaf3;
  color: #b83280;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* ---- WHAT IS SECTION ---- */
.what-is-section {
  background: #f9f9f9;
  padding: 72px 0;
}

.what-is-inner {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  margin-top: 40px;
}

.what-is-image {
  flex: 0 0 320px;
  text-align: center;
}

.what-is-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1));
}

.what-is-text {
  flex: 1;
  min-width: 0;
}

.what-is-text p {
  margin-bottom: 16px;
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
}

.what-is-text .btn {
  margin-top: 16px;
}

/* ---- HOW IT WORKS SECTION ---- */
.how-section {
  background: #fff;
  padding: 72px 0;
}

.how-inner {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  margin-top: 40px;
}

.how-text {
  flex: 1;
  min-width: 0;
}

.how-text p {
  margin-bottom: 16px;
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
}

.how-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.how-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #444;
  font-size: 0.98rem;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.7;
}

.how-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #b83280;
  font-weight: 800;
  font-size: 1rem;
}

.how-image {
  flex: 0 0 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.how-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1));
}

/* ---- PRICING SECTION ---- */
.pricing-section {
  background: #fff;
  padding: 72px 0;
  border-top: 2px solid #f5f5f5;
}

.pricing-subtitle {
  text-align: center;
  color: #888;
  font-size: 1rem;
  margin-bottom: 32px;
}

.pricing-image {
  display: block;
  max-width: 680px;
  width: 100%;
  margin: 0 auto 48px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s;
}
.pricing-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.pricing-card--featured {
  border-color: #f2c7dc;
  background: #fdf3f8;
  box-shadow: 0 4px 20px rgba(184,50,128,0.14);
}

.best-value-badge,
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #e63946;
  color: #fff;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.pricing-card h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #b83280;
  margin-bottom: 4px;
}

.supply {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 16px;
}

.bottle-img {
  width: 100px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}

.price {
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #b83280;
}

.price-per {
  font-size: 0.9rem;
  color: #888;
}

.bonus-badge {
  background: #b83280;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 12px;
  display: inline-block;
}

.total-price {
  font-size: 0.9rem;
  color: #555;
  margin-top: 12px;
}

.total-price s {
  color: #aaa;
}

.shipping {
  font-size: 0.8rem;
  color: #888;
  margin-top: 6px;
}

.pricing-cta {
  text-align: center;
  margin-top: 40px;
}

/* ---- INGREDIENTS SECTION ---- */
.ingredients-section {
  background: #fdf3f8;
  padding: 72px 0;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.ingredient-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s;
}
.ingredient-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.ingredient-number {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #efc0d8;
  line-height: 1;
}

.ingredient-card h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #b83280;
  margin-bottom: 4px;
}

.ingredient-card p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.7;
}

/* ---- GUARANTEE SECTION ---- */
.guarantee-section {
  background: #fff;
  padding: 72px 0;
}

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  background: #fdf3f8;
  border-radius: 20px;
  padding: 48px;
  border: 1px solid #f2c7dc;
}

.guarantee-badge {
  flex: 0 0 200px;
  text-align: center;
}

.guarantee-badge img {
  width: 180px;
  height: auto;
}

.guarantee-text h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.guarantee-text p {
  color: #555;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.8;
}

/* ---- BENEFITS SECTION ---- */
.benefits-section {
  background: #fff;
  padding: 72px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 12px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.benefit-item:hover {
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
}

.benefit-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background: #b83280;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 4px;
}

.benefit-item h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.benefit-item p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
}

.benefits-cta {
  text-align: center;
  margin-top: 40px;
}

/* ---- FAQ SECTION ---- */
.faq-section {
  background: #f9f9f9;
  padding: 72px 0;
}

.faq-list {
  max-width: 820px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  transition: background 0.15s;
}
.faq-question:hover {
  background: #fdf3f8;
}

.faq-item.open .faq-question {
  background: #fdf3f8;
  color: #b83280;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: #b83280;
  flex-shrink: 0;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.8;
  padding-top: 16px;
}
.faq-answer p + p { padding-top: 8px; }

/* ---- ORDER SECTION ---- */
.order-section {
  background: #fff;
  padding: 72px 0;
}

.order-inner {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  margin-top: 40px;
}

.order-text {
  flex: 1;
  min-width: 0;
}

.order-text h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-top: 24px;
  margin-bottom: 10px;
}

.order-text p {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.order-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.order-text ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: #444;
  font-size: 0.97rem;
}

.order-text ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #b83280;
}

.order-text .btn {
  margin-top: 20px;
}

.order-image {
  flex: 0 0 340px;
}

.order-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ---- FINAL CTA SECTION ---- */
.final-cta-section {
  background: linear-gradient(135deg, #b83280 0%, #7a1f55 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.final-cta-section h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.final-cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.final-cta-price {
  font-size: 1.3rem;
  color: #f7c600;
  margin-bottom: 28px;
}

.final-cta-badge {
  display: block;
  width: 140px;
  margin: 32px auto 0;
}

/* ---- FOOTER ---- */
#site-footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 48px 0 32px;
}

.footer-disclaimer p,
.footer-clickbank p {
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #888;
}

.footer-clickbank {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #333;
}

.footer-copy {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #333;
  text-align: center;
}

.footer-copy p {
  font-size: 0.85rem;
  color: #666;
}

/* ============================================================
   RESPONSIVE STYLES
   ============================================================ */

@media (max-width: 1024px) {
  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ingredients-grid {
    grid-template-columns: 1fr;
  }
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .section-title { font-size: 1.55rem; }

  .nav-links { display: none; }

  .hero-section { padding: 40px 0 32px; }
  .hero-inner {
    flex-direction: column;
    gap: 28px;
  }
  .hero-text h1 { font-size: 2.1rem; }
  .hero-image { width: 100%; }

  .badges-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .what-is-inner,
  .how-inner,
  .order-inner {
    flex-direction: column;
    gap: 28px;
  }

  .what-is-image,
  .how-image,
  .order-image {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .guarantee-inner {
    flex-direction: column;
    padding: 32px 24px;
    gap: 28px;
    text-align: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cards { max-width: 100%; }

  .final-cta-section h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .badges-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2rem; }
  .btn-xl { padding: 16px 32px; font-size: 1.05rem; }
  .hero-rating { flex-direction: column; align-items: flex-start; gap: 6px; }
  .nav-inner { height: 56px; }
}
