/* ==========================================================================
   RANA ESPORTS — PRODUCTION STYLESHEET (styles.css)
   Theme: Premium VIP Golden Gaming / Cyberpunk Neon / High-Gloss Dark HUD
   ========================================================================== */

/* ===== 1. RESET, VARIABLES & VIEWPORT GUARD ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* VIP Professional Gold Engine */
  --gold-primary: #FFD700;
  --gold-glare: #FFF1A3;
  --gold-shadow: #B38600;
  --gold-gradient: linear-gradient(135deg, #FFEA66 0%, #FFD700 50%, #C49600 100%);
  --gold-glow: rgba(255, 215, 0, 0.35);

  /* Cyberpunk Ultra Dark Palette */
  --bg-pitch: #040407;
  --bg-deep: #0A0A12;
  --bg-card: #11111F;
  --bg-card-hover: #161629;

  /* Functional Semantic Glow Accents */
  --accent-cyan: #00F0FF;
  --accent-cyan-glow: rgba(0, 240, 255, 0.25);
  --accent-red: #FF2E93;
  --accent-red-glow: rgba(255, 46, 147, 0.25);
  --accent-green: #39FF14;
  --accent-green-glow: rgba(57, 255, 20, 0.25);

  /* Precision Typography Scale */
  --text-pure: #FFFFFF;
  --text-high: #E2E2EC;
  --text-mid: #9494A8;
  --text-low: #5C5C70;

  /* Font Stacks */
  --font-display: 'Orbitron', -apple-system, sans-serif;
  --font-nav: 'Rajdhani', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Micro Layout Tokens */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --border-glow: 1px solid rgba(255, 215, 0, 0.18);
  --border-dim: 1px solid rgba(148, 148, 168, 0.1);
  --easing-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-pitch);
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-pitch);
  color: var(--text-high);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll { overflow: hidden; }

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

button { font: inherit; cursor: pointer; }

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

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-pitch); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-shadow), var(--gold-primary));
  border-radius: var(--radius-sm);
}
::selection { background: var(--gold-primary); color: #000000; }

/* Visible keyboard focus everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== 3. HUD NAVIGATION HEADER ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; height: 72px;
  background: rgba(4, 4, 7, 0.82);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: var(--border-glow);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; z-index: 1000; transition: var(--transition-normal);
}
.navbar.scrolled {
  height: 64px;
  background: rgba(4, 4, 7, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hamburger { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 6px; padding: 8px 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-pure); border-radius: 4px; transition: var(--transition-fast); }
.hamburger span:nth-child(2) { width: 16px; background: var(--gold-primary); }
.hamburger:hover span:nth-child(1) { transform: translateX(3px); }
.hamburger:hover span:nth-child(3) { transform: translateX(-3px); }

.nav-logo a { text-decoration: none; }
.logo-text { font-family: var(--font-display); font-size: clamp(1.1rem, 4vw, 1.4rem); font-weight: 900; letter-spacing: 1.5px; color: var(--text-pure); }
.logo-accent { color: var(--gold-primary); text-shadow: 0 0 15px var(--gold-glow); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-quicklinks { display: none; align-items: center; gap: 22px; }
.nav-quicklinks a {
  color: var(--text-mid); text-decoration: none; font-family: var(--font-nav);
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.3px; transition: var(--transition-fast);
}
.nav-quicklinks a:hover { color: var(--gold-primary); }

.nav-download-btn-small {
  text-decoration: none; background: var(--gold-gradient); color: #000000;
  font-family: var(--font-nav); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.5px;
  padding: 6px 14px; border-radius: 30px; display: flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 15px var(--gold-glow); transition: var(--transition-fast);
}
.nav-download-btn-small:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5); }
.nav-insta { color: var(--text-mid); font-size: 1.2rem; transition: var(--transition-fast); }
.nav-insta:hover { color: #E1306C; transform: scale(1.1); }

/* ===== 4. TACTICAL SIDEBAR ENGINE ===== */
.sidebar-overlay {
  position: fixed; inset: 0; background: rgba(2, 2, 4, 0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 1090; opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.sidebar-overlay.active { opacity: 1; pointer-events: all; }

.sidebar {
  position: fixed; top: 0; left: 0; width: 280px; height: 100vh;
  background: var(--bg-deep); border-right: var(--border-glow); z-index: 1100;
  transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; flex-direction: column;
}
.sidebar.open { transform: translateX(0); box-shadow: 20px 0 60px rgba(0, 0, 0, 0.8); }

.sidebar-header { padding: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: var(--border-dim); }
.sidebar-logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; letter-spacing: 1px; }
.sidebar-logo span { color: var(--gold-primary); }
.sidebar-close { background: none; border: none; color: var(--text-mid); font-size: 1.2rem; cursor: pointer; padding: 4px; }

.sidebar-nav { flex: 1; padding: 16px 0; overflow-y: auto; }
.sidebar-group-label {
  display: block; padding: 18px 24px 8px; font-family: var(--font-display);
  font-size: 0.66rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-low);
}
.sidebar-group-label:first-child { padding-top: 4px; }
.sidebar-link {
  width: 100%; display: flex; align-items: center; gap: 14px; padding: 12px 24px;
  color: var(--text-mid); text-decoration: none; font-family: var(--font-nav);
  font-weight: 600; font-size: 1rem; transition: var(--transition-fast);
  border-left: 4px solid transparent; background: none; border-top: none; border-bottom: none; border-right: none;
  text-align: left;
}
.sidebar-link i { font-size: 1rem; color: var(--gold-primary); opacity: 0.6; width: 20px; }
.sidebar-link:hover, .sidebar-link.active-link {
  color: var(--text-pure);
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.06) 0%, transparent 100%);
  border-left-color: var(--gold-primary);
}

.sidebar-footer { padding: 20px; border-top: var(--border-dim); }
.sidebar-footer a { color: var(--text-mid); text-decoration: none; font-size: 0.85rem; display: flex; align-items: center; gap: 8px; }

/* ===== 5. HERO WAR ROOM CONTAINER ===== */
.hero {
  min-height: 100vh; padding: 130px 20px 60px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: radial-gradient(circle at 50% 10%, rgba(255, 215, 0, 0.1) 0%, transparent 65%), var(--bg-pitch);
  width: 100%;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 215, 0, 0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 215, 0, 0.015) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at 50% 50%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 40%, transparent 80%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 5; max-width: 1180px; width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 40px;
}
.hero-text { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; }
.hero-badge {
  background: rgba(255, 215, 0, 0.06); border: 1px solid rgba(255, 215, 0, 0.25); color: var(--gold-primary);
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; text-align: center;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 8vw, 5.5rem); font-weight: 900;
  line-height: 1.0; letter-spacing: -1px; color: var(--text-pure); text-transform: uppercase; margin-bottom: 20px;
}
.hero-accent {
  background: linear-gradient(180deg, #FFFFFF 10%, var(--gold-primary) 70%, var(--gold-shadow) 100%);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle { font-size: clamp(0.9rem, 2.5vw, 1.2rem); color: var(--text-mid); max-width: 580px; margin-bottom: 36px; padding: 0 10px; }

/* Hero visual (phone mock) — desktop only, see media query */
.hero-visual { display: none; }
.hero-phone-frame {
  position: relative; width: 220px; height: 440px; border-radius: 32px;
  background: linear-gradient(160deg, #15151f, #08080c);
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), inset 0 0 0 6px #040407;
  display: flex; align-items: center; justify-content: center;
}
.hero-phone-glow {
  position: absolute; inset: -40px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.14) 0%, transparent 70%);
  z-index: -1;
}
.hero-phone-img {
  position: absolute; inset: 6px; width: calc(100% - 12px); height: calc(100% - 12px);
  border-radius: 26px; object-fit: cover; object-position: top center;
}

/* ===== 6. DOWNLOAD CALL-TO-ACTION ===== */
.download-btn {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--gold-gradient); color: #000000; text-decoration: none;
  padding: 16px 40px; width: 100%; max-width: 440px; border-radius: var(--radius-md);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.35), inset 0 2px 4px rgba(255,255,255,0.4);
  position: relative; overflow: hidden; transition: var(--transition-normal);
  border: 1px solid var(--gold-glare); cursor: pointer;
}
.download-btn span { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: clamp(0.9rem, 2.8vw, 1.05rem); font-weight: 900; letter-spacing: 0.5px; }
.download-btn small { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; opacity: 0.85; }
.download-btn::before {
  content: ''; position: absolute; top: 0; left: -150%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-25deg); transition: left 0.6s ease;
}
.download-btn:hover::before { left: 150%; transition: left 0.7s var(--easing-premium); }
.download-btn:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(255, 215, 0, 0.6); }

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 40px; width: 100%; flex-wrap: wrap; }
.stat-num { font-family: var(--font-mono); font-size: clamp(1.05rem, 3vw, 1.2rem); font-weight: 800; color: var(--gold-primary); }
.stat-label { font-family: var(--font-nav); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; color: var(--text-low); }
.stat-divider { width: 1px; height: 32px; background: var(--border-dim); }

.scroll-indicator { position: absolute; bottom: 24px; color: var(--gold-primary); font-size: 1.2rem; animation: float-arrow 2s infinite ease-in-out; }
@keyframes float-arrow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ===== 7. LAYOUT HEADER COMMONS ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; padding: 0 20px; }
.section-eyebrow { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--gold-primary); display: block; margin-bottom: 10px; }
.section-title { font-family: var(--font-display); font-size: clamp(1.6rem, 5vw, 2.6rem); font-weight: 900; text-transform: uppercase; color: var(--text-pure); }
.accent { color: var(--gold-primary); }
.section-desc { font-size: 0.95rem; color: var(--text-mid); margin-top: 12px; }

/* ===== 8. LIVE STATS STRIP (Firebase-powered) ===== */
.stats-section { padding: 60px 20px; background: var(--bg-deep); border-top: var(--border-dim); width: 100%; }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; max-width: 900px; margin: 0 auto;
}
.stat-block {
  background: var(--bg-card); border: var(--border-dim); border-radius: var(--radius-md);
  padding: 28px 20px; text-align: center; transition: var(--transition-normal);
}
.stat-block:hover { border-color: rgba(255,215,0,0.3); transform: translateY(-3px); }
.stat-block i { font-size: 1.5rem; color: var(--gold-primary); margin-bottom: 12px; }
.stat-block .stat-block-num {
  font-family: var(--font-mono); font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 700;
  color: var(--text-pure); display: block; margin-bottom: 4px;
}
.stat-block .stat-block-label { font-family: var(--font-nav); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-mid); }

/* ===== 9. UPDATE BANNER SWIPER ===== */
.update-slider-section { padding: 80px 20px; background: var(--bg-deep); border-top: var(--border-dim); width: 100%; }
.updateSwiper { width: 100%; max-width: 1000px; aspect-ratio: 16 / 9; border-radius: var(--radius-md); border: var(--border-glow); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8); margin: 0 auto; }
.updateSwiper .swiper-slide { position: relative; overflow: hidden; }
.slide-image-container { width: 100%; height: 100%; }
.updateSwiper img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4, 4, 7, 0.95) 0%, rgba(4, 4, 7, 0.3) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.slide-overlay h3 { font-family: var(--font-display); font-size: clamp(1.1rem, 3.5vw, 1.8rem); color: var(--gold-primary); margin-bottom: 6px; }
.slide-overlay p { font-size: clamp(0.8rem, 2vw, 1rem); color: var(--text-high); }

/* ===== 10. APP PREVIEW SWIPER ===== */
.app-preview-section { padding: 80px 0; background: var(--bg-pitch); width: 100%; }
.previewSwiper { padding: 16px 0 48px !important; width: 100%; }
.previewSwiper .swiper-slide { width: 260px; height: 550px; border-radius: 24px; overflow: hidden; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7); border: 1px solid rgba(255, 215, 0, 0.15); background: var(--bg-deep); }
.previewSwiper img { width: 100%; height: 100%; object-fit: cover; }

/* ===== 11. FEATURES GRID ===== */
.features-section { padding: 80px 20px; background: var(--bg-deep); border-top: var(--border-dim); width: 100%; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; max-width: 1140px; margin: 0 auto; }
.feature-card { background: var(--bg-card); border: var(--border-dim); border-radius: var(--radius-md); padding: 30px 24px; transition: var(--transition-normal); }
.feature-card:hover { background: var(--bg-card-hover); transform: translateY(-4px); border-color: rgba(255, 215, 0, 0.25); }
.feature-icon { width: 48px; height: 48px; background: rgba(255, 215, 0, 0.04); border: 1px solid rgba(255, 215, 0, 0.2); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--gold-primary); margin-bottom: 20px; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text-pure); margin-bottom: 10px; }
.feature-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.55; }

/* ===== 12. RATE & REVIEW WIDGET (Firebase-powered, compact) ===== */
.rating-section { padding: 80px 20px; background: var(--bg-pitch); border-top: var(--border-dim); width: 100%; }

.rating-summary {
  max-width: 720px; margin: 0 auto 28px;
  background: var(--bg-card); border: var(--border-glow); border-radius: var(--radius-lg);
  padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.rating-summary-left { text-align: left; }
.rating-summary .avg-number { font-family: var(--font-mono); font-size: 2.6rem; font-weight: 700; color: var(--gold-primary); line-height: 1; }
.rating-summary .avg-stars { font-size: 1.1rem; color: var(--gold-primary); margin: 8px 0 4px; letter-spacing: 4px; }
.rating-summary .avg-stars .far { color: var(--text-low); }
.rating-summary .avg-count { color: var(--text-mid); font-size: 0.85rem; }

.btn-rate-us {
  background: var(--gold-gradient); color: #000; border: none; white-space: nowrap;
  padding: 14px 26px; border-radius: 100px; font-family: var(--font-nav); font-weight: 700;
  font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 20px var(--gold-glow); position: relative; overflow: hidden; transition: var(--transition-fast);
}
.btn-rate-us:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(255,215,0,0.5); }

.review-list-wrap { max-width: 720px; margin: 0 auto; }
.review-list { display: flex; flex-direction: column; gap: 10px; }
.review-card { background: var(--bg-card); border: var(--border-dim); border-radius: var(--radius-md); padding: 14px 18px; }
.review-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.review-name { font-family: var(--font-nav); font-weight: 700; color: var(--text-pure); font-size: 0.9rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.review-role {
  font-family: var(--font-body); font-weight: 600; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--gold-primary); background: rgba(255,215,0,0.08); border: 1px solid rgba(255,215,0,0.2);
  padding: 2px 8px; border-radius: 100px;
}
.review-stars { color: var(--gold-primary); font-size: 0.78rem; letter-spacing: 2px; flex-shrink: 0; }
.review-stars .far { color: var(--text-low); }
.review-text { color: var(--text-mid); font-size: 0.85rem; line-height: 1.5; }
.review-empty { color: var(--text-low); font-size: 0.9rem; text-align: center; padding: 30px 0; }

.review-readmore {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  margin-top: 16px; background: var(--bg-card); border: var(--border-dim); color: var(--text-mid);
  padding: 12px; border-radius: var(--radius-sm); font-family: var(--font-nav); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.5px; text-transform: uppercase; transition: var(--transition-fast);
  position: relative; overflow: hidden;
}
.review-readmore:hover { color: var(--gold-primary); border-color: rgba(255,215,0,0.3); }
.review-readmore.expanded i { transform: rotate(180deg); }
.review-readmore i { transition: transform 0.3s ease; }

/* ---- Review modal (opens only from "Rate Rana eSports") ---- */
.review-modal-overlay {
  position: fixed; inset: 0; background: rgba(2, 2, 4, 0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 1190; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.review-modal-overlay.active { opacity: 1; pointer-events: all; }

.review-modal {
  position: fixed; left: 50%; top: 50%; width: min(420px, 92vw); max-height: 88vh; overflow-y: auto;
  background: var(--bg-deep); border: var(--border-glow); border-radius: var(--radius-lg);
  z-index: 1200; box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  transform: translate(-50%, -46%) scale(0.96); opacity: 0; pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
}
.review-modal.open { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: all; }

.review-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: var(--border-dim); }
.review-modal-header h3 { font-family: var(--font-display); font-size: 1rem; color: var(--text-pure); display: flex; align-items: center; gap: 8px; }
.review-modal-header h3 i { color: var(--gold-primary); }
.review-modal-close { background: none; border: none; color: var(--text-mid); font-size: 1.1rem; padding: 4px; }
.review-modal-close:hover { color: var(--gold-primary); }

.review-form { padding: 22px; }
.review-form label { display: block; font-family: var(--font-nav); font-size: 0.85rem; color: var(--text-mid); margin-bottom: 6px; margin-top: 14px; }
.review-form label:first-of-type { margin-top: 0; }
.star-picker { display: flex; gap: 8px; font-size: 1.6rem; color: var(--gold-primary); margin-bottom: 4px; cursor: pointer; }
.star-picker i { transition: transform 0.15s ease; }
.star-picker i:hover { transform: scale(1.15); }
.review-form input, .review-form select, .review-form textarea {
  width: 100%; background: var(--bg-card); border: var(--border-dim); border-radius: var(--radius-sm);
  padding: 12px 14px; color: var(--text-high); font-family: var(--font-body); font-size: 0.9rem; resize: vertical;
}
.review-form input:focus, .review-form select:focus, .review-form textarea:focus { border-color: rgba(255,215,0,0.4); }
.review-form select {
  cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD700' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 38px;
}
.review-form select option { background: var(--bg-card); color: var(--text-high); }
.review-form .btn-secondary {
  margin-top: 20px; width: 100%; background: var(--gold-gradient); color: #000; border: none;
  padding: 13px 20px; border-radius: var(--radius-sm); font-family: var(--font-nav); font-weight: 700;
  font-size: 0.95rem; cursor: pointer; position: relative; overflow: hidden; transition: var(--transition-fast);
}
.review-form .btn-secondary:hover { transform: translateY(-1px); box-shadow: 0 6px 18px var(--gold-glow); }
.review-form .btn-secondary:disabled { opacity: 0.6; cursor: wait; transform: none; }
.review-status { margin-top: 12px; font-size: 0.85rem; min-height: 1.2em; }
.review-status.success { color: var(--accent-green); }
.review-status.error { color: var(--accent-red); }

/* ===== 13. TUTORIAL VIDEO PLAYER ===== */
.tutorials-section { padding: 80px 20px; background: var(--bg-deep); border-top: var(--border-dim); width: 100%; }
.videos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; max-width: 960px; margin: 0 auto; }
.video-card { background: var(--bg-deep); border: var(--border-dim); border-radius: var(--radius-md); overflow: hidden; }
.video-label { padding: 12px 20px; font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; color: var(--gold-primary); background: rgba(255, 215, 0, 0.02); border-bottom: var(--border-dim); }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-wrapper div, .video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ===== 14. CONTACT ENGINE NODES ===== */
.contact-section { padding: 80px 20px; background: var(--bg-pitch); border-top: var(--border-dim); width: 100%; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; max-width: 840px; margin: 0 auto; }
.contact-card { display: flex; flex-direction: column; align-items: center; text-align: center; background: var(--bg-card); border: var(--border-dim); border-radius: var(--radius-md); padding: 32px 20px; text-decoration: none; transition: var(--transition-normal); }
.contact-card h3 { font-family: var(--font-display); font-size: 1rem; color: var(--text-pure); margin-bottom: 4px; }
.contact-card p { color: var(--text-mid); font-size: 0.85rem; word-break: break-all; }
.contact-icon { width: 56px; height: 56px; background: rgba(255, 215, 0, 0.03); border: 1px solid rgba(255, 215, 0, 0.2); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--gold-primary); margin-bottom: 16px; }
.contact-card:hover { transform: translateY(-4px); border-color: rgba(255, 215, 0, 0.3); }
.contact-card:hover .instagram-icon { border-color: #E1306C; color: #E1306C; }

/* ===== 15. FOOTER HUD CONSOLE ===== */
.footer { background: var(--bg-deep); border-top: var(--border-glow); padding: 56px 20px 24px; width: 100%; }
.footer-top { max-width: 1100px; margin: 0 auto 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
@media (min-width: 768px) { .footer-top { grid-template-columns: 2fr repeat(3, 1fr); } }
.footer-brand .footer-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; letter-spacing: 1.5px; color: var(--text-pure); display: block; margin-bottom: 12px; }
.footer-brand p { color: var(--text-mid); font-size: 0.9rem; max-width: 280px; }
.footer-links h4 { font-family: var(--font-display); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-pure); margin-bottom: 16px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-legal-btn {
  color: var(--text-mid); text-decoration: none; font-size: 0.85rem; transition: var(--transition-fast);
  background: none; border: none; padding: 0; text-align: left; display: inline-block; font-family: var(--font-body);
}
.footer-links a:hover, .footer-legal-btn:hover { color: var(--gold-primary); }
.footer-socials { display: flex; align-items: center; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; background: var(--bg-card); border: var(--border-dim); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--text-mid); }
.footer-socials a:hover { color: #000; background: var(--gold-primary); border-color: var(--gold-primary); }
.footer-disclaimer { max-width: 1100px; margin: 0 auto 24px; padding: 16px 20px; background: var(--bg-pitch); border: var(--border-dim); border-radius: var(--radius-sm); }
.footer-disclaimer p { font-size: 0.78rem; color: var(--text-low); line-height: 1.5; }
.footer-bottom { border-top: var(--border-dim); padding-top: 20px; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-low); }

/* ===== 16. BACK-TO-TOP ===== */
.back-to-top {
  position: fixed; bottom: 20px; right: 20px; width: 42px; height: 42px;
  background: rgba(4, 4, 7, 0.8); border: 1px solid rgba(255, 215, 0, 0.25);
  backdrop-filter: blur(8px); color: var(--gold-primary); border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; opacity: 0; pointer-events: none; z-index: 99; transition: var(--transition-normal);
}
.back-to-top.show { opacity: 1; pointer-events: all; }

/* ===== 17. LEGAL / STANDALONE CONTENT BLOCKS (shared by disclaimer.html,
   privacy-policy.html, data-deletion.html, terms.html, refund.html,
   contact.html) — same visual language as the old in-page drawer, now
   rendered as normal page content instead of a slide-out panel. ===== */
.legal-updated { font-size: 0.78rem; color: var(--text-low); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-nav); }
.legal-intro { font-size: 0.95rem; color: var(--text-high); margin-bottom: 22px; }

.legal-block { background: var(--bg-card); border: var(--border-dim); border-radius: var(--radius-md); padding: 20px; margin-bottom: 16px; }
.legal-highlight { border-left: 3px solid var(--gold-primary); }
.legal-warning { border-left: 3px solid var(--accent-red); }
.legal-info { border-left: 3px solid var(--accent-cyan); }

.legal-block h3 { font-family: var(--font-display); font-size: 0.92rem; color: var(--text-pure); margin-bottom: 10px; display: flex; align-items: center; gap: 9px; }
.legal-block h3 i { color: var(--gold-primary); flex-shrink: 0; }
.legal-warning h3 i { color: var(--accent-red); }
.legal-info h3 i { color: var(--accent-cyan); }
.legal-block p { color: var(--text-mid); font-size: 0.87rem; line-height: 1.6; margin-bottom: 12px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-list { list-style: none; margin-bottom: 12px; }
.legal-list li { color: var(--text-mid); font-size: 0.87rem; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 9px; line-height: 1.5; }
.legal-list li i { color: var(--gold-primary); margin-top: 4px; font-size: 0.8rem; flex-shrink: 0; }
.legal-block a { color: var(--gold-primary); text-decoration: none; border-bottom: 1px dashed rgba(255, 215, 0, 0.4); }

.legal-table { width: 100%; border-collapse: collapse; margin-bottom: 12px; font-size: 0.82rem; }
.legal-table th, .legal-table td { text-align: left; padding: 9px 10px; border-bottom: var(--border-dim); color: var(--text-mid); }
.legal-table th { color: var(--gold-primary); font-family: var(--font-nav); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 1px; }

/* ===== 18. RESPONSIVE — MOBILE (default, up to 767px) ===== */
@media (max-width: 640px) {
  .navbar { height: 64px; }
  .hero { padding-top: 110px; }
  .hero-stats { gap: 12px; }
  .stat-divider { height: 24px; }
  .updateSwiper { aspect-ratio: 4 / 3; }
  .slide-overlay { padding: 16px; }
  .download-btn { padding: 14px 24px; }
  .rating-summary { flex-direction: column; align-items: stretch; text-align: center; padding: 24px 20px; }
  .rating-summary-left { text-align: center; }
  .btn-rate-us { justify-content: center; width: 100%; }
  .rating-summary .avg-number { font-size: 2.2rem; }
}

/* ===== 19. RESPONSIVE — TABLET & UP (768px+) ===== */
@media (min-width: 768px) {
  .contact-grid { max-width: 900px; }
}

/* ===== 20. RESPONSIVE — DESKTOP & LAPTOP (1024px+) ===== */
@media (min-width: 1024px) {
  .nav-quicklinks { display: flex; }

  .hero { padding: 150px 40px 80px; }
  .hero-content { flex-direction: row; align-items: center; justify-content: space-between; text-align: left; gap: 60px; }
  .hero-text { align-items: flex-start; text-align: left; max-width: 560px; }
  .hero-subtitle { margin-left: 0; }
  .hero-stats { justify-content: flex-start; }
  .hero-visual { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .hero-phone-frame { animation: heroPhoneFloat 5s ease-in-out infinite; }
  @keyframes heroPhoneFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

  .rating-summary { padding: 34px 40px; }
}

@media (min-width: 1440px) {
  .hero-content { max-width: 1320px; }
}
/* ===== VIDEO TUTORIAL TABS ===== */
.video-tabs {
  display: flex; gap: 12px; justify-content: center; margin-bottom: 30px;
}
.video-tab {
  background: var(--bg-card); border: var(--border-dim); color: var(--text-mid);
  padding: 10px 24px; border-radius: 100px; font-family: var(--font-nav); 
  font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: var(--transition-fast);
}
.video-tab:hover { color: var(--text-pure); border-color: rgba(255,215,0,0.3); }
.video-tab.active { background: var(--gold-gradient); color: #000; border-color: transparent; }
/* ===== PRICING SECTION VIP STYLES ===== */
.pricing-section { padding: 80px 20px; background: var(--bg-pitch); width: 100%; border-top: var(--border-dim); }
.pricing-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; max-width: 1200px; margin: 0 auto; }
.pricing-grid[hidden] { display: none !important; }
.pricing-card { position: relative; background: var(--bg-card); border: 1.5px solid var(--border-dim); border-radius: 28px; padding: 32px 24px; width: 280px; transition: var(--transition-normal); }
.pricing-card:hover { transform: translateY(-8px); }
.card-badge-icon { position: absolute; top: 20px; right: 20px; font-size: 1.4rem; }
.pricing-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--text-pure); margin-bottom: 8px; letter-spacing: 1px; }
.pricing-card .price { font-size: 2.2rem; font-weight: 900; color: var(--text-pure); display: flex; align-items: baseline; gap: 4px; }
.pricing-card .price span { font-size: 0.85rem; color: var(--text-mid); font-weight: 600; }
.pricing-divider { height: 2px; border-radius: 2px; margin: 20px 0; opacity: 0.8; }
.pricing-card ul { list-style: none; }
.pricing-card ul li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.9rem; color: var(--text-high); font-weight: 600; }
.pricing-card ul li i { font-size: 1.1rem; }

/* Plan Accents (Matching React Native code) */
.card-basic { border-color: #1E1E24; }
.card-basic .card-badge-icon { color: #FF4D67; }
.card-basic .pricing-divider { background: #FF4D67; }

.card-standard { border-color: rgba(255, 79, 192, 0.4); }
.card-standard:hover { border-color: #FF4FC0; box-shadow: 0 10px 30px rgba(255, 79, 192, 0.15); }
.card-standard .card-badge-icon { color: #FF4FC0; }
.card-standard .price { color: #FF4FC0; }
.card-standard .pricing-divider { background: #FF4FC0; }

.card-premium { border-color: rgba(63, 169, 255, 0.4); }
.card-premium:hover { border-color: #3FA9FF; box-shadow: 0 10px 30px rgba(63, 169, 255, 0.15); }
.card-premium .card-badge-icon { color: #3FA9FF; }
.card-premium .price { color: #3FA9FF; }
.card-premium .pricing-divider { background: #3FA9FF; }

.card-ultra { border-color: #FFC61A; background: linear-gradient(180deg, #11111F 0%, #1A1705 100%); }
.card-ultra:hover { box-shadow: 0 15px 40px rgba(255, 198, 26, 0.2); }
.card-ultra .card-badge-icon { color: #2ED679; }
.card-ultra .price { color: #FFC61A; }
.card-ultra .pricing-divider { background: #FFC61A; }
.ultra-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #FFC61A; color: #000; font-family: var(--font-nav); font-weight: 800; font-size: 0.75rem; padding: 4px 14px; border-radius: 20px; letter-spacing: 1px; box-shadow: 0 4px 10px rgba(255,198,26,0.4); }

/* ===== 10 SEC VIDEO AD OVERLAY (YouTube Shorts Style) ===== */
.video-ad-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.95); backdrop-filter: blur(10px); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.video-ad-overlay.active { opacity: 1; pointer-events: all; }
.video-ad-content { position: relative; width: 100%; max-width: 400px; height: 100vh; max-height: 800px; background: #000; display: flex; flex-direction: column; justify-content: center; }
@media(min-width: 600px) { .video-ad-content { height: 80vh; border-radius: 16px; overflow: hidden; border: 1px solid #333; } }
.video-ad-header { position: absolute; top: 50px; left: 20px; right: 20px; display: flex; justify-content: space-between; align-items: center; z-index: 10; }
.ad-badge { background: rgba(0,0,0,0.6); color: #FFF; font-size: 0.75rem; padding: 4px 10px; border-radius: 4px; border: 1px solid #FFD700; }
.ad-timer { background: #FFD700; color: #000; font-family: var(--font-nav); font-weight: 800; padding: 6px 14px; border-radius: 20px; font-size: 0.9rem; }
#adVideoPlayer { width: 100%; height: 100%; object-fit: cover; }
.ad-progress-bar { position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: rgba(255,255,255,0.2); }
.ad-progress-fill { height: 100%; width: 0%; background: #FFD700; transition: width 1s linear; }

/* ==========================================================================
   21. NEW — STANDALONE PAGE LAYOUT
   Used by: disclaimer.html, privacy-policy.html, data-deletion.html,
   terms.html, refund.html, contact.html
   These pages no longer live inside the sliding legal-drawer — they are
   full pages that share this exact navbar + footer + card styling so the
   look is identical on mobile and desktop.
   ========================================================================== */
.nav-back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-mid); text-decoration: none; font-family: var(--font-nav);
  font-weight: 600; font-size: 0.9rem; transition: var(--transition-fast);
}
.nav-back-link:hover { color: var(--gold-primary); }

.standalone-page {
  max-width: 760px; margin: 0 auto;
  padding: 110px 20px 60px;
  min-height: 55vh;
}
.standalone-header { text-align: center; margin-bottom: 32px; }
.standalone-header .section-eyebrow { margin-bottom: 8px; }
.standalone-header .section-title { margin: 4px 0 10px; }
.standalone-header .legal-updated { margin-bottom: 0; }

.standalone-content .legal-block:last-child { margin-bottom: 0; }

.back-to-home-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  color: var(--gold-primary); text-decoration: none; font-family: var(--font-nav);
  font-weight: 700; font-size: 0.9rem;
}
.back-to-home-link:hover { text-decoration: underline; }

/* Contact page reuses .contact-grid / .contact-card, just needs top spacing */
.standalone-page .contact-grid { margin-top: 4px; }

/* Highlighted copy-ready message box (used on data-deletion.html for the
   "send this to admin / email" template) */
.delete-message-box {
  background: var(--bg-pitch);
  border: 1.5px dashed rgba(255, 215, 0, 0.4);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin: 14px 0;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-high);
  white-space: pre-wrap;
  word-break: break-word;
}
.delete-message-box strong { color: var(--gold-primary); }
.delete-message-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-nav); font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 1px; color: var(--gold-primary);
  margin-bottom: 8px;
}
.delete-steps { counter-reset: delete-step; list-style: none; margin-bottom: 12px; }
.delete-steps li {
  position: relative; padding-left: 34px; margin-bottom: 14px;
  color: var(--text-mid); font-size: 0.87rem; line-height: 1.55;
}
.delete-steps li::before {
  counter-increment: delete-step; content: counter(delete-step);
  position: absolute; left: 0; top: 0; width: 24px; height: 24px;
  background: var(--gold-gradient); color: #000; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.78rem;
}
.delete-steps li strong { color: var(--text-pure); }
.timeline-strip {
  display: flex; flex-wrap: wrap; gap: 12px; margin: 14px 0;
}
.timeline-chip {
  flex: 1; min-width: 140px; background: var(--bg-pitch); border: var(--border-dim);
  border-radius: var(--radius-sm); padding: 14px 16px; text-align: center;
}
.timeline-chip .timeline-num {
  display: block; font-family: var(--font-mono); font-weight: 700;
  font-size: 1.3rem; color: var(--gold-primary); margin-bottom: 4px;
}
.timeline-chip .timeline-label {
  font-family: var(--font-nav); font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--text-mid);
}

/* ===== 22. COPY-TO-CLIPBOARD MESSAGE BOX (data-deletion.html / refund.html) ===== */
.message-box-header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; margin-bottom: 10px;
}
.copy-btn {
  display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0;
  background: var(--gold-gradient); color: #000; border: none;
  padding: 8px 16px; border-radius: 100px; font-family: var(--font-nav);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.3px;
  box-shadow: 0 4px 14px var(--gold-glow); transition: var(--transition-fast);
  position: relative; overflow: hidden;
}
.copy-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(255,215,0,0.5); }
.copy-btn.copied { background: linear-gradient(135deg, #6CFFA0, #22D67B); box-shadow: 0 4px 14px rgba(34,214,123,0.4); }
.copy-btn:disabled { cursor: default; }

.delete-message-box, .refund-message-box {
  background: var(--bg-pitch);
  border: 1.5px dashed rgba(255, 215, 0, 0.4);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin: 14px 0;
}
.message-box-text {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-high);
  white-space: pre-wrap;
  word-break: break-word;
}
.delete-message-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-nav); font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 1px; color: var(--gold-primary);
}

/* Requirement checklist used before the copy-message boxes */
.requirement-list { list-style: none; margin-bottom: 12px; }
.requirement-list li {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px;
  color: var(--text-mid); font-size: 0.87rem; line-height: 1.5;
}
.requirement-list li i {
  color: #000; background: var(--gold-gradient); border-radius: 50%;
  width: 20px; height: 20px; min-width: 20px; display: flex; align-items: center;
  justify-content: center; font-size: 0.68rem; margin-top: 1px;
}

/* Eligible / not-eligible chip row, used on refund.html */
.eligibility-row { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 14px 0; }
@media (min-width: 640px) { .eligibility-row { grid-template-columns: 1fr 1fr; } }
.eligibility-card {
  border-radius: var(--radius-sm); padding: 16px 18px; border: var(--border-dim); background: var(--bg-pitch);
}
.eligibility-card.eligible { border-left: 3px solid var(--accent-green); }
.eligibility-card.not-eligible { border-left: 3px solid var(--accent-red); }
.eligibility-card h4 {
  font-family: var(--font-nav); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.eligibility-card.eligible h4 { color: var(--accent-green); }
.eligibility-card.not-eligible h4 { color: var(--accent-red); }
.eligibility-card ul { list-style: none; }
.eligibility-card li { color: var(--text-mid); font-size: 0.82rem; margin-bottom: 6px; padding-left: 14px; position: relative; }
.eligibility-card li::before { content: '•'; position: absolute; left: 0; color: var(--text-low); }

/* ===== 23. PRICING CARD CAROUSELS (India ₹ / Other Countries US$) =====
   Two independent auto-scrolling Swiper carousels — replaces the old
   click-to-toggle currency tabs. Cards centre themselves, auto-rotate
   right-to-left holding ~1s per card, loop endlessly, and remain fully
   swipeable by finger/mouse at any time. */
.pricing-currency-label {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-pure);
  margin: 0 auto 20px; max-width: 1200px; padding: 0 20px;
}
.pricing-currency-label:not(:first-of-type) { margin-top: 52px; }
.pricing-currency-label i { color: var(--gold-primary); font-size: 0.9rem; }

.pricingSwiperIndia, .pricingSwiperGlobal {
  width: 100%; padding: 20px 0 44px !important;
}
.pricingSwiperIndia .swiper-slide, .pricingSwiperGlobal .swiper-slide {
  width: 280px; height: auto; display: flex; align-items: stretch;
}
.pricingSwiperIndia .swiper-slide .pricing-card,
.pricingSwiperGlobal .swiper-slide .pricing-card {
  width: 100%;
}
.pricingSwiperIndia .swiper-pagination-bullet,
.pricingSwiperGlobal .swiper-pagination-bullet {
  background: var(--text-low); opacity: 0.6;
}
.pricingSwiperIndia .swiper-pagination-bullet-active,
.pricingSwiperGlobal .swiper-pagination-bullet-active {
  background: var(--gold-primary); opacity: 1;
}
@media (min-width: 1024px) {
  .pricing-currency-label { font-size: 1.1rem; }
}
.currency-note {
  max-width: 640px; margin: 24px auto 0; text-align: center; color: var(--text-low);
  font-size: 0.8rem; line-height: 1.6; padding: 0 20px;
}

@media (min-width: 1024px) {
  .standalone-page { padding: 140px 40px 90px; }
}
