/* ============================================================
   SPARTAMAX™ V2 — css/style.css
   Domain: usa-sparrtamax.com
   Theme: Near-Black + Deep Crimson + Amber
   Hero: Image LEFT / Text RIGHT
   Features/Benefits: Horizontal icon cards (NEW)
   Footer: Minimal dark + trust icons row
   ============================================================ */

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

:root {
  --black:         #0f0e0d;
  --charcoal:      #1a1816;
  --dark:          #252220;
  --dark-mid:      #302c28;
  --crimson:       #991b1b;
  --crimson-mid:   #b91c1c;
  --crimson-light: #dc2626;
  --crimson-pale:  #fef2f2;
  --amber:         #c2410c;
  --amber-mid:     #ea580c;
  --amber-light:   #f97316;
  --white:         #ffffff;
  --off-white:     #f9f7f5;
  --text:          #1c1917;
  --muted:         #57534e;
  --border:        #e7e5e4;
  --radius:        8px;
  --radius-pill:   50px;
  --shadow:        0 4px 20px rgba(0,0,0,0.10);
  --shadow-h:      0 10px 36px rgba(0,0,0,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(--black);
  padding: 0 24px; height: 74px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  border-bottom: 2px solid var(--crimson);
}
.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: 3px;
  text-transform: uppercase; flex-shrink: 0;
}
.nav-logo span { color: var(--amber-mid); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: #c8c4bc; text-decoration: none; font-size: 0.97rem; font-weight: 500; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--amber-light); }
.btn-nav-order {
  background: var(--crimson-mid) !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: none !important; transition: background 0.2s !important; text-transform: uppercase;
}
.btn-nav-order:hover { background: var(--crimson-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 25px; height: 2px; background: var(--amber-light); display: block; border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; flex-direction: column; background: var(--black);
  position: absolute; top: 74px; left: 0; right: 0; padding: 24px 32px;
  gap: 18px; z-index: 999; border-top: 1px solid var(--dark-mid); border-bottom: 2px solid var(--crimson);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #c8c4bc; text-decoration: none; font-size: 1.05rem; font-weight: 500; }
.mobile-menu .btn-mob-order {
  background: var(--crimson-mid); 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;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block; background: var(--crimson-mid); 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(185,28,28,0.32);
}
.btn-primary:hover { background: var(--crimson-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--crimson);
  font-family: 'Jost', sans-serif; font-weight: 700; font-size: 1.05rem;
  text-transform: uppercase; padding: 14px 32px; border-radius: var(--radius-pill);
  border: 2px solid var(--crimson); text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { background: var(--crimson); color: var(--white); transform: translateY(-2px); }

/* ===== SECTION TITLE BANDS ===== */
.sec-title-band {
  background: var(--charcoal); padding: 50px 40px 42px; text-align: center;
  border-top: 3px solid var(--crimson); border-bottom: 3px solid var(--crimson);
}
.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 — Image LEFT / Text RIGHT ===== */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 55%, var(--dark) 100%);
  padding: 80px 48px;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1fr; align-items: center; gap: 64px;
}
.hero-img-wrap { order: 1; display: flex; justify-content: center; align-items: center; }
.hero-content  { order: 2; }
.hero-img-wrap a img {
  max-width: 100%; max-height: 540px; object-fit: contain;
  filter: drop-shadow(0 14px 42px rgba(185,28,28,0.35));
  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(--white); margin-bottom: 26px;
}
.hero-content h1 span { color: var(--amber-light); }
.hero-content p { font-size: 1.12rem; line-height: 1.82; color: #c8c4bc; margin-bottom: 16px; }
.hero-highlight {
  font-weight: 700; color: var(--amber-light); font-size: 1.05rem;
  background: rgba(234,88,12,0.12); border-left: 4px solid var(--amber-mid);
  padding: 12px 18px; border-radius: 0 var(--radius) var(--radius) 0; display: block; margin-top: 8px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--off-white); padding: 70px 48px; }
.reviews-grid {
  max-width: 1160px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.review-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 26px; text-align: center; transition: box-shadow 0.3s, transform 0.3s; box-shadow: var(--shadow);
}
.review-card:hover { box-shadow: var(--shadow-h); transform: translateY(-4px); }
.reviewer-photo {
  width: 86px; height: 86px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 16px; display: block; border: 3px solid var(--crimson);
}
.review-stars { height: 22px; margin: 0 auto 14px; display: block; }
.review-badge { font-size: 0.97rem; font-weight: 700; color: var(--crimson); margin-bottom: 14px; }
.review-text { font-size: 1rem; line-height: 1.75; color: var(--muted); font-style: italic; }
.reviewer-name { margin-top: 18px; font-weight: 700; color: var(--charcoal); font-size: 0.95rem; }

/* ===== WHAT IS — Image LEFT / Text RIGHT ===== */
.what-is-section { background: var(--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 24px rgba(185,28,28,0.18)); 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(--off-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(--charcoal); padding: 48px 40px 16px; text-align: center; border-top: 3px solid var(--crimson); }
.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: var(--amber-light); margin-bottom: 0; }

/* ===== PRICING IMAGE ===== */
.price-img-section { background: var(--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); box-shadow: var(--shadow); transition: transform 0.3s; }
.price-img-section a:hover img { transform: scale(1.01); }

/* ===== FEATURES — Horizontal icon cards (dark icon box + amber border) ===== */
.features-section { background: var(--off-white); padding: 70px 48px; }
.features-hlist { max-width: 960px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.feature-hcard {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 26px; display: flex; align-items: flex-start; gap: 20px;
  box-shadow: var(--shadow); transition: box-shadow 0.25s, transform 0.25s;
}
.feature-hcard:hover { box-shadow: var(--shadow-h); transform: translateY(-2px); }
.fhc-icon {
  min-width: 52px; height: 52px; background: var(--charcoal);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; flex-shrink: 0;
  border: 1px solid var(--amber);
}
.fhc-body strong { font-family: 'Jost', sans-serif; font-size: 1.08rem; font-weight: 800; color: var(--charcoal); display: block; margin-bottom: 5px; }
.fhc-body p { font-size: 1rem; line-height: 1.75; color: var(--muted); }

/* ===== 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; }
.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 — Horizontal icon cards (amber icon box) ===== */
.benefits-section { background: var(--off-white); padding: 70px 48px; }
.benefits-hlist { max-width: 960px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.benefit-hcard {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 26px; display: flex; align-items: flex-start; gap: 20px;
  box-shadow: var(--shadow); transition: box-shadow 0.25s, transform 0.25s;
}
.benefit-hcard:hover { box-shadow: var(--shadow-h); transform: translateY(-2px); }
.bhc-icon {
  min-width: 52px; height: 52px; background: var(--amber);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; flex-shrink: 0;
}
.bhc-body strong { font-family: 'Jost', sans-serif; font-size: 1.08rem; font-weight: 800; color: var(--charcoal); display: block; margin-bottom: 5px; }
.bhc-body p { font-size: 1rem; line-height: 1.75; color: var(--muted); }

/* ===== FAQs ===== */
.faq-section { background: var(--off-white); padding: 70px 48px; }
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--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(--charcoal);
  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(--crimson-pale); }
.faq-arrow { font-size: 1.1rem; transition: transform 0.3s; color: var(--amber-mid); 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); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow  { transform: rotate(180deg); }

/* ===== HOW TO ORDER ===== */
.order-how-section { background: var(--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); box-shadow: var(--shadow); transition: transform 0.3s; }
.order-img-wrap a:hover img { transform: scale(1.01); }

/* ===== PRICING DETAILS ===== */
.pricing-details { background: var(--off-white); padding: 48px; }
.pricing-details-inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.info-block {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 28px; border-top: 3px solid var(--amber-mid); box-shadow: var(--shadow);
}
.info-block h4 { font-family: 'Jost', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--charcoal); 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(--amber-mid); font-weight: 800; }

/* ===== FINAL CTA ===== */
.cta-final {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  padding: 80px 48px; text-align: center;
  border-top: 3px solid var(--crimson); border-bottom: 3px solid var(--crimson);
}
.cta-final h2 {
  font-family: 'Jost', sans-serif; font-size: 2.5rem; font-weight: 900;
  color: var(--white); margin-bottom: 36px; line-height: 1.2;
  text-transform: uppercase; letter-spacing: 1px;
}
.cta-final h2 span { color: var(--amber-light); }
.cta-product-img { max-width: 340px; margin: 0 auto 32px; }
.cta-product-img a img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 12px 36px rgba(185,28,28,0.4)); transition: transform 0.4s; }
.cta-product-img a:hover img { transform: scale(1.05); }
.cta-regular-price { font-size: 1.2rem; color: #6b6560; text-decoration: line-through; display: block; margin-bottom: 6px; }
.cta-current-price { font-family: 'Jost', sans-serif; font-size: 3rem; font-weight: 900; color: var(--amber-light); display: block; margin-bottom: 30px; letter-spacing: 1px; }

/* ===== FOOTER — Minimal dark + trust icons ===== */
footer { background: var(--black); border-top: 3px solid var(--crimson); padding: 0; }

.footer-nav-row {
  max-width: 1160px; margin: 0 auto; padding: 32px 48px 28px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-nav-row a {
  color: #78716c; text-decoration: none; font-size: 0.92rem; font-weight: 600;
  font-family: 'Jost', sans-serif; padding: 5px 16px;
  border-right: 1px solid rgba(255,255,255,0.08); transition: color 0.2s; white-space: nowrap;
}
.footer-nav-row a:last-child { border-right: none; }
.footer-nav-row a:hover { color: var(--amber-light); }

.footer-trust-row {
  max-width: 1160px; margin: 0 auto; padding: 28px 48px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ftr-item { display: flex; align-items: center; gap: 9px; }
.ftr-icon-box {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(185,28,28,0.15); border: 1px solid rgba(185,28,28,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.ftr-label { display: flex; flex-direction: column; line-height: 1.3; }
.ftr-label strong { font-size: 0.85rem; font-weight: 800; color: var(--white); font-family: 'Jost', sans-serif; }
.ftr-label span { font-size: 0.75rem; color: #44403c; font-family: 'Jost', sans-serif; }

.footer-legal-text { max-width: 1000px; margin: 0 auto; padding: 24px 48px 0; text-align: center; }
.footer-legal-text p { font-size: 0.83rem; color: #3a3834; line-height: 1.72; margin-bottom: 8px; }

.footer-copy-bar { padding: 18px 48px 28px; text-align: center; }
.footer-copy-bar p { font-size: 0.86rem; color: #3a3834; font-family: 'Jost', sans-serif; }
.footer-copy-bar a { color: #6a6460; text-decoration: none; font-weight: 600; }
.footer-copy-bar a:hover { color: var(--amber-light); }

/* ===== FADE-UP ===== */
.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; }
}
@media (max-width: 900px) {
  .hero-inner      { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap   { order: 1; }
  .hero-content    { 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; }
}
@media (max-width: 640px) {
  nav { padding: 0 18px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 44px 20px; }
  .hero-content h1 { font-size: 1.9rem; }
  .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.2rem; }
  footer           { padding: 0; }
  .footer-nav-row  { padding: 24px 20px 20px; }
  .footer-nav-row a { border-right: none; padding: 4px 10px; }
  .footer-trust-row { padding: 20px; gap: 12px 20px; }
  .footer-legal-text { padding: 20px 20px 0; }
  .footer-copy-bar  { padding: 14px 20px 22px; }
  .feature-hcard, .benefit-hcard { flex-direction: column; align-items: flex-start; }
}