:root {
  --primary-sky: #0D6EFD;
  --accent-gold: #FFC107;
  --accent-blue: #0D6EFD;
  --text-dark: #1E1E2F;
  --text-muted: #5A5A72;
  --bg-light: #F8F9FC;
  --card-bg: #FFFFFF;
  --border-light: #E9ECF1;
  --shadow-sm: 0 10px 25px -8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 15px 35px -10px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
  --btn-gradient: linear-gradient(135deg, #0D6EFD, #00A3FF);
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --dark-bg: #1a1d23;
  --dark-text: #e0e0e0;
  --dark-hover: #ffffff;
  --dark-active: #0D6EFD;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg-light);
  font-family: var(--font-body);
  color: var(--text-dark);
  margin: 0;
  overflow-x: hidden;
  line-height: 1.6;
}

.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(13, 110, 253, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(13, 110, 253, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

#spinner {
  position: fixed;
  inset: 0;
  background: #F8F9FC;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.elegant-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(13, 110, 253, 0.15);
  border-top: 3px solid #0D6EFD;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Dark Navbar */
.navbar-elegant {
  background: var(--dark-bg) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0;
}

.navbar-brand img {
  height: 60px;
  filter: brightness(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-link-elegant {
  color: var(--dark-text) !important;
  font-weight: 600;
  margin: 0 0.4rem;
  transition: 0.25s;
  font-family: var(--font-heading);
  letter-spacing: 0.4px;
  font-size: 0.9rem;
}

.nav-link-elegant:hover {
  color: var(--dark-hover) !important;
}

.nav-link-elegant.active {
  color: var(--dark-active) !important;
  font-weight: 700;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.btn-primary-elegant {
  background: var(--btn-gradient);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 1.9rem;
  border-radius: 40px;
  box-shadow: 0 8px 18px rgba(13, 110, 253, 0.25);
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 0.9rem;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary-elegant:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(13, 110, 253, 0.35);
  color: #fff;
}

.btn-free-trial-royal {
  background: transparent;
  border: 2px solid #0D6EFD;
  color: #0D6EFD;
  font-weight: 700;
  padding: 0.65rem 1.9rem;
  border-radius: 40px;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.btn-free-trial-royal:hover {
  background: #0D6EFD;
  color: #fff;
  box-shadow: 0 8px 18px rgba(13, 110, 253, 0.25);
}

/* Hero - visible image */
.hero-elegant {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0c10;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: brightness(0.8) contrast(1.1);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem;
}

.hero-text-box {
  max-width: 700px;
  margin-left: 5%;
  background: rgba(26, 29, 35, 0.85);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
}

.hero-title-wrapper {
  color: #0D6EFD;
  font-family: var(--font-heading);
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.main-title-elegant {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #ffffff, #0D6EFD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-sub-elegant {
  font-size: 1.5rem;
  color: #0D6EFD;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-desc-elegant {
  color: #b0b8c1;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.stats-wrapper {
  background: #FFFFFF;
  border-top: 1px solid #E9ECF1;
  border-bottom: 1px solid #E9ECF1;
  padding: 1.8rem 0;
  margin-top: -2.5rem;
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-card {
  text-align: center;
}

.stat-number-elegant {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #0D6EFD;
}

.stat-label {
  display: block;
  color: #5A5A72;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.stat-divider {
  width: 2px;
  height: 35px;
  background: linear-gradient(to bottom, transparent, #0D6EFD, transparent);
}

.whatsapp-stat a {
  color: #0D6EFD;
  text-decoration: none;
}

.glass-card-elegant {
  background: #FFFFFF;
  border: 1px solid #E9ECF1;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.section-header-elegant h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: #1E1E2F;
  text-align: center;
}

.section-underline-elegant {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #0D6EFD, #00A3FF);
  margin: 0.8rem auto 2rem;
  border-radius: 4px;
}

.apps-grid-container {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.apps-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
}

.app-card-elegant {
  background: #FFFFFF;
  border: 1px solid #E9ECF1;
  border-radius: 24px;
  padding: 1.8rem 1.2rem;
  width: 280px;
  text-align: center;
  transition: 0.3s;
  box-shadow: var(--shadow-sm);
}

.app-card-elegant:hover {
  transform: translateY(-5px);
  border-color: #0D6EFD;
  box-shadow: 0 18px 28px rgba(13, 110, 253, 0.08);
}

.app-icon-elegant {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
}

.btn-app-elegant {
  background: rgba(13, 110, 253, 0.05);
  border: 1px solid #0D6EFD;
  color: #0D6EFD;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin: 0.2rem;
  display: inline-block;
  text-decoration: none;
  transition: 0.2s;
}

.btn-app-elegant:hover {
  background: #0D6EFD;
  color: #fff;
}

/* Professional Pricing Cards */
.pricing-section {
  padding: 4rem 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-header h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: #1E1E2F;
  margin-bottom: 0.5rem;
}

.pricing-grid-professional {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
}

.pricing-card-professional {
  background: #FFFFFF;
  border: 1px solid #E9ECF1;
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  width: 260px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.pricing-card-professional:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #0D6EFD;
}

.price-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E9ECF1;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0D6EFD;
  font-family: var(--font-heading);
  line-height: 1;
}

.price-currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.price-period {
  color: #5A5A72;
  font-size: 0.95rem;
  margin-top: 0.3rem;
}

.price-features-elegant {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem 0;
  text-align: left;
}

.price-features-elegant li {
  color: #4A4A68;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid #F8F9FC;
}

.price-features-elegant li i {
  color: #0D6EFD;
  margin-right: 0.5rem;
}

.btn-price-professional {
  background: var(--btn-gradient);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  width: 100%;
}

.btn-price-professional:hover {
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
  color: #fff;
}

/* Professional Features Grid */
.features-section {
  padding: 4rem 0;
}

.feature-grid-elegant {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.feature-item-elegant {
  background: #FFFFFF;
  border: 1px solid #E9ECF1;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  width: 160px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.feature-item-elegant:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #0D6EFD;
}

.feature-item-elegant img {
  width: 90px;
  height: 90px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.feature-name {
  font-weight: 600;
  color: #1E1E2F;
  font-size: 1rem;
}

.faq-item-new {
  background: #FFFFFF;
  border: 1px solid #E9ECF1;
  border-radius: 16px;
  margin-bottom: 1rem;
  padding: 1.2rem;
  transition: 0.3s;
}

.faq-item-new:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question-new {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: #1E1E2F;
  cursor: pointer;
  align-items: center;
}

.faq-answer-new {
  display: none;
  color: #5A5A72;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid #E9ECF1;
}

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

/* Dark Footer - blue accents */
.footer-elegant {
  background: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0 2rem;
  color: #b0b8c1;
}

.footer-heading-elegant {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0D6EFD;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links-elegant li {
  margin-bottom: 0.7rem;
}

.footer-links-elegant a {
  color: #b0b8c1;
  text-decoration: none;
  transition: 0.2s;
  font-size: 0.9rem;
}

.footer-links-elegant a:hover {
  color: #0D6EFD;
  padding-left: 5px;
}

.footer-links-elegant i {
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.footer-app-box img {
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.footer-app-box img:hover {
  transform: scale(1.05);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  margin-top: 2rem;
  color: #6c757d;
}

.footer-copyright a {
  color: #0D6EFD;
  text-decoration: none;
}

.footer-copyright strong {
  color: #0D6EFD;
}

.whatsapp-float-elegant {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #fff;
  border: 2px solid #0D6EFD;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  color: #0D6EFD;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.15);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.whatsapp-float-elegant:hover {
  background: #0D6EFD;
  color: #fff;
}

.back-to-top-elegant {
  position: fixed;
  bottom: 90px;
  right: 25px;
  background: #0D6EFD;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  z-index: 998;
  box-shadow: 0 6px 14px rgba(13, 110, 253, 0.3);
  text-decoration: none;
}

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

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

  .hero-text-box {
    margin-left: 0;
  }

  .stats-grid {
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .pricing-card-professional {
    width: 100%;
    max-width: 300px;
  }

  .feature-item-elegant {
    width: 140px;
  }
}