/* ═══════════════════════════════════════════════════════════════
   SECTIONS — Brands, How-It-Works, Features, Stats, Testimonials, Roles, App
   ═══════════════════════════════════════════════════════════════ */

/* ── BRANDS MARQUEE ── */
.brands-section {
  padding: 64px 0;
  background: var(--bg-page);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.brands-label {
  font-size: var(--t-xs);
  letter-spacing: 3px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
  text-transform: uppercase;
  font-weight: 600;
}
.marquee-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
  align-items: center;
}
.marquee-track.reverse {
  animation-direction: reverse;
  margin-top: 24px;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.4s var(--ease-out);
  flex-shrink: 0;
}
.marquee-item:hover {
  filter: grayscale(0) opacity(1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-4px) scale(1.05);
  border-color: rgba(255, 181, 71, 0.2);
  background: rgba(255, 255, 255, 0.06);
}
.marquee-item img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.marquee-item span {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}
.step-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255, 181, 71, 0.05), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}
.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 181, 71, 0.1);
  border-color: rgba(255, 181, 71, 0.2);
}
.step-card:hover::before {
  opacity: 1;
}
.step-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--g-premium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 24px;
  color: #0F1115;
  box-shadow: var(--s-glow-gold);
  flex-shrink: 0;
}
.step-icon {
  font-size: 40px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}
.step-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-body {
  font-size: var(--t-base);
  color: var(--text-muted);
  line-height: 1.7;
}
.step-visual {
  margin-top: 40px;
  height: 120px;
  border-radius: var(--r-lg);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 4px 15px rgba(0,0,0,0.4);
}
.step-ghost {
  position: absolute;
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 160px;
  color: #FFFFFF;
  opacity: 0.02;
  right: -20px;
  bottom: -40px;
  line-height: 1;
}

/* Step connectors */
.step-arrow {
  display: none;
  position: absolute;
  top: 120px;
  z-index: 1;
  width: 80px;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.15);
}
.step-arrow::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 15px var(--gold);
  animation: travelDot 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Step mini animations */
.sv-phone {
  width: 50px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.sv-phone::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 32px;
  font-weight: bold;
  animation: popIn 2s infinite;
  text-shadow: 0 0 15px rgba(255, 181, 71, 0.5);
}
.sv-map {
  font-size: 48px;
  animation: bounceMap 2s cubic-bezier(0.28, 0.84, 0.42, 1) infinite;
  filter: drop-shadow(0 10px 10px rgba(0,0,0,0.4));
}
.sv-coins {
  width: 36px;
  background: linear-gradient(to top, var(--orange), var(--gold));
  border-radius: 6px;
  animation: growCoins 2s infinite ease-in-out;
  box-shadow: 0 4px 15px rgba(255, 181, 71, 0.3);
}

/* ── BENTO FEATURES ── */
.bento-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
.bento-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 181, 71, 0.3);
}
.bc-dot {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 15px currentColor;
}
.bc-orb {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.15;
  pointer-events: none;
}
.bc-icon {
  font-size: 40px;
  margin-bottom: 20px;
  margin-top: 16px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}
.bc-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}
.bc-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Card A - Hero (Premium Gradient) */
.bc-a {
  background: var(--g-premium);
  color: #0F1115;
  padding: 40px;
  justify-content: flex-start;
}
.bc-a .bc-title {
  color: #0F1115;
  font-size: 36px;
  font-weight: 800;
  margin-top: 20px;
  text-shadow: 0 2px 10px rgba(255,255,255,0.3);
}
.bc-a .bc-body {
  color: rgba(15, 17, 21, 0.7);
  font-size: 16px;
  font-weight: 500;
}
.bc-pill {
  display: inline-block;
  background: rgba(15, 17, 21, 0.15);
  font-size: 11px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-left: 16px;
  vertical-align: super;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.bc-a-counter {
  margin-top: auto;
  padding-top: 40px;
}
.bc-pts {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 64px;
  color: #0F1115;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(255,255,255,0.4);
}
.bc-badge {
  display: inline-block;
  background: #0F1115;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 8px;
  margin-top: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.bc-prog-track {
  width: 100%;
  height: 8px;
  background: rgba(15, 17, 21, 0.2);
  border-radius: 4px;
  margin: 24px 0 12px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
.bc-prog-fill {
  width: 65%;
  height: 100%;
  background: #0F1115;
  border-radius: 4px;
  animation: progressGrow 3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.bc-caption {
  font-size: 12px;
  color: rgba(15, 17, 21, 0.6);
  font-weight: 600;
}
.bc-avatars {
  display: flex;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
}
.bc-avatars .trust-avatar {
  width: 32px;
  height: 32px;
  font-size: 11px;
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.bc-avatars-txt {
  font-size: 13px;
  color: rgba(15, 17, 21, 0.8);
  font-weight: 700;
}

/* Map visual */
.map-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
  height: 80px;
}
.map-dot {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin: auto;
}
.map-pin {
  position: absolute;
  font-size: 28px;
  animation: pinPulse 2.5s infinite;
  filter: drop-shadow(0 4px 10px rgba(0,209,178,0.5));
}

/* Calendar */
.cal-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.cal-day {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
}
.cal-day.today {
  background: var(--gold);
  color: #0F1115;
  border-color: var(--gold);
  animation: popIn 2s infinite;
  box-shadow: 0 0 20px rgba(255,181,71,0.4);
}
.cal-day.empty {
  background: transparent;
  border: 1px dashed rgba(255,255,255,0.2);
}

/* Leaderboard */
.lb-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lb-row:last-child {
  border-bottom: none;
}
.lb-row.first {
  background: linear-gradient(90deg, rgba(255,181,71,0.1), transparent);
  border-left: 3px solid var(--gold);
  padding-left: 12px;
  margin-left: -15px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.lb-rank {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-muted);
  width: 20px;
}
.lb-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.lb-name {
  font-size: 14px;
  font-weight: 600;
  flex: 1;
  color: #FFFFFF;
}
.lb-pts {
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
}

/* Coupon */
.cpn-card {
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: 20px;
  text-align: center;
  position: relative;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
}
.cpn-card::before, .cpn-card::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--bg-page); /* Matches background to cut out */
  border-radius: 50%;
}
.cpn-card::before {
  left: -14px;
  border-right: 2px solid rgba(255,255,255,0.15);
}
.cpn-card::after {
  right: -14px;
  border-left: 2px solid rgba(255,255,255,0.15);
}
.cpn-val {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 4px 15px rgba(255,181,71,0.2);
}
.cpn-txt {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cpn-lines {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin-top: 16px;
}
.cpn-line {
  height: 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}

/* ── LIVE STATS (DARK) ── */
.stats-section {
  background: var(--bg-dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.stats-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(0,209,178,0.05);
  border-radius: 50%;
  filter: blur(100px);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.stats-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255,77,109,0.03);
  border-radius: 50%;
  filter: blur(80px);
  bottom: -200px;
  left: -100px;
  pointer-events: none;
}
.stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.stats-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.stats-card:hover {
  border-color: rgba(0,209,178,0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(0,209,178,0.1);
  background: rgba(255, 255, 255, 0.04);
}
.stats-card:hover::before {
  opacity: 1;
}
.stats-card-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}
.stats-card-num {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: var(--t-3xl);
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.stats-card-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.stats-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  margin-right: 8px;
  animation: glowPulse 2s infinite;
  box-shadow: 0 0 10px var(--teal);
}

/* ── TESTIMONIALS ── */
.testimonials-track-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 -24px; /* bleed edge on mobile */
  padding: 0 24px 20px;
}
.testimonials-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 16px 0;
}
.testimonials-track::-webkit-scrollbar {
  display: none;
}
.test-card {
  min-width: 380px;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  scroll-snap-align: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.test-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
}
.test-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  align-items: flex-start;
}
.test-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 18px;
  filter: drop-shadow(0 2px 4px rgba(255,181,71,0.3));
}
.test-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  background: rgba(0,209,178,0.1);
  padding: 4px 10px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.test-quote {
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 80px;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
}
.test-text {
  font-size: 16px;
  color: #FFFFFF;
  line-height: 1.8;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  font-weight: 400;
}
.test-bot {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
}
.test-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #0F1115;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.test-av.g1 { background: var(--g-premium); }
.test-av.g2 { background: var(--g-teal); }
.test-av.g3 { background: var(--g-coral); }
.test-name {
  font-weight: 700;
  font-size: 15px;
  color: #FFFFFF;
  line-height: 1.3;
}
.test-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #FFFFFF;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}
.slider-btn:hover {
  background: #FFFFFF;
  color: #0F1115;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.slider-dots {
  display: flex;
  gap: 12px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.slider-dot.active {
  background: var(--gold);
  width: 32px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255,181,71,0.5);
}

/* ── ROLES ── */
.roles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.role-card {
  border-radius: var(--r-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s ease;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.role-card:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
.rc-customer {
  background: linear-gradient(135deg, #1A1F27 0%, #2A3241 100%);
  border: 1px solid rgba(255,255,255,0.05);
}
.rc-shop {
  background: linear-gradient(135deg, #2A2015 0%, #4A331A 100%);
  border: 1px solid rgba(255,181,71,0.1);
}
.rc-admin {
  background: linear-gradient(135deg, #102420 0%, #1A3A33 100%);
  border: 1px solid rgba(0,209,178,0.1);
}
.rc-partner {
  background: linear-gradient(135deg, #2A151A 0%, #4A202A 100%);
  border: 1px solid rgba(255,77,109,0.1);
}
.role-orb {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  filter: blur(40px);
  pointer-events: none;
}
.rc-icon {
  font-size: 56px;
  margin-bottom: 24px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}
.rc-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.rc-list {
  margin-bottom: 40px;
  flex: 1;
  padding: 0;
}
.rc-list li {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.rc-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
  background: rgba(255,181,71,0.1);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 10px;
}
.btn-role {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.btn-role:hover {
  background: #FFFFFF;
  color: #0F1115;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* ── APP MOCKUP ── */
.app-section {
  background: var(--bg-secondary);
  padding: 120px 0;
  overflow: hidden;
  color: #FFFFFF;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.03);
}
.app-flex {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}
.app-left {
  flex: 1;
  max-width: 540px;
}
.app-list {
  margin-bottom: 56px;
  padding: 0;
}
.app-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}
.app-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,181,71,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  color: var(--gold);
  border: 1px solid rgba(255,181,71,0.2);
}
.dl-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-dl {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: var(--r-xl);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-dl:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.2);
}

/* Phone mockup */
.app-right {
  flex: 1;
  position: relative;
  min-height: 500px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.mockup-frame {
  width: 300px;
  height: 620px;
  border: 14px solid #0A0C0F;
  border-radius: 48px;
  background: var(--bg-page);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 0 0 2px rgba(255,255,255,0.1);
  transform: rotate(6deg) translateY(20px);
  flex-shrink: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.app-right:hover .mockup-frame {
  transform: rotate(0deg) translateY(0);
}
.mockup-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 28px;
  background: #0A0C0F;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 10;
}
/* Glass reflection on screen */
.mockup-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shine 6s infinite;
  pointer-events: none;
  z-index: 20;
}
@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}
.mockup-screen {
  padding: 50px 24px 24px;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255,181,71,0.1), transparent 50%), var(--bg-page);
}
.ms-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.ms-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.ms-card {
  background: var(--g-premium);
  height: 140px;
  border-radius: var(--r-lg);
  margin-bottom: 32px;
  box-shadow: 0 10px 20px rgba(255,181,71,0.2);
}
.ms-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.ms-box {
  flex: 1;
  height: 90px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-md);
}

/* ── FOOTER ── */
.footer {
  background: #0A0C0F;
  padding: 80px 0 32px;
  color: #FFFFFF;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand {
  max-width: 320px;
}
.footer-brand-name {
  font-family: var(--f-brand);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
  color: #FFFFFF;
}
.footer-brand-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.02);
}
.footer-social:hover {
  border-color: var(--gold);
  color: #0F1115;
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255,181,71,0.3);
}
.footer-col-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.footer-links a {
  display: block;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.footer-email {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: #FFFFFF;
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-family: var(--f-body);
  outline: none;
  transition: all 0.3s ease;
}
.footer-email::placeholder {
  color: rgba(255,255,255,0.3);
}
.footer-email:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 15px rgba(255,181,71,0.1);
}
.footer-submit {
  background: rgba(255,255,255,0.05);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 24px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  width: 100%;
}
.footer-submit:hover {
  background: #FFFFFF;
  color: #0F1115;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-copy {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}
.footer-legal a:hover {
  color: var(--gold);
}

@media(min-width:768px){
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .step-arrow { display: block; }
  .step-arrow.arr-1 { left: calc(33.33% - 20px); }
  .step-arrow.arr-2 { left: calc(66.66% - 20px); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .footer-newsletter { flex-direction: row; }
  .footer-submit { width: auto; }
}

@media(min-width:1024px){
  .bento-grid { grid-template-columns: repeat(12, 1fr); grid-auto-rows: 320px; }
  .bc-a { grid-column: 1 / 6; grid-row: 1 / 3; }
  .bc-b { grid-column: 6 / 10; grid-row: 1 / 2; }
  .bc-c { grid-column: 10 / 13; grid-row: 1 / 2; }
  .bc-d { grid-column: 6 / 9; grid-row: 2 / 3; }
  .bc-e { grid-column: 9 / 13; grid-row: 2 / 3; }
  .app-flex { flex-direction: row; justify-content: space-between; }
}
