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

body {
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #1DBF73, #00B22D);
  z-index: 9999;
  transition: width 0.1s linear;
}

nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.cta-button-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1DBF73;
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-button-small:hover {
  background: #19a864;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(29, 191, 115, 0.3);
}

.hero-section {
  background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(29, 191, 115, 0.06) 0%, transparent 60%);
}

.cta-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1DBF73 0%, #19a864 100%);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(29, 191, 115, 0.25);
}

.cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(29, 191, 115, 0.35);
}

.cta-button-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #0A1628;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-button-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.toc-nav {
  font-size: 0.875rem;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: all 0.2s ease;
}

.toc-link:hover {
  background: white;
  color: #1DBF73;
}

.toc-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1DBF73;
  width: 24px;
  flex-shrink: 0;
}

.article-content .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1DBF73;
  margin-bottom: 12px;
}

.article-content h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0A1628;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .article-content h2 {
    font-size: 2.5rem;
  }
}

.article-content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #0A1628;
}

.article-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 6px;
}

.article-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4B5563;
  margin-bottom: 16px;
}

.article-content .lead-text {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: #374151;
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  margin-bottom: 24px;
}

.article-content ul {
  padding-left: 1.5rem;
  margin-bottom: 16px;
}

.article-content li {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4B5563;
  margin-bottom: 8px;
}

.article-content strong {
  color: #111827;
  font-weight: 600;
}

.feature-card {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.feature-card h3 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin-top: 14px !important;
  margin-bottom: 8px !important;
}

.feature-card p {
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.callout-box {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 14px;
  margin: 24px 0;
}

.callout-box p {
  font-size: 0.9375rem !important;
  line-height: 1.65 !important;
  margin-bottom: 0 !important;
}

.callout-box p:first-child {
  margin-bottom: 4px !important;
}

.callout-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.callout-info {
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
}

.callout-info .callout-icon {
  background: #3B82F6;
  color: white;
}

.callout-success {
  background: #ECFDF5;
  border: 1px solid #D1FAE5;
}

.callout-success .callout-icon {
  background: #1DBF73;
  color: white;
}

.callout-warning {
  background: #FFFBEB;
  border: 1px solid #FEF3C7;
}

.callout-warning .callout-icon {
  background: #F59E0B;
  color: white;
}

.stat-card {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #1DBF73;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.numbered-item {
  display: flex;
  gap: 16px;
}

.number-badge {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1DBF73, #19a864);
  color: white;
  font-weight: 800;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.numbered-item h4 {
  margin-bottom: 4px;
}

.numbered-item p {
  font-size: 0.9375rem !important;
}

.cta-inline {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #d1fae5;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.cta-inline-alt {
  background: linear-gradient(135deg, #0A1628 0%, #162032 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-inline-alt h3 {
  color: white !important;
}

.cta-inline-alt p {
  color: rgba(255, 255, 255, 0.6) !important;
}

.cta-inline-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1DBF73;
  background: rgba(29, 191, 115, 0.1);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.cta-inline-alt .cta-inline-badge {
  background: rgba(29, 191, 115, 0.15);
}

.cta-inline h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0A1628;
  margin-bottom: 8px;
}

.cta-inline p {
  font-size: 1rem;
  color: #6B7280;
  max-width: 480px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.gig-card {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.gig-card:hover {
  border-color: rgba(29, 191, 115, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.gig-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.gig-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1DBF73, #19a864);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gig-card-demand {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 99px;
  background: #ECFDF5;
  color: #059669;
}

.gig-card-demand.explosive {
  background: #FEF3C7;
  color: #D97706;
}

.gig-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0A1628;
}

.gig-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #6B7280;
  margin-bottom: 16px;
}

.gig-card-stats {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
  margin-bottom: 16px;
}

.gig-card-stat {
  font-size: 0.8125rem;
}

.gig-card-stat span:first-child {
  display: block;
  font-weight: 600;
  color: #0A1628;
}

.gig-card-stat span:last-child {
  color: #9CA3AF;
  font-size: 0.75rem;
}

.gig-card-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gig-card-examples span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  background: white;
  border: 1px solid #e5e7eb;
  color: #6B7280;
}

.steps-timeline {
  position: relative;
  padding-left: 20px;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, #1DBF73, #d1fae5);
  border-radius: 99px;
}

.step-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-marker {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: white;
  border: 2px solid #1DBF73;
  color: #1DBF73;
  font-weight: 800;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 4px !important;
  margin-bottom: 8px !important;
  color: #0A1628;
}

.step-content p {
  font-size: 0.9375rem !important;
  line-height: 1.65 !important;
}

.step-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 16px;
  background: #FFFBEB;
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #92400E;
}

.step-tip span {
  font-size: 0.875rem;
  line-height: 1.5;
}

.opt-card {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  padding: 24px;
}

.opt-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.opt-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 0;
}

.opt-card > p {
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
  margin-bottom: 14px !important;
}

.opt-do-dont {
  font-size: 0.8125rem;
  line-height: 1.5;
}

.opt-do {
  background: #ECFDF5;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 6px;
  color: #065F46;
}

.opt-dont {
  background: #FEF2F2;
  padding: 10px 14px;
  border-radius: 8px;
  color: #991B1B;
}

.pricing-table table {
  border-collapse: collapse;
  width: 100%;
}

.pricing-table th {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9CA3AF;
  padding: 12px 16px;
  border-bottom: 2px solid #f0f0f0;
}

.pricing-table td {
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9375rem;
  color: #4B5563;
  vertical-align: top;
}

.package-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.package-badge.basic {
  background: #f3f4f6;
  color: #6B7280;
}

.package-badge.standard {
  background: #DBEAFE;
  color: #2563EB;
}

.package-badge.premium {
  background: #FDE68A;
  color: #92400E;
}

.earnings-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  transition: all 0.2s ease;
}

.earnings-card:hover {
  border-color: #e0e0e0;
}

.earnings-period {
  min-width: 100px;
}

.earnings-period .period-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0A1628;
}

.earnings-period .period-amount {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1DBF73;
}

.earnings-milestone {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #6B7280;
}

.compound-card {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}

.compound-number {
  font-size: 1rem;
  font-weight: 800;
  color: #1DBF73;
  margin-bottom: 10px;
}

.compound-card p {
  font-size: 0.875rem !important;
  line-height: 1.55 !important;
  margin-bottom: 0 !important;
}

.tip-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  transition: all 0.2s ease;
}

.tip-card:hover {
  border-color: rgba(29, 191, 115, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.tip-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: #e5e7eb;
  min-width: 40px;
  line-height: 1;
}

.tip-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 6px;
}

.tip-content p {
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

.testimonial-card {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 28px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1DBF73, #19a864);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #4B5563;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0A1628;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: #9CA3AF;
}

.testimonial-earnings {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1DBF73;
  background: #ECFDF5;
  padding: 4px 10px;
  border-radius: 6px;
}

.faq-item {
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item.active {
  border-color: #e0e0e0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #0A1628;
  font-family: inherit;
  gap: 16px;
  transition: background 0.2s ease;
}

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

.faq-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #6B7280;
}

.final-cta {
  padding: 0 16px;
}

.final-cta-inner {
  background: linear-gradient(135deg, #0A1628 0%, #162032 50%, #0A1628 100%);
  border-radius: 24px;
  padding: 60px 32px;
  position: relative;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(29, 191, 115, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 640px) {
  .stat-card {
    padding: 14px 10px;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .steps-timeline {
    padding-left: 0;
  }

  .steps-timeline::before {
    display: none;
  }

  .step-item {
    flex-direction: column;
    gap: 12px;
  }

  .earnings-card {
    flex-direction: column;
    gap: 12px;
  }

  .cta-inline {
    padding: 28px 20px;
  }

  .pricing-table {
    font-size: 0.8125rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 10px 8px;
  }

  .tip-card {
    flex-direction: column;
    gap: 8px;
  }

  .numbered-item {
    flex-direction: column;
    gap: 8px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
