/* ===========================
   YOUUWAVE — Desert Theme CSS
   =========================== */

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

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Desert palette */
  --bg-dark:       #0c0804;
  --bg-card:       #140e08;
  --bg-card2:      #1a1108;
  --accent-sand:   #E8A063;   /* warm sand */
  --accent-amber:  #C4531A;   /* deep desert orange */
  --accent-gold:   #F5C842;   /* dune gold */
  --accent-sienna: #A0522D;   /* earth sienna */
  --accent-green:  #25d366;   /* WhatsApp green */
  --sand-light:    #F5DEB3;   /* pale sand */
  --snap-yellow:   #fffc00;
  --tiktok-pink:   #fe2c55;
  --insta-pink:    #c13584;
  --telegram-blue: #0088cc;
  --text-primary:  #FFF5E6;   /* warm white */
  --text-secondary:#C8A882;   /* sandy grey */
  --text-muted:    #7A5C3A;   /* earth muted */
  --border:        rgba(232,160,99,0.08);
  --border-warm:   rgba(232,160,99,0.22);
  /* Gradients */
  --grad-desert:   linear-gradient(135deg, #E8A063, #C4531A);
  --grad-gold:     linear-gradient(135deg, #F5C842, #E8A063);
  --grad-sunset:   linear-gradient(135deg, #C4531A, #8B2500);
  --grad-hero:     linear-gradient(160deg, #0c0804 0%, #160c04 50%, #0c0804 100%);
  --radius:        16px;
  --radius-sm:     10px;
  --shadow-warm:   0 8px 32px rgba(196,83,26,0.15);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent-amber); border-radius: 3px; }

/* ===== UTILITY ===== */
.gradient-text {
  background: var(--grad-desert);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wave-text { font-style: italic; }

/* ===========================
   PASSWORD GATE
   =========================== */
.pw-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; overflow: hidden;
}
.pw-bg-glow {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.pw-glow1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,160,99,0.14) 0%, transparent 70%);
  top: -300px; left: -200px;
}
.pw-glow2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,83,26,0.10) 0%, transparent 70%);
  bottom: -200px; right: -100px;
}
/* Sand particles on gate */
.pw-sand { position: absolute; inset: 0; pointer-events: none; }
.sand-grain {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-sand);
  opacity: 0;
  animation: sandDrift linear infinite;
}
@keyframes sandDrift {
  0%   { transform: translateX(0) translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.2; }
  100% { transform: translateX(30px) translateY(-80px) rotate(360deg); opacity: 0; }
}
.pw-box {
  position: relative; z-index: 1;
  background: rgba(20,14,8,0.9);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-warm);
  border-radius: 28px;
  padding: 48px 44px 40px;
  max-width: 420px; width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(232,160,99,0.08);
  animation: pwBoxIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes pwBoxIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.pw-logo {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; font-weight: 800; font-size: 1.2rem;
  color: var(--text-primary); margin-bottom: 32px;
}
.pw-fennec-img { width: 40px; height: 40px; object-fit: cover; border-radius: 10px; }
.pw-lock-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(232,160,99,0.15), rgba(196,83,26,0.15));
  border: 1px solid rgba(232,160,99,0.25);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: var(--accent-sand);
  animation: lockPulse 2.5s ease-in-out infinite;
}
.pw-lock-icon svg { width: 28px; height: 28px; stroke-width: 2; }
@keyframes lockPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,160,99,0.3); }
  50%       { box-shadow: 0 0 0 10px rgba(232,160,99,0); }
}
.pw-title { font-size: 1.5rem; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.pw-desc  { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 28px; }
.pw-input-wrap {
  position: relative; display: flex; align-items: center;
  margin-bottom: 12px;
  border: 1.5px solid rgba(232,160,99,0.2);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pw-input-wrap:focus-within {
  border-color: rgba(232,160,99,0.6);
  box-shadow: 0 0 0 3px rgba(232,160,99,0.1);
}
.pw-input-wrap.shake {
  animation: pwShake 0.4s cubic-bezier(.36,.07,.19,.97);
  border-color: rgba(239,68,68,0.7);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
@keyframes pwShake {
  10%, 90% { transform: translateX(-3px); }
  20%, 80% { transform: translateX(4px); }
  30%, 50%, 70% { transform: translateX(-5px); }
  40%, 60% { transform: translateX(5px); }
}
.pw-key-icon { width: 17px; height: 17px; color: var(--text-muted); margin-left: 16px; flex-shrink: 0; stroke-width: 2; }
.pw-input {
  flex: 1; background: none; border: none; outline: none;
  padding: 16px 12px;
  font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 500;
  color: var(--text-primary); letter-spacing: 0.05em;
}
.pw-input::placeholder { color: var(--text-muted); }
.pw-toggle { background: none; border: none; cursor: pointer; padding: 10px 14px; color: var(--text-muted); transition: color 0.2s; display: flex; align-items: center; }
.pw-toggle:hover { color: var(--text-secondary); }
.pw-toggle svg { width: 18px; height: 18px; stroke-width: 2; }
.pw-error { font-size: 0.82rem; color: #ef4444; font-weight: 600; margin-bottom: 16px; opacity: 0; transform: translateY(-4px); transition: all 0.25s; min-height: 20px; }
.pw-error.visible { opacity: 1; transform: translateY(0); }
.pw-btn {
  width: 100%; padding: 16px;
  background: var(--grad-desert);
  color: #fff; border: none; border-radius: 14px;
  font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(196,83,26,0.35); margin-bottom: 16px;
}
.pw-btn svg { width: 18px; height: 18px; stroke-width: 2.5; }
.pw-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(196,83,26,0.5); }
.pw-btn:active { transform: scale(0.98); }
.pw-hint { font-size: 0.78rem; color: var(--text-muted); }
.pw-gate.unlocked { animation: pwFadeOut 0.5s ease forwards; pointer-events: none; }
@keyframes pwFadeOut { to { opacity: 0; transform: scale(1.04); } }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  background: rgba(12,8,4,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(12,8,4,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom-color: var(--border-warm);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; text-decoration: none; color: var(--text-primary); }
.nav-fennec { width: 40px; height: 40px; object-fit: cover; border-radius: 10px; }
.logo-accent { background: var(--grad-desert); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { color: var(--text-secondary); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-link:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--grad-desert); color: #fff !important;
  padding: 10px 22px; border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(196,83,26,0.3);
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }
.nav-mobile-menu { display: none; flex-direction: column; gap: 16px; padding: 20px 0 24px; border-top: 1px solid var(--border); }
.nav-mobile-menu a { color: var(--text-secondary); text-decoration: none; font-size: 1rem; font-weight: 500; }
.nav-mobile-menu .mobile-cta { display: inline-block; background: var(--grad-desert); color: #fff !important; padding: 12px 24px; border-radius: 50px; font-weight: 700; text-align: center; margin-top: 4px; }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 24px 80px; position: relative; overflow: hidden;
  background: var(--grad-hero); gap: 60px;
  max-width: 1200px; margin: 0 auto;
}
.hero-bg-glow { position: fixed; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
.glow-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(232,160,99,0.12) 0%, transparent 70%); top: -200px; left: -200px; }
.glow-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(196,83,26,0.08) 0%, transparent 70%); top: 200px; right: -150px; }
.glow-3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(245,200,66,0.06) 0%, transparent 70%); bottom: 0; left: 40%; }

/* Desert dune decoratives */
.dune {
  position: absolute; pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232,160,99,0.04) 0%, transparent 70%);
}
.dune-1 { width: 800px; height: 300px; bottom: -100px; left: -200px; transform: rotate(-8deg); }
.dune-2 { width: 600px; height: 200px; bottom: -60px; right: -100px; transform: rotate(5deg); }

.floating-particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.particle { position: absolute; width: 2px; height: 2px; border-radius: 50%; animation: sandFloat linear infinite; opacity: 0; }
@keyframes sandFloat {
  0%   { transform: translateX(0) translateY(100vh); opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.3; }
  100% { transform: translateX(20px) translateY(-80px); opacity: 0; }
}

.hero-content { flex: 1; max-width: 580px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,99,0.1);
  border: 1px solid rgba(232,160,99,0.25);
  border-radius: 50px; padding: 8px 18px;
  font-size: 0.85rem; font-weight: 600; color: var(--accent-sand);
  margin-bottom: 28px; animation: fadeSlideDown 0.6s ease;
}
.badge-dot { width: 8px; height: 8px; background: #25d366; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900; line-height: 1.1; letter-spacing: -1px; margin-bottom: 24px; animation: fadeSlideDown 0.7s ease 0.1s both; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 36px; animation: fadeSlideDown 0.7s ease 0.2s both; }
.hero-stats { display: flex; align-items: center; gap: 24px; margin-bottom: 40px; animation: fadeSlideDown 0.7s ease 0.3s both; }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 1.5rem; font-weight: 800; background: var(--grad-desert); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--border-warm); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeSlideDown 0.7s ease 0.4s both; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad-desert); color: #fff;
  padding: 16px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(196,83,26,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(196,83,26,0.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05); color: var(--text-primary);
  padding: 16px 32px; border-radius: 50px; font-weight: 600; font-size: 1rem;
  text-decoration: none; border: 1px solid var(--border-warm); transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(232,160,99,0.08); border-color: var(--accent-sand); transform: translateY(-2px); }

/* Hero visual */
.hero-visual { flex: 1; max-width: 460px; position: relative; z-index: 1; display: flex; justify-content: center; align-items: center; animation: fadeSlideUp 0.8s ease 0.3s both; }
.hero-image-wrapper { position: relative; display: inline-block; }
.hero-img { width: 100%; max-width: 380px; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); animation: floatImg 4s ease-in-out infinite; }
@keyframes floatImg { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-img-glow { position: absolute; inset: -20px; background: radial-gradient(ellipse, rgba(232,160,99,0.2) 0%, transparent 70%); filter: blur(30px); z-index: -1; border-radius: 50%; }
.floating-card {
  position: absolute; background: rgba(20,14,8,0.92); backdrop-filter: blur(10px);
  border: 1px solid var(--border-warm); border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4); font-size: 0.85rem;
  animation: floatCard 3s ease-in-out infinite;
}
.card-1 { bottom: 60px; left: -40px; animation-delay: 0.5s; }
.card-2 { top: 30px; right: -40px; animation-delay: 1.2s; }
.floating-card strong { display: block; font-weight: 700; color: var(--text-primary); }
.floating-card small { color: var(--text-muted); font-size: 0.75rem; }
.card-icon-wrap { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.card-icon-wrap.green-icon { background: rgba(37,211,102,0.15); color: #25d366; }
.card-icon-wrap.amber-icon { background: rgba(232,160,99,0.15); color: var(--accent-sand); }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Fennec mascot badge in hero */
.fennec-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 72px; height: 72px;
  background: transparent;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
  animation: floatImg 3.5s ease-in-out 1s infinite;
  overflow: hidden;
  border: 2px solid rgba(232,160,99,0.3);
}
.fennec-badge img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }

/* ===========================
   EBOOKS SECTION
   =========================== */
.ebooks-section { padding: 100px 24px; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
  color: var(--accent-sand);
  background: rgba(232,160,99,0.1);
  border: 1px solid rgba(232,160,99,0.2);
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; color: var(--text-secondary); }
.ebooks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; align-items: start; }

/* ebook card */
.ebook-card {
  position: relative; background: var(--bg-card); border-radius: 24px;
  border: 1px solid var(--border); overflow: visible;
  transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
}
.ebook-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.ebook-card.featured { border-color: rgba(232,160,99,0.4); box-shadow: 0 0 0 1px rgba(232,160,99,0.15), 0 8px 40px rgba(232,160,99,0.08); background: linear-gradient(145deg, #1a1008, #140c06); }
.ebook-card.featured:hover { box-shadow: 0 0 0 1px rgba(232,160,99,0.35), 0 24px 70px rgba(232,160,99,0.18); }
.ebook-card.premium { border-color: rgba(245,200,66,0.3); box-shadow: 0 0 0 1px rgba(245,200,66,0.1), 0 8px 40px rgba(245,200,66,0.06); background: linear-gradient(145deg, #1a1400, #14100a); }
.ebook-card.premium:hover { box-shadow: 0 0 0 1px rgba(245,200,66,0.3), 0 24px 70px rgba(245,200,66,0.15); }
.featured-ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-desert); color: #fff; font-size: 0.78rem; font-weight: 700;
  padding: 6px 20px; border-radius: 50px; white-space: nowrap; z-index: 10;
  box-shadow: 0 4px 16px rgba(196,83,26,0.4);
  display: flex; align-items: center; gap: 6px;
}
.ebook-card-inner { padding: 28px; }
.ebook-badge-level { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; padding: 5px 14px; border-radius: 50px; margin-bottom: 20px; }
.ebook-badge-level.starter { background: rgba(37,211,102,0.12); color: #25d366; border: 1px solid rgba(37,211,102,0.2); }
.ebook-badge-level.advanced { background: rgba(232,160,99,0.12); color: var(--accent-sand); border: 1px solid rgba(232,160,99,0.2); }
.ebook-badge-level.premium-badge { background: rgba(245,200,66,0.12); color: var(--accent-gold); border: 1px solid rgba(245,200,66,0.2); }

.ebook-cover-wrap { position: relative; margin-bottom: 24px; border-radius: 14px; overflow: hidden; }
.ebook-cover { width: 100%; height: 200px; object-fit: cover; border-radius: 14px; transition: transform 0.4s ease; }
.ebook-card:hover .ebook-cover { transform: scale(1.04); }
.ebook-cover-shine { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%); pointer-events: none; }
.ebook-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.ebook-subtitle { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; }
.ebook-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.ebook-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-secondary); }
.feat-check { color: #25d366; font-weight: 700; flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; }
.feat-check svg { width: 15px; height: 15px; stroke-width: 2.5; }
.feat-check.gold { color: var(--accent-gold); }
.ebook-pricing { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.price-old { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }
.price-current { font-size: 2rem; font-weight: 900; background: var(--grad-desert); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gold-price { background: var(--grad-gold) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
.price-tag { background: rgba(232,160,99,0.12); color: var(--accent-sand); border: 1px solid rgba(232,160,99,0.22); font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 6px; }
.gold-tag { background: rgba(245,200,66,0.12) !important; color: var(--accent-gold) !important; border-color: rgba(245,200,66,0.22) !important; font-size: 0.68rem !important; }
.btn-buy {
  width: 100%; padding: 16px; background: var(--grad-desert); color: #fff;
  border: none; border-radius: 14px; font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(196,83,26,0.3);
}
.btn-buy:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(196,83,26,0.45); }
.featured-buy { background: var(--grad-desert) !important; box-shadow: 0 6px 24px rgba(196,83,26,0.35) !important; }
.premium-buy { background: var(--grad-gold) !important; color: #1a0c00 !important; box-shadow: 0 6px 24px rgba(245,200,66,0.3) !important; }
.premium-buy:hover { box-shadow: 0 10px 32px rgba(245,200,66,0.5) !important; }

/* ===========================
   AVIS SECTION
   =========================== */
.avis-section { padding: 100px 24px; background: linear-gradient(180deg, transparent, rgba(232,160,99,0.02), transparent); }
.avis-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.avis-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 24px; transition: transform 0.3s, box-shadow 0.3s; }
.avis-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.avis-card.gold-avis { border-color: rgba(245,200,66,0.2); background: linear-gradient(145deg, #1a1400, #14100a); }
.avis-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.avis-avatar { width: 44px; height: 44px; background: var(--grad-desert); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; flex-shrink: 0; }
.avis-avatar.gold-av { background: var(--grad-gold); color: #1a0c00; }
.avis-header strong { display: block; font-weight: 700; font-size: 0.95rem; }
.avis-stars { display: flex; align-items: center; gap: 2px; margin-top: 2px; }
.star-icon { width: 13px; height: 13px; color: var(--accent-gold); stroke-width: 1.5; }
.star-icon.filled { fill: var(--accent-gold); }
.avis-platform { margin-left: auto; font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 6px; }
.avis-platform.snap  { background: rgba(255,252,0,0.12); color: #fffc00; }
.avis-platform.tiktok{ background: rgba(254,44,85,0.12);  color: #fe2c55; }
.avis-platform.pack  { background: rgba(245,200,66,0.12); color: var(--accent-gold); }
.avis-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.avis-badge { font-size: 0.75rem; font-weight: 600; color: #25d366; background: rgba(37,211,102,0.1); padding: 5px 12px; border-radius: 6px; display: inline-flex; align-items: center; gap: 5px; }
.avis-badge.gold-badge { color: var(--accent-gold); background: rgba(245,200,66,0.1); }

/* ===========================
   LINKTREE SECTION
   =========================== */
.linktree-section { padding: 100px 24px; position: relative; overflow: hidden; }
.linktree-bg-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(232,160,99,0.07) 0%, transparent 70%); pointer-events: none; }
/* Subtle dune at bottom of linktree */
.linktree-dune {
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(180deg, transparent, rgba(232,160,99,0.03));
  pointer-events: none;
}
.linktree-container { max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
.linktree-profile { text-align: center; margin-bottom: 48px; }
.linktree-avatar {
  width: 110px; height: 110px;
  background: transparent;
  border-radius: 20px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  animation: floatImg 3s ease-in-out infinite;
  overflow: hidden;
  border: 2px solid rgba(232,160,99,0.2);
}
.lt-fennec-img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.linktree-name { font-size: 2rem; font-weight: 900; margin-bottom: 10px; }
.lt-accent { background: var(--grad-desert); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.linktree-bio { font-size: 0.95rem; color: var(--text-secondary); display: flex; align-items: center; justify-content: center; gap: 6px; }
.linktree-links { display: flex; flex-direction: column; gap: 14px; }
.lt-link {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; text-decoration: none; color: var(--text-primary);
  transition: all 0.25s ease; position: relative; overflow: hidden;
}
.lt-link::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.25s; }
.lt-link:hover::before { opacity: 1; }
.lt-link:hover { transform: translateY(-3px) scale(1.02); }

.snap-link     { border-color: rgba(255,252,0,0.15); }
.snap-link:hover { border-color: rgba(255,252,0,0.5); box-shadow: 0 8px 30px rgba(255,252,0,0.08); }
.snap-link::before { background: linear-gradient(135deg, rgba(255,252,0,0.03), transparent); }
.tiktok-link   { border-color: rgba(254,44,85,0.15); }
.tiktok-link:hover { border-color: rgba(254,44,85,0.5); box-shadow: 0 8px 30px rgba(254,44,85,0.08); }
.tiktok-link::before { background: linear-gradient(135deg, rgba(254,44,85,0.03), transparent); }
.insta-link    { border-color: rgba(193,53,132,0.15); }
.insta-link:hover { border-color: rgba(193,53,132,0.5); box-shadow: 0 8px 30px rgba(193,53,132,0.08); }
.telegram-link { border-color: rgba(0,136,204,0.15); }
.telegram-link:hover { border-color: rgba(0,136,204,0.5); box-shadow: 0 8px 30px rgba(0,136,204,0.08); }
.whatsapp-link { border-color: rgba(37,211,102,0.15); }
.whatsapp-link:hover { border-color: rgba(37,211,102,0.5); box-shadow: 0 8px 30px rgba(37,211,102,0.08); }
.site-link { background: linear-gradient(135deg, rgba(232,160,99,0.08), rgba(196,83,26,0.05)); border-color: rgba(232,160,99,0.25); }
.site-link:hover { border-color: rgba(232,160,99,0.5); box-shadow: 0 8px 30px rgba(232,160,99,0.15); }

.lt-icon { width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.snap-icon     { background: rgba(255,252,0,0.12); color: #fffc00; }
.tiktok-icon   { background: rgba(254,44,85,0.12); color: #fe2c55; }
.insta-icon    { background: rgba(193,53,132,0.12); color: #e1306c; }
.telegram-icon { background: rgba(0,136,204,0.12); color: #0088cc; }
.whatsapp-icon { background: rgba(37,211,102,0.12); color: #25d366; }
.site-icon     { background: rgba(232,160,99,0.12); color: var(--accent-sand); }
.lt-text { flex: 1; min-width: 0; }
.lt-label { font-weight: 700; font-size: 0.95rem; display: block; }
.lt-sub   { font-size: 0.78rem; color: var(--text-muted); display: block; margin-top: 2px; }
.lt-arrow-icon { width: 18px; height: 18px; color: var(--text-muted); margin-left: auto; flex-shrink: 0; stroke-width: 2; transition: transform 0.2s, color 0.2s; }
.lt-link:hover .lt-arrow-icon { transform: translateX(4px); color: var(--text-primary); }

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section { padding: 100px 24px; max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color 0.2s; }
.faq-item:hover { border-color: var(--border-warm); }
.faq-q { width: 100%; background: none; border: none; padding: 20px 24px; text-align: left; cursor: pointer; font-family: 'Outfit', sans-serif; font-size: 0.98rem; font-weight: 600; color: var(--text-primary); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-icon-svg { width: 20px; height: 20px; color: var(--accent-sand); flex-shrink: 0; stroke-width: 2.5; transition: transform 0.3s; }
.faq-item.open .faq-icon-svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ===========================
   FOOTER
   =========================== */
.footer { border-top: 1px solid var(--border); padding: 48px 24px; text-align: center; position: relative; overflow: hidden; }
.footer-dune { position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(180deg, transparent, rgba(232,160,99,0.02)); pointer-events: none; }
.footer-content { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; position: relative; z-index: 1; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.1rem; }
.footer-fennec { width: 36px; height: 36px; object-fit: cover; border-radius: 8px; }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); }
.footer-socials { display: flex; gap: 12px; }
.footer-social { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--bg-card); border: 1px solid var(--border); text-decoration: none; color: var(--text-secondary); transition: all 0.2s; }
.footer-social:hover { transform: translateY(-3px); border-color: var(--border-warm); background: rgba(232,160,99,0.08); color: var(--accent-sand); }

/* ===========================
   MODAL
   =========================== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.active { display: flex; }
.modal-box { background: var(--bg-card2); border: 1px solid var(--border-warm); border-radius: 24px; padding: 40px 32px; max-width: 460px; width: 100%; text-align: center; position: relative; animation: modalIn 0.35s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes modalIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.05); border: none; color: var(--text-secondary); width: 32px; height: 32px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.modal-close svg { width: 16px; height: 16px; stroke-width: 2.5; }
.modal-close:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }
.modal-icon-wrap { width: 72px; height: 72px; background: linear-gradient(135deg, rgba(232,160,99,0.15), rgba(196,83,26,0.12)); border: 1px solid rgba(232,160,99,0.2); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.modal-cart-icon { width: 32px; height: 32px; color: var(--accent-sand); stroke-width: 1.8; }
.modal-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--text-secondary); }
.modal-product { font-size: 1.5rem; font-weight: 900; background: var(--grad-desert); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.modal-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.7; }
.modal-whatsapp-btn { display: inline-flex; align-items: center; gap: 10px; background: #25d366; color: #fff; padding: 16px 32px; border-radius: 14px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; text-decoration: none; margin-bottom: 14px; transition: all 0.2s; box-shadow: 0 6px 24px rgba(37,211,102,0.3); width: 100%; justify-content: center; }
.modal-whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,0.45); }
.modal-cancel { background: none; border: 1px solid var(--border); color: var(--text-muted); padding: 12px 24px; border-radius: 10px; cursor: pointer; font-family: 'Outfit', sans-serif; font-size: 0.9rem; width: 100%; transition: all 0.2s; }
.modal-cancel:hover { border-color: var(--border-warm); color: var(--text-primary); }

/* ===========================
   FLOATING WHATSAPP
   =========================== */
.float-whatsapp {
  position: fixed; bottom: 28px; right: 28px;
  background: #25d366; color: #fff;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4); z-index: 999;
  transition: all 0.3s; animation: bouncePop 2s ease-in-out 2s infinite;
}
.float-whatsapp:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 14px 40px rgba(37,211,102,0.6); }
@keyframes bouncePop { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideUp   { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding: 110px 24px 60px; gap: 48px; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 320px; }
  .card-1 { left: -20px; }
  .card-2 { right: -20px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-mobile-menu.open { display: flex; }
}
@media (max-width: 600px) {
  .ebooks-grid { grid-template-columns: 1fr; }
  .avis-grid   { grid-template-columns: 1fr; }
  .float-whatsapp span { display: none; }
  .float-whatsapp { padding: 16px; border-radius: 50%; }
  .hero-title { font-size: 2rem; }
  .modal-box  { padding: 32px 20px; }
  .pw-box     { padding: 36px 24px 28px; }
}
