/* Import the Work Sans font and add Poppins */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

/* CSS Variables for Colors */
:root {
  --black: #121212;
  --near-black: #181818;
  --lime: #C2E812;
  --lime-muted: rgba(194, 232, 18, 0.8);
  --purple: #8500FF;
  --gray: #e9e9e9;
  --white: #FFFFFF;
  --light-gray: #F2F4F3;
  --dark-gray: #1E1E1E;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-subtle: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Work Sans', sans-serif;
  background-color: var(--near-black);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Add style for when mobile menu is open to prevent scrolling */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -1.2px;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
  display: block;
  text-align: center;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--gray);
  font-weight: 400;
  font-size: 1rem;
}

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

a:hover {
  color: var(--lime);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header and Navigation */
.header {
  padding: 25px 0;
  background-color: var(--near-black);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--lime);
  transition: width 0.3s ease;
}

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

.nav-link:hover:after {
  width: 100%;
}

.btn-register {
  display: inline-block;
  background-color: var(--lime);
  color: var(--black);
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-register:hover {
  background-color: var(--lime-muted);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background-color: var(--black);
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

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

.hero-content.centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1.2px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 50px;
  line-height: 1.6;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
}

.cta-btn.primary {
  background-color: var(--lime);
  color: var(--black);
  border: none;
}

.cta-btn.primary:hover {
  background-color: var(--lime-muted);
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--gray);
}

.cta-btn.secondary:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works-section {
  background-color: var(--black);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
}

.how-it-works-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
  display: block;
  color: var(--white);
  letter-spacing: -1px;
  font-weight: 800;
}

.how-it-works-line {
  width: 50px;
  height: 3px;
  background-color: var(--lime);
  margin: 10px auto 60px auto;
}

.how-it-works-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.step-card {
  background-color: var(--near-black);
  padding: 40px 30px;
  width: 100%;
  max-width: 300px;
  position: relative;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.1;
  line-height: 1;
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
  z-index: 2;
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -1.2px;
  text-transform: uppercase;
}

.step-description {
  color: var(--gray);
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
  background-color: var(--black);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
  display: block;
  text-align: center;
}

.highlight-bar {
  width: 50px;
  height: 3px;
  background-color: var(--lime);
  margin-top: 10px;
  margin-bottom: 60px;
}

.highlight-bar.center {
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.benefit-card {
  background-color: var(--near-black);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.benefit-icon {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.benefit-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Features Section */
.features-section {
  background-color: var(--black);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.feature-card {
  background-color: var(--near-black);
  padding: 40px 30px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-card h3 {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 1.2rem;
  text-transform: uppercase;
  position: relative;
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.feature-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-list {
  margin-top: 1.5rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--gray);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--lime-muted);
  font-size: 0.9rem;
}

/* Nutrition (Features Alt) Section */
.features-alt-section {
  background-color: var(--black);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
}

.features-container {
  position: relative;
  z-index: 2;
}

.feature-large-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: stretch;
}

.feature-content {
  background-color: var(--near-black);
  padding: 40px 30px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.feature-content:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-content h3 {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.feature-content p {
  color: var(--gray);
  margin-bottom: 1rem;
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--black);
  padding: 120px 0;
  position: relative;
  overflow: visible;
  text-align: center;
}

.testimonial-slider-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 50px 40px;
  background-color: var(--near-black);
  position: relative;
  box-shadow: var(--shadow-subtle);
}

.quote-mark {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 4rem;
  line-height: 1;
  color: var(--white);
  opacity: 0.07;
  font-weight: 600;
}

.quote {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  color: var(--white);
  position: relative;
  z-index: 2;
  font-weight: 400;
}

.author-info {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
  opacity: 0.9;
}

.author {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.author-detail {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 2px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--black);
  color: var(--white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-subtle);
  z-index: 10;
  transition: var(--transition);
}

.slider-arrow:hover {
  background-color: var(--near-black);
}

.left-arrow {
  left: 0;
}

.right-arrow {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.dot {
  width: 25px;
  height: 2px;
  background-color: var(--gray);
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--white);
  width: 35px;
}

/* Price Toggle Switch */
.price-toggle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.toggle-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.price-toggle-label {
  color: var(--white);
  font-size: 0.95rem;
  margin: 0 15px;
  font-weight: 500;
  cursor: pointer;
}

.price-toggle-switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 32px;
}

.price-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.price-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e9e9e9;
  transition: .3s;
  border-radius: 34px;
}

.price-toggle-slider:before {
  position: absolute;
  content: "";
  height: 28px;
  width: 28px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked + .price-toggle-slider {
  background-color: var(--lime);
}

input:checked + .price-toggle-slider:before {
  transform: translateX(24px);
}

.price-notice {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 8px;
  font-style: italic;
  opacity: 0.8;
}

/* Pricing Section */
.pricing-section {
  background-color: var(--black);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--near-black);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  transform: scale(1.03);
  box-shadow: var(--shadow);
  z-index: 5;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-3px);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background-color: var(--lime-muted);
  color: var(--black);
  padding: 6px 15px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}

.pricing-header {
  padding: 40px 30px 30px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-header h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.pricing-cost {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
}

.period {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.pricing-features {
  padding: 30px;
  flex-grow: 1;
}

.pricing-features ul li {
  margin-bottom: 1rem;
  padding-left: 1.8rem;
  position: relative;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-features ul li i {
  position: absolute;
  left: 0;
  color: var(--white);
  opacity: 0.7;
}

.pricing-cta {
  padding: 0 30px 30px;
  text-align: center;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 1rem;
  text-align: center;
}

/* FAQ Section */
.faq-section {
  background-color: var(--black);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--near-black);
  margin-bottom: 15px;
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  padding: 20px 30px;
  background-color: transparent;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  transition: var(--transition);
  font-family: 'Work Sans', sans-serif;
}

.faq-toggle:hover {
  color: var(--lime-muted);
}

.toggle-icon {
  font-size: 1.2rem;
  color: var(--white);
  opacity: 0.5;
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 30px 30px;
}

.faq-answer p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* CTA Final Section */
.cta-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.cta-final-section {
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-final-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -1.2px;
  text-transform: uppercase;
}

.cta-final-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--gray);
}

/* Footer Styles */
footer {
  background-color: var(--black);
  color: var(--white);
  padding: 60px 0 30px;
  position: relative;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  height: 40px;
  margin: 0 auto 20px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-link {
  color: var(--gray);
  transition: var(--transition);
  position: relative;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
  opacity: 0.7;
}

.social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}



/* Store Links Styles */
.store-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.store-link {
  display: inline-block;
  transition: var(--transition);
}

.store-link:hover {
  transform: translateY(-3px);
}

.store-icon {
  height: 50px;
  width: auto;
  display: block;
  opacity: 0.8;
  transition: var(--transition);
}

.store-icon:hover {
  opacity: 1;
}

.copyright {
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 30px;
}

.footer-divider {
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 30px auto;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background-color: var(--near-black);
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  z-index: 1000;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
}

.mobile-menu.active {
  right: 0;
  visibility: visible;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-link {
  display: block;
  padding: 15px 0;
  color: var(--gray);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

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

/* Scroll-to-top Button */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--near-black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
}

.scroll-top.active {
  opacity: 0.7;
  visibility: visible;
}

.scroll-top:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* Media Queries */
@media (max-width: 1024px) {
  h1 {
    font-size: 3.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 3.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
  }
  
  .pricing-card.featured {
    transform: scale(1.02);
  }
  
  .pricing-card.featured:hover {
    transform: scale(1.02) translateY(-3px);
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
  
  .container {
    padding: 0 30px;
  }
  
  h1 {
    font-size: 2.8rem;
  }
  
  .hero {
    padding: 140px 0 80px;
  }
  
  .hero-content h1 {
    font-size: 2.6rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-btn {
    width: 100%;
  }
  
  .step-card,
  .feature-card,
  .feature-content,
  .pricing-card {
    min-width: 100%;
  }
  
  .testimonial-slider-wrapper {
    padding: 0 20px;
  }
  
  .left-arrow {
    left: 0;
  }
  
  .right-arrow {
    right: 0;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-3px);
  }
  
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-container {
    padding: 0 20px;
  }
  
  /* Make sure mobile menu is properly sized */
  .mobile-menu {
    width: 85%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.4rem;
  }
  
  .section-title, 
  .how-it-works-title,
  .cta-final-section h2 {
    font-size: 1.8rem;
    letter-spacing: -1.0px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .testimonial-slide {
    padding: 30px 20px;
  }
  
  .quote {
    font-size: 1rem;
    padding-top: 1.5rem;
  }
  
  .step-number {
    font-size: 3.5rem;
  }
  
  .benefit-icon {
    font-size: 1.6rem;
  }
  
  .cta-final-section p {
    font-size: 1rem;
  }
  
  .pricing-header h3,
  .feature-card h3,
  .feature-content h3,
  .step-title {
    font-size: 1.1rem;
    letter-spacing: -1.0px;
  }
  
  .price {
    font-size: 2rem;
  }
  
  /* Ensure mobile menu is full width on very small screens */
  .mobile-menu {
    width: 100%;
    max-width: none;
  }
}

/* Video Promo Section */
.video-promo-section {
  background-color: var(--black);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.video-container {
  max-width: 850px;
  margin: 40px auto 0;
  position: relative;
  z-index: 2;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

.video-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid rgba(163, 230, 53, 0.7);
  border-radius: 10px;
  pointer-events: none;
  z-index: 1;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-description {
  text-align: center;
  margin-top: 35px;
}

.video-description p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #e5e7eb;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.video-description .cta-btn {
  padding: 14px 32px;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.bg-circle {
  position: absolute;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.07) 0%, rgba(163, 230, 53, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.circle-1 {
  width: 350px;
  height: 350px;
  top: -100px;
  left: -150px;
}

.circle-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  right: -100px;
}

/* Add responsive styles for video section */
@media (max-width: 768px) {
  .video-wrapper {
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  }
  
  .video-description p {
    font-size: 1rem;
  }
  
  .video-description .cta-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .video-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
}