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

/* ==========================================
   DESIGN TOKENS & VARIABLES
   ========================================== */
:root {
  --primary-gold: #d4af37;
  --light-gold: #ffe07d;
  --dark-gold: #aa7c11;
  --bg-main: #06070a;
  --bg-secondary: #0d0f17;
  --bg-card: rgba(22, 25, 37, 0.7);
  --bg-card-hover: rgba(28, 32, 47, 0.85);
  --border-gold: rgba(212, 175, 55, 0.18);
  --border-gold-focus: rgba(212, 175, 55, 0.5);
  --text-main: #f5f6f8;
  --text-secondary: #9ea4b5;
  --text-dark: #0a0b0d;
  
  --shadow-gold-glow: 0 0 20px rgba(212, 175, 55, 0.25);
  --shadow-gold-heavy: 0 0 35px rgba(212, 175, 55, 0.45);
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================
   BASE & RESET STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background auroras for premium ambient lighting */
body::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

/* ==========================================
   COMMON COMPONENTS & UTILITIES
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--light-gold) 0%, var(--primary-gold) 50%, var(--dark-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-gold);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.05);
  letter-spacing: 2px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Glassmorphism Card Style */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold-focus);
  background-color: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.1);
}

/* Glowing CTAs Buttons */
.btn-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--light-gold) 0%, var(--primary-gold) 50%, var(--dark-gold) 100%);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 36px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), var(--shadow-gold-glow);
  transition: all var(--transition-normal);
  z-index: 1;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45), var(--shadow-gold-heavy);
}

.btn-gold:active {
  transform: scale(0.98);
}

/* Pulsing effect to maximize conversion */
.pulse-btn {
  animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), 0 0 10px rgba(212, 175, 55, 0.2);
  }
  100% {
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6), 0 0 25px rgba(212, 175, 55, 0.4);
  }
}

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 100;
  transition: all var(--transition-normal);
}

header.scrolled {
  background: rgba(6, 7, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 70px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

.logo img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--primary-gold);
  box-shadow: var(--shadow-gold-glow);
}

.logo span {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.logo .subtext {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: -3px;
}

.btn-nav-mobile {
  display: none;
}

header nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

header nav ul {
  display: flex;
  gap: 24px;
}

header nav ul a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

header nav ul a:hover {
  color: var(--primary-gold);
}

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

header .btn-header {
  padding: 10px 20px;
  font-size: 0.8rem;
  border-radius: 8px;
}

.btn-header-ref {
  display: none;
}

/* Hamburger mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition-fast);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 90px;
  display: flex;
  align-items: center;
  min-height: 90vh;
  background-image: linear-gradient(135deg, rgba(6, 7, 10, 0.95) 0%, rgba(6, 7, 10, 0.82) 50%, rgba(212, 175, 55, 0.08) 100%), url('assets/IMG_4328.PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-top-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  width: 100%;
}

.hero-brand-logo {
  width: 280px;
  max-width: 90%;
  height: auto;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.5));
  transition: transform var(--transition-normal);
}

.hero-brand-logo:hover {
  transform: scale(1.05);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-badge span.dot {
  width: 8px;
  height: 8px;
  background-color: #00ff66;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff66;
  animation: pulse-green 1.5s infinite alternate;
}

@keyframes pulse-green {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.2); opacity: 1; }
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-content p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
}

.hero-feature-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-gold);
  font-size: 0.8rem;
  font-weight: bold;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-card {
  width: 100%;
  max-width: 420px;
  padding: 30px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--light-gold), var(--primary-gold));
}

.hero-visual-card .card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 16px;
}

.hero-visual-card .card-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-visual-card .card-user img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--primary-gold);
}

.hero-visual-card .card-user .name {
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-visual-card .card-user .status {
  font-size: 0.75rem;
  color: #00ff66;
  font-weight: 500;
}

.hero-visual-card .card-balance {
  margin-bottom: 24px;
}

.hero-visual-card .card-balance .label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual-card .card-balance .amount {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #fff;
  margin-top: 4px;
}

.hero-visual-card .card-balance .gold-glow-text {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.hero-visual-card .activity-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-visual-card .activity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  font-size: 0.85rem;
}

.hero-visual-card .activity-item span.casino {
  color: var(--text-secondary);
}

.hero-visual-card .activity-item span.profit {
  font-weight: 700;
  color: #00ff66;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
  pointer-events: none;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.stat-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ==========================================
   SIMULATOR SECTION
   ========================================== */
.simulator {
  padding: 100px 0;
}

.simulator-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.sim-controls h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.sim-controls p.subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.sim-slider-container {
  margin-bottom: 36px;
}

.sim-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.sim-slider-label span.value {
  color: var(--primary-gold);
  font-size: 1.25rem;
  font-weight: 700;
  background: rgba(212, 175, 55, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
}

/* Custom Range Input */
.sim-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  margin-bottom: 24px;
}

.sim-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.sim-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.sim-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast);
}

.sim-range::-moz-range-thumb:hover {
  transform: scale(1.2);
}

.sim-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  cursor: pointer;
}

.checkbox-item input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-gold);
  cursor: pointer;
}

.sim-results {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sim-results .result-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.sim-results .result-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: #00ff66;
  text-shadow: 0 0 20px rgba(0, 255, 102, 0.2);
  margin-bottom: 12px;
}

.sim-results .result-disclaimer {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 250px;
  line-height: 1.4;
}

.sim-results .btn-sim {
  width: 100%;
  font-size: 0.85rem;
  padding: 14px 20px;
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.step-card {
  padding: 40px 30px;
  position: relative;
  z-index: 2;
}

.step-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.08);
  line-height: 1;
}

.step-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step-icon-box i {
  font-size: 1.5rem;
  color: var(--primary-gold);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
}

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

/* Connective lines between steps (Desktop only) */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 10%;
  width: 80%;
  height: 1px;
  border-top: 2px dashed rgba(212, 175, 55, 0.15);
  z-index: 1;
}

/* ==========================================
   WHY US SECTION
   ========================================== */
.why-us {
  padding: 100px 0;
}

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

.why-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.why-feature-card {
  display: flex;
  gap: 20px;
  padding: 24px;
}

.why-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 1.2rem;
}

.why-feature-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-feature-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.why-image-area {
  position: relative;
}

.why-image-card {
  padding: 30px;
}

.why-image-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 16px;
  text-align: center;
}

.why-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.why-bullet-item i.check {
  color: #00ff66;
  font-weight: bold;
  margin-top: 3px;
}

.why-bullet-item i.times {
  color: #ff3b30;
  font-weight: bold;
  margin-top: 3px;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  padding: 30px;
}

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

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--primary-gold);
}

.testimonial-user-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.testimonial-user-info p {
  font-size: 0.75rem;
  color: var(--primary-gold);
  font-weight: 600;
}

/* ==========================================
   SCREENSHOT CAROUSEL & LIGHTBOX
   ========================================== */
.gallery-header {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 24px;
}

.gallery-header h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  margin-top: 8px;
  margin-bottom: 6px;
  color: var(--text-main);
}

.gallery-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 20px auto 0 auto;
  display: flex;
  align-items: center;
  padding: 0 45px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding: 15px 5px;
  width: 100%;
  scroll-snap-type: x mandatory;
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.carousel-slide {
  flex: 0 0 calc(25% - 12px); /* 4 visible cards per view on desktop */
  min-width: 220px;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: #080a0f;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  scroll-snap-align: start;
}

.carousel-slide:hover {
  transform: translateY(-6px);
  border-color: var(--primary-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), var(--shadow-gold-glow);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.carousel-slide:hover img {
  transform: scale(1.08);
}

/* Nav Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(22, 25, 37, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--primary-gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.carousel-nav:hover {
  background: var(--primary-gold);
  color: var(--text-dark);
  box-shadow: var(--shadow-gold-glow);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev-btn {
  left: 0;
}

.carousel-nav.next-btn {
  right: 0;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background: var(--primary-gold);
  width: 24px;
  border-radius: 10px;
  box-shadow: var(--shadow-gold-glow);
}

.screenshot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 7, 10, 0.75);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--primary-gold);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.screenshot-item:hover .screenshot-overlay {
  opacity: 1;
}

.screenshot-overlay i {
  font-size: 1.5rem;
}

.screenshot-overlay span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 5, 8, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 14px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), var(--shadow-gold-glow);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 38px;
  font-weight: bold;
  cursor: pointer;
  transition: color var(--transition-fast);
  z-index: 2001;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
  color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.2);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
  padding: 100px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(22, 25, 37, 0.4);
  transition: all var(--transition-normal);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
}

.faq-question i {
  color: var(--primary-gold);
  transition: transform var(--transition-normal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  background: rgba(0, 0, 0, 0.15);
}

.faq-answer-inner {
  padding: 0 28px 22px 28px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Active FAQ Item styling */
.faq-item.active {
  border-color: var(--border-gold);
  background: rgba(22, 25, 37, 0.7);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* ==========================================
   CTA FINAL SECTION
   ========================================== */
.final-cta {
  padding: 120px 0;
  position: relative;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-secondary) 100%);
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.final-cta p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.final-cta .btn-final {
  padding: 20px 48px;
  font-size: 1.1rem;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: #040508;
  padding: 60px 0 30px 0;
  border-top: 1px solid rgba(255,255,255,0.03);
  font-size: 0.9rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-links-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col ul a {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer-links-col ul a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.75rem;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom .badges {
  display: flex;
  gap: 16px;
}

.footer-bottom .badge-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2px 8px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ==========================================
   MODAL / LEAD FORM STEP-BY-STEP
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 5, 8, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  width: 100%;
  max-width: 550px;
  padding: 40px;
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), var(--shadow-gold-glow);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.05);
  border: none;
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ==========================================
   2-BUTTON POPUP / WHATSAPP CHOICE MODAL
   ========================================== */
.modal-header-custom {
  text-align: center;
  margin-bottom: 24px;
}

.modal-header-custom h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.modal-header-custom p.modal-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.choice-buttons-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  width: 100% !important;
  margin-top: 10px !important;
}

.choice-btn {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  padding: 18px 20px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 14px !important;
  color: var(--text-main) !important;
  text-decoration: none !important;
  transition: all var(--transition-fast) !important;
  position: relative !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
}

.choice-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.1) 50%, rgba(212, 175, 55, 0) 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.choice-btn:hover::before {
  transform: translateX(100%);
}

.choice-btn:hover {
  border-color: var(--primary-gold) !important;
  background: rgba(212, 175, 55, 0.15) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.25) !important;
}

.choice-badge {
  width: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
  background: rgba(212, 175, 55, 0.15) !important;
  border: 1px solid var(--border-gold) !important;
  color: var(--primary-gold) !important;
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
  font-size: 1.1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.choice-text {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
}

.choice-text strong {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.3 !important;
  margin-bottom: 3px !important;
  display: block !important;
}

.choice-text .choice-sub {
  font-size: 0.8rem !important;
  color: var(--text-secondary) !important;
  display: block !important;
}

.choice-icon {
  font-size: 1.8rem !important;
  color: #25d366 !important; /* WhatsApp green */
  flex-shrink: 0 !important;
  transition: transform var(--transition-fast) !important;
}

.choice-btn:hover .choice-icon {
  transform: scale(1.18) !important;
}

/* ==========================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================== */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-features {
    align-items: center;
  }
  
  .hero-image-wrapper {
    order: -1;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  
  .simulator-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .steps-grid::before {
    display: none; /* Remove connective line on mobile */
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .why-image-area {
    order: -1;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  header .btn-header {
    display: none !important;
  }

  .btn-header-ref {
    display: inline-flex !important;
    padding: 7px 12px !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    border-radius: 8px !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.35) !important;
  }
}

@media (max-width: 767px) {
  .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  header .btn-header {
    display: none !important;
  }

  .btn-header-ref {
    display: inline-flex !important;
    padding: 7px 12px !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    border-radius: 8px !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.35) !important;
  }
  
  .btn-header-ref i {
    font-size: 0.75rem;
  }
  
  .btn-nav-mobile {
    display: inline-flex;
    width: 100%;
  }

  .logo {
    font-size: 1.05rem;
    gap: 8px;
  }

  .logo img {
    width: 36px;
    height: 36px;
  }

  .logo .subtext {
    font-size: 0.55rem;
    letter-spacing: 1px;
  }

  header nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-main);
    flex-direction: column;
    padding: 40px 24px;
    align-items: stretch;
    gap: 40px;
    transition: left var(--transition-normal);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 99;
  }
  
  header.nav-active nav {
    left: 0;
  }
  
  header nav ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  header nav ul a {
    font-size: 1.25rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  /* Menu icon active state */
  header.nav-active .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  header.nav-active .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  header.nav-active .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .final-cta h2 {
    font-size: 2rem;
  }
  
  .footer-top {
    flex-direction: column;
  }
  
  .footer-links {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .hero-top-logo {
    justify-content: center;
    margin-bottom: 24px;
  }
  .hero-brand-logo {
    width: 290px;
    max-width: 92%;
  }

  .carousel-container {
    padding: 0;
  }
  .carousel-nav {
    display: none;
  }
  .carousel-slide {
    flex: 0 0 calc(60% - 10px);
    min-width: 190px;
    height: 230px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .simulator-card {
    padding: 24px;
  }
  
  .sim-results {
    padding: 24px 16px;
  }
  
  .sim-results .result-value {
    font-size: 2rem;
  }
  
  .modal-box {
    padding: 30px 20px;
  }
  
  .step-indicator {
    margin-bottom: 24px;
  }

  .carousel-slide {
    flex: 0 0 calc(75% - 10px);
    min-width: 170px;
    height: 220px;
  }
}
