*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #06020f;
  --bg-alt: #0b0418;
  --card-bg: rgba(14, 7, 33, 0.88);
  --card-border: rgba(255, 255, 255, 0.08);
  --accent: #cf33ff;
  --accent-soft: rgba(207, 51, 255, 0.4);
  --accent-2: #7f3cff;
  --accent-3: #ff6bd5;
  --text: #f8f3ff;
  --muted: #a79ac5;
  --danger: #ff4d8a;
  --success: #35e19f;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.65);
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #1b0939 0px, #06020f 45%, #020008 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-2), var(--accent-3));
  border-radius: 999px;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  z-index: 999;
  box-shadow: 0 0 16px rgba(207, 51, 255, 0.8);
}

/* Layout helpers */
.container {
  width: min(1120px, 100% - 32px);
  margin-inline: auto;
}

.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-alt {
  background: radial-gradient(circle at top right, rgba(143, 88, 255, 0.35) 0, transparent 55%), radial-gradient(circle at bottom left, rgba(255, 107, 213, 0.22) 0, transparent 55%);
}

.section-title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

.section-title span {
  color: var(--accent-3);
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 560px;
}

/* Hero */
.hero {
  position: relative;
  padding: 20px 0 72px;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left, rgba(207, 51, 255, 0.4), transparent 55%), radial-gradient(circle at top right, rgba(127, 60, 255, 0.3), transparent 56%), radial-gradient(circle at bottom, rgba(9, 232, 185, 0.15), transparent 55%);
  opacity: 0.85;
  z-index: -2;
}

.hero-noise {
  position: absolute;
  inset: -10%;
  opacity: 0.18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1' numOctaves='3' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.8'/%3E%3C/svg%3E");
  z-index: -1;
  mix-blend-mode: soft-light;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(1120px, 100% - 32px);
  margin: 0 auto 24px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(7, 2, 23, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 15px;
  font-weight: 700;
}

.logo-subtitle {
  font-size: 11px;
  color: var(--muted);
}

.nav-link {
  font-size: 14px;
  text-decoration: none;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav-btn {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #0b0418;
  background: linear-gradient(120deg, var(--accent-2), var(--accent-3));
  box-shadow: 0 10px 30px rgba(207, 51, 255, 0.6);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.nav-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 40%, transparent 60%, rgba(255, 255, 255, 0.12));
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 0.25s ease, transform 0.4s ease;
}

.nav-btn:hover::after {
  opacity: 1;
  transform: translateX(40%);
}

/* Hero content */
.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin-top: 16px;
}

.hero-main {
  max-width: 640px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 2, 25, 0.8);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--success) 0, #0b0418 65%);
  box-shadow: 0 0 12px rgba(53, 225, 159, 0.8);
}

.hero-title {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 16px;
}

.hero-title span {
  background: linear-gradient(120deg, #ffe3ff, var(--accent-3), #ffe3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 20px;
}

.primary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at top left, #ffe3ff 0, var(--accent-3) 35%, var(--accent-2) 70%, #3c158f 100%);
  color: #050110;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 1);
}

.btn-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.26) 0, transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.primary-btn:hover .btn-glow {
  opacity: 1;
}

.ghost-btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(2, 0, 12, 0.75);
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.18s ease, transform 0.16s ease, border-color 0.18s ease;
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.badge {
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 2, 22, 0.9);
  backdrop-filter: blur(18px);
  min-width: 180px;
}

.badge-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.badge-value {
  font-size: 20px;
  font-weight: 700;
}

.badge-caption {
  font-size: 12px;
  color: var(--muted);
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--success);
  color: var(--success);
  font-size: 12px;
}

/* Hero side card */
.hero-side {
  position: relative;
}

.hero-card {
  border-radius: var(--radius-xl);
  padding: 12px;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 40%), rgba(7, 3, 27, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left, rgba(207, 51, 255, 0.2), transparent 55%), radial-gradient(circle at bottom right, rgba(9, 232, 185, 0.2), transparent 55%);
  mix-blend-mode: soft-light;
  opacity: 0.85;
  pointer-events: none;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.dot-green {
  background: #2ecc71;
}
.dot-yellow {
  background: #f1c40f;
}
.dot-red {
  background: #e74c3c;
}

.hero-card-body {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  padding: 16px 16px 14px;
  background: radial-gradient(circle at top right, rgba(207, 51, 255, 0.28), transparent 50%), rgba(9, 4, 32, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-card-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--muted);
}

.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.hero-card-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

.hero-card-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 12px;
}

.hero-card-stat {
  padding: 10px 10px 8px;
  border-radius: 16px;
  background: rgba(2, 0, 12, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 2px;
}

.stat-value {
  font-size: 15px;
  font-weight: 700;
}

/* Parallax bubbles */
.hero-parallax {
  position: absolute;
  inset: -20%;
  pointer-events: none;
}

.bubble {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.6;
}

.bubble-1 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(207, 51, 255, 0.6), transparent 70%);
  top: 8%;
  right: 10%;
}

.bubble-2 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(9, 232, 185, 0.5), transparent 70%);
  bottom: 0;
  left: 0;
}

.bubble-3 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255, 107, 213, 0.6), transparent 70%);
  top: 55%;
  right: -10%;
}

/* Sections */
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.steps {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(5, 2, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at top, var(--accent-3), var(--accent-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.7);
}

.step-body h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.step-body p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* Video card */
.section-media {
  display: flex;
  justify-content: flex-end;
}

.video-card {
  border-radius: var(--radius-xl);
  background: rgba(6, 2, 24, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 14px 16px;
  box-shadow: var(--shadow-soft);
  max-width: 420px;
  width: 100%;
}

.video-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  margin-bottom: 12px;
}

.video-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--danger);
  box-shadow: 0 0 12px rgba(255, 77, 138, 0.9);
}

.video-player {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-color: #000;
  overflow: hidden;
}

.video-bullets {
  margin: 12px 0 0;
  padding-left: 18px;
  font-size: 12px;
  color: var(--muted);
}

/* Earn section */
.earn-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 30px;
  margin-top: 28px;
}

.earn-calc,
.earn-stats {
  border-radius: var(--radius-xl);
  padding: 18px 18px 20px;
  background: rgba(5, 2, 22, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.block-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.block-caption {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--muted);
}

.field-label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}

.field-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(2, 0, 12, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 10px;
}

#reviewCountInput {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 14px;
  outline: none;
  -moz-appearance: textfield;
}
#reviewCountInput::-webkit-outer-spin-button,
#reviewCountInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.field-unit {
  font-size: 13px;
  color: var(--muted);
}

/* Range styling */
#reviewCountRange {
  width: 100%;
  accent-color: var(--accent-3);
}

.note {
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
}

.earn-results {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.earn-card {
  padding: 10px 12px;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(207, 51, 255, 0.28), transparent 55%), rgba(3, 0, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.earn-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.earn-value {
  font-size: 20px;
  font-weight: 700;
}

.table-wrapper {
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(2, 0, 12, 0.9);
}

.earn-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.earn-table th,
.earn-table td {
  padding: 8px 10px;
  text-align: left;
}

.earn-table thead {
  background: rgba(255, 255, 255, 0.04);
}

.earn-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.pill-gold {
  background: linear-gradient(120deg, #f7d37a, #f2b94b);
  color: #3b2504;
}
.pill-silver {
  background: linear-gradient(120deg, #d7dee5, #b9c6d5);
  color: #111827;
}
.pill-bronze {
  background: linear-gradient(120deg, #f3b796, #e6864b);
  color: #3b1302;
}

.hint {
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.review-card {
  padding: 16px 14px 14px;
  border-radius: 20px;
  background: rgba(6, 2, 24, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-card--highlight {
  background: radial-gradient(circle at top, rgba(207, 51, 255, 0.35), transparent 55%), rgba(6, 2, 24, 0.96);
  border-color: rgba(207, 51, 255, 0.8);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.review-name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.review-tag {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.review-badge {
  margin-left: auto;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(9, 232, 185, 0.16);
  color: var(--success);
  border: 1px solid rgba(9, 232, 185, 0.7);
}

.review-text {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
}

/* CTA section */
.section-cta {
  padding-bottom: 96px;
}

.cta-content {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: center;
}

.cta-list {
  margin: 16px 0 18px;
  padding-left: 18px;
  font-size: 13px;
  color: var(--muted);
}

.cta-list li + li {
  margin-top: 6px;
}

.cta-card {
  border-radius: var(--radius-xl);
  padding: 18px 16px 18px;
  background: radial-gradient(circle at top left, rgba(207, 51, 255, 0.35), transparent 60%), rgba(5, 2, 24, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-soft);
}

.cta-label {
  margin: 0 0 4px;
  font-size: 12px;
  color: var(--muted);
}

.cta-value {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}

.cta-steps {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--muted);
}

.cta-steps li + li {
  margin-top: 4px;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0 28px;
  background: rgba(3, 0, 12, 0.98);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 600;
}

.footer-text {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.footer-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-link:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

/* Floating CTA button */
.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at top left, #ffe3ff 0, var(--accent-3) 40%, var(--accent-2) 80%);
  color: #050110;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.95);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform-origin: center;
  animation: floatingPulse 2.6s ease-in-out infinite;
}

.floating-cta:hover {
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.02);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animations */
@keyframes floatingPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.95);
  }
  50% {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 1);
  }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-side {
    order: -1;
  }

  .section-grid,
  .earn-grid,
  .cta-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    padding-inline: 12px;
  }

  .nav-right {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    padding-bottom: 56px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-badges {
    flex-direction: column;
  }

  .earn-results {
    grid-template-columns: minmax(0, 1fr);
  }

  .reviews-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-cta {
    left: 16px;
    right: 16px;
    justify-content: center;
  }
}
