@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #0A0A0F;
  --bg-card: #12121A;
  --bg-card2: #1A1A25;
  --orange: #FF5C1A;
  --amber: #FFB347;
  --white: #F0EDE8;
  --gray: #9A9A9A;
  --gold: #C9A84C;
  --border: rgba(255, 92, 26, 0.15);
  --border-gold: rgba(201, 168, 76, 0.3);
  --glow: 0 0 30px rgba(255, 92, 26, 0.3);
  --glow-soft: 0 0 60px rgba(255, 92, 26, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
.t-orange { color: var(--orange); }
.t-amber { color: var(--amber); }
.t-gold { color: var(--gold); }
.t-gray { color: var(--gray); }
.t-white { color: var(--white); }
.t-center { text-align: center; }

.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 92, 26, 0.1);
  border: 1px solid rgba(255, 92, 26, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }

/* ── LAYOUT ── */
.container { max-width: 900px; margin: 0 auto; padding: 0 1.25rem; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-card); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: var(--radius);
  text-decoration: none;
  padding: 1rem 2rem;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #e04a10 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 92, 26, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 92, 26, 0.5);
}
.btn-primary:active { transform: translateY(0); }
.btn-xl { font-size: 1.15rem; padding: 1.3rem 2.5rem; border-radius: 14px; }
.btn-xxl { font-size: 1.3rem; padding: 1.5rem 3rem; border-radius: 16px; width: 100%; max-width: 480px; }
.btn-secondary {
  background: transparent;
  color: var(--gray);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
}
.btn-secondary:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #a8832d 100%);
  color: #0A0A0F;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-orange:hover { background: rgba(255,92,26,0.08); }

.btn-pulse {
  animation: pulse-btn 2.5s infinite;
}
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 92, 26, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(255, 92, 26, 0.7); }
}

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.card-gold {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
}
.badge-orange { background: rgba(255,92,26,0.15); color: var(--orange); border: 1px solid rgba(255,92,26,0.3); }
.badge-green { background: rgba(34,197,94,0.15); color: #22c55e; border: 1px solid rgba(34,197,94,0.3); }
.badge-gold { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }

/* ── STARS ── */
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; }

/* ── CHECKMARKS ── */
.check-list { display: flex; flex-direction: column; gap: 0.85rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(255,92,26,0.15);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  margin-top: 0.1rem;
}

/* ── DIVIDER ── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 2px;
  margin: 1.5rem auto;
}
.divider-left { margin-left: 0; }

/* ── PRICE ── */
.price-old {
  font-size: 1rem;
  color: var(--gray);
  text-decoration: line-through;
}
.price-main {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.price-main span { font-size: 1.5rem; }

/* ── COUNTDOWN ── */
.countdown {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  min-width: 56px;
}
.countdown-number {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.countdown-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-top: 0.25rem;
}
.countdown-sep { font-size: 1.5rem; font-weight: 900; color: var(--orange); line-height: 1; }

/* ── FAQ ACCORDION ── */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--amber); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  transition: transform 0.3s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── GUARANTEE BOX ── */
.guarantee-box {
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  background: rgba(201,168,76,0.04);
  display: flex;
  gap: 2rem;
  align-items: center;
}
.guarantee-icon {
  font-size: 4rem;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .guarantee-box { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── PROGRESS BAR ── */
.progress-bar-wrap {
  background: var(--bg-card2);
  border-radius: 50px;
  height: 8px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  transition: width 0.5s ease;
}

/* ── ORDER BUMP ── */
.order-bump {
  border: 2px dashed var(--amber);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: rgba(255,179,71,0.04);
  cursor: pointer;
  transition: background 0.2s;
}
.order-bump:hover { background: rgba(255,179,71,0.08); }
.order-bump.selected {
  border-color: var(--orange);
  background: rgba(255,92,26,0.06);
}

/* ── TESTIMONIAL CARD ── */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; }
.testimonial-handle { color: var(--gray); font-size: 0.8rem; }
.testimonial-text { color: #ccc; font-size: 0.9rem; line-height: 1.6; }

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2-1 { grid-template-columns: 1fr; }
}
@media (max-width: 900px) and (min-width: 600px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

/* ── STICKY HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 1.25rem;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,92,26,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-logo {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.header-logo span { color: var(--orange); }

/* ── FLOATING CTA BANNER ── */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
}
.floating-cta .price-info { display: flex; flex-direction: column; }
.floating-cta .price-tag { font-weight: 900; font-size: 1.2rem; }
.floating-cta .price-desc { font-size: 0.7rem; color: var(--gray); }
@media (max-width: 480px) {
  .floating-cta { flex-direction: column; gap: 0.75rem; }
  .floating-cta .btn { width: 100%; }
}

/* ── UPSELL PAGE ── */
.upsell-header {
  background: linear-gradient(135deg, rgba(255,92,26,0.15), rgba(255,179,71,0.05));
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
}
.upsell-step {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

/* ── ORDER SUMMARY ── */
.order-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}
.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-weight: 800;
  font-size: 1.1rem;
}

/* ── FORM ── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--gray); }
.form-input {
  background: var(--bg-card2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus {
  outline: none;
  border-color: var(--orange);
}
.form-input::placeholder { color: rgba(255,255,255,0.25); }

/* ── SECURITY BADGES ── */
.security-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.security-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 500;
}
.security-badge svg { width: 16px; height: 16px; color: #22c55e; }

/* ── GLOW LINE ── */
.glow-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--amber), transparent);
  margin: 0;
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── STICKY TOP BANNER ── */
.top-banner {
  background: linear-gradient(90deg, var(--orange), var(--amber));
  color: #000;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem;
  letter-spacing: 0.05em;
}

/* ── PAIN ICON ── */
.pain-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card2);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.04);
}

/* ── FEATURE CARD ── */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover {
  border-color: rgba(255,92,26,0.4);
  transform: translateY(-4px);
}
.feature-number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
  opacity: 0.7;
}
.feature-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 2.5rem 1.25rem;
  text-align: center;
}
.site-footer p { font-size: 0.8rem; color: var(--gray); margin-bottom: 0.4rem; }
.site-footer a { color: var(--gray); text-decoration: underline; }

/* ── HIDE FLOATING CTA WHEN PRICE SECTION VISIBLE ── */
.floating-cta.hidden { opacity: 0; pointer-events: none; }

/* ── UPSELL DECLINE ── */
.decline-link {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: underline;
}
.decline-link:hover { color: var(--white); }

/* ── PAGE PADDING FOR FIXED HEADER ── */
.page-offset { padding-top: 60px; }

/* ── IMAGE FALLBACK ── */
img {
  background: linear-gradient(135deg, #1A1A25 0%, #0A0A0F 100%);
}
img.product-thumb { min-width: 64px; min-height: 64px; }
.hero-img img,
.product-img-wrap img { min-height: 200px; }
.pack-item-img { min-height: 100px; }
