/* ========== POP PLAYER - LIGHT BACKGROUND | CUSTOMER PLAN WITHOUT EXTRA SAVE OPTIONS ========== */
/* POP Colors: Coral Red (#DC2626), Teal (#00B4D8), Amber (#FFB703) */

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

body {
  font-family: 'Inter', sans-serif;
  background: #FFFFFF;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  color: #1E293B;
  overflow-x: hidden;
}

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

.elegant-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(220, 38, 38, 0.2);
  border-top: 4px solid #DC2626;
  border-radius: 50%;
  animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

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

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

/* Navbar - Light Background */
.navbar-elegant {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(0px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #E2E8F0;
}

.nav-link-elegant {
  color: #1E293B !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: 0.3s;
  font-family: 'Inter', sans-serif;
}

.nav-link-elegant:hover,
.nav-link-elegant.active {
  color: #DC2626 !important;
}

.btn-blue {
  background: linear-gradient(95deg, #DC2626, #FF6B5B);
  color: white;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  border: none;
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
  color: white;
}

.btn-outline-red {
  background: transparent;
  border: 2px solid #00B4D8;
  color: #00B4D8;
  font-weight: 600;
  padding: 0.5rem 1.4rem;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline-red:hover {
  background: #00B4D8;
  color: white;
  transform: translateY(-2px);
}

.btn-red {
  background: #FFB703;
  color: #1E293B;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 60px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 6px 15px rgba(255, 183, 3, 0.3);
}

.btn-red:hover {
  background: #e6a500;
  transform: scale(1.02);
  color: #1E293B;
}

/* Hero Section - Light background, hero image opacity: 1 (fully visible) */
.hero-fullscreen {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 3rem 1rem;
  background: #FEF9F0;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1 !important;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  padding: 2rem 2rem;
  border-radius: 48px;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.hero-title-wrapper {
  font-size: 1.2rem;
  letter-spacing: 6px;
  font-weight: 600;
  color: #DC2626;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.main-title-elegant {
  font-size: 5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #DC2626, #00B4D8, #FFB703);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  font-family: 'Bree Serif', serif;
}

.title-sub-elegant {
  font-size: 1.8rem;
  font-weight: 500;
  color: #00B4D8;
  margin-bottom: 1.2rem;
}

.hero-desc-elegant {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #475569;
}

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

  .title-sub-elegant {
    font-size: 1.2rem;
  }

  .hero-content {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.85);
  }
}

/* Stats Block - Light Card */
.stats-wrapper {
  padding: 2rem 0;
  background: #FFFFFF;
}

.stats-modern {
  background: white;
  border-radius: 70px;
  padding: 1.5rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

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

.stat-card {
  padding: 0.5rem 1.2rem;
  text-align: center;
}

.stat-number-elegant {
  font-size: 1.8rem;
  font-weight: 800;
  color: #DC2626;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748B;
}

.stat-divider {
  width: 1px;
  background: #E2E8F0;
}

.whatsapp-stat a {
  color: #00B4D8;
  text-decoration: none;
}

/* Glass Cards - Light Mode */
.glass-card-elegant {
  background: white;
  border-radius: 48px;
  padding: 2rem;
  border: 1px solid #E2E8F0;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.glass-card-elegant:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #FFB703;
}

/* App Cards - Larger Elements */
.app-card-elegant {
  background: white;
  border-radius: 32px;
  padding: 2rem 1.2rem;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.app-card-elegant:hover {
  transform: translateY(-8px);
  border-color: #DC2626;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.app-icon-elegant {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1.2rem;
}

.app-card-elegant h6 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1E293B;
}

.btn-app-elegant {
  background: #00B4D8;
  color: white;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-size: 0.9rem;
  text-decoration: none;
  margin: 0.3rem;
  display: inline-block;
  transition: 0.2s;
}

.btn-app-elegant:hover {
  background: #FFB703;
  color: #1E293B;
  transform: scale(1.02);
}

/* Pricing Cards - Clean without save options */
.pricing-card-professional {
  background: white;
  border-radius: 36px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card-professional:hover {
  transform: scale(1.02);
  border-color: #DC2626;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.price-header {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: #DC2626;
  display: inline-block;
}

.price-period {
  font-size: 1rem;
  color: #64748B;
  margin-top: 0.25rem;
}

.price-features-elegant {
  text-align: left;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.price-features-elegant li {
  margin: 0.8rem 0;
  font-size: 0.95rem;
  color: #334155;
  list-style: none;
  padding-left: 0;
}

/* FAQ - Light */
.faq-item-new {
  background: white;
  border-radius: 24px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: 0.2s;
  border: 1px solid #E2E8F0;
}

.faq-question-new {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F8FAFC;
  color: #1E293B;
}

.faq-answer-new {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  color: #475569;
}

.faq-item-new.active .faq-answer-new {
  padding: 0 1.5rem 1.2rem;
  max-height: 200px;
}

.faq-item-new.active .fa-chevron-down {
  transform: rotate(180deg);
}

/* Features Icons - Light */
.feature-item-elegant {
  background: #FEF2F2;
  border-radius: 40px;
  padding: 1rem;
  transition: 0.3s;
}

.feature-item-elegant:hover {
  transform: scale(1.05);
  background: #FEE2E2;
}

/* Footer - Color #DC2626 with bold text */
.footer-elegant {
  background: #DC2626;
  padding: 3rem 0 1.5rem;
  border-top: 4px solid #FFB703;
  margin-top: 2rem;
  position: relative;
}

.footer-elegant::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 2px, transparent 2px, transparent 8px);
  pointer-events: none;
}

.footer-heading-elegant {
  color: #FFB703;
  font-weight: 800;
  margin-bottom: 1.2rem;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.footer-heading-elegant::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #FFFFFF;
  border-radius: 3px;
}

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

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

.footer-links-elegant li a {
  color: #FEF2F2;
  text-decoration: none;
  transition: 0.2s;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

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

.footer-copyright {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 183, 3, 0.4);
  color: #FEF2F2;
  font-size: 0.9rem;
  font-weight: 600;
}

.copyright-highlight,
.launch-link {
  color: #FFB703;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s;
}

.copyright-highlight:hover,
.launch-link:hover {
  color: #FFFFFF;
}

/* WhatsApp Float & Back to Top */
.whatsapp-float-elegant {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  z-index: 99;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  font-family: 'Inter', sans-serif;
}

.back-to-top-elegant {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #DC2626;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  opacity: 0;
  transition: 0.3s;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

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

.back-to-top-elegant:hover {
  background: #FFB703;
  color: #DC2626;
}

.text-muted-custom {
  color: #64748B !important;
}

.tv-img {
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

h3,
h2,
h5,
h6 {
  color: #1E293B;
}

.section-header-elegant h2 {
  color: #1E293B;
}

.free-trial-wide .text-muted-custom {
  color: #64748B !important;
}

html,
body {
  overflow-x: hidden;
}

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