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

:root {
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --purple-100: #f3e8ff;
  --pink-500: #ec4899;
  --green-500: #28a745;
  --green-600: #218838;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
  background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
  min-height: 100vh;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple-600);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  transition: color 0.3s;
}

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

/* Buttons */
.btn-primary {
  background: var(--purple-600);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--purple-700);
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: var(--purple-600);
  border: 2px solid var(--purple-600);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--purple-100);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-green {
  background: var(--green-500);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  animation: pulse-green 5s infinite;
}

.btn-green:hover {
  background: var(--green-600);
  transform: scale(1.05);
  filter: brightness(1.1);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

@keyframes pulse-green {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
  }
}

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  text-align: center;
}

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

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.badge-purple {
  background: var(--purple-100);
  color: var(--purple-700);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple-600) 0%, var(--pink-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shine 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.3));
}

@keyframes gradient-shine {
  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(236, 72, 153, 0.5));
  }
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.active-visitors {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #00ff00;
  font-weight: 600;
}

.active-visitors svg {
  stroke: #00ff00;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats Bar */
.stats-bar {
  background: white;
  padding: 3rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--purple-600);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray-600);
  font-weight: 500;
}

/* How It Works */
.how-it-works {
  padding: 4rem 0;
}

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

.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

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

.step-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  position: relative;
}

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

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--purple-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-icon svg {
  stroke: var(--purple-600);
}

.step-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--purple-600);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.step-description {
  color: var(--gray-600);
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
}

.pricing-card {
  background: white;
  border: 3px solid var(--purple-600);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple-600);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  z-index: 10;
}

.pricing-badge.badge-orange {
  background: #ff6b35;
}

.pricing-icon {
  width: 80px;
  height: 80px;
  background: var(--purple-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.pricing-icon svg {
  stroke: var(--purple-600);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--purple-600);
}

.pricing-followers {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.pricing-price-container {
  text-align: center;
  margin-bottom: 1rem;
}

.pricing-old-price {
  text-decoration: line-through;
  color: var(--gray-400);
  font-size: 0.9rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-500);
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.countdown-timer svg {
  stroke: #dc2626;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.pricing-payment {
  text-align: center;
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.pricing-feature.included {
  color: var(--gray-700);
}

.pricing-feature.not-included {
  color: var(--gray-400);
}

.pricing-feature svg {
  flex-shrink: 0;
}

.pricing-input-section {
  margin-bottom: 1rem;
}

.pricing-input-label {
  display: block;
  font-size: 0.85rem;
  color: #41aa41;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.pricing-input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--gray-300);
  border-radius: 0.5rem;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}

.pricing-input:focus {
  outline: none;
  border-color: var(--purple-600);
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 0;
  background: white;
}

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

.benefit-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--gray-100);
  transition: transform 0.3s;
}

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

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.benefit-description {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
}

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

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

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  color: var(--gray-900);
}

.testimonial-stars {
  color: #fbbf24;
}

.testimonial-text {
  color: var(--gray-700);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.testimonial-stats span {
  background: var(--purple-100);
  color: var(--purple-700);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: white;
}

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

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  text-align: left;
}

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

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

.faq-answer p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--gray-300);
  line-height: 1.6;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s;
}

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

.payment-icons {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.payment-badge {
  background: var(--purple-600);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-legal a {
  color: var(--gray-300);
  text-decoration: none;
}

/* Order Bump */
.order-bump {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding: 1.25rem;
  max-width: 280px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
}

.order-bump.show {
  opacity: 1;
  transform: translateY(0);
}

.order-bump-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--gray-200);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: background 0.3s;
}

.order-bump-close:hover {
  background: var(--gray-300);
}

.order-bump-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-600);
  margin-bottom: 0.5rem;
}

.order-bump-text {
  color: var(--gray-700);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* Social Proof */
.social-proof {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 1rem 1.5rem;
  max-width: 350px;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
}

.social-proof.show {
  opacity: 1;
  transform: translateY(0);
}

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

.social-proof-icon {
  font-size: 1.5rem;
}

/* Floating Support */
.floating-support {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  z-index: 997;
  transition: all 0.3s;
  animation: bounce-slow 3s infinite;
}

.floating-support:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@keyframes bounce-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .order-bump {
    max-width: calc(100% - 40px);
  }

  .social-proof {
    max-width: calc(100% - 40px);
  }
}
