/* =============================================
   VARIABLES
============================================= */
:root {
  --bg:           #FCFAFF;
  --surface:      #FFFFFF;
  --text:         #1F1630;
  --text-muted:   #6C5A7D;
  --text-light:   #9B8AAE;
  --orange:       #FF9A4A;
  --pink:         #FF4FA3;
  --violet:       #9866FB;
  --accent:       #AD5BE1;
  --gradient:     linear-gradient(135deg, #FF9A4A 0%, #FF4FA3 50%, #9866FB 100%);
  --radius-xl:    28px;
  --radius-lg:    20px;
  --radius-md:    14px;
  --shadow-sm:    0 2px 8px rgba(31,22,48,0.07);
  --shadow-md:    0 8px 32px rgba(31,22,48,0.11);
  --shadow-lg:    0 32px 72px rgba(31,22,48,0.20);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   SHARED COMPONENTS
============================================= */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 0;
}

.pill-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(152,102,251,0.1);
  color: var(--violet);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pill-eyebrow--dark {
  background: rgba(31,22,48,0.08);
  color: var(--text);
}

/* Store buttons (shared) */
.store-row { display: flex; gap: 12px; flex-wrap: wrap; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-md);
  transition: background 0.2s, transform 0.2s;
  min-width: 158px;
}

.store-btn:hover { background: #2A1F3D; transform: translateY(-2px); }

.store-icon { width: 22px; height: 22px; flex-shrink: 0; }

.store-text { display: flex; flex-direction: column; gap: 1px; }
.store-small { font-size: 10px; font-weight: 400; opacity: 0.7; line-height: 1.2; }
.store-big   { font-size: 15px; font-weight: 700; line-height: 1.2; }

/* =============================================
   AURORA BLOBS
============================================= */
.aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

@keyframes drift-a {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(28px,-22px) scale(1.06); }
  66%      { transform: translate(-18px,14px) scale(0.94); }
}
@keyframes drift-b {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-30px,20px) scale(0.96); }
  66%      { transform: translate(22px,-16px) scale(1.04); }
}
@keyframes drift-c {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px,24px) scale(1.05); }
}

.blob-orange { background:var(--orange); opacity:.22; width:500px; height:500px; top:-120px; left:-140px; animation: drift-a 14s ease-in-out infinite; }
.blob-pink   { background:var(--pink);   opacity:.16; width:580px; height:580px; top:45%; left:42%; transform:translate(-50%,-50%); animation: drift-b 18s ease-in-out infinite; }
.blob-violet { background:var(--violet); opacity:.20; width:460px; height:460px; bottom:-120px; right:-100px; animation: drift-c 11s ease-in-out infinite 2s; }

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fade-up {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes phone-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  height: 68px;
  background: rgba(252,250,255,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(152,102,251,0.1);
}

.navbar-logo img { height: 28px; width: auto; }

.navbar-right { display: flex; align-items: center; gap: 20px; }

.lang-switcher { display: flex; align-items: center; gap: 4px; }

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 4px 7px;
  border-radius: 6px;
  transition: color 0.2s;
  font-family: inherit;
  letter-spacing: 0.02em;
}

.lang-btn.active { color: var(--violet); font-weight: 700; }
.lang-btn:hover:not(.active) { color: var(--text); }

.btn-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  background: var(--gradient);
  color: #fff;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-pill:hover { opacity: 0.88; transform: translateY(-1px); }

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  padding-top: 64px;
  padding-bottom: 80px;
}

.hero-text { flex: 1; max-width: 520px; }

.hero .pill-eyebrow { margin-bottom: 22px; }

.hero-title {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.hero-h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 12px;
  max-width: 480px;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-phone {
  position: relative;
  flex-shrink: 0;
  animation: phone-float 6s ease-in-out infinite;
}

.phone-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(ellipse at center, rgba(152,102,251,0.22) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.phone-frame {
  width: 272px;
  height: 564px;
  background: #1F1630;
  border-radius: 46px;
  border: 8px solid #2A1F3D;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.07), var(--shadow-lg);
  position: relative;
  overflow: hidden;
  animation: phone-float 6s ease-in-out infinite;
}

.phone-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  background: #1F1630;
  border-radius: 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: var(--gradient);
  position: relative;
}

.screen-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* =============================================
   HOW IT WORKS
============================================= */
.how-it-works {
  padding: 96px 0;
}

.hiw-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.hiw-card {
  flex: 1;
  padding: 32px 28px 36px;
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(152,102,251,0.09);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.hiw-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.hiw-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--violet);
  opacity: 0.5;
  margin-bottom: 16px;
}

.hiw-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(152,102,251,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--violet);
}

.hiw-icon-wrap svg { width: 24px; height: 24px; }

.hiw-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.hiw-card p  { font-size: 15px; line-height: 1.65; color: var(--text-muted); }

.hiw-connector {
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  font-size: 20px;
  color: var(--text-light);
  padding-top: 52px;
  align-self: flex-start;
}

/* =============================================
   RECONNAISSANCE
============================================= */
.recognition {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.aurora-recognition {
  opacity: 0.5;
}

.aurora-recognition .blob-violet {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -200px;
  opacity: 0.12;
}

.recog-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 72px;
}

.recog-text { flex: 1; max-width: 480px; }
.recog-text .pill-eyebrow { margin-bottom: 18px; }
.recog-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.recog-text > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.recog-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.recog-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.6; color: var(--text-muted); }

.recog-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  margin-top: 7px;
}

.recog-list strong { color: var(--text); font-weight: 600; }

/* Leaderboard card */
.recog-visual { flex-shrink: 0; width: 340px; }

.lb-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(152,102,251,0.12);
  box-shadow: var(--shadow-md);
  padding: 24px;
  overflow: hidden;
}

.lb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.lb-title  { font-size: 14px; font-weight: 700; }
.lb-updated { font-size: 11px; color: var(--text-light); }

.lb-rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }

.lb-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.lb-rank {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.lb-rank.gold   { background: #FFF4D9; color: #D97706; }
.lb-rank.silver { background: #F0F0F5; color: #6B7280; }
.lb-rank.bronze { background: #FFF0EB; color: #B45309; }

.lb-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.av-1 { background: linear-gradient(135deg, #FF9A4A, #FF4FA3); }
.av-2 { background: linear-gradient(135deg, #9866FB, #AD5BE1); }
.av-3 { background: linear-gradient(135deg, #FF4FA3, #9866FB); }

.lb-name { font-size: 13px; font-weight: 600; white-space: nowrap; flex-shrink: 0; }

.lb-bar-wrap {
  flex: 1;
  height: 6px;
  background: rgba(152,102,251,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.lb-bar {
  height: 100%;
  background: var(--gradient);
  border-radius: 10px;
}

.lb-count { font-size: 12px; font-weight: 700; color: var(--violet); flex-shrink: 0; }

.lb-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(152,102,251,0.08);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 11px;
  background: rgba(152,102,251,0.08);
  color: var(--violet);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

/* =============================================
   SÉCURITÉ
============================================= */
.safety {
  padding: 96px 0;
  background: var(--text);
  position: relative;
  overflow: hidden;
}

.safety .section-header .pill-eyebrow--dark {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.safety .section-header h2 { color: #fff; }

.safety .section-sub { color: rgba(255,255,255,0.5); }

.safety-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  z-index: 1;
}

.safety-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.safety-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}

.safety-step-icon svg { width: 26px; height: 26px; }

.safety-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.safety-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.safety-step p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

.safety-line {
  flex-shrink: 0;
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-top: 32px;
  align-self: flex-start;
}

/* =============================================
   WOMEN
============================================= */
.women { padding: 96px 0; }

.women-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  padding: 64px;
  display: flex;
  align-items: center;
  gap: 64px;
  background: var(--text);
  box-shadow: var(--shadow-lg);
}

.women-card-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.12;
  pointer-events: none;
}

.women-content { position: relative; z-index: 1; flex: 1; max-width: 520px; }

.women-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.women-modes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.women-mode-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.women-mode-open {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.15);
}

.women-mode-gang {
  background: var(--gradient);
  color: #fff;
}

.women-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.women-content > p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}

.women-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.women-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

.women-list li svg {
  width: 18px;
  height: 18px;
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 3px;
}

.women-list strong { color: #fff; font-weight: 600; }

/* Women visual mockup */
.women-visual {
  position: relative;
  flex-shrink: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.women-badge-float {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.women-badge-float span:first-child {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  font-weight: 800;
}

.women-event-mock {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px 22px;
  width: 220px;
}

.wem-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,79,163,0.2);
  color: var(--pink);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.wem-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.wem-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* =============================================
   EARNINGS
============================================= */
.earnings {
  padding: 96px 0;
  background: var(--bg);
}

.earn-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.earn-gifts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 720px;
}

.earn-gift {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(152,102,251,0.09);
  box-shadow: var(--shadow-sm);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.earn-gift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.earn-gift-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.earn-gift h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.earn-gift p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Wallet mockup */
.earn-wallet {
  background: var(--text);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  position: relative;
  overflow: hidden;
}

.earn-wallet::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.1;
  pointer-events: none;
}

.earn-wallet-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}

.earn-wallet-amount {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  position: relative;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.earn-wallet-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gradient);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  margin-top: 4px;
}

.earn-wallet-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.earn-wallet-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  position: relative;
}

/* =============================================
   SCREENSHOTS
============================================= */
.screenshots { padding: 96px 0; }

.screenshots h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 8px;
}

.screenshots .section-sub { margin-bottom: 48px; }

.carousel-wrap {
  overflow-x: auto;
  padding: 12px 0 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.carousel-wrap::-webkit-scrollbar { display: none; }

.carousel {
  display: flex;
  gap: 20px;
  padding: 0 max(24px, calc((100vw - 1160px) / 2 + 24px));
  width: max-content;
}

.mini-phone {
  width: 200px;
  height: 420px;
  background: #1F1630;
  border-radius: 34px;
  border: 6px solid #2A1F3D;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.mini-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
}

.mini-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.grad-1 { background: linear-gradient(160deg, #FF9A4A, #FF4FA3); }
.grad-2 { background: linear-gradient(160deg, #FF4FA3, #9866FB); }
.grad-3 { background: linear-gradient(160deg, #9866FB, #AD5BE1); }

/* =============================================
   CTA FINAL
============================================= */
.cta-section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}

.aurora-sm .blob-orange { width:360px; height:360px; top:-80px; left:-60px; }
.aurora-sm .blob-pink   { width:420px; height:420px; bottom:-100px; right:-60px; top:auto; left:auto; transform:none; opacity:.18; animation: drift-b 14s ease-in-out infinite; }

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.cta-logo { height: 44px; width: auto; margin-bottom: 4px; }

.cta-inner h2 { font-size: clamp(32px, 5vw, 54px); font-weight: 900; letter-spacing: -0.03em; }
.cta-inner p  { font-size: 17px; color: var(--text-muted); margin-bottom: 8px; }

/* =============================================
   FOOTER
============================================= */
.footer { background: var(--text); padding: 44px 0; }

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo { height: 22px; width: auto; filter: invert(1); opacity: 0.85; }

.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }

.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-nav a:hover { color: #fff; }

.footer-copy { font-size: 13px; color: rgba(255,255,255,0.28); }

/* =============================================
   RESPONSIVE — TABLET (≤ 1000px)
============================================= */
@media (max-width: 1000px) {

  /* Hero */
  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding-top: 52px;
    padding-bottom: 64px;
    gap: 48px;
  }
  .hero-text { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
  .hero-sub  { margin-left: auto; margin-right: auto; }
  .hero .store-row { justify-content: center; }

  /* How it works */
  .hiw-grid { flex-direction: column; align-items: stretch; gap: 16px; max-width: 480px; margin: 0 auto; }
  .hiw-connector { display: none; }

  /* Earnings */
  .earn-gifts { grid-template-columns: 1fr; max-width: 360px; }

  /* Recognition */
  .recog-inner { flex-direction: column; gap: 48px; }
  .recog-text  { max-width: 100%; }
  .recog-visual { width: 100%; max-width: 400px; margin: 0 auto; }

  /* Safety */
  .safety-steps { flex-direction: column; gap: 36px; align-items: center; }
  .safety-line  { display: none; }
  .safety-step  { max-width: 400px; }

  /* Women */
  .women-card   { flex-direction: column; padding: 44px 36px; gap: 40px; }
  .women-content { max-width: 100%; }
  .women-visual  { align-self: center; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 600px)
============================================= */
@media (max-width: 600px) {
  .navbar { padding: 0 20px; }
  .navbar-logo img { height: 24px; }
  .btn-pill { padding: 9px 16px; font-size: 13px; }

  .hero-title { font-size: 38px; }
  .hero-sub   { font-size: 16px; }
  .store-row  { flex-direction: column; align-items: center; width: 100%; }
  .store-btn  { width: 100%; max-width: 260px; justify-content: center; }

  .phone-frame { width: 234px; height: 484px; }

  .women-card   { padding: 32px 24px; border-radius: 24px; }
  .women-visual { display: none; }

  .cta-section { padding: 80px 0; }
}
