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

:root {
  --primary: #3b82f6;
  --primary-light: rgba(59, 130, 246, 0.1);
  --accent: #22c55e;
  --accent-light: rgba(34, 197, 94, 0.1);
  --background: #f0f9ff;
  --card: #ffffff;
  --foreground: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --destructive: #ef4444;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

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

.hidden {
  display: none !important;
}

.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

/* Sales Notification */
.sales-notification {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  max-width: 320px;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.sales-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.notification-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}

.notification-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.notification-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
}

.notification-header i {
  font-size: 0.875rem;
}

.notification-header span {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--foreground);
}

.notification-purchase {
  font-size: 0.75rem;
  color: rgba(15, 23, 42, 0.8);
}

.notification-purchase span {
  font-weight: 600;
  color: var(--accent);
}

.notification-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Urgency Banner */
.urgency-banner {
  background: var(--destructive);
  padding: 0.5rem 1rem;
}

.urgency-banner p {
  color: white;
  font-weight: 700;
  text-align: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(to bottom, var(--primary-light), var(--background));
  padding: 2rem 1rem 3rem;
}

.hero-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.hero-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--accent);
  color: white;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .hero-badge {
    font-size: 1rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: rgba(15, 23, 42, 0.8);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.hero-description {
  font-size: 1rem;
  text-align: center;
  color: rgba(15, 23, 42, 0.7);
  max-width: 700px;
  margin: 2rem auto 0;
  line-height: 1.7;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  background: var(--card);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: visible;
}

.pricing-card.premium {
  border: 2px solid var(--accent);
  background: white;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

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

.social-proof {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.original-price {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
}

.current-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-label {
  font-size: 1rem;
  font-weight: 500;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}

.features-section {
  width: 100%;
  text-align: left;
}

.features-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.features-list li i {
  color: var(--accent);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.features-list li span {
  font-size: 0.875rem;
}

.bonus-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  margin: 0.75rem 0;
}

.bonus-header i {
  color: var(--primary);
}

.bonus-header span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.bonus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bonus-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.bonus-list li i {
  color: var(--primary);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.bonus-list li span {
  font-size: 0.875rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.cta-button:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

.cta-button.large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  width: auto;
}

.cta-button.pulse {
  animation: pulse 2s infinite;
}

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

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.guarantee-badge i {
  color: var(--accent);
}

.guarantee-badge span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

.trust-badge i {
  color: var(--primary);
}

.trust-badge span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Section Header */
.section-header {
  background: var(--primary);
  padding: 1rem;
  margin-bottom: 0;
}

.section-header h2 {
  color: white;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 1.5rem;
  }
}

/* Product Section */
.product-section {
  padding-bottom: 3rem;
  background: var(--background);
}

.section-description {
  font-size: 1.125rem;
  text-align: center;
  color: rgba(15, 23, 42, 0.8);
  line-height: 1.7;
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

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

@media (min-width: 640px) {
  .ebooks-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .ebooks-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .ebooks-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.ebook-card {
  background: var(--card);
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
}

.ebook-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ebook-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.ebook-card p {
  padding: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .ebook-card p {
    font-size: 0.875rem;
  }
}

.ebooks-total {
  background: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  max-width: 400px;
  margin: 2rem auto;
}

.ebooks-total p {
  color: white;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .ebooks-total p {
    font-size: 1.25rem;
  }
}

/* Activity Samples */
.activity-samples {
  background: var(--card);
  padding: 3rem 1rem;
}

.activity-samples h3 {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: var(--foreground);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .activity-samples h3 {
    font-size: 1.5rem;
  }
}

.samples-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .samples-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sample-card {
  background: var(--background);
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.sample-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sample-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.sample-info {
  padding: 1rem;
}

.sample-info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.sample-info p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

/* How It Works */
.how-it-works {
  background: var(--card);
  padding-bottom: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.step-icon-wrapper {
  position: relative;
}

.step-icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon i {
  font-size: 2.5rem;
  color: white;
}

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

.step h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

/* Testimonials */
.testimonials-section {
  background: var(--background);
  padding-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: white;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 2px solid var(--primary);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-name {
  font-weight: 600;
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.stars i {
  color: #facc15;
  font-size: 0.875rem;
}

.testimonial-text {
  font-size: 0.875rem;
  color: rgba(15, 23, 42, 0.8);
  font-style: italic;
  line-height: 1.6;
}

/* Target Audience */
.target-section {
  background: var(--background);
  padding-bottom: 3rem;
}

.target-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.target-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.target-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.target-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.target-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.target-card p {
  font-size: 1rem;
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--primary);
  padding: 3rem 1rem;
  text-align: center;
}

.footer h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer h2 {
    font-size: 2rem;
  }
}

.footer > .container > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.footer .cta-button {
  margin: 0 auto;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 1rem;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.floating-cta .cta-button {
  width: auto;
  margin: 0;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.5);
}

@media (min-width: 768px) {
  .floating-cta {
    display: none !important;
  }
}

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