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

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #0d1117;
  --bg-card: #131820;
  --bg-card-hover: #1a2230;
  --gold: #d4a853;
  --gold-light: #f0d48a;
  --gold-dark: #b8922e;
  --green: #00c853;
  --green-dark: #00a844;
  --green-glow: rgba(0, 200, 83, 0.3);
  --orange: #ff6b35;
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #6b7a8d;
  --border: rgba(212, 168, 83, 0.15);
  --gradient-gold: linear-gradient(135deg, #d4a853, #f0d48a, #d4a853);
  --gradient-green: linear-gradient(135deg, #00c853, #00e676);
  --gradient-dark: linear-gradient(180deg, #0a0a0f, #0d1117);
  --shadow-gold: 0 0 30px rgba(212, 168, 83, 0.2);
  --shadow-green: 0 0 30px rgba(0, 200, 83, 0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 50px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 800; line-height: 1.2; }

.container { width: 100%; max-width: 480px; margin: 0 auto; padding: 0 20px; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: all 0.3s ease;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 900;
  background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}
.nav-logo span { -webkit-text-fill-color: var(--green); }
.nav-badge {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15), rgba(212, 168, 83, 0.05));
  border: 1px solid rgba(212, 168, 83, 0.3);
  padding: 6px 14px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 600; color: var(--gold);
  display: flex; align-items: center; gap: 6px;
}
.nav-badge .pulse-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: pulse 2s infinite;
}

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding: 100px 0 60px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-bg img {
  width: 110%; height: 110%; object-fit: cover; opacity: 0.35;
  filter: brightness(0.4) saturate(1.2);
  animation: kenBurns 25s ease-in-out infinite alternate;
  transform-origin: center center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.4) 0%, rgba(10,10,15,0.7) 50%, var(--bg-primary) 100%);
}
/* Floating particles overlay */
.hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.hero-particles .particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0; animation: floatParticle linear infinite;
}
.hero-particles .particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-duration: 8s; animation-delay: 0s; }
.hero-particles .particle:nth-child(2) { width: 6px; height: 6px; left: 25%; animation-duration: 12s; animation-delay: 2s; }
.hero-particles .particle:nth-child(3) { width: 3px; height: 3px; left: 45%; animation-duration: 10s; animation-delay: 4s; }
.hero-particles .particle:nth-child(4) { width: 5px; height: 5px; left: 65%; animation-duration: 9s; animation-delay: 1s; }
.hero-particles .particle:nth-child(5) { width: 4px; height: 4px; left: 80%; animation-duration: 11s; animation-delay: 3s; }
.hero-particles .particle:nth-child(6) { width: 7px; height: 7px; left: 35%; animation-duration: 14s; animation-delay: 5s; }
.hero-particles .particle:nth-child(7) { width: 3px; height: 3px; left: 55%; animation-duration: 7s; animation-delay: 6s; }
.hero-particles .particle:nth-child(8) { width: 5px; height: 5px; left: 90%; animation-duration: 13s; animation-delay: 2.5s; }
/* Animated hero floating image */
.hero-float-img {
  position: relative; margin: 0 auto 24px; width: 180px; height: 180px;
  animation: heroFloat 4s ease-in-out infinite;
}
.hero-float-img img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  border: 3px solid rgba(212,168,83,0.4);
  box-shadow: 0 0 40px rgba(212,168,83,0.2), 0 0 80px rgba(0,200,83,0.1);
}
.hero-float-img::before {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(212,168,83,0.15);
  animation: ringPulse 3s ease-in-out infinite;
}
.hero-float-img::after {
  content: ''; position: absolute; inset: -18px; border-radius: 50%;
  border: 1px solid rgba(0,200,83,0.1);
  animation: ringPulse 3s ease-in-out infinite 0.5s;
}
.hero-content { position: relative; z-index: 2; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(212,168,83,0.15), rgba(212,168,83,0.05));
  border: 1px solid rgba(212,168,83,0.25);
  padding: 8px 18px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600; color: var(--gold);
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease;
}
.hero h1 {
  font-size: 32px; letter-spacing: -1px; margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero h1 .gold { color: var(--gold); }
.hero h1 .green { color: var(--green); }
.hero-sub {
  font-size: 14px; color: var(--text-secondary); margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-sub span { color: var(--gold); font-weight: 600; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient-green); color: #000; font-weight: 700;
  padding: 16px 36px; border-radius: var(--radius-full);
  font-size: 16px; text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 25px var(--green-glow);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--green-glow); }
.hero-cta svg { width: 20px; height: 20px; }

/* Trust Badges */
.trust-badges {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 30px;
  animation: fadeInUp 0.8s ease 0.8s both;
}
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 11px; color: var(--text-secondary); font-weight: 500;
}
.trust-badge svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* ========== SECTION COMMON ========== */
section { padding: 80px 0; min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; }
section > .container { width: 100%; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title { font-size: 26px; margin-bottom: 12px; letter-spacing: -0.5px; }
.section-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 36px; }

/* ========== SOCIAL PROOF ========== */
.social-proof { background: var(--bg-secondary); }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; margin-bottom: 14px;
  transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-2px); }
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 14px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #000;
}
.testimonial-name { font-size: 13px; font-weight: 600; }
.testimonial-tag { font-size: 11px; color: var(--text-muted); }

/* WhatsApp Chat Mock */
.wa-chat {
  background: #0b141a; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(37, 211, 102, 0.15); margin-top: 20px;
}
.wa-chat-header {
  background: #1f2c34; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
}
.wa-chat-avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.wa-chat-name { font-size: 13px; font-weight: 600; }
.wa-chat-status { font-size: 10px; color: var(--green); }
.wa-chat-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.wa-msg {
  max-width: 85%; padding: 8px 12px; border-radius: 8px;
  font-size: 13px; line-height: 1.4;
}
.wa-msg.recv { background: #1f2c34; align-self: flex-start; border-bottom-left-radius: 2px; }
.wa-msg.sent { background: #005c4b; align-self: flex-end; border-bottom-right-radius: 2px; }
.wa-msg .time { font-size: 10px; color: rgba(255,255,255,0.4); text-align: right; margin-top: 4px; }

/* ========== WHY CHOOSE US ========== */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; text-align: center;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-gold); opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-3px); border-color: rgba(212,168,83,0.3); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,168,83,0.15), rgba(212,168,83,0.05));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-size: 22px;
}
.feature-card h4 { font-size: 14px; margin-bottom: 6px; font-weight: 700; }
.feature-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ========== URGENCY ========== */
.urgency-section {
  background: linear-gradient(135deg, rgba(212,168,83,0.08), rgba(0,200,83,0.05));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  min-height: auto;
}
.urgency-box {
  background: var(--bg-card); border: 1px solid rgba(212,168,83,0.25);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
}
.urgency-box h3 { font-size: 22px; margin-bottom: 6px; }
.urgency-box h3 .gold { color: var(--gold); }
.urgency-sub { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; }
.progress-bar-wrap {
  background: rgba(255,255,255,0.06); border-radius: var(--radius-full);
  height: 12px; overflow: hidden; margin-bottom: 8px; position: relative;
}
.progress-bar-fill {
  height: 100%; border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  width: 0; transition: width 2s ease; position: relative;
}
.progress-bar-fill::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 20px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4));
  animation: shimmer 2s infinite;
}
.progress-label { font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 20px; }
.countdown {
  display: flex; gap: 10px; justify-content: center;
}
.countdown-item {
  background: rgba(0,0,0,0.4); border: 1px solid rgba(212,168,83,0.2);
  border-radius: var(--radius-sm); padding: 10px 14px; min-width: 60px; text-align: center;
}
.countdown-num { font-family: 'Outfit'; font-size: 24px; font-weight: 800; color: var(--gold); }
.countdown-label { font-size: 9px; text-transform: uppercase; color: var(--text-muted); letter-spacing: 1px; }

/* ========== HOW IT WORKS ========== */
.steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.step {
  display: flex; gap: 16px; padding: 20px 0; position: relative;
}
.step-line {
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit'; font-weight: 800; font-size: 16px; color: #000;
}
.step-connector { width: 2px; flex: 1; background: rgba(212,168,83,0.2); }
.step:last-child .step-connector { display: none; }
.step-content { padding-top: 6px; }
.step-content h4 { font-size: 16px; margin-bottom: 4px; }
.step-content p { font-size: 13px; color: var(--text-secondary); }

/* ========== PLAYER IMAGE SECTION ========== */
.player-section { position: relative; overflow: hidden; }
.player-img-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  margin-bottom: 24px;
}
.player-img-wrap img { width: 100%; display: block; filter: brightness(0.7); }
.player-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--bg-primary) 0%, transparent 60%);
}
.player-features {
  display: flex; flex-direction: column; gap: 12px;
}
.player-feature {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 16px;
}
.player-feature-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(0,200,83,0.15), rgba(0,200,83,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.player-feature h4 { font-size: 14px; font-weight: 700; }
.player-feature p { font-size: 12px; color: var(--text-muted); }

/* ========== IMAGE SECTIONS ========== */
.img-section { position: relative; }
.img-card {
  border-radius: var(--radius); overflow: hidden; margin-bottom: 20px;
  border: 1px solid var(--border);
}
.img-card img { width: 100%; display: block; }

/* ========== TRUST SECTION ========== */
.trust-section { background: var(--bg-secondary); }
.trust-grid { display: flex; flex-direction: column; gap: 12px; }
.trust-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px;
}
.trust-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(212,168,83,0.15), rgba(212,168,83,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.trust-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.trust-item p { font-size: 12px; color: var(--text-muted); }

/* ========== FINAL CTA ========== */
.final-cta {
  position: relative; padding: 80px 0; text-align: center; overflow: hidden;
  min-height: 100vh; min-height: 100dvh; display: flex; align-items: center;
}
.final-cta-bg {
  position: absolute; inset: 0;
}
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; filter: brightness(0.3); }
.final-cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg-primary), rgba(10,10,15,0.7), var(--bg-primary));
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 { font-size: 28px; margin-bottom: 12px; }
.final-cta h2 .gold { color: var(--gold); }
.final-cta p { font-size: 14px; color: var(--text-secondary); margin-bottom: 28px; }
.cta-buttons { display: flex; flex-direction: column; gap: 12px; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gradient-green); color: #000; font-weight: 700;
  padding: 16px 32px; border-radius: var(--radius-full);
  font-size: 16px; text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 25px var(--green-glow);
  transition: all 0.3s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--green-glow); }
.btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff; font-weight: 700;
  padding: 16px 32px; border-radius: var(--radius-full);
  font-size: 16px; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover { transform: translateY(-2px); background: #20bd5a; }

/* ========== STICKY CTA ========== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn-primary { width: 100%; font-size: 15px; padding: 14px; }

/* ========== WHATSAPP FLOAT ========== */
.wa-float {
  position: fixed; bottom: 80px; right: 16px; z-index: 98;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none; transition: all 0.3s ease;
  animation: bounce 3s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 26px; height: 26px; }

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border);
  padding: 30px 0 100px; text-align: center;
  min-height: auto; display: block;
}
.footer p { font-size: 12px; color: var(--text-muted); }
.footer a { color: var(--gold); text-decoration: none; }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
@keyframes shimmer {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes countUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  33% { transform: scale(1.08) translate(-2%, -1%); }
  66% { transform: scale(1.05) translate(1%, -2%); }
  100% { transform: scale(1.1) translate(-1%, 1%); }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-20vh) rotate(720deg); opacity: 0; }
}

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

/* ========== RESPONSIVE ========== */
@media (min-width: 768px) {
  .container { max-width: 680px; }
  .hero h1 { font-size: 44px; }
  .section-title { font-size: 34px; }
  .features-grid { gap: 16px; }
  .trust-grid { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .container { max-width: 900px; }
  .hero h1 { font-size: 52px; }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .cta-buttons { flex-direction: row; justify-content: center; }
}
