/* ===========================
   HORSE BOOST — GLOBAL STYLES
   Domain: hoarseboost.com
   =========================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Manrope:wght@400;500;700;800&display=swap');

:root {
  --hb-forest: #7A1118;
  --hb-green: #A71930;
  --hb-gold: #C94A4A;
  --hb-cream: #FFF5F5;
  --hb-sage: #FDEAEA;
  --hb-ink: #241417;
  --hb-white: #FFFAFA;
}

/* BASE */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--hb-ink);
  background: var(--hb-cream);
}
img { max-width: 100%; height: auto; display: block; }

/* HEADINGS */
h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; line-height: 1.15; }
h1 { font-size: clamp(38px, 5vw, 64px); font-weight: 700; }
h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 700; color: var(--hb-forest); }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; color: var(--hb-green); }
p  { font-size: clamp(16px, 1.8vw, 19px); }

/* EYEBROW */
.eyebrow {
  font-size: 13px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--hb-gold); margin-bottom: 8px; display: block;
}

/* NAVBAR */
.navbar { background: var(--hb-forest) !important; padding: 14px 0; }
.navbar-brand { font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 700; color: #fff !important; letter-spacing: 1px; }
.nav-link { color: #c5e0d0 !important; font-size: 15px; font-weight: 500; padding: 6px 12px !important; }
.nav-link:hover { color: var(--hb-gold) !important; }

/* BUTTONS */
.btn-hb {
  background: var(--hb-gold); color: #142017;
  font-family: 'Oswald', sans-serif; font-size: 17px; font-weight: 700;
  letter-spacing: 1px; padding: 14px 32px;
  border-radius: 999px; border: none; cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: transform .2s, box-shadow .2s;
  display: inline-block; text-decoration: none;
}
.btn-hb:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); color: #142017; }
.btn-hb-outline {
  background: transparent; color: var(--hb-gold);
  border: 2.5px solid var(--hb-gold);
  font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 700;
  letter-spacing: 1px; padding: 12px 28px;
  border-radius: 999px; cursor: pointer;
  display: inline-block; text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-hb-outline:hover { background: var(--hb-gold); color: #142017; }

/* SECTIONS */
section { padding: 80px 0; }
section:nth-of-type(even) { background: var(--hb-white); }
section:nth-of-type(odd)  { background: var(--hb-sage); }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-heading p { font-size: 18px; color: #4a6358; }

/* CARDS */
.hb-card {
  background: #fff; border: 1px solid rgba(18,59,42,0.1);
  border-radius: 20px; padding: 28px;
  box-shadow: 0 12px 40px rgba(18,59,42,0.07);
  transition: transform .25s, box-shadow .25s;
}
.hb-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(18,59,42,0.12); }

/* HERO */
.hero {
    background: linear-gradient(135deg, #fff5f6 0%, #ffffff 55%, #ffffff 55%);
    padding: 100px 0 110px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hero::after {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(200,154,69,.3);
  right: -140px; top: -140px; pointer-events: none;
}
.hero h1 { color: #6f1414; font-size: clamp(42px, 5.5vw, 68px); letter-spacing: -1px; }
.hero h2 { color: #080808; font-size: clamp(20px, 2.5vw, 28px); font-weight: 500; margin: 10px 0 20px; font-family: 'Manrope', sans-serif; }
.hero p  { color: #323232; font-size: clamp(16px, 1.8vw, 19px); max-width: 520px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.hero-tags span {
  font-size: 14px; color: #000;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 999px;
  padding: 6px 14px; background: rgba(255,255,255,0.07);
}
.hero-img { filter: drop-shadow(0 30px 30px rgba(0,0,0,0.25)); }

/* WHY CARDS */
.why-card { text-align: center; padding: 32px 20px; }
.why-card img { width: 80px; margin: 0 auto 16px; }
.why-card h3 { font-size: 20px; margin-bottom: 10px; }
.why-card p  { font-size: 15px; color: #4a6358; }

/* SPLIT SECTIONS */
.split-img { border-radius: 20px; box-shadow: 0 20px 50px rgba(18,59,42,0.12); }

/* REVIEWS */
.review-card { padding: 28px; }
.review-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; }
.review-stars { color: var(--hb-gold); font-size: 22px; margin-bottom: 10px; }
.review-name { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 600; color: var(--hb-forest); }
.review-loc  { font-size: 14px; color: #6a8a7a; margin-bottom: 10px; }
.review-card p { font-size: 16px; color: #3a5248; font-style: italic; line-height: 1.7; }

/* HOW IT WORKS STEPS */
.work-step { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 24px; }
.work-num {
  min-width: 48px; height: 48px; border-radius: 12px;
  background: var(--hb-forest); color: var(--hb-gold);
  font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.work-step h3 { font-size: 20px; margin-bottom: 4px; }
.work-step p  { font-size: 16px; color: #4a6358; }

/* INGREDIENTS */
.ing-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; margin-bottom: 8px; }
.ing-num {
  min-width: 42px; height: 42px; border-radius: 10px;
  background: var(--hb-forest); color: #ffffff;
  font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ing-item h3 { font-size: 20px; margin-bottom: 4px; }
.ing-item p  { font-size: 15px; color: #4a6358; }

/* BENEFITS */
.benefit-item { display: flex; gap: 18px; align-items: flex-start; padding: 20px 24px; margin-bottom: 10px; }
.benefit-num {
  min-width: 44px; height: 44px; border-radius: 10px;
  background: var(--hb-forest); color: #ffffff;
  font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.benefit-item h3 { font-size: 20px; margin-bottom: 4px; }
.benefit-item p  { font-size: 15px; color: #4a6358; }

/* PRICING */
.price-card { text-align: center; padding: 36px 24px; position: relative; }
.price-badge {
  display: inline-block; font-size: 12px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 999px;
  background: var(--hb-gold); color: #142017; margin-bottom: 14px;
}
.price-card.featured { border: 3px solid var(--hb-gold) !important; }
.price-card img { max-width: 140px; margin: 0 auto 16px; }
.price-card h3 { font-size: 26px; margin-bottom: 4px; }
.price-card .supply { font-size: 15px; color: #6a8a7a; margin-bottom: 14px; }
.price-big { font-size: 42px; font-weight: 700; color: var(--hb-forest); font-family: 'Oswald', sans-serif; line-height: 1; }
.price-big small { font-size: 18px; font-weight: 400; color: #6a8a7a; }
.price-total { font-size: 17px; font-weight: 700; color: var(--hb-ink); margin: 8px 0 16px; }
.price-strikethrough { text-decoration: line-through; color: #a0a0a0; font-weight: 400; }
.check-list { list-style: none; padding: 0; margin: 0 0 20px; text-align: left; }
.check-list li { font-size: 15px; color: #3a5248; padding: 4px 0; }
.check-list li::before { content: "✓ "; color: var(--hb-green); font-weight: 800; }
.credit-cards { max-width: 200px; margin: 12px auto 0; opacity: 0.7; }

/* BONUS CARDS */
.bonus-card { padding: 28px; }
.bonus-num {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--hb-forest); color: #ffffff;
  font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.bonus-card h3 { font-size: 22px; margin-bottom: 8px; }
.bonus-val { font-size: 13px; color: var(--hb-gold); font-weight: 700; margin-top: 8px; }

/* GUARANTEE */
.guarantee-section { background: var(--hb-forest) !important; color: #fff; }
.guarantee-section h2 { color: #fff; }
.guarantee-section p  { color: #c5dece; }
.guarantee-badge { max-width: 180px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); }

/* HOW TO TAKE */
.step-card { padding: 28px; }
.step-card .step-num {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--hb-forest); color: #ffffff;
  font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.step-card h3 { font-size: 20px; margin-bottom: 8px; }
.step-card p  { font-size: 16px; color: #000; }

/* FAQ */
.accordion-item { border: 1px solid rgba(18,59,42,0.1) !important; border-radius: 14px !important; margin-bottom: 10px; overflow: hidden; }
.accordion-button { font-family: 'Oswald', sans-serif; font-size: 20px !important; font-weight: 600; color: var(--hb-forest) !important; background: #fff !important; padding: 20px 24px !important; }
.accordion-button:not(.collapsed) { background: var(--hb-forest) !important; color: #fff !important; box-shadow: none !important; }
.accordion-button::after { filter: none !important; }
.accordion-body { font-size: 17px; line-height: 1.7; color: #3a5248; padding: 20px 24px !important; }

/* FINAL CTA */
.final-cta { background: linear-gradient(135deg, var(--hb-forest), #000000) !important; color: #fff; }
.final-cta h2 { color: #fff; }
.final-cta p  { color: #c5dece; }

/* STICKY BAR */
.sticky-bar {
  position: sticky; bottom: 0; z-index: 1000;
  background: var(--hb-forest); border-top: 3px solid #fff;
  padding: 12px 0;
}
.sticky-bar strong { color: #fff; font-size: 17px; font-family: 'Oswald', sans-serif; }
.sticky-bar span { color: #9dbdad; font-size: 15px; margin-left: 8px; }

/* FOOTER */
footer { background: #000000; color: #c5dece; padding: 60px 0 30px; }
.footer-brand { font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 12px; }
footer h4 { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 14px; }
footer a { color: #9dbdad; text-decoration: none; font-size: 15px; display: block; margin-bottom: 6px; }
footer a:hover { color: var(--hb-gold); }
.footer-rule { border-color: rgba(255,255,255,0.1); margin: 30px 0 20px; }
.footer-disclaimer { font-size: 13px; color: #6a9080; line-height: 1.6; }

/* DISCLAIMER NOTE */
.disclaimer-note { font-size: 13px; color: #7a9a8a; font-style: italic; margin-top: 12px; }

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero { padding: 70px 0 80px; background: linear-gradient(160deg, var(--hb-forest) 0%, #000000 70%, #d5e4d0 70%); }
  section { padding: 60px 0; }
  h2 { font-size: clamp(26px, 4vw, 40px); }
}
@media (max-width: 767px) {
  .hero { padding: 60px 0 70px; }
  h1 { font-size: clamp(34px, 8vw, 48px); }
  body { font-size: 17px; }
  section { padding: 50px 0; }
}
