/* =============================================
   المعشبة الصحراوية — Premium Dark Luxury Theme
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: rgba(20, 20, 20, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --red-dark: #8B0000;
  --red-primary: #DC143C;
  --red-light: #FF2D55;
  --gold-dark: #B8860B;
  --gold-primary: #D4AF37;
  --gold-light: #FFD700;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --text-primary: #f5f5f5;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --font-ar: 'Cairo', sans-serif;
  --font-fr: 'Montserrat', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.15);
  --shadow-red: 0 0 30px rgba(220, 20, 60, 0.15);
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-ar);
  background: var(--bg-primary);
  color: var(--text-primary);
  direction: rtl;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.lang-fr {
  font-family: var(--font-fr);
  direction: ltr;
}

body.lang-fr .section-title,
body.lang-fr .hero-headline,
body.lang-fr .hero-sub {
  font-family: var(--font-fr);
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- Honeycomb Background Texture --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(220, 20, 60, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Honeycomb pattern overlay */
.honeycomb-bg {
  position: fixed;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23D4AF37' stroke-width='1'/%3E%3Cpath d='M28 0L28 34L0 50L0 84L28 100L56 84L56 50L28 34' fill='none' stroke='%23D4AF37' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
  pointer-events: none;
  z-index: 0;
  animation: honeycombFloat 30s linear infinite;
}

@keyframes honeycombFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100px);
  }
}

/* --- Particle / Ember Effects --- */
.ember-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.ember {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold-primary);
  border-radius: 50%;
  opacity: 0;
  animation: emberFloat 8s ease-in-out infinite;
  box-shadow: 0 0 6px var(--gold-primary), 0 0 12px rgba(212, 175, 55, 0.4);
}

@keyframes emberFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.2;
  }

  100% {
    opacity: 0;
    transform: translateY(-20vh) scale(1);
  }
}

/* --- Sticky Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition-fast);
}

.nav.scrolled {
  padding: 8px 24px;
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-brand {
  font-size: 1.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  background: var(--bg-glass);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--font-fr);
  font-weight: 600;
  transition: var(--transition-fast);
}

.lang-toggle:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--red-dark), var(--red-primary));
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
  font-family: var(--font-ar);
}

body.lang-fr .nav-cta {
  font-family: var(--font-fr);
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-red);
}

/* --- Section Base --- */
section {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(220, 20, 60, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--bg-primary));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  width: 100%;
}

.hero-text {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-headline .highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.9;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--red-dark), var(--red-primary));
  color: white;
  border: none;
  border-radius: var(--radius-xl);
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-ar);
  box-shadow: 0 8px 30px rgba(220, 20, 60, 0.3);
  position: relative;
  overflow: hidden;
}

body.lang-fr .hero-cta {
  font-family: var(--font-fr);
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--red-primary), var(--gold-primary), var(--red-primary));
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-fast);
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(220, 20, 60, 0.4);
}

.hero-cta:hover::before {
  opacity: 1;
}

.hero-cta .pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(220, 20, 60, 0.4);
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 60px rgba(212, 175, 55, 0.2));
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.hero-image::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* =============================================
   PAIN POINTS SECTION
   ============================================= */
.pain-section {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(220, 20, 60, 0.1);
  border-bottom: 1px solid rgba(220, 20, 60, 0.1);
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid rgba(220, 20, 60, 0.15);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-dark), var(--red-primary), var(--red-dark));
}

.pain-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 20, 60, 0.3);
  box-shadow: var(--shadow-red);
}

.pain-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(220, 20, 60, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.pain-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.pain-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================
   SOLUTION SECTION
   ============================================= */
.solution-section {
  padding: 100px 20px;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.solution-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-fast);
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-gold);
}

.solution-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.solution-card-body {
  padding: 28px;
}

.solution-card-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--gold-primary);
}

.solution-card-body p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

.synergy-banner {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(220, 20, 60, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.synergy-banner .synergy-icon {
  font-size: 2.5rem;
}

.synergy-banner h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.synergy-banner p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* =============================================
   BENEFITS SECTION
   ============================================= */
.benefits-section {
  background: var(--bg-secondary);
  padding: 100px 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-fast);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-gold);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition-fast);
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  transform: scale(1.1);
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* =============================================
   SOCIAL PROOF SECTION
   ============================================= */
.proof-section {
  padding: 100px 20px;
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition-fast);
}

.testimonial:hover {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-gold);
}

.testimonial-stars {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--red-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: white;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-city {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =============================================
   LIFESTYLE / PACKAGING SECTION
   ============================================= */
.lifestyle-section {
  padding: 100px 20px;
  position: relative;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.lifestyle-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.lifestyle-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.lifestyle-img:hover img {
  transform: scale(1.05);
}

.lifestyle-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(10, 10, 10, 0.7));
  border-radius: var(--radius-lg);
}

.lifestyle-text h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--gold-primary);
}

.lifestyle-text p {
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 1.05rem;
}

/* =============================================
   HOW TO USE SECTION
   ============================================= */
.howto-section {
  background: var(--bg-secondary);
  padding: 100px 20px;
}

.howto-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.howto-step {
  text-align: center;
  position: relative;
}

.howto-step::after {
  content: '';
  position: absolute;
  top: 40px;
  left: -15px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

body.lang-fr .howto-step::after {
  left: auto;
  right: -15px;
  background: linear-gradient(-90deg, var(--gold-primary), transparent);
}

.howto-step:first-child::after {
  display: none;
}

.howto-number {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--red-dark), var(--red-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.howto-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.howto-step h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.howto-step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* =============================================
   OFFER SECTION
   ============================================= */
.offer-section {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(220, 20, 60, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
}

.offer-box {
  position: relative;
  background: var(--bg-card);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.offer-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--red-primary), var(--gold-primary));
}

.offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--red-dark), var(--red-primary));
  color: white;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 24px;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(220, 20, 60, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(220, 20, 60, 0);
  }
}

.offer-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.offer-discount {
  font-size: 1.1rem;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 24px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.countdown-item {
  background: rgba(220, 20, 60, 0.1);
  border: 1px solid rgba(220, 20, 60, 0.2);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  min-width: 75px;
  text-align: center;
}

.countdown-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red-light);
  line-height: 1;
}

.countdown-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.offer-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.offer-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.offer-feature svg {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.scarcity-banner {
  background: rgba(220, 20, 60, 0.08);
  border: 1px solid rgba(220, 20, 60, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red-light);
  animation: scarcityPulse 1.5s ease-in-out infinite;
}

@keyframes scarcityPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.scarcity-banner .dot {
  width: 8px;
  height: 8px;
  background: var(--red-primary);
  border-radius: 50%;
  animation: dotPulse 1s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }
}

/* =============================================
   ORDER FORM SECTION
   ============================================= */
.form-section {
  background: var(--bg-secondary);
  padding: 100px 20px;
}

.order-form {
  max-width: 550px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.order-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--red-primary), var(--gold-primary));
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-ar);
  transition: var(--transition-fast);
  outline: none;
}

body.lang-fr .form-group input,
body.lang-fr .form-group select {
  font-family: var(--font-fr);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--red-dark), var(--red-primary));
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font-ar);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

body.lang-fr .form-submit {
  font-family: var(--font-fr);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

.form-submit:active {
  transform: translateY(0);
}

.form-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

.form-submit.loading::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
}

body.lang-fr .form-submit.loading::after {
  margin-right: 0;
  margin-left: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-security {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Form Toast Notification */
.form-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  z-index: 10000;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  max-width: 90%;
  text-align: center;
  font-family: var(--font-ar);
}

.form-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.form-toast-error {
  background: var(--red-primary);
  color: #fff;
  box-shadow: 0 8px 30px rgba(220, 20, 60, 0.3);
}

.form-toast-success {
  background: #27ae60;
  color: #fff;
  box-shadow: 0 8px 30px rgba(39, 174, 96, 0.3);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success .checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--gold-primary);
}

.form-success p {
  color: var(--text-secondary);
}

/* =============================================
   TRUST / FOOTER
   ============================================= */
.trust-section {
  padding: 60px 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.trust-badge-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.trust-badge span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.footer {
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.floating-cta {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-fast);
  pointer-events: none;
}

body.lang-fr .floating-cta {
  left: auto;
  right: 20px;
}

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

.floating-cta button {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--red-dark), var(--red-primary));
  color: white;
  border: none;
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font-ar);
  box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

body.lang-fr .floating-cta button {
  font-family: var(--font-fr);
}

.floating-cta button:hover {
  transform: scale(1.05);
}

.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: var(--transition-fast);
  cursor: pointer;
}

body.lang-fr .whatsapp-btn {
  left: auto;
  right: 20px;
}

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

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* =============================================
   EXIT INTENT POPUP
   ============================================= */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  padding: 20px;
}

.exit-popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.exit-popup {
  background: var(--bg-secondary);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  max-width: 450px;
  width: 100%;
  text-align: center;
  transform: scale(0.9);
  transition: var(--transition-smooth);
  position: relative;
}

.exit-popup-overlay.show .exit-popup {
  transform: scale(1);
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

body.lang-fr .exit-popup-close {
  left: auto;
  right: 16px;
}

.exit-popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.exit-popup-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.exit-popup h2 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--gold-primary);
}

.exit-popup p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.exit-popup .discount-code {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  border: 2px dashed var(--gold-primary);
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold-primary);
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.exit-popup-cta {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--red-dark), var(--red-primary));
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font-ar);
  transition: var(--transition-fast);
}

body.lang-fr .exit-popup-cta {
  font-family: var(--font-fr);
}

.exit-popup-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

/* =============================================
   AUDIO TESTIMONIALS — WhatsApp Voice Style
   ============================================= */
.audio-section {
  padding: 100px 20px;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

/* Honeycomb texture overlay */
.audio-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Animated Counter */
.audio-counter {
  text-align: center;
  margin: 24px 0 10px;
}

.audio-counter-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-primary), var(--red-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.audio-counter-label {
  display: block;
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.audio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

/* ---- WhatsApp Voice Card ---- */
.wa-voice-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 20px;
  padding: 22px 24px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.wa-voice-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.05);
}

.wa-voice-card.playing {
  border-color: var(--gold-primary);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15), 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Top row: Avatar + Name */
.wa-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.wa-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.15), rgba(220, 20, 60, 0.1));
  border: 2px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wa-avatar svg {
  width: 28px;
  height: 28px;
}

.wa-user-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wa-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.wa-badge {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.wa-badge small {
  color: var(--text-muted);
  font-weight: 600;
}

/* ---- Voice Bubble ---- */
.wa-bubble {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.12);
  border-radius: 16px 16px 16px 4px;
  padding: 12px 16px;
  margin-bottom: 10px;
  position: relative;
}

[dir="rtl"] .wa-bubble {
  border-radius: 16px 16px 4px 16px;
}

.wa-play-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  padding: 0;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.wa-play-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.wa-play-btn svg {
  width: 18px;
  height: 18px;
  color: white;
}

.wa-play-btn .play-icon {
  margin-left: 3px;
}

.wa-play-btn.disabled {
  background: rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
  box-shadow: none;
}

.wa-play-btn.disabled:hover {
  transform: none;
}

/* ---- Waveform + Scrubber ---- */
.wa-waveform-wrap {
  flex: 1;
  height: 40px;
  position: relative;
}

.wa-wave-bars {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%;
  position: relative;
  z-index: 1;
}

.wave-bar {
  flex: 1;
  background: rgba(37, 211, 102, 0.25);
  border-radius: 2px;
  min-width: 2.5px;
  transition: background 0.2s, transform 0.15s;
}

.wa-wave-bars.playing .wave-bar {
  animation: waveAnim 0.7s ease-in-out infinite alternate;
}

.wa-wave-bars.playing .wave-bar:nth-child(odd) {
  animation-delay: 0.08s;
}

.wa-wave-bars.playing .wave-bar:nth-child(3n) {
  animation-delay: 0.16s;
}

.wa-wave-bars.playing .wave-bar:nth-child(4n+1) {
  animation-delay: 0.24s;
}

.wa-wave-bars.playing .wave-bar:nth-child(5n) {
  animation-delay: 0.32s;
}

@keyframes waveAnim {
  0% {
    transform: scaleY(0.5);
    background: rgba(37, 211, 102, 0.25);
  }

  100% {
    transform: scaleY(1);
    background: rgba(37, 211, 102, 0.55);
  }
}

/* Scrubber (range input) */
.wa-scrubber {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

.wa-duration {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  min-width: 32px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* ---- Meta row ---- */
.wa-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 2px;
}

.wa-timestamp {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
}

.wa-file-ref {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.12);
  font-family: monospace;
}

/* ---- Summary text ---- */
.wa-summary {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ---- Unavailable fallback ---- */
.wa-unavailable {
  text-align: center;
  padding: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  background: rgba(255, 0, 0, 0.05);
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

/* ---- Disclaimer ---- */
.audio-disclaimer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 32px;
  opacity: 0.7;
}

/* ---- CTA after audio ---- */
.audio-cta {
  text-align: center;
  margin-top: 36px;
}

.audio-cta .hero-cta {
  font-size: 1.15rem;
  padding: 16px 48px;
}

/* =============================================
   S1: MASCULINE IDENTITY TRIGGER
   ============================================= */
.neuro-identity {
  padding: 80px 20px;
  background: var(--bg-primary);
}

.identity-split {
  display: flex;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  margin-top: 36px;
}

.identity-side {
  flex: 1;
  padding: 36px 28px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.identity-side:hover {
  transform: scale(1.02);
  z-index: 1;
}

.identity-weak {
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid rgba(255, 255, 255, 0.08);
}

[dir="rtl"] .identity-weak {
  border-left: none;
  border-right: 3px solid rgba(255, 255, 255, 0.08);
}

.identity-strong {
  background: rgba(212, 175, 55, 0.04);
  border-left: 3px solid var(--gold-primary);
}

[dir="rtl"] .identity-strong {
  border-left: none;
  border-right: 3px solid var(--gold-primary);
}

.identity-label {
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.identity-weak .identity-label {
  color: var(--text-muted);
}

.identity-strong .identity-label {
  color: var(--gold-primary);
}

.identity-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.identity-side ul li {
  font-size: 1.05rem;
  padding: 10px 0;
  line-height: 1.6;
  transition: var(--transition-fast);
}

.identity-weak ul li {
  color: var(--text-muted);
}

.identity-strong ul li {
  color: var(--text-primary);
  font-weight: 600;
}

.identity-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  min-width: 50px;
  background: rgba(212, 175, 55, 0.08);
  position: relative;
}

.identity-divider span {
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--gold-primary);
  letter-spacing: 2px;
}

/* =============================================
   S2: LOSS AVERSION
   ============================================= */
.neuro-loss {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(220, 20, 60, 0.04) 100%);
}

.loss-text {
  max-width: 600px;
  margin: 36px auto 0;
  text-align: center;
}

.loss-text p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 8px;
}

.loss-highlight {
  font-size: 1.25rem !important;
  color: var(--text-primary) !important;
  font-weight: 700;
  margin-top: 12px !important;
}

.pulse-word {
  color: var(--red-primary);
  animation: pulseText 2.5s ease-in-out infinite;
  display: inline-block;
}

@keyframes pulseText {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* =============================================
   S3: FUTURE VISUALIZATION
   ============================================= */
.neuro-vision {
  padding: 80px 20px;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.vision-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.vision-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.08;
  filter: blur(4px) saturate(0.5);
}

.neuro-vision::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.vision-list {
  max-width: 500px;
  margin: 36px auto 0;
  position: relative;
  z-index: 1;
}

.vision-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.vision-item:hover {
  transform: translateX(-8px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.08);
}

[dir="ltr"] .vision-item:hover {
  transform: translateX(8px);
}

.vision-glow {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.gold-cta {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark)) !important;
}

.text-center {
  text-align: center;
}

/* =============================================
   S4: ADVANCED SOCIAL PROOF
   ============================================= */
.neuro-proof {
  padding: 80px 20px;
  background: var(--bg-primary);
}

.proof-counters {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 36px 0 48px;
  flex-wrap: wrap;
}

.proof-counter-item {
  text-align: center;
}

.proof-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-primary), var(--red-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.proof-num::before {
  content: '+';
}

.proof-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition-fast);
}

.proof-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-gold);
}

.proof-stars {
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.proof-quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

.proof-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.proof-author strong {
  font-size: 0.88rem;
  color: var(--text-primary);
}

.proof-verified {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =============================================
   S5: SCARCITY + URGENCY
   ============================================= */
.neuro-scarcity {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(220, 20, 60, 0.03) 100%);
  position: relative;
}

.scarcity-box {
  max-width: 550px;
  margin: 36px auto 0;
  background: rgba(220, 20, 60, 0.04);
  border: 1px solid rgba(220, 20, 60, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.scarcity-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.stock-meter {
  margin-bottom: 20px;
}

.stock-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 12px;
}

.stock-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red-primary), #ff6b6b);
  border-radius: 5px;
  transition: width 1s ease;
  animation: stockPulse 2s ease-in-out infinite;
}

@keyframes stockPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.stock-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--red-primary);
}

.stock-emoji {
  animation: blink 1.5s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.scarcity-warn {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* =============================================
   S6: AUTHORITY & TRUST
   ============================================= */
.neuro-authority {
  padding: 80px 20px;
  background: var(--bg-primary);
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.authority-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-fast);
}

.authority-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-gold);
}

.authority-badge {
  font-size: 2.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.authority-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.authority-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   S7: MICRO COMMITMENT
   ============================================= */
.neuro-commit {
  padding: 80px 20px;
  background: var(--bg-secondary);
}

.commit-box {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
}

.commit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.commit-question {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.commit-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.commit-yes {
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-ar);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

body.lang-fr .commit-yes,
body.lang-fr .commit-no {
  font-family: var(--font-fr);
}

.commit-yes:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
}

.commit-no {
  padding: 14px 32px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-ar);
}

.commit-no:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-secondary);
}

/* =============================================
   S8: RISK REVERSAL / GUARANTEE
   ============================================= */
.neuro-guarantee {
  padding: 80px 20px;
  background: var(--bg-primary);
  position: relative;
}

.guarantee-shield {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
  animation: shieldFloat 3s ease-in-out infinite;
}

@keyframes shieldFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.guarantee-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-fast);
}

.guarantee-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-gold);
}

.guarantee-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.guarantee-item h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.guarantee-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   REVEAL DELAYS
   ============================================= */
.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* =============================================
   QUANTITY PICKER
   ============================================= */
.quantity-picker {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quantity-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.quantity-option:hover {
  border-color: rgba(212, 175, 55, 0.25);
  background: rgba(212, 175, 55, 0.03);
}

.quantity-option.selected {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 0 1px var(--gold-primary), 0 4px 15px rgba(212, 175, 55, 0.15);
}

.qty-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--red-dark), var(--red-primary));
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 14px;
  border-radius: 0 0 var(--radius-sm) 0;
}

body.lang-fr .qty-badge {
  left: auto;
  right: 0;
  border-radius: 0 0 0 var(--radius-sm);
}

.qty-radio {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.quantity-option.selected .qty-radio {
  border-color: var(--gold-primary);
}

.qty-radio-inner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  transition: var(--transition-fast);
}

.quantity-option.selected .qty-radio-inner {
  background: var(--gold-primary);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.qty-details {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.qty-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.quantity-option.selected .qty-label {
  color: var(--text-primary);
}

.qty-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold-primary);
  white-space: nowrap;
}

.qty-price small {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.7;
}

.quantity-option.popular .qty-price,
.quantity-option.best-value .qty-price {
  font-size: 1.3rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-image img {
    max-width: 350px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .howto-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .howto-step::after {
    display: none;
  }

  .proof-stats {
    gap: 30px;
  }

  .offer-box {
    padding: 30px 20px;
  }

  .countdown {
    gap: 10px;
  }

  .countdown-item {
    min-width: 65px;
    padding: 10px 14px;
  }

  .order-form {
    padding: 30px 20px;
  }

  .audio-grid {
    grid-template-columns: 1fr;
  }

  .qty-label {
    font-size: 0.82rem;
  }

  .qty-price {
    font-size: 1.05rem;
  }

  .nav-cta {
    display: none;
  }

  .floating-cta {
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
  }

  body.lang-fr .floating-cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(20px);
  }

  .floating-cta.visible {
    transform: translateX(-50%) translateY(0);
  }

  /* Neuromarketing Mobile */
  .identity-split {
    flex-direction: column;
  }

  .identity-divider {
    width: 100%;
    min-width: unset;
    height: 40px;
  }

  .proof-cards,
  .authority-grid,
  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .proof-counters {
    gap: 24px;
  }

  .proof-num {
    font-size: 2.2rem;
  }

  .commit-box {
    padding: 36px 20px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 60px 16px;
  }

  .hero {
    padding: 100px 16px 60px;
  }

  .hero-headline {
    font-size: 1.7rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-cta {
    padding: 14px 32px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .pain-cards,
  .benefits-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    gap: 24px;
  }
}

/* --- Scrollbar Styling --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.5);
}

/* --- Selection --- */
::selection {
  background: rgba(220, 20, 60, 0.3);
  color: var(--text-primary);
}