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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.2rem;
}

/* PayPal Button Containers */
#paypal-button-container,
#paypal-button-container-final {
  max-width: 400px;
  margin: 0 auto;
  min-height: 60px;
}

#paypal-button-container-final {
  margin-bottom: 2rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
}

.nav-brand i {
  font-size: 1.8rem;
}

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

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #667eea;
}

.nav-cta {
  display: flex;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(102, 126, 234, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(118, 75, 162, 0.1) 0%,
      transparent 50%
    );
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #2d3748;
}

.highlight {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.feature-item i {
  color: #48bb78;
  font-size: 1.2rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4a5568;
  font-size: 0.95rem;
  font-weight: 500;
}

.guarantee i {
  color: #48bb78;
}

/* Book Mockup */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-mockup {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.book-cover {
  position: relative;
  width: 300px;
  height: 400px;
  transform-style: preserve-3d;
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.book-cover:hover {
  transform: rotateY(-20deg) rotateX(5deg);
}

.book-spine {
  position: absolute;
  left: -15px;
  top: 0;
  width: 15px;
  height: 100%;
  background: linear-gradient(180deg, #4a5568 0%, #2d3748 100%);
  transform: rotateY(-90deg) translateZ(0);
  transform-origin: left center;
}

.book-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2), 0 20px 40px rgba(0, 0, 0, 0.2);
}

.book-content {
  padding: 2rem;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.book-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.book-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.book-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.book-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Social Proof */
.social-proof {
  background: white;
  padding: 3rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.social-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 1rem;
  color: #4a5568;
  font-weight: 500;
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background: #f7fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
}

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

.benefit-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

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

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-icon i {
  font-size: 1.8rem;
  color: white;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.benefit-card p {
  color: #4a5568;
  line-height: 1.7;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: white;
}

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

.features-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2d3748;
}

.features-text > p {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 2.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.feature-list .feature-item i {
  color: #48bb78;
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.feature-list .feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #2d3748;
}

.feature-list .feature-item p {
  color: #4a5568;
  margin: 0;
  font-size: 1rem;
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: #2d3748;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.ebook-preview {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ebook-header {
  border-bottom: 2px solid #667eea;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.ebook-header h3 {
  color: #667eea;
  font-size: 1.2rem;
  margin: 0;
}

.ebook-content p {
  font-size: 0.95rem;
  color: #4a5568;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.highlight-box {
  background: rgba(102, 126, 234, 0.1);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #667eea;
}

.highlight-box h4 {
  font-size: 1rem;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.highlight-box p {
  font-size: 0.9rem;
  color: #2d3748;
  margin: 0;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: #f7fafc;
}

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

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

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

.testimonial-content {
  margin-bottom: 1.5rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.stars i {
  color: #fbbf24;
  font-size: 1.1rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  color: #4a5568;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #2d3748;
}

.author-info span {
  color: #667eea;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

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

.pricing-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.pricing-text > p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.value-comparison {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.value-comparison h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.item-name {
  color: rgba(255, 255, 255, 0.9);
}

.item-price {
  font-weight: 600;
  color: white;
}

.comparison-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.total-price {
  color: #fbbf24;
}

/* Pricing Card */
.pricing-card {
  background: white;
  color: #2d3748;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.pricing-header {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  position: relative;
}

.price-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #48bb78, #38a169);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 1.8rem;
  margin: 1rem 0 1.5rem;
  color: #2d3748;
}

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

.currency {
  font-size: 1.5rem;
  color: #667eea;
  font-weight: 600;
}

.amount {
  font-size: 4rem;
  font-weight: 700;
  color: #667eea;
  font-family: 'Playfair Display', serif;
}

.cents {
  font-size: 1.5rem;
  color: #667eea;
  font-weight: 600;
}

.price-description {
  color: #4a5568;
  font-size: 1rem;
  margin: 0;
}

.pricing-features {
  padding: 2rem;
}

.pricing-features .feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 1rem;
}

.pricing-features .feature i {
  color: #48bb78;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pricing-cta {
  padding: 2rem;
  background: #f7fafc;
  text-align: center;
}

.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: #4a5568;
  font-size: 0.9rem;
}

.security-note i {
  color: #48bb78;
}

/* Urgency Section */
.urgency-section {
  margin-top: 4rem;
}

.urgency-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.urgency-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.urgency-card p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.urgency-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.urgency-stats .stat {
  text-align: center;
}

.urgency-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.urgency-stats .stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background: white;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

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

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: white;
  transition: background-color 0.3s ease;
}

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

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
  color: #2d3748;
}

.faq-question i {
  color: #667eea;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 2rem 1.5rem;
  display: none;
  background: white;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

.faq-answer p {
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

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

/* Final CTA */
.final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  margin-bottom: 2rem;
}

.final-guarantees {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.guarantee-item i {
  color: #48bb78;
}

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

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #667eea;
}

.footer-brand i {
  font-size: 1.8rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: white;
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #667eea;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

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

  /* Navigation Mobile */
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  /* Hero Mobile */
  .hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 3rem;
  }

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

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

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  /* Social Stats Mobile */
  .social-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Benefits Mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  /* Features Mobile */
  .features-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }

  /* Testimonials Mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing Mobile */
  .pricing-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .urgency-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Final Guarantees Mobile */
  .final-guarantees {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

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

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

  .book-cover {
    width: 250px;
    height: 330px;
  }

  .phone-mockup {
    width: 200px;
    height: 400px;
  }

  .pricing-card {
    margin: 0 1rem;
  }

  .amount {
    font-size: 3rem;
  }
}
