/* ============================================================
   BOOSTARO™ — css/style.css
   Domain: en-boosttaro.com
   Theme: White + Deep Burgundy #8b1a2f (headings) + #3d0a12 (buttons)
   Hero: TEXT LEFT / IMAGE RIGHT
   Footer: 2-Column — Brand+Nav LEFT / Trust+Legal RIGHT
   Font: Jost (Google Fonts)
   ============================================================ */

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

:root {
  --red:         #8b1a2f;
  --red-dark:    #3d0a12;
  --red-deeper:  #8b1a2f;
  --red-mid:     #8b1a2f;
  --red-light:   #fdf0f2;
  --red-pale:    #fff8f9;
  --white:       #ffffff;
  --off-white:   #faf8f8;
  --cream:       #f5eeef;
  --text:        #1e0508;
  --muted:       #5a3038;
  --border:      #c8a8ac;
  --radius:      6px;
  --radius-pill: 50px;
  --shadow:      0 4px 20px rgba(139,26,47,0.10);
  --shadow-h:    0 10px 36px rgba(139,26,47,0.20);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
}

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--red);
  padding: 0 24px;
  height: 74px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-family: 'Jost', sans-serif;
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: #f0c0c8;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--white); }

.btn-nav-order {
  background: var(--red-dark) !important;
  color: var(--white) !important;
  font-weight: 800 !important;
  font-size: 0.92rem !important;
  letter-spacing: 0.6px;
  padding: 10px 26px !important;
  border-radius: var(--radius-pill) !important;
  border: 2px solid rgba(255,255,255,0.35) !important;
  transition: background 0.2s !important;
  text-transform: uppercase;
}

.btn-nav-order:hover {
  background: #2a0609 !important;
  border-color: rgba(255,255,255,0.55) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  display: block;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--red);
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  padding: 24px 32px;
  gap: 18px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: #f0c0c8;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
}

.mobile-menu .btn-mob-order {
  background: var(--red-dark);
  color: var(--white);
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  margin-top: 6px;
  font-size: 1rem;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.25);
}

/* ============================================================
   GLOBAL BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--red-dark);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(61,10,18,0.35);
}

.btn-primary:hover {
  background: #2a0609;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--red);
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--red);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline:hover {
  background: var(--red-dark);
  color: var(--white);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION TITLE BANDS
   ============================================================ */
.sec-title-band {
  background: var(--red);
  padding: 50px 40px 42px;
  text-align: center;
}

.sec-title-band h2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* ============================================================
   HERO — TEXT LEFT / IMAGE RIGHT (flipped)
   ============================================================ */
.hero {
  background: var(--off-white);
  padding: 80px 48px;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

/* Text in column 1 (left) */
.hero-content { order: 1; }

/* Image in column 2 (right) */
.hero-img-wrap {
  order: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap a img {
  max-width: 100%;
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(139,26,47,0.22));
  transition: transform 0.4s ease;
}

.hero-img-wrap a:hover img { transform: scale(1.04); }

.hero-content h1 {
  font-family: 'Jost', sans-serif;
  font-size: 2.9rem;
  font-weight: 900;
  line-height: 1.12;
  color: var(--red);
  margin-bottom: 26px;
}

.hero-content p {
  font-size: 1.12rem;
  line-height: 1.82;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-highlight {
  font-weight: 700;
  color: var(--red);
  font-size: 1.05rem;
  text-decoration: underline;
  text-decoration-color: var(--red-dark);
  text-underline-offset: 4px;
  display: block;
  margin-top: 6px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--white);
  padding: 70px 48px;
}

.reviews-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.review-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  box-shadow: var(--shadow-h);
  transform: translateY(-4px);
}

.reviewer-photo-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid var(--red);
  flex-shrink: 0;
  position: relative;
}

.reviewer-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  border: none;
  margin: 0;
  background: var(--off-white);
  transition: transform 0.4s ease;
}

.review-card:hover .reviewer-photo { transform: scale(1.03); }

.reviewer-photo.img-error { opacity: 0; position: absolute; }

.reviewer-photo-wrap.img-broken::after {
  content: "👤";
  font-size: 3.5rem;
  opacity: 0.3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.review-card-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-stars {
  height: 22px;
  margin: 0 auto 12px;
  display: block;
}

.review-badge {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 14px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
  font-style: italic;
  flex: 1;
}

.reviewer-name {
  margin-top: 18px;
  font-weight: 700;
  color: var(--red);
  font-size: 0.95rem;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   WHAT IS SECTION
   ============================================================ */
.what-is-section {
  background: var(--off-white);
  padding: 70px 48px;
}

.what-is-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 60px;
}

.what-is-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.what-is-img-wrap img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(139,26,47,0.16));
  display: block;
}

.what-is-text p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 18px;
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-section {
  background: var(--white);
  padding: 70px 48px;
}

.section-prose {
  max-width: 900px;
  margin: 0 auto;
}

.section-prose p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 18px;
}

/* ============================================================
   PRICING BAND
   ============================================================ */
.pricing-band {
  background: var(--red);
  padding: 48px 40px 16px;
  text-align: center;
}

.pricing-band h3 {
  font-family: 'Jost', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-band h4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #f0c0c8;
  margin-bottom: 0;
}

/* ============================================================
   PRICING IMAGE
   ============================================================ */
.price-img-section {
  background: var(--off-white);
  padding: 48px;
  text-align: center;
}

.price-img-section a img {
  max-width: 900px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  transition: transform 0.3s;
  box-shadow: var(--shadow);
}

.price-img-section a:hover img { transform: scale(1.01); }

/* ============================================================
   FEATURES
   ============================================================ */
.features-section {
  background: var(--off-white);
  padding: 70px 48px;
}

.features-list {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.features-list li {
  background: var(--white);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 1.07rem;
  line-height: 1.78;
  color: var(--muted);
  box-shadow: var(--shadow);
}

.features-list li strong {
  color: var(--red);
  font-weight: 800;
  font-size: 1.08rem;
  display: block;
  margin-bottom: 5px;
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee-section {
  background: var(--white);
  padding: 70px 48px;
}

.guarantee-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 60px;
}

.guarantee-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.guarantee-img-wrap img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  display: block;
}

.guarantee-text p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 18px;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-section {
  background: var(--off-white);
  padding: 70px 48px;
}

.benefits-list {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefits-list li {
  display: flex;
  gap: 16px;
  font-size: 1.07rem;
  line-height: 1.8;
  color: var(--muted);
  align-items: flex-start;
}

.benefit-icon {
  min-width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits-list li strong { color: var(--red); font-weight: 700; }

/* ============================================================
   FAQs
   ============================================================ */
.faq-section {
  background: var(--white);
  padding: 70px 48px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 26px;
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: background 0.2s;
  line-height: 1.4;
}

.faq-question:hover { background: var(--red-light); }

.faq-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s;
  color: var(--red);
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 16px 26px 22px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: var(--white);
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow  { transform: rotate(180deg); }

/* ============================================================
   HOW TO ORDER
   ============================================================ */
.order-how-section {
  background: var(--off-white);
  padding: 70px 48px;
}

.order-how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.order-how-inner p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 18px;
}

.order-img-wrap {
  text-align: center;
  margin-top: 36px;
}

.order-img-wrap a img {
  max-width: 900px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  transition: transform 0.3s;
  box-shadow: var(--shadow);
}

.order-img-wrap a:hover img { transform: scale(1.01); }

/* ============================================================
   PRICING DETAILS
   ============================================================ */
.pricing-details {
  background: var(--white);
  padding: 48px;
}

.pricing-details-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow);
}

.info-block h4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 12px;
}

.info-block p,
.info-block li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

.info-block ul { list-style: none; padding: 0; }
.info-block ul li { padding: 4px 0; }
.info-block ul li::before {
  content: "→ ";
  color: var(--red);
  font-weight: 800;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  background: var(--red-light);
  padding: 80px 48px;
  text-align: center;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}

.cta-final h2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 36px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-product-img {
  max-width: 360px;
  margin: 0 auto 32px;
}

.cta-product-img a img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(139,26,47,0.22));
  transition: transform 0.4s;
}

.cta-product-img a:hover img { transform: scale(1.05); }

.cta-regular-price {
  font-size: 1.2rem;
  color: var(--muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: 6px;
}

.cta-current-price {
  font-family: 'Jost', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--red);
  display: block;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* ============================================================
   FOOTER — 2-COLUMN: Brand+Nav LEFT / Trust+Legal RIGHT
   ============================================================ */
footer {
  background: var(--red-dark);
  padding: 52px 48px 32px;
}

/* Top 2-column grid */
.footer-2col {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}

/* LEFT: Brand + Nav */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.92rem;
  color: #f0c0c8;
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin-top: 4px;
}

.footer-nav a {
  color: #f0c0c8;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-nav a::before {
  content: "›";
  color: var(--red);
  font-weight: 900;
  font-size: 1.1rem;
}

.footer-nav a:hover { color: var(--white); }

/* RIGHT: Trust badges + Legal */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Trust badge row */
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}

.trust-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f0c0c8;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.footer-right p {
  font-size: 0.86rem;
  color: #c09098;
  line-height: 1.75;
}

/* Bottom bar */
.footer-bottom {
  max-width: 1160px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.87rem;
  color: #a07078;
  font-family: 'Jost', sans-serif;
}

.footer-copy a { color: #c090a0; text-decoration: none; }
.footer-copy a:hover { color: var(--white); }

.footer-guarantee-note {
  font-size: 0.82rem;
  color: #f0c0c8;
  font-family: 'Jost', sans-serif;
  background: rgba(139,26,47,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 5px 16px;
}

/* ============================================================
   FADE-UP ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content h1    { font-size: 2.3rem; }
  .what-is-inner      { grid-template-columns: 1fr 1.3fr; gap: 40px; }
  .footer-2col        { grid-template-columns: 240px 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .hero-inner         { grid-template-columns: 1fr; }
  .hero-content       { order: 1; }
  .hero-img-wrap      { order: 2; }
  .reviews-grid       { grid-template-columns: 1fr 1fr; }
  .what-is-inner      { grid-template-columns: 1fr; }
  .guarantee-inner    { grid-template-columns: 1fr; text-align: center; }
  .guarantee-img-wrap { justify-content: center; }
  .footer-2col        { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom      { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  nav                 { padding: 0 18px; }
  .nav-links          { display: none; }
  .hamburger          { display: flex; }
  .hero               { padding: 44px 20px; }
  .hero-inner         { gap: 32px; }
  .hero-content h1    { font-size: 1.95rem; }
  .sec-title-band     { padding: 40px 20px 34px; }
  .sec-title-band h2  { font-size: 1.65rem; }
  .reviews-grid       { grid-template-columns: 1fr; }
  .reviews-section,
  .what-is-section,
  .why-section,
  .features-section,
  .guarantee-section,
  .benefits-section,
  .faq-section,
  .order-how-section  { padding: 44px 20px; }
  .pricing-details,
  .price-img-section  { padding: 32px 20px; }
  .cta-final          { padding: 60px 20px; }
  .cta-final h2       { font-size: 1.85rem; }
  .cta-current-price  { font-size: 2.3rem; }
  footer              { padding: 36px 20px 24px; }
  .footer-2col        { padding-bottom: 28px; }
  .footer-nav         { grid-template-columns: 1fr 1fr; }
}