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

/* Stats Section */
.stats-section {
  margin-top: 4rem;
  padding: 3rem 0;
  background: rgba(248, 250, 252, 0.5);
  border-radius: 24px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 900px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #1f2937;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 0.25rem;
}

.stat-sublabel {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7280;
}

/* Award Badge Styling */
.award-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}

.award-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.badge-container {
  margin-top: 0.5rem;
}

.product-hunt-logo {
  height: 24px;
  object-fit: contain;
}

/* Rating Stars */
.rating-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.blue-stars .star {
  color: #3b82f6;
}

.orange-stars .star {
  color: #f97316;
}

.rating-logo {
  margin-top: 0.5rem;
}

.capterra-logo,
.g2-logo {
  height: 24px;
  object-fit: contain;
}

/* Responsive Design for Stats */
@media (max-width: 900px) {
  .stats-section {
    margin-top: 3rem;
    padding: 2rem 0;
    border-radius: 16px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .award-icon {
    width: 50px;
    height: 50px;
  }

  .rating-stars {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

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

  .product-hunt-logo,
  .capterra-logo,
  .g2-logo {
    height: 20px;
  }
}

/* Animation on scroll (optional) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stats-section {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Content Sections */
.content-section {
  margin-top: 6rem;
  padding: 4rem 0;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Main centered title */
.main-section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 3rem;
  color: #1f2937;
  text-align: center;
}

.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}

.content-left {
  padding-right: 2rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.gradient-text {
  background: linear-gradient(135deg, #8b5cf6, #a855f7, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.content-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.content-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.content-cta-btn {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  border: 2px solid transparent;
}

.content-cta-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.content-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-image-container {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.content-image {
  width: 100%;
  height: auto;
  display: block;
}

/* YouTube Section Specific Styling */
.youtube-section {
  background: linear-gradient(135deg, #f8fafc 0%, #fce7f3 50%, #fce7f3 100%);
  border: 1px solid #f3e8ff;
}

.youtube-passive-section {
  background: linear-gradient(135deg, #fce7f3 0%, #fef3c7 50%, #fed7aa 100%);
  border: 1px solid #f3e8ff;
}

.monetize-btn {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.monetize-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.youtube-earning-btn {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.youtube-earning-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* Responsive Design for Content Sections */
@media (max-width: 968px) {
  .main-section-title {
    margin-bottom: 2rem;
  }

  .content-row {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .content-row + .content-row {
    margin-top: 2rem;
  }

  .content-left {
    padding-right: 0;
    order: 1;
  }

  .content-right {
    order: 2;
  }

  .content-subtitle {
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 768px) {
  .content-section {
    margin-top: 4rem;
    padding: 3rem 0;
  }

  .content-container {
    padding: 0 1rem;
  }

  .main-section-title {
    margin-bottom: 1.5rem;
  }

  .content-row {
    gap: 2rem;
  }

  .content-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .content-cta-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .content-section {
    margin-top: 3rem;
    padding: 2rem 0;
  }

  .content-image-container {
    border-radius: 12px;
  }
}

/* Animation on scroll for content sections */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-section-title {
  animation: fadeInDown 0.8s ease-out;
}

.content-left {
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.content-right {
  animation: slideInRight 0.8s ease-out 0.4s both;
}

/* Features and Testimonials Section */
.features-testimonials-section {
  margin-top: 6rem;
  padding: 4rem 0;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features-main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4rem;
  color: #1f2937;
  text-align: center;
}

.features-content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Features List Styling */
.features-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.clock-icon {
  background: linear-gradient(135deg, #fce7f3, #f3e8ff);
  color: #8b5cf6;
}

.diamond-icon {
  background: linear-gradient(135deg, #fce7f3, #f3e8ff);
  color: #ec4899;
}

.chart-icon {
  background: linear-gradient(135deg, #dbeafe, #e0f2fe);
  color: #3b82f6;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Testimonials Carousel Styling */
.features-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonials-carousel {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 300px;
  overflow: hidden;
}

.testimonial-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.5s ease;
}

.testimonial-card.active {
  transform: translateX(0);
  opacity: 1;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.testimonial-author {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.testimonial-rating {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rating-source {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 600;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-stars .star {
  color: #3b82f6;
  font-size: 1rem;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #6b7280;
}

.nav-btn:hover {
  background: white;
  color: #3b82f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
  .features-content-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features-right {
    order: -1;
  }

  .testimonials-carousel {
    max-width: 350px;
    height: 280px;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .features-testimonials-section {
    margin-top: 4rem;
    padding: 3rem 0;
  }

  .features-container {
    padding: 0 1rem;
  }

  .features-main-title {
    margin-bottom: 3rem;
  }

  .features-content-row {
    gap: 2rem;
  }

  .feature-item {
    gap: 0.75rem;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .testimonials-carousel {
    max-width: 300px;
    height: 250px;
  }
}

/* Dual Video Section */
.dual-video-section {
  margin-top: 6rem;
  padding: 4rem 0;
}

.dual-video-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.dual-video-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 3rem;
  color: #1f2937;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.video-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.loop-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 3rem 2rem 2rem;
  color: white;
}

.video-text {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-cta-btn {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.video-cta-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* Full Width Video */
.full-width-video {
  margin-top: 3rem;
}

.full-video-wrapper {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.full-video-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.landing-video {
  width: 100%;
  height: auto;
  display: block;
  min-height: 400px;
  object-fit: cover;
}

/* Feature Cards Grid */
.feature-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  border-radius: 24px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.voiceover-card {
  background: linear-gradient(135deg, #ddd6fe, #c4b5fd, #a78bfa);
}

.collaborate-card {
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white;
}

.feature-card-image {
  margin-bottom: 1.5rem;
}

.card-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.feature-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1f2937;
}

.collaborate-card .feature-card-title {
  color: white;
}

.coming-soon-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  backdrop-filter: blur(10px);
}

.coming-soon-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design for Dual Video */
@media (max-width: 968px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .video-wrapper {
    height: 350px;
  }

  .video-text {
    font-size: 1.25rem;
  }

  .video-cta-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }

  .full-width-video {
    margin-top: 2rem;
  }

  .full-video-wrapper {
    border-radius: 16px;
  }

  .landing-video {
    min-height: 300px;
  }

  .feature-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .feature-card-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .dual-video-section {
    margin-top: 4rem;
    padding: 3rem 0;
  }

  .dual-video-container {
    padding: 0 1rem;
  }

  .dual-video-title {
    margin-bottom: 2rem;
  }

  .video-card {
    border-radius: 16px;
  }

  .video-wrapper {
    height: 300px;
  }

  .video-overlay {
    padding: 2rem 1.5rem 1.5rem;
  }

  .video-text {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }

  .full-video-wrapper {
    border-radius: 12px;
  }

  .landing-video {
    min-height: 250px;
  }

  .feature-cards-grid {
    margin-top: 1.5rem;
  }

  .feature-card {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .feature-card-image {
    margin-bottom: 1rem;
  }

  .card-image {
    border-radius: 12px;
  }

  .feature-card-title {
    font-size: 1.125rem;
  }

  .coming-soon-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* Pricing Section */
.pricing-section {
  margin-top: 6rem;
  padding: 4rem 0;
}

.pricing-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pricing-main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #1f2937;
  text-align: center;
}

/* Billing Toggle */
.billing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f8fafc;
  padding: 0.5rem;
  border-radius: 50px;
  border: 1px solid #e5e7eb;
}

.toggle-label {
  font-weight: 600;
  color: #6b7280;
  transition: color 0.3s ease;
}

.toggle-label.active {
  color: #3b82f6;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 25px;
}

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e5e7eb;
  transition: 0.3s;
  border-radius: 25px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.toggle-input:checked + .toggle-slider {
  background-color: #3b82f6;
}

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

.discount-badge {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Pricing Cards Grid */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Pricing Cards */
.pricing-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.best-value {
  border: 2px solid #3b82f6;
  transform: scale(1.02);
}

.best-value-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #3b82f6;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.plan-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
}

.price-period {
  font-size: 1rem;
  color: #6b7280;
}

.price-per-credit {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Plan Features */
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.addons-dropdown {
  background: #f3f4f6;
  border-radius: 8px;
  padding: 0.75rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #4b5563;
}

.pricing-cta-btn {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.pricing-cta-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.billing-info {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
  padding: 0.25rem 0;
}

/* Additional Plans Row */
.additional-plans-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.additional-plan-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.additional-plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.additional-plan-header {
  margin-bottom: 1.5rem;
}

.additional-plan-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.additional-plan-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.additional-price-display {
  margin-bottom: 1rem;
}

.additional-price {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2937;
}

.additional-plan-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
  justify-content: space-between;
}

.additional-plan-description {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
  flex-grow: 1;
}

.additional-plan-note {
  font-size: 0.875rem;
  color: #6b7280;
  font-style: italic;
}

.additional-plan-btn {
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  align-self: flex-start;
  margin-top: auto;
}

.free-plan-btn {
  background: #1f2937;
  color: white;
}

.free-plan-btn:hover {
  background: #111827;
  transform: translateY(-1px);
}

.enterprise-plan-btn {
  background: #3b82f6;
  color: white;
}

.enterprise-plan-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

/* Compare Features Section */
.compare-features-section {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.compare-features-btn {
  background: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.compare-features-btn:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Responsive Design for Pricing */
@media (max-width: 1200px) {
  .pricing-cards-grid {
    gap: 1rem;
  }

  .pricing-card {
    padding: 1.25rem;
  }
}

@media (max-width: 1024px) {
  .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    margin-top: 4rem;
    padding: 3rem 0;
  }

  .pricing-container {
    padding: 0 1rem;
  }

  .pricing-main-title {
    margin-bottom: 1.5rem;
  }

  .billing-toggle {
    margin-bottom: 2rem;
  }

  .toggle-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pricing-card {
    padding: 1.25rem;
  }

  .price {
    font-size: 2rem;
  }

  .additional-plans-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .additional-plan-card {
    padding: 1.5rem;
  }

  .additional-plan-name {
    font-size: 1.5rem;
  }

  .additional-price {
    font-size: 1.75rem;
  }

  .compare-features-section {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 1rem;
  }

  .plan-name {
    font-size: 1.25rem;
  }

  .price {
    font-size: 1.75rem;
  }

  .addons-dropdown {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* How To Generate Section */
.how-to-generate-section {
  margin-top: 6rem;
  padding: 4rem 0;
}

.how-to-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.how-to-main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 3rem;
  color: #1f2937;
  text-align: center;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.step-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.step-card:hover .step-number {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.step-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1rem 0;
}

.step-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Steps */
@media (max-width: 768px) {
  .how-to-generate-section {
    margin-top: 4rem;
    padding: 3rem 0;
  }

  .how-to-container {
    padding: 0 1rem;
  }

  .how-to-main-title {
    margin-bottom: 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
  }

  .step-card {
    padding: 2rem 1.5rem;
    min-height: 250px;
  }

  .step-number {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .step-title {
    font-size: 1.5rem;
  }

  .step-description {
    font-size: 0.95rem;
  }
}

/* FAQ Section */
.faq-section {
  margin-top: 6rem;
  padding: 4rem 0;
  background: #f8fafc;
}

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

.faq-main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 3rem;
  color: #1f2937;
  text-align: center;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: #f9fafb;
}

.question-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  flex: 1;
}

.faq-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: #3b82f6;
  border-color: #3b82f6;
  color: white;
  transform: rotate(45deg);
}

.faq-icon .vertical {
  transition: opacity 0.3s ease;
}

.faq-item.active .faq-icon .vertical {
  opacity: 0;
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.faq-answer ol {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-answer ol li {
  margin-bottom: 0.5rem;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
  .faq-section {
    margin-top: 4rem;
    padding: 3rem 0;
  }

  .faq-container {
    padding: 0 1rem;
  }

  .faq-main-title {
    margin-bottom: 2rem;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
  }

  .question-text {
    font-size: 1.125rem;
  }

  .faq-icon {
    width: 36px;
    height: 36px;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  .faq-answer ol {
    font-size: 0.95rem;
  }
}

/* Video Co-Pilot Section */
.video-copilot-section {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.video-copilot-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(139, 92, 246, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.copilot-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.copilot-icon {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
  animation: pulse 3s ease-in-out infinite;
}

.copilot-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.copilot-highlight {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.copilot-subtitle {
  font-size: 1.25rem;
  color: #a1a1aa;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.copilot-cta-btn {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  position: relative;
  overflow: hidden;
}

.copilot-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.copilot-cta-btn:hover::before {
  left: 100%;
}

.copilot-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .video-copilot-section {
    padding: 4rem 1rem;
  }

  .copilot-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .copilot-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }

  .copilot-cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
}

/* Privacy policy */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 2rem 4rem;
  line-height: 1.7;
  color: #374151;
}

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

.legal-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
}

.legal-date {
  color: #6b7280;
  font-size: 1rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin: 1.5rem 0 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.contact-info {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #1d4ed8;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-brand {
  align-self: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo .logo-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.footer-logo .brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #374151;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #3b82f6;
}

.footer-separator {
  color: #6b7280;
  font-size: 0.875rem;
}

.footer-copyright {
  color: #9ca3af;
  font-size: 0.875rem;
  text-align: center;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-container {
    padding: 0 1rem;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .footer-brand {
    align-self: center;
  }

  .footer-logo .brand-name {
    font-size: 1.25rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .footer-link {
    font-size: 0.8125rem;
  }

  .footer-copyright {
    font-size: 0.8125rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
  padding: 0 2rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.5rem;
  color: #1f2937;
}

.logo-icon {
  font-size: 1.8rem;
}

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

.nav-actions {
  display: flex;
  align-items: center;
}

.signup-btn {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.signup-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.4);
}

/* Hero Section Styles */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  padding-top: 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1f2937;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  margin-bottom: 1.5rem;
}

.cta-button:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.trust-indicator {
  color: #9ca3af;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 0 1rem;
  }

  .nav-container {
    height: 60px;
  }

  .nav-brand {
    font-size: 1.3rem;
  }

  .logo-icon {
    font-size: 1.5rem;
  }

  .signup-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .hero-section {
    padding: 1.5rem;
    padding-top: 80px;
  }

  .hero-title {
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-brand .brand-name {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
  }
}

/* Video Demo Section */
.video-demo-section {
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  background: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.demo-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  cursor: default; /* Remove pointer cursor since no interaction needed */
}

/* Responsive Design for Video */
@media (max-width: 768px) {
  .video-demo-section {
    margin-top: 2rem;
    padding: 0 1rem;
  }

  .video-container {
    border-radius: 12px;
  }

  .demo-video {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .video-demo-section {
    margin-top: 1.5rem;
  }

  .video-container {
    border-radius: 8px;
  }

  .demo-video {
    border-radius: 8px;
  }
}

/* Focus states for accessibility */
button:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Animation for page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}
