/* Modern Homepage Redesign */

/* ===============================
   MODERN HERO SECTION
   =============================== */

.modern-hero-section {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0.95;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

.hero-content {
  position: relative;
  z-index: 3;
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.badge-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Hero Title */
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-title .text-gradient {
  background: #FFFFFF;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #FFFFFF;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
}

/* Modern Buttons */
.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-modern:hover::before {
  opacity: 1;
}

.btn-modern.btn-primary {
  background: var(--white);
  color: var(--primary-purple) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-modern.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  color: var(--primary-purple) !important;
  text-decoration: none;
}

.btn-modern.btn-secondary {
  background: transparent;
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-modern.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: var(--white) !important;
  text-decoration: none;
}

.btn-arrow, .btn-icon {
  transition: transform 0.3s ease;
}

.btn-modern:hover .btn-arrow {
  transform: translateX(4px);
}

/* Trust Indicators */
.hero-trust {
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.6);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
}

.visual-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.visual-background {
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  background: radial-gradient(circle at 50% 50%, rgba(127, 2, 247, 0.15) 0%, rgba(127, 2, 247, 0.05) 50%, transparent 100%);
  filter: blur(40px);
  opacity: 0.6;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.dashboard-preview {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: transparent;
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 20px 40px rgba(127, 2, 247, 0.15),
    0 30px 60px rgba(0, 0, 0, 0.1);
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: linear-gradient(135deg, rgba(127, 2, 247, 0.1) 0%, rgba(27, 20, 75, 0.1) 100%);
  border-radius: 12px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  left: -15%;
  animation-delay: 2s;
}

.card-3 {
  top: 60%;
  right: -5%;
  animation-delay: 4s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.card-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-light);
  color: var(--primary-purple);
}

.card-icon.success {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: var(--white);
}

.card-icon.warning {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: var(--white);
}

.card-text {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.2;
}

.card-subtitle {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.2;
}

/* ===============================
   MODERN FEATURES SECTION
   =============================== */

.modern-features-section {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.modern-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gray-200) 50%, transparent 100%);
}

.features-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.features-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--gray-600);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-light);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(127, 2, 247, 0.1);
  border-color: var(--primary-purple);
}

.feature-icon {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: var(--gradient-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary-purple);
  transition: color 0.4s ease;
}

.feature-card:hover .feature-icon svg {
  color: var(--white);
}

.feature-content {
  position: relative;
  z-index: 2;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
  transition: color 0.4s ease;
}

.feature-card:hover .feature-title {
  color: var(--primary-purple);
}

.feature-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-purple);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.feature-link:hover {
  color: var(--primary-dark);
  text-decoration: none;
  transform: translateX(4px);
}

.feature-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.feature-link:hover svg {
  transform: translateX(2px);
}

/* ===============================
   MODERN PLATFORM SECTION
   =============================== */

.modern-platform-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.modern-platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237F02F7' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.platform-visual {
  position: relative;
}

.visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  transform: scale(1.2);
  margin: 2rem 0;
}

.main-visual {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
}

.main-visual img {
  filter: drop-shadow(0 20px 40px rgba(127, 2, 247, 0.1));
  width: 100%;
  height: auto;
}

/* Stats Cards */
.stats-card {
  position: absolute;
  background: var(--white);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: floatCard 6s ease-in-out infinite;
  min-width: 120px;
}

.stats-1 {
  top: 10%;
  right: -20%;
  animation-delay: 0s;
}

.stats-2 {
  bottom: 20%;
  left: -20%;
  animation-delay: 2s;
}

.stats-3 {
  top: 50%;
  right: -25%;
  animation-delay: 4s;
}

.stats-content {
  text-align: center;
}

.stats-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-purple);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.stats-label {
  font-size: 0.75rem;
  color: var(--gray-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Platform Content */
.platform-content {
  position: relative;
  z-index: 2;
}

.content-badge {
  display: inline-block;
}

.badge-text {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--gradient-light);
  border: 1px solid rgba(127, 2, 247, 0.2);
  border-radius: 50px;
  color: var(--primary-purple);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platform-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-800);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.platform-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 500px;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(127, 2, 247, 0.1);
  border-color: var(--primary-purple);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: var(--gradient-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-purple);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1);
}

.benefit-text {
  flex: 1;
}

.benefit-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.benefit-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* Platform CTA */
.platform-cta {
  margin-top: 2rem;
}

.btn-modern.btn-secondary {
  background: transparent;
  color: var(--primary-purple) !important;
  border: 2px solid var(--primary-purple);
}

.btn-modern.btn-secondary:hover {
  background: var(--primary-purple);
  color: var(--white) !important;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ===============================
   MODERN SOLUTIONS SECTION
   =============================== */

.modern-solutions-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  position: relative;
  overflow: hidden;
}

.modern-solutions-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(127, 2, 247, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.solutions-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--gradient-light);
  border: 1px solid rgba(127, 2, 247, 0.2);
  border-radius: 50px;
  color: var(--primary-purple);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.solutions-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}

.text-gradient-purple {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solutions-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Solutions Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.solution-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(127, 2, 247, 0.15);
  border-color: rgba(127, 2, 247, 0.3);
}

.solution-icon-wrapper {
  flex-shrink: 0;
}

.solution-icon {
  width: 80px;
  height: 80px;
  border-radius: 1.25rem;
  background: var(--gradient-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}

.solution-card:hover .solution-icon {
  background: var(--gradient-primary);
  transform: scale(1.1) rotate(5deg);
}

.solution-icon svg {
  width: 36px;
  height: 36px;
  color: var(--primary-purple);
  transition: color 0.4s ease;
}

.solution-card:hover .solution-icon svg {
  color: var(--white);
}

.solution-content {
  flex: 1;
}

.solution-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0;
  transition: color 0.4s ease;
}

.solution-card:hover .solution-content h3 {
  color: var(--primary-purple);
}

.solution-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-700);
  font-size: 0.9rem;
}

.feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary-purple);
  flex-shrink: 0;
}

/* Solutions CTA */
.solutions-cta {
  text-align: center;
  padding: 3rem;
  background: var(--gradient-light);
  border-radius: 1.5rem;
  border: 1px solid rgba(127, 2, 247, 0.1);
}

.cta-text {
  font-size: 1.25rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

@media (max-width: 1200px) {
  .floating-card,
  .stats-card {
    display: none;
  }
}

@media (max-width: 768px) {
  /* Solutions Section Mobile */
  .modern-solutions-section {
    padding: 4rem 0;
  }
  
  .solutions-title {
    font-size: 2rem;
  }
  
  .solutions-subtitle {
    font-size: 1.125rem;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .solution-card {
    padding: 2rem;
  }
  
  .solution-icon {
    width: 60px;
    height: 60px;
  }
  
  .solution-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .solution-content h3 {
    font-size: 1.25rem;
  }
  
  .solutions-cta {
    padding: 2rem;
  }
  .modern-hero-section {
    min-height: 87vh;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .btn-modern {
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .hero-trust .d-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .features-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .platform-title {
    font-size: 2rem;
  }
  
  .benefits-grid {
    gap: 1rem;
  }
  
  .benefit-item {
    padding: 0.75rem;
  }
}

@media (max-width: 576px) {
  .modern-hero-section {
    min-height: 82vh;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .features-title {
    font-size: 1.75rem;
  }
  
  .platform-title {
    font-size: 1.75rem;
  }
  
  .platform-description {
    font-size: 1rem;
  }
}

/* ===============================
   MODERN FAQS SECTION
   =============================== */

.modern-faqs-section {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.modern-faqs-section .section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.modern-faqs-section .section-title p {
  font-size: 1.125rem;
  text-align: center;
  color: var(--gray-600);
  margin-bottom: 3rem;
}

.modern-faqs-section .question {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.modern-faqs-section .question:hover {
  border-color: var(--primary-purple);
  box-shadow: 0 4px 12px rgba(127, 2, 247, 0.1);
}

.modern-faqs-section .question h5 {
  padding: 1.5rem;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-800);
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.modern-faqs-section .question h5::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-purple);
  transition: transform 0.3s ease;
}

.modern-faqs-section .question.active h5::after {
  transform: translateY(-50%) rotate(45deg);
}

.modern-faqs-section .question h5:hover {
  color: var(--primary-purple);
}

.modern-faqs-section .question p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: var(--gray-600);
  line-height: 1.6;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Mobile FAQ fixes */
@media (max-width: 767px) {
  .modern-faqs-section .question,
  .modern-faqs-section .question h5,
  .modern-faqs-section .question p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* ===============================
   COMPACT PRICING SECTION STYLES
   =============================== */

/* Base pricing section */
.compact-pricing-section {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}

/* Section spacing modifiers */
.compact-pricing-section .compact-mb-70 {
  margin-bottom: 0.5rem;
}

.compact-pricing-section .compact-mb-50 {
  margin-bottom: 0.25rem;
}

.compact-pricing-section .compact-mt-30 {
  margin-top: 0.25rem;
}

/* Pricing card container */
.compact-pricing-cards {
  --bs-gutter-y: 0.25rem;
  --bs-gutter-x: 0.75rem;
}

/* Individual pricing card */
.compact-pricing-card {
  padding: 1rem;
  margin-bottom: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

/* Card header */
.compact-pricing-card .compact-card-header {
  padding-bottom: 0;
  margin-bottom: 0;
  text-align: center;
}

/* Price display */
.compact-pricing-card .compact-price-amount {
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 800;
  color: #1f2937;
  display: inline;
  margin: 0.5rem 0;
}

.compact-pricing-card .compact-price-period {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 400;
  display: inline;
  margin-left: 0.25rem;
  line-height: 1.4;
  vertical-align: baseline;
}

/* Features list */
.compact-pricing-card .compact-features-list {
  margin-top: 0.75rem;
  padding-top: 0.15rem;
  border-top: 1px solid #f3f4f6;
  flex-grow: 1;
}

.compact-pricing-card .compact-features-list li {
  padding: 0.375rem 0;
  margin-bottom: 0;
}

.compact-pricing-card .compact-features-list p {
  margin-bottom: 0;
  font-size: 0.8rem;
  line-height: 1.3;
  display: flex;
  align-items: center;
}

/* Trust indicators */
.compact-trust-indicators {
  gap: 1rem;
  margin-bottom: 1rem;
}

.compact-trust-indicators span {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Compact buttons - Use proper primary button styling */
.compact-pricing-btn {
  background-color: #7F02F7;
  border-color: #7F02F7;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: all 0.2s ease;
  margin-top: 1rem;
  border: 1px solid #7F02F7;
  cursor: pointer;
}

.compact-pricing-btn:hover,
.compact-pricing-btn:focus,
.compact-pricing-btn:active,
.compact-pricing-btn.active {
  background-color: #6a00d2;
  border-color: #6a00d2;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(127, 2, 247, 0.3);
}

.compact-pricing-btn:visited {
  color: #fff;
}

/* Toggle switch */
.compact-toggle-btn {
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}

.compact-toggle-text {
  font-size: 0.8rem;
  color: #374151;
}

/* Highlighted plan */
.compact-highlighted-plan {
  transform: none;
  border-color: #7f02f7;
  box-shadow: 0 4px 12px rgba(127, 2, 247, 0.15);
}

/* Popular badge */
.compact-popular-badge {
  top: -6px;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  border-radius: 8px;
  font-weight: 600;
}

/* Plan tags */
.compact-plan-tag {
  font-size: 0.65rem;
  padding: 0.2rem 0.4rem;
  margin: 0.5rem 0;
}

/* Remove excessive spacing from original classes */
.compact-pricing-section .mb-4 {
  margin-bottom: 0.5rem;
}

.compact-pricing-section .mt-25 {
  margin-top: 0.5rem;
}

.compact-pricing-section .mb-3 {
  margin-bottom: 0.25rem;
}

.compact-pricing-section .mt-2 {
  margin-top: 0.25rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .compact-pricing-section {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  
  .compact-pricing-card {
    padding: 0.75rem;
    margin-bottom: 0.75rem;
  }
  
  .compact-pricing-card .compact-price-amount {
    font-size: 1.875rem;
  }
  
  .compact-pricing-card .compact-price-period {
    font-size: 0.85rem;
    margin-left: 0.2rem;
  }
  
  .compact-trust-indicators {
    gap: 0.5rem;
    flex-direction: column;
    align-items: center;
  }
  
  .compact-pricing-btn {
    padding: 0.625rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .compact-pricing-section {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  
  .compact-pricing-card {
    padding: 0.5rem;
  }
  
  .compact-pricing-cards {
    --bs-gutter-x: 0.5rem;
  }
}

/* ===============================
   MODERN FOOTER DESIGN
   =============================== */

.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

.footer .footer-info {
  margin-bottom: 2rem;
}

.footer .footer-logo,
.footer .footer-logo-dark {
  max-height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer .footer-links {
  margin-bottom: 2rem;
}

.footer .foo-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .foo-links li {
  margin: 0;
}

.footer .foo-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.footer .foo-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #7f02f7;
  transition: width 0.3s ease;
}

.footer .foo-links a:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}

.footer .foo-links a:hover::after {
  width: 100%;
}

.footer .footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.footer .footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

/* Mobile Footer */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1.5rem;
    margin-top: 2rem;
  }
  
  .footer .foo-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer .foo-links a {
    font-size: 0.85rem;
  }
  
  .footer .footer-copyright {
    padding-top: 1rem;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 1.5rem 0 1rem;
  }
  
  .footer .footer-info {
    margin-bottom: 1.5rem;
  }
  
  .footer .footer-links {
    margin-bottom: 1.5rem;
  }
}

/* ===============================
   COMPREHENSIVE MOBILE OPTIMIZATIONS
   =============================== */

/* Mobile Hero Section */
@media (max-width: 767.98px) {
  .modern-hero-section {
    min-height: 85vh;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .hero-badge {
    margin-bottom: 1.5rem;
  }
  
  .badge-pill {
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .hero-cta {
    margin-bottom: 2rem;
  }
  
  .hero-cta .d-flex {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
  
  .btn-modern {
    min-height: 48px;
    padding: 12px 24px;
    font-size: 16px;
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .trust-item {
    font-size: 0.875rem;
  }
  
  .trust-icon {
    margin-right: 0.5rem;
  }
  
  /* Hero Visual Mobile */
  .hero-visual {
    margin-top: 2rem;
  }
  
  .visual-container {
    max-width: 100%;
  }
  
  .video-container {
    border-radius: 8px;
  }
}

/* Small Mobile Devices */
@media (max-width: 575.98px) {
  .modern-hero-section {
    min-height: 80vh;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .hero-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .badge-pill {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  .btn-modern {
    padding: 14px 20px;
    font-size: 15px;
  }
  
  .trust-item {
    font-size: 0.8rem;
  }
  
  .hero-trust .d-flex {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
}

/* Mobile Features Section */
@media (max-width: 767.98px) {
  .features-section {
    padding: 3rem 0;
  }
  
  .feature-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }
  
  .feature-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .feature-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  
  .feature-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

/* Mobile Pricing Section */
@media (max-width: 767.98px) {
  .pricing-section {
    padding: 3rem 0;
  }
  
  .pricing-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .pricing-header {
    margin-bottom: 1.5rem;
  }
  
  .pricing-price {
    font-size: 2rem;
  }
  
  .pricing-features {
    margin-bottom: 1.5rem;
  }
  
  .pricing-feature {
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }
  
  .btn-pricing {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }
}

/* Mobile Touch Improvements */
@media (max-width: 991.98px) {
  /* Larger touch targets for all interactive elements */
  a, button, .btn, input, select, textarea {
    min-height: 44px;
  }
  
  /* Better spacing for mobile forms */
  .form-group,
  .mb-3,
  .mb-4 {
    margin-bottom: 1.5rem;
  }
  
  /* Improve mobile typography */
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }
  h5 { font-size: 1.125rem; }
  h6 { font-size: 1rem; }
  
  /* Prevent horizontal scroll */
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }
  
  .col,
  [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* Mobile Navigation Improvements */
@media (max-width: 991.98px) {
  .navbar-toggler {
    min-height: 44px;
    min-width: 44px;
    padding: 8px;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    font-size: 16px;
  }
  
  .dropdown-menu {
    min-width: 100%;
    border-radius: 8px;
    padding: 0.5rem 0;
  }
  
  .dropdown-item {
    padding: 0.75rem 1rem;
    font-size: 15px;
  }
}