/* ============================================
   RABBI EZRA: THE TORAH CEO — Global Styles
   Dark Premium Theme — VIBRANT EDITION
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg-primary: #080808;
  --bg-secondary: #0E0E0E;
  --bg-card: #141210;
  --gold: #F0C850;
  --gold-light: #FFD866;
  --gold-dim: #B8943E;
  --gold-bright: #FFE082;
  --text-primary: #F2ECE0;
  --text-body: #D5CFC2;
  --text-dim: #8A8278;
  --border: #2A2520;
  --border-gold: rgba(240, 200, 80, 0.15);
  --red: #E74C3C;
  --green: #2ECC71;
  --green-bright: #00E676;
  --green-dark: #1B9E4B;
  --green-glow: 0 0 30px rgba(0, 230, 118, 0.3), 0 0 60px rgba(0, 230, 118, 0.1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', 'Source Serif Pro', Georgia, serif;
  --font-ui: 'Inter', 'DM Sans', -apple-system, sans-serif;
  --gold-glow: 0 0 40px rgba(240, 200, 80, 0.12), 0 0 80px rgba(240, 200, 80, 0.06);
  --gold-glow-strong: 0 0 60px rgba(240, 200, 80, 0.2), 0 0 120px rgba(240, 200, 80, 0.08);
  --gold-glow-intense: 0 0 30px rgba(240, 200, 80, 0.35), 0 0 60px rgba(240, 200, 80, 0.15);
  --transition: 0.3s ease;
  --transition-fast: 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-primary);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.3;
}

/* ---- Utility Classes ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.text-gold { color: var(--gold); }
.text-center { text-align: center; }

/* ---- Animated Glow Line (decorative) ---- */
.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
  margin: 0 auto;
  max-width: 400px;
}

/* Fade-in animation classes */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ---- Shimmer effect for headings ---- */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer-text {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 25%, var(--gold) 50%, var(--gold-light) 75%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ---- Particles Canvas ---- */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   NAVBAR — Always visible links, no hamburger
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  padding: 0 24px;
}

.navbar.scrolled {
  border-bottom-color: var(--border-gold);
  box-shadow: 0 4px 30px rgba(240, 200, 80, 0.05);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.navbar-logo:hover {
  color: var(--gold-light);
}

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

.navbar-links a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color var(--transition);
  letter-spacing: 0.3px;
  padding: 6px 12px;
  border-radius: 6px;
}

.navbar-links a:hover {
  color: var(--gold);
  background: rgba(240, 200, 80, 0.06);
}

.navbar-links .nav-btn {
  background: var(--gold);
  color: var(--bg-primary) !important;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 0.78rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.navbar-links .nav-btn:hover {
  background: var(--gold-light);
  color: var(--bg-primary) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(240, 200, 80, 0.3);
}

/* Hamburger — hidden by default, only small mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

.hero-content {
  max-width: 850px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease forwards;
  animation-delay: 0.2s;
  box-shadow: 0 0 20px rgba(240, 200, 80, 0.1);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease forwards;
  animation-delay: 0.6s;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease forwards;
  animation-delay: 0.8s;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: heroFadeIn 0.8s ease forwards 1.2s, floatBounce 2s ease-in-out infinite 2s;
}

@keyframes floatBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.scroll-indicator span {
  display: block;
  width: 20px;
  height: 32px;
  border-radius: 10px;
  border: 2px solid var(--gold-dim);
  position: relative;
}

.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 18px; }
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--bg-primary);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
  text-shadow: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-bright) 100%);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 200, 80, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.btn-outline:hover {
  border-color: var(--gold-light);
  background: rgba(240, 200, 80, 0.1);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(240, 200, 80, 0.15);
}

/* Pulse animation for CTA buttons */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 200, 80, 0.4); }
  50% { box-shadow: 0 0 25px 6px rgba(240, 200, 80, 0.2); }
}

.btn-pulse {
  animation: ctaPulse 3s ease-in-out infinite;
}

/* ============================================
   COUNTDOWN TIMER
   ============================================ */
.countdown-banner {
  background: linear-gradient(90deg, rgba(240, 200, 80, 0.08) 0%, rgba(240, 200, 80, 0.15) 50%, rgba(240, 200, 80, 0.08) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 16px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.countdown-label {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-timer {
  display: flex;
  gap: 8px;
  align-items: center;
}

.countdown-block {
  background: rgba(240, 200, 80, 0.1);
  border: 1px solid var(--gold-dim);
  border-radius: 6px;
  padding: 6px 10px;
  min-width: 48px;
  text-align: center;
}

.countdown-block .count-num {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-bright);
  display: block;
  line-height: 1.2;
}

.countdown-block .count-label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-sep {
  font-family: var(--font-ui);
  font-size: 1.2rem;
  color: var(--gold-dim);
  font-weight: 700;
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.social-proof {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 40px 24px;
  position: relative;
  z-index: 1;
}

.social-proof-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.proof-item .proof-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.proof-item .proof-label {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
}

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

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid var(--gold-dim);
  box-shadow: var(--gold-glow-strong);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
  z-index: -1;
  opacity: 0.2;
}

.about-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.about-section h2 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.about-section h3 {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dim);
  font-weight: 400;
  margin-bottom: 24px;
}

.about-section p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 24px;
}

.about-quote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  background: rgba(240, 200, 80, 0.05);
  border-radius: 0 8px 8px 0;
}

.about-quote p {
  font-style: italic;
  color: var(--text-primary);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ============================================
   CATALOG SECTION
   ============================================ */
.catalog-section {
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.catalog-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.catalog-section .section-header h2 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.catalog-section .section-header p {
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto;
}

.catalog-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* ---- Product Card ---- */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.product-card:hover {
  border-color: var(--gold-dim);
  box-shadow: var(--gold-glow-strong);
  transform: translateY(-6px);
}

.product-card .card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-primary);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(240, 200, 80, 0.3);
}

.card-image-wrapper {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(240, 200, 80, 0.03) 0%, var(--bg-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.card-image-wrapper img {
  max-height: 350px;
  width: auto;
  transition: transform 0.5s ease;
  border-radius: 4px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

.product-card:hover .card-image-wrapper img {
  transform: scale(1.05);
}

.card-content {
  padding: 24px 28px 28px;
}

.card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.card-price {
  font-family: var(--font-ui);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.card-price-old {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-bottom: 16px;
}

.card-bullets {
  list-style: none;
  margin-bottom: 24px;
}

.card-bullets li {
  padding: 5px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

.card-bullets li::before {
  content: '✡';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

.card-content .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 0.95rem;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
  padding: 80px 24px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.reviews-section h2 {
  font-size: 2.5rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 50px;
}

.reviews-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s ease;
}

.review-card {
  min-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.review-card-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.review-card-inner::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg-primary);
  flex-shrink: 0;
}

.review-meta h4 {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.review-meta span {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-dim);
}

.review-verified {
  color: var(--green) !important;
  font-weight: 500;
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

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

.review-product-badge {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(240, 200, 80, 0.4);
}

/* ============================================
   URGENCY / FINAL CTA SECTION
   ============================================ */
.final-cta {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-card) 50%, var(--bg-primary) 100%);
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.35;
}

.final-cta > .container > p {
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.urgency-text {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--gold-dim);
  padding: 50px 24px 30px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  list-style: none;
}

.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-disclaimer {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text-dim);
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.7;
  opacity: 0.7;
}

.footer-copyright {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.footer-legal {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.6;
}

/* ============================================
   PRODUCT PAGE — HERO
   ============================================ */
.product-hero {
  position: relative;
  z-index: 1;
  padding: 100px 24px 80px;
}

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

.product-image-wrapper {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.product-image-3d {
  transition: transform 0.1s ease;
  will-change: transform;
}

.product-image-3d img {
  max-height: 500px;
  width: auto;
  border-radius: 8px;
  box-shadow: var(--gold-glow-strong);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.product-info .hero-badge {
  animation: none;
  opacity: 1;
  transform: none;
  margin-bottom: 16px;
}

.product-info h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.product-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.7;
}

.product-price {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-old {
  font-family: var(--font-ui);
  font-size: 1.2rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.price-current {
  font-family: var(--font-ui);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(240, 200, 80, 0.2);
}

.product-info .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 18px 32px;
  margin-bottom: 16px;
}

.secure-checkout {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 8px;
}

.viewer-counter {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--gold-dim);
  text-align: center;
  margin-bottom: 20px;
}

.mini-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.mini-badge {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-body);
  background: rgba(240, 200, 80, 0.08);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  border-radius: 50px;
}

/* ============================================
   LAWS GRID (Torah CEO Code page)
   ============================================ */
.laws-section {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
}

.laws-section h2 {
  font-size: 2.5rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 50px;
}

.laws-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.law-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.law-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: var(--gold-glow);
}

.law-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.1;
  position: absolute;
  top: 10px;
  right: 16px;
  line-height: 1;
}

.law-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  position: relative;
}

.law-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
  position: relative;
}

/* ============================================
   CHAPTERS LIST (Generational Wealth page)
   ============================================ */
.chapters-section {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
}

.chapters-section h2 {
  font-size: 2.5rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 50px;
}

.chapters-list {
  max-width: 750px;
  margin: 0 auto;
  list-style: none;
}

.chapters-list li {
  padding: 18px 0;
  padding-left: 36px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.6;
}

.chapters-list li::before {
  content: '✡';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.9rem;
  top: 20px;
}

.chapters-list li strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

.chapters-list li span {
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* ============================================
   WHO IS THIS FOR (Generational Wealth page)
   ============================================ */
.who-section {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
}

.who-section h2 {
  font-size: 2.5rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 50px;
}

.who-list {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
}

.who-list li {
  padding: 14px 0;
  padding-left: 36px;
  position: relative;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}

.who-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 700;
}

/* ============================================
   PRODUCT FINAL CTA
   ============================================ */
.product-final-cta {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
  background: var(--bg-card);
  text-align: center;
}

.product-final-cta blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto 12px;
  line-height: 1.8;
}

.product-final-cta .quote-author {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--gold-dim);
  margin-bottom: 40px;
}

.product-final-cta .btn-primary {
  font-size: 1rem;
  padding: 16px 40px;
  margin-bottom: 16px;
}

.product-final-cta .alt-link {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--text-dim);
  display: block;
  margin-bottom: 24px;
}

.product-final-cta .alt-link a {
  color: var(--gold);
}

.guarantee-text {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   ABOUT COMPACT (product pages)
   ============================================ */
.about-compact {
  padding: 80px 24px;
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
}

.about-compact-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-compact-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin: 0 auto 20px;
  overflow: hidden;
  box-shadow: var(--gold-glow);
}

.about-compact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-compact h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.about-compact .about-role {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--text-dim);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-compact p:last-of-type {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto;
}

/* ============================================
   NOTIFICATION POPUP
   ============================================ */
.purchase-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 9999;
  max-width: 360px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(240, 200, 80, 0.08);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.purchase-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.purchase-notification.hide {
  transform: translateX(-120%);
  opacity: 0;
}

.notification-image {
  width: 50px;
  height: 68px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-primary);
}

.notification-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notification-text {
  flex: 1;
}

.notification-text .notif-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.notification-text .notif-product {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.notification-text .notif-time {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  width: 100%;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(16px);
  z-index: 999;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--text-body);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ============================================
   GREEN BUY BUTTON — Aggressive CTA
   ============================================ */
.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #00C853 0%, #00E676 50%, #69F0AE 100%);
  color: #000 !important;
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 18px 40px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 230, 118, 0.3), 0 0 40px rgba(0, 230, 118, 0.1);
}

.btn-buy::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn-buy:hover::before {
  left: 100%;
}

.btn-buy:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px rgba(0, 230, 118, 0.45), 0 0 60px rgba(0, 230, 118, 0.15);
  background: linear-gradient(135deg, #00E676 0%, #69F0AE 50%, #B9F6CA 100%);
  color: #000 !important;
}

@keyframes buyPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 230, 118, 0.3), 0 0 0 0 rgba(0, 230, 118, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(0, 230, 118, 0.3), 0 0 30px 8px rgba(0, 230, 118, 0.15); }
}

.btn-buy.btn-pulse {
  animation: buyPulse 2.5s ease-in-out infinite;
}

/* Lock icon for buy button */
.btn-buy .lock-icon {
  font-size: 0.9em;
}

/* ============================================
   TRUST BADGES BAR
   ============================================ */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 0;
  margin-top: 16px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-dim);
}

.trust-badge-item .trust-icon {
  font-size: 1.1rem;
}

/* ============================================
   FLOATING BADGE (top ribbon)
   ============================================ */
.floating-ribbon {
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(90deg, #00C853, #00E676, #00C853);
  padding: 8px 24px;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.5px;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.floating-ribbon.visible {
  transform: translateY(0);
}

.floating-ribbon .ribbon-timer {
  font-weight: 800;
  margin-left: 6px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .laws-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }

  .product-hero-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .social-proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image-wrapper {
    max-width: 280px;
    margin: 0 auto;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .product-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-image-wrapper {
    order: -1;
  }

  .product-price {
    justify-content: center;
  }

  .laws-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
    max-width: 340px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .review-card-inner {
    padding: 24px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .purchase-notification {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: 12px;
  }

  .countdown-inner {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .navbar-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .social-proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .proof-item .proof-number {
    font-size: 2rem;
  }

  .mini-badges {
    flex-direction: column;
    align-items: center;
  }
}
