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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.text-link {
  color: #7c3aed;
  font-weight: 500;
  transition: color 0.3s;
}

.text-link:hover {
  color: #6d28d9;
  text-decoration: underline;
}

/* Badge */
.badge {
  display: inline-block;
  background-color: #f5f3ff;
  color: #7c3aed;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-header p {
  color: #666;
  font-size: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #7c3aed;
  color: white;
}

.btn-primary:hover {
  background-color: #6d28d9;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #d1d5db;
  color: #333;
}

.btn-outline:hover {
  background-color: #f9fafb;
}

.btn-outline-dark {
  background-color: transparent;
  border: 1px solid #333;
  color: #333;
}

.btn-outline-dark:hover {
  background-color: #f9fafb;
}

.btn-light {
  background-color: white;
  color: #7c3aed;
}

.btn-light:hover {
  background-color: #f9fafb;
}

.btn-outline-light {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
  padding: 20px 0;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  color: #333;
}

.logo i {
  color: #7c3aed;
  margin-right: 10px;
  font-size: 24px;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #7c3aed;
}

.header-buttons {
  display: flex;
  gap: 15px;
}

/* Hero Section */
.hero-section {
  padding: 80px 0;
  background: linear-gradient(to right, #f5f3ff, #fdf2f8);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  max-width: 800px;
  margin-bottom: 20px;
}

.highlight {
  color: #7c3aed;
}

.hero-description {
  font-size: 20px;
  color: #666;
  max-width: 700px;
  margin-bottom: 30px;
}

.email-form {
  display: flex;
  max-width: 500px;
  width: 100%;
}

.email-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px 0 0 6px;
  font-size: 16px;
}

.email-form button {
  border-radius: 0 6px 6px 0;
}

.small-text {
  font-size: 14px;
  color: #666;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background-color 0.3s;
}

.play-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.play-button.small {
  padding: 8px 16px;
  font-size: 14px;
}

.trusted-by {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.trusted-by p {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  color: #9ca3af;
  font-weight: 600;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #f5f3ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 24px;
  color: #7c3aed;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  color: #666;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.benefits-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 50px;
}

.benefit-item.reverse {
  flex-direction: row-reverse;
}

.benefit-content {
  flex: 1;
}

.benefit-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.benefit-content p {
  color: #666;
  margin-bottom: 20px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-list i {
  color: #7c3aed;
}

.benefit-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* How It Works Section */
.how-it-works-section {
  padding: 80px 0;
  background-color: white;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #f5f3ff;
  color: #7c3aed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.step-number::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 100%;
  height: 2px;
  background-color: #e5e7eb;
  display: none;
}

.step-item:not(:last-child) .step-number::after {
  display: block;
}

.step-image {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.step-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-item p {
  color: #666;
}

.cta-box {
  background-color: #f5f3ff;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cta-box h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cta-box p {
  color: #666;
  margin-bottom: 20px;
}

/* Examples Section */
.examples-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.tabs-container {
  margin-bottom: 40px;
}

.tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 30px;
}

.tab-button {
  padding: 12px 24px;
  font-weight: 500;
  color: #666;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
}

.tab-button.active {
  color: #7c3aed;
}

.tab-button.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #7c3aed;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.example-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.example-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.example-image {
  position: relative;
  aspect-ratio: 16 / 9;
}

.example-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.example-card:hover .play-overlay {
  opacity: 1;
}

.example-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 15px 10px;
}

.example-card p {
  color: #666;
  font-size: 14px;
  margin: 0 15px 15px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-author h4 {
  font-weight: 600;
  margin-bottom: 3px;
}

.testimonial-author p {
  color: #666;
  font-size: 14px;
}

.testimonial-quote {
  margin-bottom: 20px;
}

.testimonial-quote i {
  color: #e5e7eb;
  font-size: 24px;
  margin-bottom: 10px;
}

.testimonial-quote p {
  color: #666;
  font-style: italic;
}

.testimonial-rating {
  color: #fbbf24;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

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

.pricing-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: relative;
}

.pricing-card.popular {
  border: 2px solid #7c3aed;
  transform: scale(1.05);
}

.popular-badge {
  background-color: #7c3aed;
  color: white;
  text-align: center;
  padding: 8px 0;
  font-weight: 500;
}

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

.pricing-header h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.pricing-header p {
  color: #666;
}

.pricing-price {
  text-align: center;
  padding: 20px 0;
}

.price {
  font-size: 36px;
  font-weight: 700;
}

.period {
  color: #666;
  margin-left: 5px;
}

.pricing-features {
  padding: 0 30px 30px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: #7c3aed;
  margin-right: 10px;
}

.pricing-card .btn {
  display: block;
  margin: 0 30px 30px;
}

.pricing-note {
  text-align: center;
  color: #666;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: white;
}

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

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
}

.faq-icon {
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 20px;
  color: #666;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-footer {
  text-align: center;
  margin-top: 40px;
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.blog-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.blog-image {
  aspect-ratio: 16 / 9;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

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

.blog-author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

.blog-date {
  font-size: 14px;
  color: #666;
}

.blog-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card p {
  color: #666;
  margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: #7c3aed;
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.cta-users {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.user-avatars {
  display: flex;
}

.user-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #7c3aed;
  margin-left: -10px;
}

.user-avatars img:first-child {
  margin-left: 0;
}

.cta-users p {
  margin-bottom: 0;
  font-size: 14px;
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  background-color: #111827;
  color: #e5e7eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-about {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-logo i {
  color: #a78bfa;
  margin-right: 10px;
  font-size: 24px;
}

.footer-about p {
  color: #9ca3af;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.social-links a:hover {
  background-color: #374151;
}

.footer-links h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #1f2937;
  color: #9ca3af;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .main-nav ul {
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-description {
    font-size: 18px;
  }

  .email-form {
    flex-direction: column;
    gap: 10px;
  }

  .email-form input {
    border-radius: 6px;
  }

  .email-form button {
    border-radius: 6px;
    width: 100%;
  }

  .benefit-item {
    flex-direction: column;
    gap: 30px;
  }

  .benefit-item.reverse {
    flex-direction: column;
  }

  .pricing-card.popular {
    transform: none;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 28px;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .testimonials-grid,
  .blog-grid,
  .pricing-grid,
  .examples-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .tabs {
    flex-wrap: wrap;
  }

  .tab-button {
    flex: 1 0 40%;
  }
}

