/* ═══════════════════════════════════════════════════════════════
   Cashbak.io — Sections Stylesheet
   ──────────────────────────────────────────────
   Contains: Hero + Stats Banner + How It Works + CTAs + Features
═══════════════════════════════════════════════════════════════ */

/* ==================== HERO SECTION ==================== */
.hero {
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  border: 1px solid rgba(16,185,129,.25);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: var(--fw-extra);
  letter-spacing: .5px;
  margin-bottom: 22px;
}

.hero-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero h1 {
  font-size: var(--fs-6xl);
  letter-spacing: -2.5px;
  line-height: 1.05;
  font-weight: var(--fw-ultra);
  margin-bottom: 22px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .gold-text { color: var(--gold); }

.hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--gray);
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-size: 22px;
  font-weight: var(--fw-ultra);
  letter-spacing: -.5px;
  color: var(--green-dark);
}

.hero-stat span {
  font-size: 12px;
  color: var(--gray);
  font-weight: var(--fw-bold);
  letter-spacing: .3px;
  text-transform: uppercase;
}

/* Asset Pills (for Hero) */
.asset-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Hero Right Card */
.hero-card {
  background: linear-gradient(135deg, var(--panel-dark-1), var(--panel-dark-2) 55%, var(--panel-dark-3));
  color: white;
  border-radius: 32px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(16,24,40,.18);
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(16,185,129,.22);
  right: -100px;
  top: -120px;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(245,158,11,.18);
  left: -60px;
  bottom: -80px;
}

.hero-card > * { position: relative; z-index: 1; }

.hero-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(16,185,129,.20);
  border: 1px solid rgba(52,211,153,.4);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: var(--fw-extra);
  letter-spacing: .5px;
  color: #6ee7b7;
  margin-bottom: 20px;
}

.hero-card-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #34d399;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-card h3 {
  font-size: 16px;
  color: var(--green-light);
  font-weight: var(--fw-bold);
  margin-bottom: 6px;
}

.hero-card-amount {
  font-size: 48px;
  font-weight: var(--fw-ultra);
  letter-spacing: -2px;
  color: white;
  margin-bottom: 4px;
}

.hero-card-period {
  font-size: var(--fs-base);
  color: var(--green-light);
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-mini-stat {
  padding: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
}

.hero-mini-stat strong {
  display: block;
  font-size: 18px;
  font-weight: var(--fw-ultra);
  color: white;
}

.hero-mini-stat span {
  font-size: 11px;
  color: var(--green-light);
  font-weight: var(--fw-bold);
}

/* ==================== STATS BANNER ==================== */
.stats-banner {
  background: linear-gradient(135deg, var(--panel-dark-1), var(--panel-dark-2) 55%, var(--panel-dark-3));
  color: white;
  border-radius: var(--radius-4xl);
  padding: 60px 40px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(16,24,40,.18);
}

.stats-banner::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(16,185,129,.22);
  left: -120px;
  top: -150px;
}

.stats-banner::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(245,158,11,.18);
  right: -100px;
  bottom: -120px;
}

.stats-banner > * { position: relative; z-index: 1; }

.stats-banner h2 {
  color: white;
  text-align: center;
  font-size: var(--fs-3xl);
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.stats-banner .sub {
  text-align: center;
  color: var(--green-light);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat-block-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-4xl);
  padding: 60px 40px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.how-it-works::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(16,185,129,.05);
  right: -150px;
  top: -150px;
}

.how-it-works > * { position: relative; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.step {
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 36px;
  right: -20px;
  font-size: 22px;
  color: var(--green);
  font-weight: var(--fw-extra);
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  display: grid;
  place-items: center;
  font-weight: var(--fw-ultra);
  font-size: 28px;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-green-lg);
  position: relative;
  z-index: 2;
}

.step h4 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-extra);
  margin-bottom: 10px;
  letter-spacing: -.3px;
}

.step p {
  font-size: var(--fs-base);
  color: var(--gray);
  font-weight: 700;
  line-height: 1.7;
}

/* ==================== FEATURES GRID ==================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.feature-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-slow);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--green-soft), #fef3c7);
  display: grid;
  place-items: center;
  font-size: 30px;
  margin: 0 auto 18px;
}

.feature-card h3 {
  font-size: 19px;
  font-weight: var(--fw-extra);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: var(--fs-base);
  color: var(--gray);
  font-weight: 700;
  line-height: 1.7;
}

/* ==================== FINAL CTA ==================== */
.final-cta {
  background: linear-gradient(135deg, var(--panel-dark-1), var(--panel-dark-2) 55%, var(--panel-dark-3));
  color: white;
  border-radius: var(--radius-4xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  box-shadow: 0 32px 100px rgba(16,24,40,.20);
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(16,185,129,.22);
  left: -150px;
  top: -200px;
}

.final-cta::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(245,158,11,.18);
  right: -120px;
  bottom: -160px;
}

.final-cta > * { position: relative; z-index: 1; }

.final-cta h2 {
  font-size: var(--fs-5xl);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
  color: white;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  font-size: 17px;
  color: var(--green-light);
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-meta {
  margin-top: 28px;
  font-size: var(--fs-sm);
  color: var(--green-light);
  font-weight: var(--fw-bold);
  opacity: .8;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
  background: white;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 44px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.page-header::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(16,185,129,.08);
  right: -100px;
  top: -120px;
}

.page-header::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(245,158,11,.06);
  left: -80px;
  bottom: -100px;
}

.page-header > * { position: relative; z-index: 1; }

.page-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--purple-soft);
  color: var(--purple);
  border: 1px solid rgba(139,92,246,.25);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: var(--fw-extra);
  letter-spacing: .5px;
  margin-bottom: 18px;
}

.page-header h1 {
  font-size: var(--fs-4xl);
  letter-spacing: -1.5px;
  line-height: 1.15;
  font-weight: var(--fw-ultra);
  margin-bottom: 14px;
}

.page-header h1 .highlight {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header p {
  font-size: 16px;
  color: var(--gray);
  font-weight: 700;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 24px;
}

.header-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
}

.header-stat strong {
  display: block;
  font-size: 20px;
  font-weight: var(--fw-ultra);
  letter-spacing: -.5px;
  color: var(--green-dark);
}

.header-stat span {
  font-size: 11px;
  color: var(--gray);
  font-weight: var(--fw-bold);
  letter-spacing: .3px;
  text-transform: uppercase;
}
