/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Assistant', sans-serif;
  background: #F5EFE6;
  color: #1A1A1A;
  direction: rtl;
  overflow-x: hidden;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #A87828, #C9A96E, #E8D5A3, #C9A96E);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 999;
  pointer-events: none;
}

/* ===== ANIMATION BASE STATES ===== */
.fade-up { opacity: 0; transform: translateY(40px); }
.fade-in { opacity: 0; }
.hero-headline { opacity: 0; }

/* ===== HERO ===== */
.hero-bg {
  background: linear-gradient(135deg, #160A18 0%, #2A1425 30%, #471540 65%, #6B2558 100%);
  position: relative;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A96E' fill-opacity='0.035'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}
.text-shadow { text-shadow: 0 2px 35px rgba(0,0,0,0.45); }

/* ===== HERO FLOATING ORBS ===== */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.18) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(107,37,88,0.5) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}
.hero-orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  top: 40%; left: 35%;
}
.hero-orb-final {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.10) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  filter: blur(120px);
}

/* ===== GOLD SHIMMER TEXT ===== */
.gold-shimmer {
  background: linear-gradient(90deg, #B8902A 0%, #E8D5A3 40%, #D4B870 60%, #B8902A 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s linear infinite;
  display: inline-block;
}
@keyframes textShimmer {
  0%   { background-position: 100% center; }
  100% { background-position: -100% center; }
}

/* ===== SCROLL MOUSE ===== */
.scroll-mouse {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: rgba(255,255,255,0.45);
  border-radius: 2px;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 1; }
  75%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ===== CTA BUTTON ===== */
.btn-primary {
  background: linear-gradient(135deg, #A87828, #C9A96E, #E8D5A3, #C9A96E, #A87828);
  background-size: 300% 100%;
  color: #2D1B2E;
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 30px rgba(168,120,40,0.42);
  animation: shimmer 4s linear infinite;
  text-decoration: none;
  display: inline-block;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(168,120,40,0.58);
}
.btn-primary:active { transform: translateY(-1px); }
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ===== TV MOMENT ===== */
.tv-moment {
  position: relative;
}
.tv-moment::before,
.tv-moment::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.5), transparent);
}
.tv-moment::before { top: 0; }
.tv-moment::after  { bottom: 0; }

/* ===== SCIENCE CARD ===== */
.science-card {
  background: white;
  border-radius: 16px;
  border-right: 4px solid #C9A96E;
  padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(74,25,66,0.08);
}

/* ===== MODULE CARDS ===== */
.module-card {
  background: white;
  border-radius: 14px;
  border-right: 4px solid #C9A96E;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(74,25,66,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.module-card:hover {
  transform: translateX(-5px);
  box-shadow: 0 8px 26px rgba(74,25,66,0.14);
}

/* ===== BONUS CARDS ===== */
.bonus-card {
  background: linear-gradient(135deg, #2D1B2E, #4A1942);
  border-radius: 16px;
  padding: 1.5rem;
  color: white;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45,27,46,0.4);
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at top right, rgba(201,169,110,0.15), transparent 70%);
  pointer-events: none;
}

/* ===== PRICE BLOCK ===== */
.price-block {
  background: linear-gradient(135deg, #2D1B2E, #4A1942);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: glowPulse 3.5s ease-in-out infinite;
}
.price-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(201,169,110,0.13), transparent 60%);
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 25px rgba(201,169,110,0.18); }
  50%       { box-shadow: 0 0 50px rgba(201,169,110,0.38), 0 0 80px rgba(201,169,110,0.08); }
}
.price-main {
  font-family: 'Heebo', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: #C9A96E;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(201,169,110,0.35);
}
.counter-number {
  font-family: 'Heebo', sans-serif;
  font-weight: 900;
  color: #C9A96E;
}

/* ===== GUARANTEE ===== */
.guarantee-badge {
  background: linear-gradient(135deg, #FFF8F0, white);
  border: 2px solid #C9A96E;
  border-radius: 50%;
  width: 100px; height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(201,169,110,0.2);
}

/* ===== FAQ ===== */
.faq-card {
  transition: box-shadow 0.3s ease, transform 0.25s ease;
}
.faq-card:hover {
  box-shadow: 0 6px 24px rgba(74,25,66,0.10);
  transform: translateY(-2px);
}
.faq-answer { animation: fadeDown 0.3s ease; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ===== LOOP STEPS ===== */
.loop-step {
  transition: transform 0.3s ease;
  cursor: default;
}
.loop-step:hover { transform: translateX(-5px); }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .price-main { font-size: 3.5rem; }
  .btn-primary { font-size: 1rem; padding: 0.875rem 1.75rem; }
}
@media (max-width: 380px) {
  .price-main { font-size: 3rem; }
  .btn-primary { font-size: 0.95rem; padding: 0.8rem 1.5rem; }
}
