/* Global Styles */
:root {
  --primary-color: #0066cc;
  --secondary-color: #f8f9fa;
  --dark-color: #212529;
  --light-color: #ffffff;
  --accent-color: #ff6b6b;
  --text-color: #333333;
  --border-color: #e9ecef;
  --section-padding: 80px 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.no-dec:hover {
  text-decoration: none;
}

.containerPadding {
  padding: var(--section-padding);
}

.btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.btn-dark {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
}

.btn-dark:hover {
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

.section-label {
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
  font-weight: 700;
}

.navbarLogo {
  height: 40px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-color);
  padding: 0.5rem 1rem;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* Hero Section */
.heroImage {
  background-color: var(--secondary-color);
  padding: 120px 0 80px;
  position: relative;
}

.heroImage-contentWrapper {
  max-width: 600px;
  margin: 0 auto;
}

.heroImage h1 {
  margin-bottom: 1.5rem;
}

.heroImage p {
  margin-bottom: 2rem;
}

.hero-video-container {
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Social Proof Section */
.socialProof {
  background-color: var(--light-color);
  padding: 40px 0;
}

.socialProof h3 {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #666;
}

.socialProof img {
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.socialProof img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Benefits Section */
.benefits {
  background-color: var(--secondary-color);
}

.benefit-card {
  background-color: var(--light-color);
  border-radius: 8px;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* How To Section */
.howTo {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.howToIcon-wrapper {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.howToIcon-wrapper img {
  width: 40px;
  height: 40px;
}

/* Product Image Section */
.productImage {
  background-color: var(--light-color);
}

.feature-icon {
  width: 40px;
  height: 40px;
}

/* Stats Section */
.statsSection {
  background-color: var(--secondary-color);
}

.stat-card {
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Plans Section */
.plansSection {
  background-color: var(--light-color);
}

.plan-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.plan-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-card.popular {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}

.price-monthly {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.included-title {
  font-weight: 600;
  margin: 1.5rem 0 1rem;
}

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

.plan-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.plan-features li img {
  width: 24px;
  height: 24px;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

/* Testimonials Section */
.testimonialSection {
  background-color: var(--secondary-color);
}

.testimonial-card {
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.testimonial-video {
  position: relative;
  cursor: pointer;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.testimonial-video:hover .play-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-info {
  padding: 1.5rem;
  text-align: center;
}

.rating {
  color: #ffc107;
  margin-bottom: 0.5rem;
}

/* FAQ Section */
.faqSection {
  background-color: var(--light-color);
}

.accordion-button:not(.collapsed) {
  background-color: rgba(0, 102, 204, 0.05);
  color: var(--primary-color);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 102, 204, 0.1);
}

/* Footer Section */
.footerSection {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 60px 0 0;
}

.footerLogo {
  height: 40px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  text-decoration: none;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.social-icon img {
  width: 20px;
  height: 20px;
}

.footerBottom-section {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
}

.footerBottom-section p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .heroImage {
    padding: 100px 0 60px;
  }
  
  .hero-video-container {
    margin-top: 2rem;
  }
  
  .hero-video {
    max-height: 400px;
  }
  
  .containerPadding {
    padding: 60px 0;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .heroImage {
    padding: 80px 0 40px;
  }
  
  .hero-video {
    max-height: 300px;
  }
  
  .containerPadding {
    padding: 40px 0;
  }
  
  .benefit-card, .plan-card, .testimonial-card {
    margin-bottom: 1.5rem;
  }
}