:root {
  --bg-main: #0e0f12;
  --bg-alt: #14171d;
  --bg-card: #16181d;
  --bg-card-soft: #1b1f27;
  --text-main: #f5f5f5;
  --text-muted: #b9b9b9;
  --text-light: #8a8a8a;
  --line: #2e3038;
  --line-soft: #2a2d35;
  --gold: #d4af37;
  --gold-dark: #b8962e;
  --gold-soft: rgba(212, 175, 55, 0.15);
  --gold-glow: rgba(212, 175, 55, 0.3);
  --danger: #e74c3c;
  --ok: #2ecc71;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 65%),
    radial-gradient(800px 400px at 95% 120%, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0) 50%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-main) 40%, #0a0b0f 100%);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
}

.earnings-page {
  width: min(1100px, 94vw);
  margin: 0 auto;
  padding: 60px 24px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 50px 40px;
  background: linear-gradient(135deg, #1a1d24 0%, #16181d 46%, #111319 100%);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  right: -150px;
  top: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
  animation: heroGlow 6s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  left: -100px;
  bottom: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite reverse;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.back-link:hover {
  gap: 12px;
  text-shadow: 0 0 12px var(--gold-glow);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #f5f5f5 0%, #d4af37 50%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInDown 0.8s ease-out;
}

.text-gold {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}

.hero-subheadline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  animation: slideInUp 0.8s ease-out 0.1s both;
}

.hero-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 720px;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: slideInUp 0.8s ease-out 0.3s both;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #e8c547 100%);
  color: #000;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
  letter-spacing: 0.5px;
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold-soft);
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-xl {
  padding: 18px 48px;
  font-size: 1.2rem;
}

/* ============ SECTIONS ============ */
.section {
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #f5f5f5 0%, var(--gold) 50%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 720px;
  line-height: 1.6;
}

/* ============ EARNINGS CALCULATOR ============ */
.earnings-calc {
  /* */
}

.earnings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.earnings-card {
  position: relative;
  background: linear-gradient(135deg, rgba(22, 24, 29, 0.5) 0%, rgba(27, 31, 39, 0.3) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.earnings-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.earnings-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.earnings-card:hover::before {
  opacity: 1;
}

.earnings-card--highlight {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
  transform: scale(1.02);
}

.earnings-card-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.badge-pro {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
  border: 1px solid var(--gold);
}

.earnings-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

.earnings-display {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.earnings-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}

.earnings-period {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.earnings-details {
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(212, 175, 55, 0.06);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}

.earnings-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.earnings-details p:last-child {
  margin-bottom: 0;
}

.earnings-list {
  list-style: none;
  padding: 0;
}

.earnings-list li {
  color: var(--text-muted);
  padding: 8px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.earnings-list li::before {
  content: "✓";
  color: var(--ok);
  font-weight: 800;
  flex-shrink: 0;
}

/* ============ EARNINGS MATH ============ */
.earnings-math {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
  margin-top: 40px;
}

.earnings-math h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--gold);
}

.earnings-math > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.math-breakdown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin: 32px 0;
  padding: 24px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

.math-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 140px;
}

.math-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

.math-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  font-variant-numeric: tabular-nums;
}

.math-arrow {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 800;
}

.math-note {
  text-align: center;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 16px;
}

/* ============ WHY EASY ============ */
.why-easy {
  /* */
}

.easy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.easy-card {
  background: linear-gradient(135deg, rgba(22, 24, 29, 0.4) 0%, rgba(27, 31, 39, 0.2) 100%);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s ease;
}

.easy-card:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.12);
}

.easy-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.easy-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.easy-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============ NOT A SCAM ============ */
.not-scam {
  /* */
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.trust-card {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(46, 204, 113, 0.02) 100%);
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s ease;
}

.trust-card:hover {
  border-color: var(--ok);
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(46, 204, 113, 0.05) 100%);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
}

.trust-card h3 {
  color: var(--ok);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.trust-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============ 3 STEPS ============ */
.three-steps {
  /* */
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 50px;
}

.step-card {
  flex: 1;
  min-width: 250px;
  background: linear-gradient(135deg, rgba(22, 24, 29, 0.6) 0%, rgba(27, 31, 39, 0.4) 100%);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
  transform: translateY(-8px);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #e8c547 100%);
  color: #000;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
  margin: 20px 0;
}

.step-link {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
}

.step-link:hover {
  letter-spacing: 0.5px;
  text-shadow: 0 0 12px var(--gold-glow);
}

.step-connector {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 800;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
  }
  
  .step-connector {
    display: none;
  }
}

.steps-bottom {
  text-align: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
}

.bottom-highlight h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.bottom-highlight p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1rem;
}

/* ============ FAQ ============ */
.faq {
  /* */
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.faq-item {
  background: linear-gradient(135deg, rgba(22, 24, 29, 0.4) 0%, rgba(27, 31, 39, 0.2) 100%);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.faq-item[open] {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(212, 175, 55, 0.02) 100%);
  border-color: var(--gold);
}

.faq-item summary {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  transition: all 0.3s ease;
}

.faq-item summary:hover {
  color: var(--gold);
}

.faq-q {
  font-weight: 700;
  color: var(--text-main);
  flex: 1;
  text-align: left;
}

.faq-icon {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 20px 20px;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  border-top: 1px solid var(--line-soft);
}

/* ============ FINAL CTA ============ */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.04) 100%);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, #f5f5f5 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

/* ============ ANIMATIONS ============ */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroGlow {
  0%, 100% {
    filter: blur(40px) brightness(1);
    opacity: 0.6;
  }
  50% {
    filter: blur(40px) brightness(1.2);
    opacity: 0.8;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============ RESPONSIVE ============ */
/* TABLET & SMALL LANDSCAPE */
@media (max-width: 1024px) {
  .earnings-page {
    padding: 50px 20px;
  }

  .hero {
    padding: 40px 28px;
  }

  .section {
    margin-bottom: 60px;
  }

  .step-connector {
    display: none;
  }

  .steps-container {
    flex-direction: column;
  }
}

/* TABLET */
@media (max-width: 768px) {
  .earnings-page {
    padding: 40px 16px;
  }

  /* HERO */
  .hero {
    padding: 28px 20px;
    border-radius: 14px;
    margin-bottom: 50px;
  }

  .hero::before,
  .hero::after {
    opacity: 0.5;
    filter: blur(30px);
  }

  .back-link {
    font-size: 0.9rem;
  }

  .hero-headline {
    font-size: 1.5rem;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .hero-subheadline {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
  }

  /* BUTTONS */
  .btn-lg, .btn-xl {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .btn {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* SECTIONS */
  .section {
    margin-bottom: 50px;
  }

  .section h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  /* EARNINGS */
  .earnings-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .earnings-card {
    padding: 24px;
  }

  .earnings-card--highlight {
    transform: scale(1);
  }

  .earnings-number {
    font-size: 2.2rem;
  }

  .earnings-card-badge {
    font-size: 0.7rem;
  }

  .earnings-card h3 {
    font-size: 1.25rem;
  }

  .earnings-details {
    padding: 12px;
    border-radius: 6px;
  }

  /* MATH BREAKDOWN */
  .earnings-math {
    padding: 28px 20px;
  }

  .earnings-math h3 {
    font-size: 1.2rem;
  }

  .math-breakdown {
    flex-direction: column;
    gap: 8px;
    padding: 16px;
  }

  .math-item {
    min-width: 100%;
  }

  .math-label {
    font-size: 0.85rem;
  }

  .math-value {
    font-size: 1.5rem;
  }

  /* EASY CARDS */
  .easy-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .easy-card {
    padding: 20px;
  }

  .easy-icon {
    font-size: 2rem;
  }

  .easy-card h3 {
    font-size: 1.1rem;
  }

  .easy-card p {
    font-size: 0.9rem;
  }

  /* TRUST CARDS */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-card {
    padding: 20px;
  }

  .trust-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .trust-card p {
    font-size: 0.9rem;
  }

  /* STEPS */
  .step-card {
    min-width: 100%;
    padding: 24px;
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .step-card h3 {
    font-size: 1.15rem;
  }

  .step-card p {
    font-size: 0.9rem;
  }

  .step-divider {
    margin: 16px 0;
  }

  .steps-bottom {
    padding: 28px 20px;
  }

  .bottom-highlight h3 {
    font-size: 1.3rem;
  }

  .bottom-highlight p {
    font-size: 0.9rem;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-item {
    border-radius: 10px;
  }

  .faq-item summary {
    padding: 16px;
    gap: 12px;
  }

  .faq-q {
    font-size: 0.95rem;
  }

  .faq-a {
    padding: 0 16px 16px;
    font-size: 0.9rem;
  }

  /* FINAL CTA */
  .final-cta {
    padding: 32px 20px;
    border-radius: 16px;
  }

  .cta-content h2 {
    font-size: 1.3rem;
  }

  .cta-content > p {
    font-size: 0.95rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .earnings-page {
    padding: 28px 12px;
  }

  /* HERO */
  .hero {
    padding: 20px 16px;
    border-radius: 12px;
    margin-bottom: 40px;
  }

  .hero::before,
  .hero::after {
    width: 250px;
    height: 250px;
    opacity: 0.3;
  }

  .back-link {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }

  .hero-headline {
    font-size: 1.25rem;
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .hero-subheadline {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 10px;
  }

  /* BUTTONS */
  .btn, .btn-lg, .btn-xl {
    padding: 12px 18px;
    font-size: 0.9rem;
    border-radius: 10px;
    width: 100%;
    min-height: 44px;
  }

  /* SECTIONS */
  .section {
    margin-bottom: 40px;
  }

  .section h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 0.85rem;
    margin-bottom: 24px;
  }

  /* EARNINGS CARDS */
  .earnings-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .earnings-card {
    padding: 18px;
    border-radius: 12px;
  }

  .earnings-card-badge {
    font-size: 0.65rem;
    padding: 5px 10px;
    margin-bottom: 8px;
  }

  .earnings-card h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }

  .earnings-display {
    margin-bottom: 18px;
    padding-bottom: 16px;
  }

  .earnings-number {
    font-size: 1.8rem;
    margin-bottom: 2px;
  }

  .earnings-period {
    font-size: 0.8rem;
  }

  .earnings-details {
    margin-bottom: 16px;
    padding: 10px;
    border-left: 2px solid var(--gold);
  }

  .earnings-details p {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }

  .earnings-list li {
    padding: 6px 0;
    font-size: 0.8rem;
  }

  /* MATH */
  .earnings-math {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .earnings-math h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .earnings-math > p {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .math-breakdown {
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    border-radius: 8px;
    margin: 16px 0;
  }

  .math-item {
    min-width: 100%;
  }

  .math-label {
    font-size: 0.75rem;
  }

  .math-value {
    font-size: 1.3rem;
  }

  .math-arrow {
    font-size: 1.2rem;
  }

  .math-note {
    font-size: 0.8rem;
  }

  /* EASY CARDS */
  .easy-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .easy-card {
    padding: 16px;
    border-radius: 10px;
  }

  .easy-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .easy-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .easy-card p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  /* TRUST CARDS */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-card {
    padding: 16px;
    border-radius: 10px;
  }

  .trust-card h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .trust-card p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  /* STEPS */
  .steps-container {
    flex-direction: column;
    gap: 12px;
  }

  .step-card {
    padding: 18px;
    border-radius: 10px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .step-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .step-card p {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .step-divider {
    margin: 12px 0;
  }

  .step-link {
    font-size: 0.85rem;
  }

  .steps-bottom {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .bottom-highlight h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .bottom-highlight p {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-item {
    border-radius: 8px;
  }

  .faq-item summary {
    padding: 14px;
    gap: 10px;
  }

  .faq-q {
    font-size: 0.85rem;
    font-weight: 700;
  }

  .faq-icon {
    font-size: 1rem;
    flex-shrink: 0;
  }

  .faq-a {
    padding: 0 14px 14px;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  /* FINAL CTA */
  .final-cta {
    padding: 24px 16px;
    border-radius: 12px;
    border-width: 1px;
  }

  .cta-content h2 {
    font-size: 1.15rem;
    margin-bottom: 12px;
  }

  .cta-content > p {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  .cta-buttons .btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 12px 16px;
  }
}

/* EXTRA SMALL - IPHONE SE / VERY SMALL PHONES */
@media (max-width: 360px) {
  .earnings-page {
    padding: 20px 8px;
  }

  .hero {
    padding: 16px 12px;
    margin-bottom: 32px;
  }

  .hero-headline {
    font-size: 1.1rem;
  }

  .hero-subheadline {
    font-size: 0.85rem;
  }

  .hero-description {
    font-size: 0.75rem;
    display: none;
  }

  .section h2 {
    font-size: 1.05rem;
  }

  .section-subtitle {
    font-size: 0.75rem;
  }

  .earnings-number {
    font-size: 1.5rem;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.8rem;
    border-radius: 8px;
  }

  .cta-content h2 {
    font-size: 1rem;
  }
}
