/* ==========================================
   NEXPOCKET v2 - Dark Fintech Premium Theme
   Deep Navy / Charcoal / Gold / Green
   ========================================== */

:root {
  --bg-deep: #0b0f1a;
  --bg-card: #111827;
  --bg-card-hover: #1a2236;
  --bg-section: #0d1321;
  --bg-elevated: #161d2e;
  --border-color: rgba(255,255,255,0.08);
  --border-hover: rgba(212,175,55,0.3);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --gold: #d4af37;
  --gold-light: #e8c547;
  --gold-glow: rgba(212,175,55,0.2);
  --green: #22c55e;
  --green-glow: rgba(34,197,94,0.2);
  --gradient-gold: linear-gradient(135deg, #d4af37, #e8c547);
  --gradient-dark: linear-gradient(180deg, #111827 0%, #0b0f1a 100%);
  --gradient-section: linear-gradient(180deg, #0d1321, #0b0f1a);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.5);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

/* Light Mode Override */
[data-theme="light"] {
  --bg-deep: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --bg-section: #f1f5f9;
  --bg-elevated: #e2e8f0;
  --border-color: rgba(0,0,0,0.08);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
}

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

html { scroll-behavior: smooth; }

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

h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; }

::selection { background: var(--gold); color: #000; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* Text utilities */
.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-green { color: var(--green) !important; }
.text-gold { color: var(--gold) !important; }

/* Buttons */
.btn-gold {
  background: var(--gradient-gold);
  color: #0b0f1a !important;
  font-weight: 700;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.35);
  filter: brightness(1.1);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  font-weight: 600;
  background: transparent;
  padding: 0.65rem 1.65rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #0b0f1a !important;
  transform: translateY(-3px);
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9) !important;
  background: transparent;
  padding: 0.65rem 1.65rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}

/* ==========================================
   NAVBAR
   ========================================== */
#mainNav {
  padding: 0.75rem 0;
  background: transparent;
  transition: all var(--transition);
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(11,15,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 0;
}
[data-theme="light"] #mainNav.scrolled {
  background: rgba(248,250,252,0.92);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem !important;
  transition: color var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover::after { transform: scaleX(1); }

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all var(--transition);
}
.theme-toggle:hover {
  background: var(--gold);
  color: #0b0f1a;
  border-color: var(--gold);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-deep);
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,175,55,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(34,197,94,0.04) 0%, transparent 50%);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hstat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hstat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.float-card {
  position: absolute;
  background: rgba(17,24,39,0.95);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}
.fc-1 { top: 8%; right: -10px; }
.fc-2 { bottom: 25%; left: -20px; animation-delay: 1s; }
.fc-3 { bottom: 5%; right: 10%; animation-delay: 2s; }

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

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  animation: bounce 2s infinite;
}
.scroll-down:hover { background: var(--gold); color: #0b0f1a; }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==========================================
   SECTIONS COMMON
   ========================================== */
section { padding: 5rem 0; position: relative; }

.section-tag {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how { background: var(--bg-section); }

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-hover);
}
.step-num {
  position: absolute;
  top: -10px;
  right: 15px;
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(212,175,55,0.08);
  line-height: 1;
}
.step-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #0b0f1a;
  font-size: 1.5rem;
}
.step-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.step-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why { background: var(--bg-deep); }

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  height: 100%;
  transition: all var(--transition);
  text-align: center;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-hover);
}
.why-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.why-card h5 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}
.why-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ==========================================
   PLANS
   ========================================== */
.plans { background: var(--bg-section); }

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: all var(--transition);
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.plan-card.popular {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}
.plan-card.popular:hover {
  transform: scale(1.02) translateY(-6px);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: #0b0f1a;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.plan-header h4 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}
.plan-header p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.plan-price {
  margin: 1.25rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.plan-price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.plan-price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.plan-price .period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.plan-feat {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.plan-feat li {
  padding: 0.45rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.plan-feat li i {
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ==========================================
   DASHBOARD PREVIEW
   ========================================== */
.dashboard { background: var(--bg-deep); }

.dash-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.dash-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
.dash-glow {
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 60%);
  z-index: -1;
}

.dash-feat-list { display: flex; flex-direction: column; gap: 1.25rem; }
.dash-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.dash-feat i {
  width: 44px;
  height: 44px;
  background: rgba(212,175,55,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.dash-feat h5 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}
.dash-feat p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ==========================================
   FUN SPINNER
   ========================================== */
.fun { background: var(--bg-section); }

.wheel-wrap {
  position: relative;
  width: 380px;
  height: 380px;
  margin: 0 auto;
}
.wheel-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: transform 4s cubic-bezier(0.17,0.67,0.12,0.99);
  box-shadow: var(--shadow-lg);
  display: block;
}

.spin-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: var(--gradient-gold);
  border: 3px solid var(--bg-card);
  color: #0b0f1a;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition);
  z-index: 10;
}
.spin-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.spin-btn:disabled {
  background: #2d3748;
  border-color: #2d3748;
  color: #64748b;
  cursor: not-allowed;
  transform: translate(-50%, -50%);
  box-shadow: none;
}
.spin-btn i { font-size: 1.4rem; }

.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--gold);
  z-index: 5;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.spin-result { min-height: 60px; }
.spin-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
}
.spin-text.highlight {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.4rem;
}

/* Rarity legend */
.rarity-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.rarity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.common { background: #4a5568; }
.dot.uncommon { background: var(--green); }
.dot.rare { background: var(--gold); }
.dot.legendary { background: #e74c3c; }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials { background: var(--bg-deep); }

.test-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  height: 100%;
  transition: all var(--transition);
}
.test-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-hover);
}
.stars {
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.test-card > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.test-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.test-author h6 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
  color: var(--text-primary);
}
.test-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================
   FAQ
   ========================================== */
.faq { background: var(--bg-section); }

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.accordion-button {
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 600;
  padding: 1.1rem 1.25rem;
  font-size: 0.97rem;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background: var(--bg-elevated);
  color: var(--gold);
}
.accordion-button:focus { box-shadow: none !important; }
.accordion-body {
  color: var(--text-secondary);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================
   FINAL CTA
   ========================================== */
.cta-final {
  position: relative;
  background: var(--bg-deep);
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(212,175,55,0.1) 0%, transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(34,197,94,0.05) 0%, transparent 50%);
}
.cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.cta-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 2rem;
}
.cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.cta-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.cta-note i { color: var(--green); }

/* ==========================================
   FOOTER
   ========================================== */
.footer { background: #070a12; color: #94a3b8; }
.footer-top { padding: 4rem 0 2.5rem; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}
.footer-brand span {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-text {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 360px;
}

.socials { display: flex; gap: 0.6rem; }
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: all var(--transition);
}
.socials a:hover { background: var(--gold); color: #0b0f1a; transform: translateY(-3px); }

.footer h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.contact-info p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-info i { color: var(--gold); }

.translate-box label {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 0.4rem;
  display: block;
}
.translate-box .form-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.88rem;
}
.translate-box .form-select option { background: #0b0f1a; color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
}
.copy { color: #64748b; font-size: 0.85rem; margin: 0; }
.trust { color: #64748b; font-size: 0.85rem; margin: 0; }
.trust i { color: var(--green); margin-right: 0.4rem; }

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--gradient-gold);
  color: #0b0f1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-gold);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); color: #0b0f1a; }

/* ==========================================
   SCROLL REVEAL
   ========================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5,0,0,1);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.5,0,0,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.5,0,0,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
  section { padding: 3.5rem 0; }
  .hero-stats { gap: 1.5rem; }
  .float-card.fc-1, .float-card.fc-3 { display: none; }
  .wheel-wrap { width: 320px; height: 320px; }
}

@media (max-width: 767px) {
  .hero-btns, .cta-btns { flex-direction: column; }
  .hero-btns .btn, .cta-btns .btn { width: 100%; margin: 0 !important; }
  .wheel-wrap { width: 280px; height: 280px; }
  .spin-btn { width: 70px; height: 70px; font-size: 0.75rem; }
  .plan-card.popular { transform: none; }
  .plan-card.popular:hover { transform: translateY(-6px); }
}

@media (max-width: 575px) {
  section { padding: 3rem 0; }
  .step-card, .why-card, .test-card, .plan-card { padding: 1.5rem; }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
