/* ========== ORIGINAL STRUCTURE + NAVY/SHIMMER THEME ========== */
:root {
  --navy-deep: #0A1A3A;
  --navy: #13294B;
  --navy-light: #1E3A6F;
  --purple: #5B2E9E;
  --purple-light: #7B4FC0;
  --purple-vibrant: #8B5CF6;
  --text-dark: #0F1A2E;
  --text-muted: #4A5B7A;
  --border-light: #CBD5E1;
  --bg-light: #F8F9FC;
  --card-white: #FFFFFF;
  --shadow: 0 10px 30px -12px rgba(19, 41, 75, 0.12);
  --gradient-nav: linear-gradient(135deg, #13294B 0%, #5B2E9E 100%);
  --gradient-hero: linear-gradient(135deg, #0A1A3A 0%, #13294B 40%, #5B2E9E 100%);
  --gold: #5B2E9E;
  --gold-dark: #13294B;
  --gold-light: #7B4FC0;
}

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

body {
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* animated grain overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 30% 40%, rgba(91, 46, 158, 0.03) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.01) 0px, rgba(0, 0, 0, 0.01) 2px, transparent 2px, transparent 8px);
  pointer-events: none;
  z-index: 0;
  animation: slowDrift 20s infinite alternate;
}

@keyframes slowDrift {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

/* spinner */
#spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.gold-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(19, 41, 75, 0.2);
  border-top: 3px solid var(--navy);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.gold-bg-pattern {
  display: none;
}

.zebra-stripe-bg,
.zebra-diagonal {
  display: none;
}

/* navbar */
.navbar-gold {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.navbar-gold::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
  animation: shimmerLine 3s infinite;
}

@keyframes shimmerLine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.nav-link-gold {
  color: var(--text-dark) !important;
  font-weight: 500;
  transition: 0.3s;
}

.nav-link-gold:hover,
.nav-link-gold.active {
  color: var(--navy) !important;
  text-shadow: 0 0 5px rgba(19, 41, 75, 0.3);
}

.nav-link-gold.active:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  animation: glowPulse 1.5s infinite;
}

@keyframes glowPulse {
  0% {
    opacity: 0.5;
    box-shadow: 0 0 0 0 var(--navy);
  }

  100% {
    opacity: 1;
    box-shadow: 0 0 6px 0 var(--navy);
  }
}

/* Activate Device button */
.btn-gold-primary {
  background: var(--gradient-nav);
  border: none;
  padding: 10px 24px;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(19, 41, 75, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.btn-gold-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(19, 41, 75, 0.3);
  color: white;
}

/* FREE TRIAL BUTTON - NAVY BLUE */
.btn-gold-outline {
  background: var(--navy);
  border: none;
  padding: 10px 24px;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 12px rgba(19, 41, 75, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

.btn-gold-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(19, 41, 75, 0.5);
  background: var(--navy-light);
  color: white;
}

/* hero section */
.hero-gold {
  background: var(--gradient-hero);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  position: relative;
  overflow: hidden;
  padding: 2rem 0 3rem;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.gold-orb-1,
.gold-orb-2,
.gold-orb-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: floatOrb 12s infinite alternate ease-in-out;
}

.gold-orb-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -80px;
  background: #8B5CF6;
}

.gold-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  background: #FFD166;
  opacity: 0.1;
}

.gold-orb-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 20%;
  background: #A78BFA;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, -20px) scale(1.05);
  }
}

.main-title-gold {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF, #E2E8F0, #C4B5FD);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shineText 3s linear infinite;
}

@keyframes shineText {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.hero-badge-gold {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  color: #E2E8F0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  font-weight: 500;
}

.lead {
  color: rgba(255, 255, 255, 0.8);
}

.hero-image-large {
  max-width: 100%;
  filter: drop-shadow(0 20px 25px -8px rgba(0, 0, 0, 0.3));
  animation: gentleFloat 5s infinite ease-in-out;
}

@keyframes gentleFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* stats */
.stats-grid-gold {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin: 2rem 0;
}

.stat-item-gold {
  background: var(--card-white);
  padding: 12px 28px;
  border-radius: 60px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.stat-item-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(91, 46, 158, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.stat-item-gold:hover::after {
  opacity: 1;
}

.stat-item-gold:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--navy);
}

.stat-number-gold {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
  transition: text-shadow 0.3s;
}

.stat-item-gold:hover .stat-number-gold {
  text-shadow: 0 0 8px rgba(19, 41, 75, 0.4);
}

.stat-number-gold a {
  color: var(--navy);
  text-decoration: none;
}

/* cards */
.glass-card-gold,
.glass-card-gold-light {
  background: var(--card-white);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid var(--border-light);
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.glass-card-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
  pointer-events: none;
}

.glass-card-gold:hover::before {
  transform: translateX(100%);
}

.glass-card-gold:hover {
  transform: translateY(-8px);
  border-color: var(--purple-light);
}

.tv-img {
  max-width: 100%;
  border-radius: 20px;
}

/* app cards - LARGER ICON SIZE */
.app-card-gold {
  background: var(--card-white);
  border-radius: 20px;
  padding: 20px 12px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  animation: floatSubtle 4s infinite ease-in-out;
  transition: none;
}

@keyframes floatSubtle {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0px);
  }
}

.app-card-gold:hover {
  border-color: var(--border-light);
  transform: none;
  animation: floatSubtle 4s infinite ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.app-icon-circle-gold {
  width: 90px;
  height: 90px;
  margin: 0 auto 12px;
  background: #E8EEF8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}

.app-card-gold:hover .app-icon-circle-gold {
  background: #E8EEF8;
}

.app-card-gold:hover .app-icon-circle-gold img {
  filter: none;
}

.app-icon-circle-gold img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.btn-app-gold {
  background: #E8EEF8;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.7rem;
  color: var(--navy);
  text-decoration: none;
  margin: 3px;
  display: inline-block;
  font-weight: 500;
  transition: 0.2s;
}

.btn-app-gold:hover {
  background: var(--navy);
  color: white;
}

/* pricing */
.pricing-card-gold {
  background: var(--card-white);
  border-radius: 28px;
  padding: 28px 20px;
  border: 1px solid var(--border-light);
  transition: all 0.3s;
  height: 100%;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.pricing-card-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 240, 0.1) 0%, rgba(91, 46, 158, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.pricing-card-gold:hover::after {
  opacity: 1;
}

.pricing-card-gold:hover {
  transform: translateY(-8px);
  border-color: var(--navy);
}

.price-amount-gold {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  transition: text-shadow 0.3s;
}

.pricing-card-gold:hover .price-amount-gold {
  text-shadow: 0 0 10px rgba(91, 46, 158, 0.3);
}

.price-period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.price-features {
  list-style: none;
  padding: 0;
}

.price-features li {
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
}

.price-features li:before {
  content: "✓";
  color: var(--navy);
  font-weight: bold;
}

/* FAQ */
.faq-item-gold {
  background: var(--card-white);
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: 0.3s;
}

.faq-item-gold:hover {
  border-color: var(--purple-light);
}

.faq-question-gold {
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  transition: 0.2s;
  color: var(--text-dark);
}

.faq-question-gold:hover {
  background: #E8EEF8;
  padding-left: 28px;
}

.faq-answer-gold {
  padding: 0 24px 20px 24px;
  color: var(--text-muted);
  display: none;
}

.faq-item-gold.active .faq-answer-gold {
  display: block;
}

/* feature icons */
.feature-icon {
  width: 100px;
  height: auto;
  transition: all 0.3s;
  filter: none;
  opacity: 1;
}

.feature-item-gold:hover .feature-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(91, 46, 158, 0.4));
}

/* footer */
.footer-gold {
  background: var(--gradient-hero);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  padding: 50px 0 30px;
  margin-top: 40px;
  position: relative;
  color: white;
}

.footer-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.footer-gold h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}

.footer-links-gold {
  list-style: none;
  padding: 0;
}

.footer-links-gold li {
  margin-bottom: 0.6rem;
}

.footer-links-gold li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-block;
}

.footer-links-gold li a:hover {
  color: white;
  transform: translateX(5px);
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 30px 0;
}

.copyright-mixed {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.copyright-mixed a {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 1rem;
}

.copyright-mixed a:hover {
  color: white;
}

/* Project name in copyright - PURPLE COLOR */
.highlight-project {
  color: var(--purple-vibrant);
  font-weight: 700;
  text-shadow: 0 0 5px rgba(139, 92, 246, 0.5);
}

/* floating buttons */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  z-index: 100;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
  text-decoration: none;
  animation: glowGreen 1.8s infinite alternate;
}

@keyframes glowGreen {
  0% {
    box-shadow: 0 0 0 0 #25D366;
  }

  100% {
    box-shadow: 0 0 15px 5px #25D366;
  }
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: white;
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 95px;
  background: var(--navy);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  text-decoration: none;
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: scale(1.1);
  background: var(--purple);
}

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

@media (max-width: 768px) {
  .main-title-gold {
    font-size: 2.2rem;
  }

  .stat-item-gold {
    padding: 8px 18px;
  }

  .stat-number-gold {
    font-size: 1.2rem;
  }

  .feature-icon {
    width: 70px;
  }

  .footer-links-gold li a {
    font-size: 0.9rem;
  }

  .footer-gold h5 {
    font-size: 1.1rem;
  }

  .app-icon-circle-gold {
    width: 70px;
    height: 70px;
  }

  .app-icon-circle-gold img {
    width: 45px;
    height: 45px;
  }
}

html,
body {
  overflow-x: hidden;
}

img,
iframe {
  max-width: 100%;
}