/* ============================================================
   SPARTAMAX™ — css/style.css
   Domain: usa-sparttamax.com
   Theme: Near-Black + Deep Crimson + Amber + Gold
   Hero: Text LEFT / Image RIGHT
   What Is: Image LEFT / Text RIGHT
   Footer: Dark navy single row (ProstaVive V2 style)
   ============================================================ */

*, *::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;
  --amber-pale:     #fff7ed;
  --gold:           #b45309;
  --gold-light:     #d97706;
  --gold-pale:      #fffbeb;
  --white:          #ffffff;
  --off-white:      #f9f7f5;
  --text:           #1c1917;
  --muted:          #57534e;
  --border:         #e7e5e4;
  --radius:         6px;
  --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;
}

/* ============================================================
   GLOBAL 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 — Text LEFT / Image 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-content { order: 1; }
.hero-img-wrap { order: 2; }

.hero-img-wrap {
  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 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 SECTION — 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 — crimson left-border list
   ============================================================ */
.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(--amber-mid);
  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(--charcoal);
  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;
}

.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 — amber circle icons + gradient accent line
   ============================================================ */
.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: 0;
}

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

.benefits-list li + li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    #f5e8e0 12%,
    var(--border) 50%,
    #f5e8e0 88%,
    transparent 100%
  );
}

.benefit-icon {
  min-width: 36px;
  height: 36px;
  background: var(--crimson-mid);
  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(--charcoal); font-weight: 700; }

/* ============================================================
   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 — Dark navy single row (ProstaVive V2 style)
   ============================================================ */
footer {
  background: var(--black);
  padding: 48px 48px 30px;
  border-top: 3px solid var(--crimson);
}

.footer-cols {
  max-width: 1160px;
  margin: 0 auto 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 0;
}

.footer-cols a {
  color: #78716c;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  transition: color 0.2s;
  padding: 5px 18px;
  border-right: 1px solid #292524;
  text-align: center;
  white-space: nowrap;
}

.footer-cols a:last-child { border-right: none; }
.footer-cols a:hover { color: var(--amber-light); }

.footer-legal {
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid #292524;
  padding-top: 24px;
}

.footer-legal p {
  font-size: 0.87rem;
  color: #44403c;
  line-height: 1.75;
  margin-bottom: 12px;
}

.footer-copy {
  text-align: center;
  font-size: 0.87rem;
  color: #292524;
  font-family: 'Jost', sans-serif;
  margin-top: 16px;
}

.footer-copy a { color: #44403c; text-decoration: none; }
.footer-copy 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-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; }
}

@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: 36px 20px 24px; }
  .footer-cols a    { border-right: none; padding: 4px 12px; }
}