/* ============================================================
   GOLD PRONO — style.css
   Palette: Noir #0a0a0a | Or #C9A84C | Or brillant #F5D06A | Blanc cassé #F0EAD6
   Typographie: Cormorant Garamond (display) + Outfit (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Outfit:wght@300;400;500;600;700;900&family=Bebas+Neue&display=swap');

/* ── Custom Properties ── */
:root {
  --gold: #C9A84C;
  --gold-bright: #F5D06A;
  --gold-dark: #8B6914;
  --gold-light: #FFE999;
  --black: #0A0A0A;
  --black-mid: #111111;
  --black-card: #151515;
  --black-card2: #1A1A1A;
  --white: #F0EAD6;
  --white-muted: #A89880;
  --red-alert: #E63946;
  --green-win: #2DC653;

  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --glow-gold: 0 0 30px rgba(201,168,76,0.4), 0 0 60px rgba(201,168,76,0.15);
  --glow-gold-sm: 0 0 15px rgba(201,168,76,0.3);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.5);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: default;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Noise Texture Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── Gold Gradient Mesh Background ── */
.bg-mesh {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 10%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 80% 80%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 50% 50%, rgba(201,168,76,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; }
.font-bebas { font-family: var(--font-heading); letter-spacing: 0.05em; }

.gold-text {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-bright) 40%, var(--gold) 60%, var(--gold-light) 80%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: goldShimmer 3s ease infinite;
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0.75rem 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--white-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 6px;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}

.nav-cta:hover { box-shadow: var(--glow-gold-sm); }
.nav-cta::after { display: none !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

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

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(6rem, 12vw, 10rem) 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Animated lines background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--green-win);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  letter-spacing: 0.15em;
  color: var(--white-muted);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-description {
  max-width: 600px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--white-muted);
  margin: 0 auto 3rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* ── PROMO CODE HERO BLOCK ── */
.promo-hero-block {
  animation: fadeInUp 0.8s ease 0.8s both;
  margin-bottom: 2.5rem;
}

.promo-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.promo-code-display {
  position: relative;
  display: inline-block;
}

.promo-code-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(201,168,76,0.06);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.promo-code-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.08), transparent);
  animation: shimmerSlide 2s ease infinite;
}

@keyframes shimmerSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.code-text {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  letter-spacing: 0.2em;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright), var(--gold-light), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 300% 300%;
  animation: goldShimmer 2s ease infinite;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.5));
}

.copy-btn {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.copy-btn:hover { 
  transform: translateY(-2px);
  box-shadow: var(--glow-gold-sm);
}

.copy-btn.copied { background: var(--green-win); color: white; }

.promo-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 3s ease infinite;
  z-index: -1;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.promo-note {
  font-size: 0.8rem;
  color: var(--white-muted);
  margin-top: 0.6rem;
}

.promo-note strong { color: var(--gold); }

/* ── Hero CTA Buttons ── */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 0.8s ease 1s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-bright) 100%);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.05em;
  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.3), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--glow-gold); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.4);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.05em;
}

.btn-secondary:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 0.5; }
}

/* ── Live Stats Bar ── */
.stats-bar {
  background: rgba(201,168,76,0.05);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.stats-ticker {
  display: flex;
  gap: 4rem;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.stats-ticker:hover { animation-play-state: paused; }

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.ticker-icon {
  color: var(--gold);
  font-size: 1rem;
}

.ticker-label { color: var(--white-muted); }
.ticker-value { color: var(--gold-bright); font-weight: 700; }

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Section Commons ── */
section {
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* ── Why Us (Bento Grid) ── */
.why-section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 2rem);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.bento-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.bento-card:hover::before { opacity: 1; }
.bento-card:hover { 
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--glow-gold-sm);
}

.bento-1 { grid-column: span 7; grid-row: span 2; }
.bento-2 { grid-column: span 5; }
.bento-3 { grid-column: span 5; }
.bento-4 { grid-column: span 4; }
.bento-5 { grid-column: span 4; }
.bento-6 { grid-column: span 4; }

.bento-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.bento-card h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: 0.75rem;
  color: var(--white);
}

.bento-card p {
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.bento-1 .bento-stat {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 1;
  margin: 1rem 0;
}

.bento-tag {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

/* ── Promo Section (sticky conversion) ── */
.promo-section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 2rem);
  text-align: center;
}

.promo-big-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 24px;
  padding: clamp(2.5rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}

.promo-big-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.promo-big-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 18vw, 12rem);
  letter-spacing: 0.15em;
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.4));
  animation: goldPulse 3s ease infinite;
  margin: 1.5rem 0;
}

@keyframes goldPulse {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(201,168,76,0.3)); }
  50% { filter: drop-shadow(0 0 60px rgba(201,168,76,0.6)); }
}

.promo-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
  text-align: left;
}

.promo-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--black);
  font-weight: 900;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--white-muted);
}

/* ── Floating Promo Sticky Bar ── */
.promo-sticky {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 90;
  background: linear-gradient(180deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: var(--black);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 1.25rem 0.75rem;
  border-radius: 12px 0 0 12px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: -4px 0 20px rgba(201,168,76,0.3);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.promo-sticky:hover {
  padding-right: 1.25rem;
  box-shadow: -8px 0 30px rgba(201,168,76,0.5);
}

/* ── Testimonials ── */
.testimonials-section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 2rem);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.testimonial-card {
  background: var(--black-card2);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(201,168,76,0.1);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.star { color: var(--gold); font-size: 1rem; }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-win {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45,198,83,0.1);
  border: 1px solid rgba(45,198,83,0.3);
  color: var(--green-win);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
}

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.author-location {
  font-size: 0.8rem;
  color: var(--white-muted);
}

/* ── Community Section ── */
.community-section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 2rem);
  text-align: center;
}

.community-card {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.03) 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.community-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.wa-icon-big {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}

.community-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
}

.community-stat-item {
  text-align: center;
}

.community-stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold-bright);
  display: block;
}

.community-stat-label {
  font-size: 0.8rem;
  color: var(--white-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── FAQ Section ── */
.faq-section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 2rem);
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(201,168,76,0.1); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }

.faq-answer p {
  color: var(--white-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ── Final CTA Section ── */
.final-cta {
  padding: clamp(4rem, 8vw, 8rem) 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.final-cta-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* ── Footer ── */
footer {
  background: var(--black-card);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3rem clamp(1rem, 4vw, 2rem) 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { height: 36px; }
.footer-desc { color: var(--white-muted); font-size: 0.9rem; line-height: 1.7; }

.footer-title {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: var(--white-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--white-muted);
}

.footer-bottom a {
  color: var(--white-muted);
  text-decoration: none;
  transition: var(--transition);
}

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

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.wa-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waBounce 2s ease infinite;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
  animation: none;
}

@keyframes waBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ── WhatsApp Popup ── */
.wa-popup {
  background: var(--black-card);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  width: 280px;
  box-shadow: var(--shadow-card);
  display: none;
  position: relative;
}

.wa-popup.active { display: block; }

.wa-popup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.wa-popup-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--black);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.wa-popup-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.wa-popup-status { font-size: 0.75rem; color: var(--green-win); }

.wa-popup-msg {
  background: rgba(201,168,76,0.06);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.85rem;
  color: var(--white-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.wa-popup-btns { display: flex; flex-direction: column; gap: 0.5rem; }

.wa-popup-btn {
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.2);
  color: var(--green-win);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.wa-popup-btn:hover { background: rgba(37,211,102,0.2); }

.wa-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--white-muted);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: var(--transition);
}

.wa-popup-close:hover { color: var(--white); }

/* ── Back to Top ── */
.back-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 180;
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-top:hover {
  background: rgba(201,168,76,0.2);
  box-shadow: var(--glow-gold-sm);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Divider ── */
.gold-divider {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

/* ── Trust Badges ── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-badge i { color: var(--gold); }

/* Keyframes shared */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bento-1 { grid-column: span 12; }
  .bento-2, .bento-3 { grid-column: span 6; }
  .bento-4, .bento-5, .bento-6 { grid-column: span 4; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  .bento-1, .bento-2, .bento-3, .bento-4, .bento-5, .bento-6 { grid-column: span 12; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .promo-sticky { display: none; }

  .community-stats { gap: 1.5rem; }
  .community-stat-num { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .promo-code-inner { flex-direction: column; gap: 0.75rem; }
  .wa-float { bottom: 1rem; right: 1rem; }
}

/* ══════════════════════════════════════
   v2 UPDATES
   ══════════════════════════════════════ */

/* Ticker single-line override — remove old dual-line */
.stats-ticker { display: none; }   /* old class disabled */

/* Featured testimonial responsive */
@media (max-width: 700px) {
  .reveal[style*="grid-template-columns:1fr 1.1fr"],
  div[style*="grid-template-columns: 1fr 1.1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* Logo nav: black bg removed via mix-blend-mode */
.navbar-logo-img {
  mix-blend-mode: screen;
  filter: brightness(1.15) contrast(1.05);
}

/* Footer logo — gold version, squared with radius */
.footer-logo-img {
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(201,168,76,0.25);
}

/* Promo code glow inherit from JS but ensure base */
.promo-code-inner {
  transition: box-shadow 0.6s ease;
}

/* Stats bar ensure single line overflow */
.stats-bar {
  overflow: hidden;
  white-space: nowrap;
  line-height: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
}

/* Win badge on image */
.win-float-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #8B6914, #C9A84C);
  color: #0A0A0A;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.55rem 1.5rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
  z-index: 2;
}

/* Split section responsive fix */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(4rem,8vw,8rem) clamp(1rem,4vw,2rem);
}
@media (max-width: 768px) {
  .split-section { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Featured testimonial card responsive */
.testimonial-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
}
@media (max-width: 640px) {
  .testimonial-featured-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-featured-grid > div:first-child {
    min-height: 240px !important;
  }
}
