*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #c9a84c;
  --dark: #1a1a2e;
  --light: #f9f9f9;
  --gold-light: #e8c97a;
  --gold-dark: #9e7a2a;
  --ink: #0d0d0d;
  --charcoal: #1a1a1a;
  --smoke: #2c2c2c;
  --ivory: #f5f0e8;
  --cream: #faf7f2;
  --silver: #a0a0a0;
  --white: #ffffff;
  --ff-display: "Cormorant Garamond", serif;
  --ff-body: "Montserrat", sans-serif;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(201,168,76,0.07) 79px, rgba(201,168,76,0.07) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(201,168,76,0.07) 79px, rgba(201,168,76,0.07) 80px);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: pulse 8s ease-in-out infinite alternate;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -200px; right: -150px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: #764ba2;
  bottom: -100px; left: -100px;
  animation-delay: 3s;
}

@keyframes pulse {
  from { transform: scale(1); }
  to   { transform: scale(1.2); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 900px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before,
.hero-badge::after {
  content: "";
  width: 20px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  animation: fadeUp 0.9s ease 0.1s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-divider {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2rem auto;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero p {
  font-size: clamp(0.82rem, 2vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  line-height: 1.9;
  animation: fadeUp 0.9s ease 0.3s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1s ease 0.6s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.7), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── SECTION BASE ─── */
.section { padding: 5rem 0; }

.container-css {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.label::before {
  content: "";
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--gold-dark);
}

.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-heading em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-sub {
  color: #4A4A4A;
  font-weight: 300;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* ─── MISSION ─── */
.mission-section { background: var(--cream); }

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-text p {
  font-size: 0.95rem;
  line-height: 1.95;
  color: #4a4a4a;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.mission-card {
  position: relative;
  background: var(--charcoal);
  padding: 2.5rem;
  border-radius: 4px;
  overflow: hidden;
}
.mission-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}
.mission-card-number {
  font-family: var(--ff-display);
  font-size: 6rem;
  font-weight: 300;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.5rem;
}
.mission-card h3 {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}
.mission-card p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  position: relative;
}
.mission-card-accent {
  display: block;
  width: 40px; height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
}

/* ─── SERVICES ─── */
.services-section { background: var(--ivory); }
.services-header { text-align: center; margin-bottom: 3rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.1); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: var(--gold-dark);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.service-card:hover .service-icon { background: var(--gold-dark); border-color: var(--gold-dark); color: white; }
.service-card h4 {
  font-family: var(--ff-display);
  font-size: 1.35rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.85rem; line-height: 1.75; color: var(--silver); font-weight: 300; }

/* ─── HOW IT WORKS ─── */
.howitworks-section { background: var(--light); padding: 5rem 0; }

.howitworks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.how-card {
  background: white;
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.how-card:hover { transform: translateY(-8px); box-shadow: 0 20px 35px rgba(0,0,0,0.1); }

.how-icon {
  width: 70px; height: 70px;
  background: rgba(198,164,59,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem; color: var(--gold);
}
.how-card h4 { 
  font-family: var(--ff-display);
  font-size: 1.45rem; 
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem; 
}
.how-card p  { color: var(--silver); line-height: 1.6; font-size: 0.81rem; }

/* ─── STATS ─── */
.stats-section {
  background: var(--charcoal);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(201,168,76,0.04) 59px, rgba(201,168,76,0.04) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(201,168,76,0.04) 59px, rgba(201,168,76,0.04) 60px);
}

.stats-header { text-align: center; margin-bottom: 3rem; position: relative; }
.stats-header .label { color: var(--gold); }
.stats-header .section-heading { color: var(--white); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative; z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative; z-index: 1;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--white), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.stat-accent { width: 24px; height: 2px; background: var(--gold); margin: 1rem auto 0; opacity: 0.5; }

/* ─── WHY US ─── */
.why-section { background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-card {
  background: var(--charcoal);
  padding: 2.5rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201,168,76,0.06), transparent 60%);
  pointer-events: none;
}
.why-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.why-card h3 em { font-style: italic; color: var(--gold-light); }
.why-card p { font-size: 0.9rem; line-height: 1.85; color: rgba(255,255,255,0.55); font-weight: 300; margin-top: 1.2rem; }
.why-card-line { width: 50px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 1.5rem 0; }

.why-list { list-style: none; margin-top: 1.5rem; }
.why-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.88rem;
  color: #4a4a4a;
  font-weight: 300;
  line-height: 1.6;
}
.why-list li:last-child { border-bottom: none; }
.why-list-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--gold-dark);
}

/* ─── WALLET & REFERRAL (old section) ─── */
.wallet-referral-section {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
  color: white;
  padding: 5rem 0;
}
.wallet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.wallet-card,
.referral-cards {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s;
}
.wallet-card:hover,
.referral-cards:hover { transform: translateY(-5px); background: rgba(255,255,255,0.08); }

.wallet-icon,
.referral-icon { font-size: 3rem; color: var(--gold); margin-bottom: 1.5rem; }
.wallet-card h3,
.referral-cards h3 { font-family: "Cormorant Garamond", serif; font-weight: 600; margin-bottom: 1rem; }
.wallet-divider,
.referral-divider { width: 50px; height: 2px; background: var(--gold); margin: 1rem auto; }
.wallet-badge {
  display: inline-block;
  background: rgba(198,164,59,0.2);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 1rem;
}
.referral-features { list-style: none; text-align: left; margin: 1.5rem 0; }
.referral-features li { margin-bottom: 0.8rem; font-size: 0.9rem; }
.referral-features li i { color: var(--gold); margin-right: 0.5rem; }

.btn-refer {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-refer:hover { background: #b38f2c; color: white; }

/* ─── UPLOAD STEPS ─── */
.how-upload-section { background: #FAFAF8; }

.upload-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 3rem 0 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.upload-step {
  flex: 1 1 180px;
  max-width: 220px;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}
.upload-step-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C 0%, #E8C96A 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem; color: #fff;
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
  transition: transform 0.3s;
}
.upload-step:hover .upload-step-icon { transform: scale(1.1) rotate(-5deg); }

.upload-step-num {
  position: absolute; top: 1rem; right: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700;
  color: rgba(201,168,76,0.12);
  line-height: 1;
}
.upload-step h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: #1a1a1a; }
.upload-step p  { font-size: 0.82rem; line-height: 1.7; color: #5a5a5a; font-weight: 300; }

.upload-arrow {
  display: flex; align-items: center; padding: 0 0.5rem;
  color: #C9A84C; font-size: 1.2rem; margin-top: -2rem;
}

.upload-categories {
  display: flex; gap: 0.8rem; flex-wrap: wrap;
  justify-content: center; margin-top: 1.5rem;
}
.cat-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border: 1.5px solid #C9A84C;
  border-radius: 100px;
  font-size: 0.82rem; font-weight: 500; color: #C9A84C;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  cursor: default;
}
.cat-badge:hover { background: #C9A84C; color: #fff; }

/* ─── CTA ─── */
.cta-section {
  background: var(--charcoal);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.06), transparent);
}
.cta-inner { position: relative; z-index: 1; }
.cta-section .section-heading { color: var(--white); }
.cta-section .section-heading em { color: var(--gold-light); }
.cta-section p { color: rgba(255,255,255,0.5); font-size: 0.9rem; letter-spacing: 0.05em; margin-top: 1rem; font-weight: 300; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--charcoal);
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  white-space: nowrap;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.45); }
.btn-gold i { font-size: 0.8rem; }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.78rem;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline-gold:hover { background: var(--gold); color: white; }

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ─── EARN SECTION ─── */
.earn-section { background: #fff; }

.earn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.earn-visual { position: relative; display: flex; justify-content: center; }

.earn-phone {
  width: 277px; height: 417px;
  background: #111;
  border-radius: 32px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  overflow: hidden;
  border: 3px solid #333;
}
.earn-phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 70px; height: 22px;
  background: #111;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}
.earn-phone-screen {
  width: 100%; height: 100%;
  background: #0d0d0d;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; padding: 1.5rem 1rem;
}
.earn-mini-video {
  width: 100%; background: #1a1a1a;
  border-radius: 10px; padding: 2rem 1rem;
  text-align: center; color: #C9A84C;
  font-size: 2rem;
}
.earn-mini-video span { display: block; font-size: 0.65rem; color: #888; margin-top: 0.3rem; }

.earn-timer-bar { width: 100%; height: 4px; background: #222; border-radius: 2px; overflow: hidden; }
.earn-timer-fill {
  height: 100%; width: 70%;
  background: linear-gradient(90deg, #C9A84C, #E8C96A);
  border-radius: 2px;
  animation: timerPulse 2s ease-in-out infinite alternate;
}
@keyframes timerPulse { from { width: 30%; } to { width: 90%; } }

.earn-wallet-pop {
  background: linear-gradient(135deg, #C9A84C, #E8C96A);
  color: #fff; border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.4rem;
  animation: popPulse 1.5s ease-in-out infinite;
}
@keyframes popPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}

.earn-coins { position: absolute; }
.earn-coin {
  position: absolute;
  background: linear-gradient(135deg, #C9A84C, #E8C96A);
  color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 0.3rem 0.6rem; border-radius: 100px;
  box-shadow: 0 4px 12px rgba(201,168,76,0.4);
  animation: floatCoin 3s ease-in-out infinite;
}
.earn-coin.c1 { top: -30px; left: -50px; animation-delay: 0s; }
.earn-coin.c2 { top: 60px;  right: -60px; animation-delay: 1s; }
.earn-coin.c3 { bottom: 20px; left: -60px; animation-delay: 2s; }
@keyframes floatCoin {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.earn-content p { font-size: 0.9rem; line-height: 1.9; color: #4A4A4A; font-weight: 300; margin-bottom: 1.5rem; }

.earn-steps { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.earn-step-row { display: flex; gap: 1rem; align-items: flex-start; }
.earn-step-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #C9A84C; flex-shrink: 0; margin-top: 5px;
}
.earn-step-row strong { font-size: 0.88rem; font-weight: 600; color: #1a1a1a; display: block; margin-bottom: 0.2rem; }
.earn-step-row p { font-size: 0.8rem; line-height: 1.7; color: #666; margin: 0; font-weight: 300; }

.earn-stat-row { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.earn-mini-stat {
  display: flex; flex-direction: column;
  border-left: 2px solid #C9A84C;
  padding-left: 1rem;
}
.earn-mini-num { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: #C9A84C; line-height: 1; }
.earn-mini-label { font-size: 0.7rem; color: #888; font-weight: 400; margin-top: 0.2rem; }

.earn-limit-note {
  background: rgba(255, 215, 0, 0.1);
  border-left: 4px solid #ffd700;
  padding: 10px 15px;
  margin: 15px 0;
  font-size: 14px;
  border-radius: 6px;
}
/* ─── WALLET DARK SECTION ─── */
.wallet-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 5rem 0;
  position: relative; overflow: hidden;
}
.wallet-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.wallet-inner { text-align: center; position: relative; max-width: 700px; margin: 0 auto; padding: 0 1.5rem; }
.wallet-inner .section-heading { color: #fff; }
.wallet-inner p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.9; font-weight: 300; margin: 1rem 0 2rem; }

.wallet-icon-big {
  font-size: 3rem; color: #C9A84C;
  margin-bottom: 1rem;
  animation: walletFloat 3s ease-in-out infinite;
}
@keyframes walletFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.wallet-features { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.wallet-feat {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.6rem 1.2rem; border-radius: 100px;
  color: rgba(255,255,255,0.8); font-size: 0.78rem;
  font-weight: 400; transition: all 0.3s;
}
.wallet-feat i { color: #C9A84C; }
.wallet-feat:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.5); transform: translateY(-2px); }

/* ─── REFERRAL SECTION ─── */
.referral-section { background: #FAFAF8; }

.referral-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.referral-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(201,168,76,0.15);
}

.referral-card-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C9A84C, #E8C96A);
  color: #fff; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 100px;
  margin-bottom: 2rem;
}

.referral-flow-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.ref-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #C9A84C22, #E8C96A22);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #C9A84C; font-size: 1rem; flex-shrink: 0;
}
.ref-text h4 { font-size: 0.9rem; font-weight: 600; color: #1a1a1a; margin-bottom: 0.3rem; }
.ref-text p  { font-size: 0.8rem; line-height: 1.7; color: #666; font-weight: 300; margin: 0; }

.ref-connector {
  width: 1px; height: 1.5rem;
  background: linear-gradient(to bottom, #C9A84C44, transparent);
  margin: 0.6rem 0 0.6rem 22px;
}

.referral-calculator {
  background: #0d0d0d;
  border-radius: 16px;
  padding: 2.5rem;
  color: #fff;
  position: relative; overflow: hidden;
}
.referral-calculator::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
}

.ref-calc-title {
  font-size: 0.9rem; font-weight: 600;
  color: #C9A84C; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.ref-calc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 0;
  font-size: 0.82rem; color: rgba(255,255,255,0.7);
  font-weight: 300;
}
.ref-calc-val { font-weight: 600; color: #fff; font-size: 0.88rem; white-space: nowrap; }
.ref-calc-val small { font-weight: 300; color: #888; font-size: 0.7rem; margin-left: 0.2rem; }
.ref-calc-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0.3rem 0; }
.highlight-row { background: rgba(201,168,76,0.06); border-radius: 8px; padding: 0.7rem 0.5rem; }
.gold-val { color: #E8C96A !important; }
.ref-calc-note {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid #C9A84C;
  padding: 0.8rem 1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  line-height: 1.6; margin-top: 1rem;
}
.ref-calc-note i { color: #C9A84C; margin-right: 0.3rem; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.how-card.ad-card {
  padding: 0;
  overflow: hidden;
}

.how-card.ad-card ins.adsbygoogle {
  width: 100% !important;
  max-width: 100%;
  display: block;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS — FULLY MOBILE FIRST
   ═══════════════════════════════════════════════════ */

/* ── Tablet: ≤ 1024px ── */
@media (max-width: 1024px) {
  .earn-grid {
    gap: 3rem;
  }
  .mission-grid,
  .why-grid {
    gap: 3rem;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Small tablet / large phone: ≤ 900px ── */
@media (max-width: 900px) {
  .section { padding: 4rem 0; }

  /* Mission */
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Stats: 2×2 */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 2rem 1rem;
  }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child       { border-bottom: none; }

  /* Earn */
  .earn-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .earn-visual { margin-bottom: 1rem; }

  /* Referral */
  .referral-grid { grid-template-columns: 1fr; }

  /* Upload flow */
  .upload-flow {
    flex-direction: column;
    align-items: center;
  }
  .upload-arrow {
    transform: rotate(90deg);
    margin: 0.2rem 0;
  }
  .upload-step { max-width: 100%; width: 100%; }
}

/* ── Phone: ≤ 768px ── */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .hero-badge { font-size: 0.6rem; padding: 0.35rem 0.9rem; }
  .hero p { letter-spacing: 0.02em; }
  .hero-scroll { display: none; }

  /* Hero orbs smaller on mobile */
  .hero-orb-1 { width: 300px; height: 300px; top: -100px; right: -80px; }
  .hero-orb-2 { width: 200px; height: 200px; bottom: -50px; left: -50px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .service-card  { padding: 1.5rem 1rem; }

  /* How it works */
  .howitworks-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }

  /* Mission card */
  .mission-card { padding: 2rem 1.5rem; }
  .mission-card-number { font-size: 4rem; }

  /* Why card */
  .why-card { padding: 2rem 1.5rem; }

  /* Wallet & referral (old) */
  .wallet-grid { grid-template-columns: 1fr; }
  .wallet-card,
  .referral-cards { padding: 2rem 1.5rem; }

  /* Referral section */
  .referral-card,
  .referral-calculator { padding: 2rem 1.5rem; }

  /* Earn phone — center it nicely */
  .earn-phone { width: 242px; height: 366px; }

  .earn-mini-video { padding: 4rem 1rem; }
  /* Upload categories */
  .upload-categories { gap: 0.6rem; }
  .cat-badge { padding: 0.45rem 1rem; font-size: 0.78rem; }

  /* CTA buttons */
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons a { width: 100%; max-width: 260px; justify-content: center; }

  /* Wallet features wrap nicely */
  .wallet-features { gap: 0.7rem; }
  .wallet-feat { font-size: 0.75rem; padding: 0.55rem 1rem; }

  /* Earn stat row */
  .earn-stat-row { gap: 1rem; }
}

/* ── Small phone: ≤ 540px ── */
@media (max-width: 540px) {
  .section { padding: 3rem 0; }
  .container-css { padding: 0 1rem; }

  /* Services: 1 column */
  .services-grid { grid-template-columns: 1fr; }

  /* How it works: 1 column */
  .howitworks-grid { grid-template-columns: 1fr; }

  /* Stats: 1 column */
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }

  /* Mission card number smaller */
  .mission-card-number { font-size: 3rem; top: 0.5rem; right: 1rem; }

  /* Upload step full width */
  .upload-step { max-width: 100%; padding: 1.5rem 0.5rem; }
  .upload-step-num { font-size: 2rem; right: 0.5rem; }

  /* Earn stat row: stack */
  .earn-stat-row { flex-direction: column; gap: 1rem; }

  /* Ref calc rows: allow wrap */
  .ref-calc-row { flex-wrap: wrap; gap: 0.3rem; }
  .ref-calc-val { font-size: 0.82rem; }

  /* btn-gold full width on tiny screens */
  .btn-gold, .btn-outline-gold {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    text-align: center;
  }

  /* Hero badge hidden on very small */
  .hero-badge::before,
  .hero-badge::after { width: 12px; }

  /* Why list text slightly smaller */
  .why-list li { font-size: 0.82rem; }

  /* Referral features */
  .referral-features li { font-size: 0.85rem; }

  /* Earn phone full width centered */
  .earn-phone { width: 237px; height: 324px; }
  .earn-mini-video { padding: 4.5rem 1rem; font-size: 1.8rem; }
}

/* ── Extra small: ≤ 380px ── */
@media (max-width: 380px) {
  .hero-badge { font-size: 0.55rem; letter-spacing: 0.15em; }
  .hero h1   { font-size: 2.4rem; }

  .mission-card { padding: 1.5rem 1rem; }
  .why-card     { padding: 1.5rem 1rem; }
  .referral-card,
  .referral-calculator,
  .wallet-card,
  .referral-cards { padding: 1.5rem 1rem; }

  .how-icon { width: 55px; height: 55px; font-size: 1.5rem; }

  .upload-step-icon { width: 52px; height: 52px; font-size: 1.2rem; }

  .earn-phone { width: 247px; height: 280px; }
  .earn-mini-video { padding: 2.2rem 1.6rem; font-size: 1.5rem; }
  .earn-coin.c2 {
    top: -25px;
    right: -48px;
    animation-delay: 1s;
}
.earn-coin.c1 {
    top: -22px;
    left: -24px;
    animation-delay: 0s;
}
.earn-coin.c3 {
    bottom: 11px;
    left: -56px;
    animation-delay: 2s;
}
}

.ad-container {
  background: linear-gradient(145deg, #0f1320 0%, #0a0e1a 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  padding: 2rem 0;
  margin: 0;
}

.ad-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.ad-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1rem;
  display: inline-block;
}

.google-ad-box {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: block;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}

/* responsive ad container ensures adsense layout respects design */
.adsbygoogle {
  display: block;
  margin: 0 auto;
}

.ad-note {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 1rem;
  letter-spacing: 1px;
}