/*
 * Retofit Landing Page
 * Reuses admin design tokens: #2563eb primary, Inter font, 12px radius, #e2e8f0 borders
 */

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0f172a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* === Utility === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-muted { color: #64748b; font-size: 14px; }
.text-white { color: #ffffff; }
.text-light { color: #cbd5e1; font-size: 18px; line-height: 1.7; }
.text-gradient {
  background: linear-gradient(135deg, #60a5fa, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Buttons (from admin, extended) === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}
.btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn-white {
  background: #ffffff;
  color: #2563eb;
  border-color: #ffffff;
}
.btn-white:hover {
  background: #f0f4ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,255,255,0.3);
}

.btn-nav {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  padding: 8px 18px;
  font-size: 13px;
}
.btn-nav:hover {
  background: #1d4ed8;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 12px;
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
}

.nav.scrolled .nav-links a { color: #0f172a; }
.nav.scrolled .nav-logo span { color: #2563eb; }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img { width: 36px; height: 36px; border-radius: 8px; }
.nav-logo span {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: #ffffff;
  transition: color 0.3s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #ffffff; }
.nav.scrolled .nav-links a:hover { color: #2563eb; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav.scrolled .nav-toggle span { background: #0f172a; }

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 40%, #3b82f6 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(37,99,235,0.3) 0%, transparent 70%);
}

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

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -2px;
  margin: 0 0 20px;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #a5f3fc, #67e8f9, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  max-width: 640px;
  margin: 0 auto;
}

.hero-stat { text-align: center; }
.hero-stat-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === Social Proof Bar === */
.social-proof {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 32px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
}

.proof-item svg { color: #2563eb; flex-shrink: 0; }
.proof-item strong { display: block; font-size: 14px; font-weight: 700; color: #0f172a; }
.proof-item span { display: block; font-size: 13px; color: #64748b; }

/* === Sections === */
.section {
  padding: 96px 0;
}
.section-light { background: #f8fafc; }
.section-dark { background: linear-gradient(135deg, #0f172a, #1e293b); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-tag-light {
  background: rgba(96, 165, 250, 0.15);
  color: #93c5fd;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 12px;
}

.section-subtitle {
  font-size: 17px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* === Steps (How it works) === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-color: #2563eb;
}

.step-number {
  font-size: 48px;
  font-weight: 900;
  color: #eff6ff;
  line-height: 1;
  margin-bottom: 16px;
}
.step-card:hover .step-number { color: #dbeafe; }

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #eff6ff;
  border-radius: 14px;
  color: #2563eb;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}

.step-card p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* === Challenge Section (Dark) === */
.challenge-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.challenge-content h2 { margin-bottom: 20px; }

.challenge-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.challenge-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}
.challenge-list li svg { flex-shrink: 0; margin-top: 2px; }
.challenge-list li span { color: #e2e8f0; font-size: 15px; line-height: 1.5; }
.challenge-list li strong { color: #ffffff; }

.challenge-cta-text {
  color: #94a3b8;
  font-size: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border-left: 3px solid #2563eb;
}
.challenge-cta-text strong { color: #93c5fd; }

.money-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(12px);
}

.money-card-header {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-align: center;
}

.money-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.money-flow svg { color: #60a5fa; }

.money-in, .money-out {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
}
.money-in { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); }
.money-out { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.2); }

.money-label { display: block; font-size: 12px; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; }
.money-value { display: block; font-size: 24px; font-weight: 800; color: #ffffff; margin: 6px 0; }
.money-detail { display: block; font-size: 13px; color: #94a3b8; }
.money-in .money-value { color: #fca5a5; }
.money-out .money-value { font-size: 16px; color: #86efac; }

/* === Features Grid === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: #dbeafe;
}

.feature-card-large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.feature-card-img {
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  min-height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.feature-card-img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
}

.feature-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 12px;
  color: #2563eb;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
}

.feature-card p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* === Points Grid === */
.points-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.point-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.point-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.point-value {
  font-size: 36px;
  font-weight: 900;
  color: #2563eb;
  margin-bottom: 8px;
}

.point-label {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.point-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

/* === Rewards Grid === */
.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reward-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.reward-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: #dbeafe;
}

.reward-icon {
  font-size: 40px;
  margin-bottom: 12px;
  line-height: 1;
}

.reward-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}

.reward-card p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

/* === Rules Grid === */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.rule-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}
.rule-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

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

.rule-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.rule-card p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* === Pricing === */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
  align-items: center;
}

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
}

.pricing-card-pro {
  background: rgba(255,255,255,0.08);
  border: 2px solid #2563eb;
  padding: 44px 32px;
  position: relative;
  transform: scale(1.04);
  box-shadow: 0 8px 40px rgba(37, 99, 235, 0.25);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #ffffff;
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 18px;
  font-weight: 600;
  color: #94a3b8;
  margin: 0 0 16px;
}

.pricing-tier-pro {
  font-size: 22px;
  font-weight: 800;
  color: #60a5fa;
}

.pricing-price { margin-bottom: 12px; }

.pricing-amount {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -2px;
}

.pricing-period {
  font-size: 16px;
  color: #64748b;
  font-weight: 500;
}

.pricing-desc {
  font-size: 14px;
  color: #94a3b8;
  margin: 0 0 24px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
}

.pricing-feature-yes,
.pricing-feature-no {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.5;
}

.pricing-feature-yes svg,
.pricing-feature-no svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-feature-yes { color: #e2e8f0; }
.pricing-feature-no { color: #64748b; }

.pricing-feature-highlight { color: #ffffff; }
.pricing-feature-highlight strong { color: #67e8f9; }

.btn-pricing-starter {
  width: 100%;
  background: rgba(255,255,255,0.08);
  color: #94a3b8;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}
.btn-pricing-starter:hover {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

.btn-pricing-pro {
  width: 100%;
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}
.btn-pricing-pro:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card-pro { transform: scale(1); order: -1; }
}

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: #2563eb; }

.faq-item summary {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: #94a3b8;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
  color: #2563eb;
}

.faq-item p {
  padding: 0 20px 18px;
  margin: 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* === CTA Section === */
.section-cta {
  background: linear-gradient(135deg, #1e40af, #2563eb, #3b82f6);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  border-radius: 50%;
}

.cta-content { position: relative; z-index: 1; }

.cta-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -1px;
}

.cta-content > p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-actions {
  margin-bottom: 20px;
}

.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* === Footer === */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 48px 0;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo { width: 36px; height: 36px; border-radius: 8px; }
.footer-brand strong { display: block; color: #ffffff; font-size: 16px; letter-spacing: -0.3px; }
.footer-brand span { display: block; font-size: 12px; color: #64748b; }

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #ffffff; }

.footer-copy {
  font-size: 12px;
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #1e293b;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-large { grid-column: 1 / -1; }
  .points-grid { grid-template-columns: repeat(2, 1fr); }
  .challenge-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: #0f172a !important; padding: 8px 0; }
  .nav-toggle { display: block; }

  .hero { padding: 100px 0 60px; }
  .hero-title { letter-spacing: -1px; }
  .hero-stats { gap: 16px; padding: 20px; }
  .hero-stat-divider { display: none; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }

  .section { padding: 64px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-template-columns: 1fr; }
  .feature-card-img { min-height: 180px; }
  .points-grid { grid-template-columns: 1fr 1fr; }
  .rewards-grid { grid-template-columns: 1fr 1fr; }
  .rules-grid { grid-template-columns: 1fr; }

  .proof-grid { grid-template-columns: 1fr; gap: 16px; }

  .footer-content { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .points-grid { grid-template-columns: 1fr; }
  .rewards-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
}
