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

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-dark: #1a1a1a;
  --gray-light: #f5f5f5;
  --turquoise: #00d9c0;
  --neon-green: #00ff94;
  --coral: #ff6b6b;
  --gold: #ffd700;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--black);
  overflow-x: hidden;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0a4d3e 0%, #000000 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 217, 192, 0.15), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h1 {
  font-size: 80px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero h1 .highlight {
  color: var(--turquoise);
}

.hero-subtitle {
  font-size: 24px;
  color: #cccccc;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn {
  padding: 20px 40px;
  font-size: 20px;
  font-weight: 700;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  min-width: 250px;
}

.btn-primary {
  background: var(--turquoise);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 217, 192, 0.3);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(0, 217, 192, 0.5);
}

.btn-secondary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.btn-secondary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(255, 107, 107, 0.5);
}

.hero-info {
  color: #999;
  font-size: 16px;
}

/* Pain Points Section */
.pain-section {
  background: var(--gray-light);
  padding: 100px 0;
}

.section-title {
  font-size: 60px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.pain-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

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

.pain-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.pain-emoji {
  font-size: 50px;
  margin-bottom: 20px;
  display: block;
}

.pain-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.cta-center {
  text-align: center;
  margin-top: 50px;
}

/* Dream Section */
.dream-section {
  background: linear-gradient(135deg, #000000 0%, #0a4d3e 100%);
  padding: 100px 0;
  position: relative;
}

.dream-title {
  font-size: 70px;
  font-weight: 900;
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
}

.dream-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.dream-before,
.dream-after {
  background: rgba(255, 255, 255, 0.05);
  padding: 50px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.dream-after {
  background: rgba(0, 217, 192, 0.1);
  box-shadow: 0 0 40px rgba(0, 217, 192, 0.2);
}

.dream-label {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--white);
}

.dream-list {
  list-style: none;
}

.dream-list li {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.dream-list li::before {
  position: absolute;
  left: 0;
  font-size: 20px;
}

.dream-before li::before {
  content: "❌";
}

.dream-after li::before {
  content: "✅";
}

.dream-after li {
  color: var(--white);
}

/* Why Others Fail */
.why-fail-section {
  background: var(--white);
  padding: 100px 0;
}

.fail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.fail-card {
  background: var(--gray-light);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.fail-emoji {
  font-size: 60px;
  margin-bottom: 20px;
}

.fail-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.fail-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
  font-style: italic;
}

.fail-list {
  list-style: none;
  text-align: left;
}

.fail-list li {
  font-size: 16px;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.fail-list li::before {
  content: "❌";
  position: absolute;
  left: 0;
}

/* Solution Section */
.solution-section {
  background: var(--black);
  padding: 100px 0;
  color: var(--white);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 50px 40px;
  border-radius: 20px;
  border: 2px solid rgba(0, 217, 192, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

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

.solution-card:hover {
  border-color: var(--turquoise);
  box-shadow: 0 0 40px rgba(0, 217, 192, 0.3);
  transform: translateY(-10px);
}

.solution-number {
  font-size: 40px;
  margin-bottom: 20px;
}

.solution-emoji {
  font-size: 50px;
  margin-bottom: 20px;
}

.solution-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--turquoise);
}

.solution-text {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

/* Pricing Section */
.pricing-section {
  background: var(--gray-light);
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.pricing-popular {
  border: 3px solid var(--turquoise);
  box-shadow: 0 0 40px rgba(0, 217, 192, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--turquoise);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.pricing-emoji {
  font-size: 50px;
  text-align: center;
  margin-bottom: 20px;
}

.pricing-name {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.pricing-price {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-old {
  font-size: 24px;
  color: #999;
  text-decoration: line-through;
}

.pricing-new {
  font-size: 60px;
  font-weight: 900;
  color: var(--turquoise);
  display: block;
}

.pricing-term {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  font-size: 16px;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.pricing-features li::before {
  position: absolute;
  left: 0;
  font-size: 16px;
}

.pricing-features .included::before {
  content: "✅";
}

.pricing-features .bonus::before {
  content: "➕";
}

.pricing-for {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}

.pricing-cta {
  width: 100%;
}

/* Author Section */
.author-section {
  background: var(--white);
  padding: 100px 0;
}

.author-content {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.author-photo {
  background: var(--gray-light);
  border-radius: 20px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h3 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 30px;
}

.author-achievements {
  list-style: none;
  margin-bottom: 30px;
}

.author-achievements li {
  font-size: 18px;
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;
}

.author-achievements li::before {
  position: absolute;
  left: 0;
  font-size: 24px;
}

.author-quote {
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  padding: 30px;
  background: var(--gray-light);
  border-radius: 15px;
  border-left: 4px solid var(--turquoise);
  margin: 30px 0;
}

/* Life */
.lifes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Case Studies */
.cases-section {
  background: var(--gray-light);
  padding: 100px 0;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.case-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.case-header {
  padding: 40px;
  background: linear-gradient(135deg, var(--turquoise), var(--neon-green));
}

.case-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}

.case-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.case-body {
  padding: 40px;
}

.case-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.case-before h4,
.case-after h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.case-before ul,
.case-after ul {
  list-style: none;
}

.case-before li,
.case-after li {
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.case-before li::before {
  content: "❌";
  position: absolute;
  left: 0;
}

.case-after li::before {
  content: "✅";
  position: absolute;
  left: 0;
}

.case-quote {
  background: var(--gray-light);
  padding: 20px;
  border-radius: 10px;
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
}

.case-photo {
  margin-top: 20px;
  text-align: center;
}

.case-photo img {
  width: 100%;
  max-width: 300px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Average Result */
.average-result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* FAQ Section */
.faq-section {
  background: var(--white);
  padding: 100px 0;
}

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

.faq-item {
  background: var(--gray-light);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-answer {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #000000 0%, #0a4d3e 100%);
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.final-cta h2 {
  font-size: 70px;
  font-weight: 900;
  margin-bottom: 40px;
}

.final-text {
  font-size: 24px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 50px;
}

.final-text .good {
  color: var(--neon-green);
}

.final-text .bad {
  color: var(--coral);
}

.final-urgency {
  font-size: 18px;
  margin-bottom: 40px;
  color: #ccc;
}

.final-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

/* Footer */
footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--turquoise);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--turquoise);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #666;
}

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

.animate {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  .section-title {
    font-size: 40px;
  }

  .pain-grid,
  .fail-grid,
  .solution-grid,
  .pricing-grid,
  .lifes-grid,
  .cases-grid,
  .average-result-grid {
    grid-template-columns: 1fr;
  }

  .dream-comparison,
  .author-content {
    grid-template-columns: 1fr;
  }

  .btn {
    min-width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Pulse animation for CTAs */
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(0, 217, 192, 0.3);
  }
  50% {
    box-shadow: 0 4px 30px rgba(0, 217, 192, 0.6);
  }
}

.btn-primary {
  animation: pulse 2s infinite;
}
