/* ═══════════════════════════════════════════════════════════════
   Shareide HOMEPAGE — Ultra Premium V6 Design
   Inspired by Stripe, Linear, Vercel level quality
   ═══════════════════════════════════════════════════════════════ */

/* ─── PREMIUM TRANSITION TIMING ─── */
/* ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1) */

/* ─── SECTIONS ─── */
.sec {
  padding: var(--section-y) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.sec::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,184,0,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.sec .container { position: relative; z-index: 1; }

.sec--alt {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, #F4F6FA 0%, #FBFBFD 100%);
  position: relative;
  overflow: hidden;
}

.sec--alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(245,184,0,0.04) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(59,130,246,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.sec--alt::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.sec--alt .container { position: relative; z-index: 1; }

.sec--dark { padding: var(--section-y) 0; background: var(--dark-bg); position: relative; overflow: hidden; }
.sec--dark .container { position: relative; z-index: 2; }

/* Section divider line */
.sec + .sec::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 2px;
  opacity: 0.3;
}

.sec__head { text-align: center; margin-bottom: 72px; }
.sec__head .overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  background: rgba(245,184,0,0.06);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  border: 1px solid rgba(245,184,0,0.12);
}
.sec__head .heading-lg { margin-bottom: 18px; }
.sec__head .text-lg { max-width: 520px; margin: 0 auto; }

@media(max-width:768px) {
  .sec, .sec--alt, .sec--dark { padding: 64px 0; }
  .sec__head { margin-bottom: 48px; }
}
@media(max-width:480px) {
  .sec, .sec--alt, .sec--dark { padding: 48px 0; }
  .sec__head { margin-bottom: 36px; }
}


/* ═══════════════════════════════════════════
   HERO — Premium Light Theme
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 120px;
  overflow: visible;
  background: #ffffff;
}

/* ── Animated background ── */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 60% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 50%, black 30%, transparent 70%);
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation: hero-blob 10s ease-in-out infinite;
}

.hero__blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,184,0,0.12) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation-duration: 12s;
}

.hero__blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
  bottom: -100px; left: -80px;
  animation-delay: 4s;
  animation-duration: 15s;
}

.hero__blob--3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 70%);
  top: 40%; right: 25%;
  animation-delay: 8s;
  animation-duration: 11s;
}

@keyframes hero-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.06); }
  66% { transform: translate(-15px, 20px) scale(0.94); }
}

.hero__container { position: relative; z-index: 2; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

/* ── Badge ── */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(245,184,0,0.08);
  border: 1px solid rgba(245,184,0,0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero__badge:hover {
  background: rgba(245,184,0,0.13);
  border-color: rgba(245,184,0,0.4);
}

.hero__badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ── Heading ── */
.hero__h1 {
  font-size: clamp(44px, 6.5vw, 78px);
  font-weight: 900;
  color: #0A0A1A;
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero__cursor {
  color: var(--primary);
  animation: cursor-blink 0.9s step-end infinite;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── Subtitle ── */
.hero__sub {
  font-size: 18px;
  color: #64748B;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 460px;
}

/* ── Buttons ── */
.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
  margin-bottom: 40px;
}

/* ── Live Counter ── */
.hero__live {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.hero__live:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
}

.hero__live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #F5B800;
}

.hero__live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.4);
  animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.hero__live-text { font-size: 14px; color: #475569; }
.hero__live-text strong { color: #0A0A1A; font-weight: 700; }

/* ── Trust Bar ── */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 56px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow 0.4s ease;
}

.hero__trust:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  flex: 1;
  transition: background 0.3s ease;
}

.hero__trust-item:hover { background: #F8FAFC; }

.hero__trust-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,184,0,0.12), rgba(245,184,0,0.06));
  border-radius: 12px;
  color: #d97706;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.hero__trust-item:hover .hero__trust-icon {
  background: linear-gradient(135deg, rgba(245,184,0,0.18), rgba(245,184,0,0.1));
  transform: scale(1.05);
}

.hero__trust-item strong { display: block; font-size: 15px; font-weight: 800; color: #0A0A1A; }
.hero__trust-item span { font-size: 11px; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.hero__trust-sep { width: 1px; height: 52px; background: #E2E8F0; flex-shrink: 0; }

/* ── Hero Visual ── */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

/* ── Phone Wrapper ── */
.hero__phone-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 40px 60px;
}

/* Soft glow ring behind phone */
.hero__phone-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(245,184,0,0.12) 0%, rgba(245,184,0,0.04) 50%, transparent 70%);
  border-radius: 50%;
  animation: phone-glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes phone-glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* ── Phone mockup ── */
.hero__phone {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
}

.hero__phone-img {
  max-height: 500px;
  width: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.14)) drop-shadow(0 4px 12px rgba(0,0,0,0.08));
  transition: filter 0.4s ease;
}

.hero__phone:hover .hero__phone-img {
  filter: drop-shadow(0 32px 60px rgba(0,0,0,0.18)) drop-shadow(0 8px 20px rgba(0,0,0,0.1));
}

/* ── Floating Badges ── */
.hero__float-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: default;
}

.hero__float-badge:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-3px) !important;
  border-color: rgba(245,184,0,0.3);
}

.hero__float-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,184,0,0.15), rgba(245,184,0,0.08));
  color: #d97706;
  font-size: 14px;
  flex-shrink: 0;
}

.hero__float-icon--green,
.hero__float-icon--blue {
  background: rgba(245,184,0,0.1);
  color: #D4900A;
}

.hero__float-text strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #0A0A1A;
  line-height: 1.2;
}

.hero__float-text span {
  display: block;
  font-size: 10px;
  color: #94A3B8;
  font-weight: 500;
}

.hero__float-badge--1 { top: 15%; left: -10%; }
.hero__float-badge--2 { bottom: 22%; left: -12%; }
.hero__float-badge--3 { top: 20%; right: -12%; }

/* ── Bottom fade ── */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, #ffffff, transparent);
  pointer-events: none;
  z-index: 1;
}

/* ── Hero Responsive ── */
@media(max-width:992px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__btns { justify-content: center; }
  .hero__trust { justify-content: center; flex-wrap: wrap; border-radius: 16px; }
  .hero__live { justify-content: center; }
  .hero__phone-wrapper { max-width: 320px; }
  .hero__phone-img { max-height: 400px; }
  .hero__float-badge--1 { left: -5%; }
  .hero__float-badge--2 { left: -5%; }
  .hero__float-badge--3 { right: -5%; }
}

@media(max-width:768px) {
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero__sub { font-size: 16px; }
  .hero__trust { flex-direction: column; gap: 0; }
  .hero__trust-item { justify-content: center; padding: 16px 24px; }
  .hero__trust-sep { width: 80%; height: 1px; }
  .hero__phone-wrapper { max-width: 280px; padding: 30px 50px; }
  .hero__phone-img { max-height: 340px; }
  .hero__float-badge { padding: 8px 12px 8px 8px; }
  .hero__float-text strong { font-size: 11px; }
  .hero__float-text span { display: none; }
  .hero__float-icon { width: 30px; height: 30px; font-size: 12px; }
}

@media(max-width:480px) {
  .hero { padding: 100px 0 48px; }
  .hero__badge { font-size: 12px; padding: 8px 16px; }
  .hero__sub { font-size: 15px; margin-bottom: 28px; }
  .hero__btns { flex-direction: column; align-items: center; margin-top: 24px; }
  .hero__btns .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero__phone-wrapper { max-width: 240px; padding: 20px 30px; }
  .hero__phone-img { max-height: 280px; }
  .hero__float-badge { display: none; }
  .hero__trust-item { padding: 14px 20px; gap: 10px; }
  .hero__trust-icon { width: 36px; height: 36px; font-size: 14px; }
  .hero__trust-item strong { font-size: 13px; }
  .hero__trust-item span { font-size: 10px; }
}


/* ═══════════════════════════════════════════
   PARTNERS — Marquee (Ultra Premium)
   ═══════════════════════════════════════════ */
.partners {
  padding: 36px 0;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid var(--border-light);
}

.partners__wrapper {
  display: flex;
  align-items: center;
  gap: 48px;
}

.partners__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gray-300);
  white-space: nowrap;
  flex-shrink: 0;
}

.partners__item {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  flex-shrink: 0;
}

.partners__item i { font-size: 14px; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
.partners__item:hover { opacity: 0.7; color: var(--gray-500); }
.partners__item:hover i { color: var(--primary); }

.marquee {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@media(max-width:768px) {
  .partners__wrapper { flex-direction: column; gap: 14px; text-align: center; }
  .partners__item { font-size: 11px; }
  .marquee__track { gap: 32px; animation-duration: 18s; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
}


/* ═══════════════════════════════════════════
   BENTO GRID — Services/Features (Ultra Premium)
   ═══════════════════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 16px;
}

/* Large hero card */
.bento__hero {
  grid-row: 1 / 4;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  min-height: 480px;
  display: block;
}

.bento__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento__hero:hover .bento__hero-img { transform: scale(1.05); }

.bento__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.75) 70%, rgba(0,0,0,0.9) 100%);
}

.bento__hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 44px;
  z-index: 2;
}

.bento__hero-content h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin: 16px 0 12px;
  letter-spacing: -0.02em;
}

.bento__hero-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.bento__hero-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento__hero:hover .bento__hero-cta { gap: 14px; }

/* Feature cards — Premium with visible accents */
.bento__card {
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.bento__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--primary);
  border-radius: 0 3px 3px 0;
  opacity: 0.6;
  transition: opacity 0.4s ease, width 0.4s ease;
}

.bento__card:hover::before {
  opacity: 1;
  width: 4px;
}

.bento__card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 20px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-surface), rgba(245,184,0,0.1));
  color: #d97706;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento__card:hover .bento__card-icon {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(245,184,0,0.12);
}

/* All icon variants — same yellow brand color */
.bento__card-icon--green,
.bento__card-icon--purple,
.bento__card-icon--blue,
.bento__card-icon--pink,
.bento__card-icon--orange {
  background: rgba(245,184,0,0.1);
  color: #D4900A;
}
.bento__card:has(.bento__card-icon--green)::before,
.bento__card:has(.bento__card-icon--purple)::before,
.bento__card:has(.bento__card-icon--blue)::before,
.bento__card:has(.bento__card-icon--pink)::before,
.bento__card:has(.bento__card-icon--orange)::before { background: #F5B800; }

.bento__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.bento__card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}


@media(max-width:992px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__hero { grid-column: 1 / -1; grid-row: auto; min-height: 320px; }
}
@media(max-width:576px) {
  .bento { grid-template-columns: 1fr; gap: 14px; }
  .bento__hero { min-height: 280px; }
  .bento__hero-content h3 { font-size: 22px; }
  .bento__hero-content { padding: 28px; }
  .bento__card { padding: 24px 20px; }
}


/* ═══════════════════════════════════════════
   CITIES GRID
   ═══════════════════════════════════════════ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.cities-grid__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
}

.cities-grid__item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(245,184,0,0.2);
  transform: translateY(-2px);
}

.cities-grid__icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,184,0,0.12);
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
  transition: all 0.3s ease;
}

.cities-grid__icon i {
  display: block;
  line-height: 1;
}

.cities-grid__item:hover .cities-grid__icon {
  background: rgba(245,184,0,0.16);
}

.cities-grid__icon--gold {
  background: linear-gradient(135deg, rgba(245,184,0,0.15), rgba(245,184,0,0.08));
  color: var(--primary);
}

.cities-grid__item--more {
  border-style: dashed;
  border-color: rgba(245,184,0,0.2);
}

.cities-grid__item--more:hover {
  border-color: rgba(245,184,0,0.4);
  background: rgba(245,184,0,0.04);
}

.cities-grid__item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.2;
}

.cities-grid__item span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  margin-top: 2px;
}

@media(max-width:992px) {
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:600px) {
  .cities-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cities-grid__item { padding: 14px 16px; }
}
@media(max-width:380px) {
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ═══════════════════════════════════════════
   HOW IT WORKS — Steps (Ultra Premium)
   ═══════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  counter-reset: step;
}

/* Connecting dots line instead of solid */
.steps__line {
  position: absolute;
  top: 52px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--primary) 0px, var(--primary) 8px, transparent 8px, transparent 16px);
  z-index: 0;
  opacity: 0.35;
}

.steps__item {
  text-align: center;
  padding: 40px 28px;
  background: linear-gradient(150deg, #FFFFFF 0%, #FAFCFF 100%);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 24px;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 1;
  cursor: default;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.03);
}

.steps__item:hover {
  transform: translateY(-10px);
  border-color: rgba(245,184,0,0.25);
  box-shadow:
    0 16px 40px -8px rgba(0,0,0,0.1),
    0 0 0 1px rgba(245,184,0,0.12),
    0 0 24px rgba(245,184,0,0.06);
}

.steps__num {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  background: var(--primary);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  margin: 0 auto 16px;
  letter-spacing: 0;
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.steps__item:hover .steps__num {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(245,184,0,0.35);
  transform: scale(1.05);
}

.steps__icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-surface);
  border: 1px solid var(--primary-border);
  border-radius: 20px;
  color: var(--primary-dark);
  font-size: 26px;
  margin: 0 auto 22px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.steps__item:hover .steps__icon {
  transform: scale(1.1);
  background: rgba(245,184,0,0.12);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(245,184,0,0.15);
}

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

@media(max-width:992px) { .steps { grid-template-columns: repeat(2, 1fr); } .steps__line { display: none; } }
@media(max-width:480px) { .steps { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════
   BID FARE SECTION
   ═══════════════════════════════════════════ */
.bid-sec {
  padding: var(--section-y) 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.bid-sec::before {
  content: '';
  position: absolute;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(245,184,0,0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Head */
.bid-sec__head {
  text-align: center;
  margin-bottom: 56px;
}
.bid-sec__head .overline { margin-bottom: 14px; display: inline-block; }
.bid-sec__head .heading-lg { margin-bottom: 16px; }
.bid-sec__head .text-lg { max-width: 560px; margin: 0 auto; }

/* Flow row */
.bid-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto 48px;
}

/* Arrow connector */
.bid-step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-top: 48px;
  color: #CBD5E1;
  font-size: 16px;
}

/* Step card */
.bid-step {
  background: linear-gradient(150deg, #FFFFFF 0%, #FAFCFF 100%);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.03);
}

.bid-step:hover {
  border-color: rgba(245,184,0,0.28);
  box-shadow:
    0 12px 40px rgba(245,184,0,0.1),
    0 4px 16px rgba(0,0,0,0.06),
    0 0 0 1px rgba(245,184,0,0.1);
  transform: translateY(-6px);
}

/* Step number badge */
.bid-step__num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #0A0A1A;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Step icon */
.bid-step__icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,184,0,0.08);
  color: #d97706;
  font-size: 22px;
  margin: 8px auto 18px;
  transition: all 0.35s ease;
}
.bid-step:hover .bid-step__icon {
  background: rgba(245,184,0,0.14);
  box-shadow: 0 8px 20px rgba(245,184,0,0.18);
  transform: scale(1.05);
}

.bid-step__icon--gold {
  background: rgba(245,184,0,0.1);
  color: var(--primary);
}
.bid-step:hover .bid-step__icon--gold {
  background: rgba(245,184,0,0.18);
}

.bid-step__icon--blue {
  background: rgba(245,184,0,0.1);
  color: var(--primary);
}
.bid-step:hover .bid-step__icon--blue {
  background: rgba(245,184,0,0.18);
}

.bid-step__icon--green {
  background: rgba(245,184,0,0.1);
  color: var(--primary);
}
.bid-step:hover .bid-step__icon--green {
  background: rgba(245,184,0,0.18);
}

/* Step text */
.bid-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.3;
}

.bid-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Bottom note */
.bid-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
  padding: 22px 28px;
  background: rgba(245,184,0,0.05);
  border: 1px solid rgba(245,184,0,0.18);
  border-radius: 18px;
}

.bid-note__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(245,184,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d97706;
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 2px;
}

.bid-note p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 16px;
}

.bid-note .btn { flex-shrink: 0; }

/* Responsive */
@media(max-width: 900px) {
  .bid-flow {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
  }
  .bid-step__arrow { display: none; }
}

@media(max-width: 540px) {
  .bid-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .bid-note {
    flex-direction: column;
    padding: 20px;
  }
  .bid-note .btn { align-self: flex-start; }
}


/* ═══════════════════════════════════════════
   APP SHOWCASE (Ultra Premium)
   ═══════════════════════════════════════════ */
.app-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.app-split__visual { position: relative; display: flex; justify-content: center; align-items: center; }
.app-split__glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(245,184,0,0.06), transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 6s ease-in-out infinite;
}
.app-split__img {
  max-height: 520px;
  width: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 56px rgba(0,0,0,0.15)) drop-shadow(0 0 80px rgba(245,184,0,0.04));
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.app-split__visual:hover .app-split__img {
  filter: drop-shadow(0 28px 64px rgba(0,0,0,0.18)) drop-shadow(0 0 100px rgba(245,184,0,0.06));
  transform: translateY(-4px);
}

.app-split__info .overline { display: block; margin-bottom: 14px; }
.app-split__desc { font-size: 18px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 36px; }

.app-list { margin-bottom: 40px; }
.app-list__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.app-list__item:first-child { border-top: 1px solid var(--border-light); }
.app-list__item:hover { padding-left: 10px; }

.app-list__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-surface);
  border-radius: 14px;
  color: #d97706;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.app-list__item:hover .app-list__icon {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(245,184,0,0.1);
}

.app-list__icon--purple,
.app-list__icon--green { background: rgba(245,184,0,0.08); color: #D4900A; }

.app-list__item strong { display: block; font-size: 16px; color: var(--text); margin-bottom: 4px; font-weight: 700; }
.app-list__item span { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

@media(max-width:992px) {
  .app-split { grid-template-columns: 1fr; gap: 52px; text-align: center; }
  .app-split__visual { order: -1; }
  .app-split__img { max-height: 380px; }
  .app-split__desc { max-width: 500px; margin-left: auto; margin-right: auto; }
}
@media(max-width:480px) { .app-split__img { max-height: 280px; } .app-split__desc { font-size: 15px; } }


/* ═══════════════════════════════════════════
   STATS — Glass Cards on Dark (Ultra Premium)
   ═══════════════════════════════════════════ */
/* ── Promises Strip ── */
.promises-strip {
  padding: 64px 0;
  background: linear-gradient(135deg, #0A0A1A 0%, #121228 50%, #0A0A1A 100%);
  position: relative;
  overflow: hidden;
}

.promises-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,184,0,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(59,130,246,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.promises-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.promise-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 28px;
  background: rgba(255,255,255,0.02);
  transition: background 0.3s ease;
  cursor: default;
}

.promise-card:hover {
  background: rgba(255,255,255,0.05);
}

.promise-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: rgba(245,184,0,0.1);
  color: var(--primary);
  transition: all 0.3s ease;
}

.promise-card:hover .promise-card__icon {
  background: rgba(245,184,0,0.16);
  transform: scale(1.08);
}

.promise-card__icon--green { background: rgba(245,184,0,0.1); color: #D4900A; }
.promise-card:hover .promise-card__icon--green { background: rgba(245,184,0,0.16); }

.promise-card__icon--pink { background: rgba(245,184,0,0.1); color: #D4900A; }
.promise-card:hover .promise-card__icon--pink { background: rgba(245,184,0,0.16); }

.promise-card__icon--blue { background: rgba(245,184,0,0.1); color: #D4900A; }
.promise-card:hover .promise-card__icon--blue { background: rgba(245,184,0,0.16); }

.promise-card__text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
}

.promise-card__text span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
}

@media(max-width:900px) {
  .promises-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:480px) {
  .promises-strip { padding: 48px 0; }
  .promises-grid { grid-template-columns: 1fr; }
  .promise-card { padding: 22px 20px; gap: 12px; }
  .promise-card__icon { width: 40px; height: 40px; font-size: 15px; }
  .promise-card__text strong { font-size: 14px; }
}


/* ═══════════════════════════════════════════
   SUCCESS STORIES — Scroll Snap Carousel (Ultra Premium)
   ═══════════════════════════════════════════ */
.stories-carousel {
  position: relative;
  overflow: hidden;
}

.stories-carousel .snap-carousel {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 20px 0;
}

.stories-carousel .snap-carousel::-webkit-scrollbar { display: none; }

.stories__card {
  min-width: 340px;
  width: 340px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #111;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.stories__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -12px rgba(0,0,0,0.2);
}

.stories__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.78) 70%, rgba(0,0,0,0.92) 100%);
}

.stories__card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--primary);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.stories__card-badge i { font-size: 11px; }
.stories__card-badge--pink,
.stories__card-badge--green,
.stories__card-badge--blue,
.stories__card-badge--amber { background: #F5B800; color: #000; }

.stories__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
  z-index: 2;
}

.stories__card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 16px;
}

.stories__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.4s cubic-bezier(0.23, 1, 0.32, 1), color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.stories__card:hover .stories__card-link { gap: 14px; color: var(--primary-light); }

@media(max-width:480px) {
  .stories__card { min-width: 280px; width: 280px; height: 360px; }
  .stories__card-body h3 { font-size: 15px; }
  .stories__card-body { padding: 26px; }
  .stories-carousel .snap-carousel { gap: 16px; }
}


/* ═══════════════════════════════════════════
   SAFETY (Ultra Premium)
   ═══════════════════════════════════════════ */
.safety-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }

.safety-split__info .overline { display: block; margin-bottom: 14px; }
.safety-split__desc { font-size: 18px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 36px; }

.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.safety-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.safety-item:hover {
  background: var(--surface);
  transform: translateX(4px);
}

.safety-item__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 17px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.safety-item:hover .safety-item__icon {
  transform: scale(1.05);
}

.safety-item__icon--pink,
.safety-item__icon--blue,
.safety-item__icon--red,
.safety-item__icon--purple,
.safety-item__icon--green,
.safety-item__icon--amber,
.safety-item__icon--teal { background: rgba(245,184,0,0.08); color: #D4900A; }

.safety-item strong { display: block; font-size: 14px; color: var(--text); font-weight: 700; margin-bottom: 3px; }
.safety-item span { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

.safety-split__visual {
  position: relative;
  background: var(--gradient-dark-subtle);
  border-radius: 24px;
  padding: 44px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.12);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.safety-split__visual:hover {
  box-shadow: 0 28px 56px -12px rgba(0,0,0,0.16);
  transform: translateY(-4px);
}

.safety-split__visual img {
  max-height: 360px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.safety-split__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}

.safety-split__badge-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,184,0,0.15);
  border-radius: 12px;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.safety-split__badge strong { display: block; font-size: 14px; color: var(--white); font-weight: 700; }
.safety-split__badge span { font-size: 12px; color: rgba(255,255,255,0.5); }

@media(max-width:992px) {
  .safety-split { grid-template-columns: 1fr; gap: 44px; }
  .safety-split__visual { min-height: 360px; }
  .safety-split__info .heading-lg { text-align: center; }
  .safety-split__desc { text-align: center; margin-left: auto; margin-right: auto; max-width: 480px; }
}
@media(max-width:576px) {
  .safety-grid { grid-template-columns: 1fr; }
  .safety-split__visual { min-height: 280px; padding: 28px; border-radius: 20px; }
  .safety-split__visual img { max-height: 240px; }
}


/* ═══════════════════════════════════════════
   REVIEWS (Ultra Premium)
   ═══════════════════════════════════════════ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.review-card {
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.review-card::after {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 72px;
  font-family: Georgia, serif;
  color: rgba(245,184,0,0.08);
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.08);
}

/* Featured card — Premium gold gradient border via pseudo element */
.review-card--featured {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border-color: rgba(245,184,0,0.25) !important;
  border-top: 3px solid var(--primary);
  position: relative;
}

.review-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(245,184,0,0.3), rgba(255,215,0,0.15), rgba(245,184,0,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.review-card__stars {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  gap: 2px;
}

.review-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
  flex: 1;
}

.review-card__footer { display: flex; align-items: center; gap: 14px; }
.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.review-card:hover .review-card__avatar {
  transform: scale(1.05);
}

.review-card__footer strong { display: block; font-size: 15px; color: var(--text); }
.review-card__footer span { font-size: 12px; color: var(--text-tertiary); }

@media(max-width:992px) { .reviews { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } }
@media(max-width:480px) { .review-card { padding: 28px 22px; border-radius: 20px; } .review-card p { font-size: 14px; } }


/* ═══════════════════════════════════════════
   DOWNLOAD CTA (Ultra Premium)
   ═══════════════════════════════════════════ */
.dl-section {
  padding: var(--section-y) 0;
  text-align: center;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.dl-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-mesh);
  pointer-events: none;
  opacity: 0.7;
}

.dl-content { position: relative; z-index: 2; }
.dl-content__logo {
  width: 72px;
  margin: 0 auto 40px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.dl-content__logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(245,184,0,0.2));
}

.dl-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 48px;
  line-height: 1.7;
}
.dl-content p strong { color: var(--primary); }

.dl-content__btns { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }

.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.store-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(245,184,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4), 0 0 24px rgba(245,184,0,0.12);
}
.store-btn i { font-size: 28px; color: var(--white); transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
.store-btn:hover i { color: var(--primary); }
.store-btn span { font-size: 11px; color: rgba(255,255,255,0.4); display: block; }
.store-btn strong { font-size: 16px; color: var(--white); font-weight: 600; display: block; }

@media(max-width:768px) {
  .dl-section { padding: 80px 0; }
  .dl-content__btns { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 280px; justify-content: center; }
}


/* ═══════════════════════════════════════════
   DRIVE CTA (Ultra Premium)
   ═══════════════════════════════════════════ */
.drive-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px;
  background: var(--gradient-gold);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  position: relative;
}

.drive-card__info .badge { margin-bottom: 20px; }

.drive-card__info .heading-lg {
  color: #000;
  margin-bottom: 14px;
}

.drive-card__info p {
  font-size: 17px;
  color: rgba(0,0,0,0.5);
  margin-bottom: 28px;
  max-width: 440px;
  line-height: 1.65;
}

.drive-card__metrics { display: flex; gap: 32px; margin-bottom: 32px; }
.drive-card__metrics > div { text-align: center; }
.drive-card__metrics strong { display: block; font-size: 24px; font-weight: 800; color: #000; }
.drive-card__metrics span { font-size: 11px; color: rgba(0,0,0,0.4); text-transform: uppercase; letter-spacing: 1px; }

.drive-card__visual { position: relative; z-index: 2; }
.drive-card__visual img {
  max-width: 260px;
  filter: drop-shadow(0 12px 36px rgba(0,0,0,0.12));
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.drive-card__visual:hover img {
  transform: translateY(-6px) scale(1.02);
  filter: drop-shadow(0 16px 44px rgba(0,0,0,0.16));
}

@media(max-width:768px) {
  .drive-card { flex-direction: column; text-align: center; padding: 44px 32px; }
  .drive-card__info p { max-width: 100%; }
  .drive-card__metrics { justify-content: center; }
  .drive-card__visual { margin-top: 28px; }
  .drive-card__visual img { max-width: 200px; }
}
@media(max-width:480px) {
  .drive-card { padding: 32px 24px; border-radius: var(--radius-xl); }
  .drive-card__visual img { max-width: 180px; }
}

/* ═══════════════════════════════════════════════════════════════
   5 SERVICE MODES
   ═══════════════════════════════════════════════════════════════ */
.service-modes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.service-mode-card {
  position: relative;
  background: linear-gradient(150deg, #FFFFFF 0%, #FAFCFF 100%);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-xl);
  padding: 32px 24px 28px;
  text-align: center;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03);
}

.service-mode-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0.5;
  transition: opacity 0.4s;
}

.service-mode-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(245,184,0,0.12), 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px rgba(245,184,0,0.1);
  border-color: rgba(245,184,0,0.25);
}

.service-mode-card:hover::before { opacity: 1; }

.service-mode-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #FFF8E1 0%, #FFF3CD 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  color: #D4900A;
  box-shadow: 0 4px 16px rgba(245,184,0,0.2);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-mode-card:hover .service-mode-card__icon { transform: scale(1.1); }

.service-mode-card__icon--pink,
.service-mode-card__icon--blue,
.service-mode-card__icon--green,
.service-mode-card__icon--purple { background: linear-gradient(135deg, #FFF8E1 0%, #FFF3CD 100%); color: #D4900A; box-shadow: 0 4px 16px rgba(245,184,0,0.2); }

.service-mode-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #F5B800, #E8A500);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-mode-card__badge--pink,
.service-mode-card__badge--blue,
.service-mode-card__badge--green,
.service-mode-card__badge--purple { background: #F5B800; }

.service-mode-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0A0A1A;
  margin-bottom: 8px;
}

.service-mode-card p {
  font-size: 13.5px;
  color: #5A6A7A;
  line-height: 1.55;
  margin-bottom: 16px;
}

.service-mode-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #B8860B;
  background: rgba(245,184,0,0.08);
  padding: 5px 14px;
  border-radius: 20px;
}

@media(max-width:1024px) {
  .service-modes { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:768px) {
  .service-modes { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media(max-width:480px) {
  .service-modes { grid-template-columns: 1fr; }
  .service-mode-card { padding: 28px 20px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   AI HUB — 6 AI Features
   ═══════════════════════════════════════════════════════════════ */
.ai-hub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.ai-hub__featured {
  position: relative;
  background: linear-gradient(145deg, #0A0A1A 0%, #1A1A2E 50%, #0F172A 100%);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ai-hub__featured-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245,184,0,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.ai-hub__featured-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: #F5B800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(245,184,0,0.35);
}

.ai-hub__featured-badge {
  display: inline-block;
  background: rgba(245,184,0,0.15);
  color: #F5B800;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  width: fit-content;
}

.ai-hub__featured h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.ai-hub__featured p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.ai-hub__featured-langs {
  display: flex;
  gap: 12px;
}

.ai-hub__featured-langs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.ai-hub__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ai-hub__card {
  background: linear-gradient(150deg, #FFFFFF 0%, #FAFCFF 100%);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03);
}

.ai-hub__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(245,184,0,0.1), 0 2px 8px rgba(0,0,0,0.05);
  border-color: rgba(245,184,0,0.2);
}

.ai-hub__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FFF8E1 0%, #FFF3CD 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #D4900A;
  margin-bottom: 14px;
  box-shadow: 0 3px 12px rgba(245,184,0,0.18);
}

.ai-hub__card-icon--blue,
.ai-hub__card-icon--green,
.ai-hub__card-icon--red,
.ai-hub__card-icon--purple { background: linear-gradient(135deg, #FFF8E1 0%, #FFF3CD 100%); color: #D4900A; box-shadow: 0 3px 12px rgba(245,184,0,0.18); }

.ai-hub__card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #0A0A1A;
  margin-bottom: 6px;
}

.ai-hub__card p {
  font-size: 13px;
  color: #5A6A7A;
  line-height: 1.55;
}

/* AI Hub — last card spans full width when odd */
.ai-hub__grid .ai-hub__card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

@media(max-width:1024px) {
  .ai-hub { grid-template-columns: 1fr; }
  .ai-hub__featured { padding: 36px 28px; }
}
@media(max-width:480px) {
  .ai-hub__grid { grid-template-columns: 1fr; }
  .ai-hub__featured h3 { font-size: 22px; }
}

/* ═══════════════════════════════════════════════════════════════
   PER-SEAT ECONOMICS
   ═══════════════════════════════════════════════════════════════ */
.economics {
  margin-top: 48px;
}

/* Scenario bar */
.economics__scenario {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.economics__scenario i { color: #F5B800; font-size: 16px; }

.economics__vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}

.economics__card {
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  text-align: center;
  transition: all 0.4s ease;
}

.economics__card--old {
  background: linear-gradient(150deg, #F9FAFB 0%, #F3F4F6 100%);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.economics__card--new {
  background: linear-gradient(150deg, #FFFDF5 0%, #FFF8E1 100%);
  border: 2px solid rgba(245,184,0,0.3);
  box-shadow: 0 4px 24px rgba(245,184,0,0.12), 0 2px 8px rgba(0,0,0,0.04);
}

.economics__card-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.economics__card--old .economics__card-label { color: #9CA3AF; }
.economics__card--new .economics__card-label { color: #D4900A; }

.economics__card-sublabel {
  font-size: 13px;
  color: #94A3B8;
  margin-bottom: 20px;
}
.economics__card--new .economics__card-sublabel { color: #b8860b; }

.economics__card-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.economics__card--old .economics__card-icon { color: #9CA3AF; }
.economics__card--new .economics__card-icon { color: #F5B800; }

.economics__visual {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.economics__seat-label {
  font-size: 12px;
  color: #94A3B8;
  margin-bottom: 24px;
  font-weight: 500;
}
.economics__card--new .economics__seat-label { color: #b8860b; }

.economics__seat {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s;
}

.economics__seat--filled {
  background: #E5E7EB;
  color: #6B7280;
}

.economics__seat--empty {
  background: #F9FAFB;
  border: 2px dashed #D1D5DB;
  color: #D1D5DB;
}

.economics__seat--gold {
  background: #F5B800;
  color: #fff;
  box-shadow: 0 3px 12px rgba(245,184,0,0.3);
}

.economics__seat--empty-new {
  background: #FFFDF5;
  border: 2px dashed rgba(245,184,0,0.3);
  color: rgba(245,184,0,0.4);
}

.economics__stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.economics__stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.6);
}

.economics__stat span { font-size: 13px; color: #6B7280; display: flex; align-items: center; gap: 6px; }
.economics__stat span i { font-size: 12px; opacity: 0.6; }
.economics__stat strong { font-size: 15px; color: #0A0A1A; font-weight: 800; }
.economics__stat strong small { font-size: 11px; color: #9CA3AF; font-weight: 500; margin-left: 4px; }

.economics__stat--bad { background: rgba(239,68,68,0.06); }
.economics__stat--bad strong { color: #DC2626; }

.economics__stat--good { background: rgba(245,184,0,0.06); }
.economics__stat--good strong { color: #D4900A; }

.economics__stat--great {
  background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(16,185,129,0.03));
  border: 1px solid rgba(16,185,129,0.15);
}
.economics__stat--great strong { color: #059669; }

.economics__divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.economics__divider span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A0A1A 0%, #1A1A2E 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* ── Result Summary ── */
.economics__result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.economics__result-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.economics__result-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.economics__result-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.economics__result-item--rider .economics__result-icon {
  background: rgba(59,130,246,0.1);
  color: #2563EB;
}
.economics__result-item--driver .economics__result-icon {
  background: rgba(16,185,129,0.1);
  color: #059669;
}
.economics__result-item--planet .economics__result-icon {
  background: rgba(139,92,246,0.1);
  color: #7C3AED;
}

.economics__result-title {
  font-size: 17px;
  font-weight: 800;
  color: #0A0A1A;
  margin-bottom: 8px;
}

.economics__result-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.economics__result-old {
  font-size: 16px;
  font-weight: 700;
  color: #DC2626;
  text-decoration: line-through;
  opacity: 0.7;
}

.economics__result-detail i {
  font-size: 12px;
  color: #94A3B8;
}

.economics__result-new {
  font-size: 18px;
  font-weight: 800;
  color: #059669;
}

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

/* ── Math Breakdown ── */
.economics__math {
  margin-top: 28px;
  padding: 24px 32px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
}

.economics__math-label {
  font-size: 13px;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.economics__math-label i { color: #F5B800; }

.economics__math-steps {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.economics__math-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
}

.economics__math-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(245,184,0,0.1);
  color: #D4900A;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.economics__math-step strong { color: #0A0A1A; }

.economics__math-arrow {
  color: #CBD5E1;
  font-size: 12px;
}

@media(max-width:992px) {
  .economics__result { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}

@media(max-width:768px) {
  .economics__vs { grid-template-columns: 1fr; gap: 16px; }
  .economics__divider span { width: 40px; height: 40px; font-size: 13px; }
  .economics__scenario { font-size: 13px; padding: 12px 20px; }
  .economics__math { padding: 20px 24px; }
  .economics__math-steps { flex-direction: column; align-items: flex-start; }
  .economics__math-arrow { transform: rotate(90deg); align-self: center; }
}
@media(max-width:480px) {
  .economics__card { padding: 28px 20px; }
  .economics__scenario { font-size: 12px; padding: 10px 16px; }
  .economics__result-item { padding: 22px 18px; }
  .economics__result-title { font-size: 15px; }
  .economics__math { padding: 18px 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   COMPETITIVE COMPARISON TABLE
   ═══════════════════════════════════════════════════════════════ */
.compare-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03), 0 8px 32px rgba(0,0,0,0.04);
  background: #fff;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.compare-table thead {
  background: linear-gradient(135deg, #F8F9FC 0%, #F1F3F9 100%);
}

.compare-table th {
  padding: 18px 24px;
  font-weight: 700;
  color: #5A6A7A;
  text-align: left;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid rgba(0,0,0,0.06);
}

.compare-table__shareide {
  background: linear-gradient(135deg, #FFFDF5 0%, #FFF8E1 100%) !important;
  color: #D4900A !important;
}

.compare-table td {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  color: #6B7280;
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table tr:hover td { background: rgba(245,184,0,0.02); }

.compare-table td:first-child {
  font-weight: 600;
  color: #0A0A1A;
  white-space: nowrap;
}

.compare-table td:first-child i {
  width: 20px;
  text-align: center;
  color: #B8860B;
  margin-right: 8px;
}

.compare-table__win {
  color: #D4900A !important;
  font-weight: 700 !important;
  background: rgba(245,184,0,0.06);
}

.compare-table__win i {
  color: #F5B800;
  margin-right: 6px;
}

.compare-table__no {
  color: #DC2626 !important;
  font-size: 13px;
}

.compare-table__competitor { color: #9CA3AF !important; }

.compare-table__lose {
  color: #DC2626;
  font-weight: 500;
}

@media(max-width:768px) {
  .compare-table { font-size: 12.5px; }
  .compare-table th,
  .compare-table td { padding: 12px 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   COMMUNITY CARDS — School / Corporate / University
   ═══════════════════════════════════════════════════════════════ */
.community-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.community-card {
  background: linear-gradient(150deg, #FFFFFF 0%, #FAFCFF 100%);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03);
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.community-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(245,184,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
}

.community-card--featured {
  border: 2px solid rgba(245,184,0,0.25);
  box-shadow: 0 4px 24px rgba(245,184,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
}

.community-card__header {
  padding: 28px 28px 20px;
  position: relative;
}

.community-card__header--blue,
.community-card__header--gold,
.community-card__header--green { background: linear-gradient(135deg, #FFFDF5 0%, #FFF3CD 100%); }

.community-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}

.community-card__header--blue .community-card__icon,
.community-card__header--gold .community-card__icon,
.community-card__header--green .community-card__icon { background: #F5B800; color: #fff; box-shadow: 0 4px 14px rgba(245,184,0,0.3); }

.community-card__header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0A0A1A;
}

.community-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, #F5B800, #E8A500);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.community-card__body {
  padding: 24px 28px 28px;
}

.community-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.community-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #3A4A5A;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.community-card__list li:last-child { border-bottom: none; }

.community-card__list li i {
  font-size: 12px;
  color: #F5B800;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.community-card__stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #F8F9FC 0%, #F3F5FA 100%);
  border-radius: 12px;
}

.community-card__stat strong {
  font-size: 22px;
  font-weight: 900;
  color: #F5B800;
}

.community-card__stat span {
  font-size: 12.5px;
  color: #5A6A7A;
  line-height: 1.4;
}

@media(max-width:1024px) {
  .community-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ═══════════════════════════════════════════════════════════════
   MARKET STATS STRIP
   ═══════════════════════════════════════════════════════════════ */
.market-strip {
  background: linear-gradient(135deg, #0A0A1A 0%, #1A1A2E 50%, #0F172A 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.market-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(245,184,0,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(59,130,246,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.market-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.market-strip__item {
  text-align: center;
}

.market-strip__value {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #F5B800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.market-strip__label {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

@media(max-width:768px) {
  .market-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .market-strip { padding: 48px 0; }
}
@media(max-width:480px) {
  .market-strip__grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   WAITLIST SECTION — Premium CTA
   ═══════════════════════════════════════════════════════════════ */
.waitlist-section {
  background: linear-gradient(160deg, #0A0A1A 0%, #1A1A2E 40%, #0F172A 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.waitlist-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,184,0,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(59,130,246,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(124,58,237,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.waitlist-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(255,255,255,0.02) 49px, rgba(255,255,255,0.02) 50px),
    repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(255,255,255,0.02) 49px, rgba(255,255,255,0.02) 50px);
  pointer-events: none;
}

.waitlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.waitlist__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,184,0,0.12);
  border: 1px solid rgba(245,184,0,0.2);
  color: #F5B800;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.waitlist__title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.waitlist__title span {
  color: #F5B800;
}

.waitlist__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.waitlist__perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.waitlist__perk {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.8);
}

.waitlist__perk i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(245,184,0,0.12);
  color: #F5B800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.waitlist__perk strong { color: #fff; }

.waitlist__counter {
  display: flex;
  align-items: center;
  gap: 14px;
}

.waitlist__counter-avatars {
  display: flex;
}

.waitlist__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border: 2px solid #0A0A1A;
  margin-left: -8px;
}

.waitlist__avatar:first-child { margin-left: 0; }

.waitlist__avatar--count {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.waitlist__counter > span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.waitlist__counter > span strong {
  color: #F5B800;
  font-weight: 800;
}

/* ─── Waitlist Form ─── */
.waitlist__form-wrap {
  position: relative;
}

.waitlist__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px 36px;
}

.waitlist__form-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.waitlist__form-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.waitlist__field {
  margin-bottom: 16px;
}

.waitlist__field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.waitlist__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.waitlist__input-wrap i {
  position: absolute;
  left: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  pointer-events: none;
  z-index: 1;
}

.waitlist__input-wrap input,
.waitlist__input-wrap select {
  width: 100%;
  padding: 12px 14px 12px 42px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 14.5px;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}

.waitlist__input-wrap input::placeholder {
  color: rgba(255,255,255,0.3);
}

.waitlist__input-wrap select {
  cursor: pointer;
}

.waitlist__input-wrap select option {
  background: #1A1A2E;
  color: #fff;
}

.waitlist__input-wrap input:focus,
.waitlist__input-wrap select:focus {
  border-color: rgba(245,184,0,0.5);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(245,184,0,0.1);
}

.waitlist__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.waitlist__types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.waitlist__type {
  cursor: pointer;
}

.waitlist__type input { display: none; }

.waitlist__type span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.waitlist__type input:checked + span {
  background: rgba(245,184,0,0.12);
  border-color: rgba(245,184,0,0.4);
  color: #F5B800;
}

.waitlist__type:hover span {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
}

.waitlist__submit {
  width: 100%;
  padding: 14px 24px;
  background: #F5B800;
  border: none;
  border-radius: 14px;
  color: #0A0A1A;
  font-size: 16px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(245,184,0,0.3);
  margin-bottom: 12px;
}

.waitlist__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(245,184,0,0.4);
}

.waitlist__submit:active { transform: translateY(0); }

.waitlist__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.waitlist__submit-text,
.waitlist__submit-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.waitlist__privacy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

.waitlist__privacy i { margin-right: 4px; }

/* ─── Waitlist Success State ─── */
.waitlist__success {
  text-align: center;
  padding: 48px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-radius: 24px;
}

.waitlist__success-icon {
  font-size: 56px;
  color: #22C55E;
  margin-bottom: 20px;
}

.waitlist__success h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.waitlist__success p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 360px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.waitlist__success-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.waitlist__success-share span {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.waitlist__success-btns {
  display: flex;
  gap: 8px;
}

.waitlist__share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.waitlist__share-btn:hover { transform: scale(1.1); }

.waitlist__share-btn--wa { background: #25D366; }
.waitlist__share-btn--tw { background: #1DA1F2; }

@media(max-width:1024px) {
  .waitlist { grid-template-columns: 1fr; gap: 48px; }
  .waitlist__desc { max-width: 100%; }
}
@media(max-width:480px) {
  .waitlist-section { padding: 64px 0; }
  .waitlist__form { padding: 28px 24px; }
  .waitlist__row { grid-template-columns: 1fr; }
  .waitlist__types { grid-template-columns: 1fr; }
  .waitlist__perks { gap: 10px; }
}

/* ═══════════════════════════════════════════════════════════════
   WAITLIST MODAL — Global
   ═══════════════════════════════════════════════════════════════ */
.wl-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.wl-modal--open {
  opacity: 1;
  visibility: visible;
}

.wl-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.wl-modal__container {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(160deg, #0F172A 0%, #1A1A2E 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px 36px;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  margin: 16px;
}

.wl-modal--open .wl-modal__container {
  transform: translateY(0) scale(1);
}

.wl-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.wl-modal__close:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.wl-modal__header {
  margin-bottom: 28px;
}

.wl-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,184,0,0.12);
  color: #F5B800;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.wl-modal__header h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.wl-modal__header p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.wl-modal__form .waitlist__field label { display: none; }

.wl-modal__success {
  text-align: center;
  padding: 24px 0;
}

.wl-modal__success .waitlist__success-icon { font-size: 48px; color: #22C55E; margin-bottom: 16px; }
.wl-modal__success h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.wl-modal__success p { font-size: 14px; color: rgba(255,255,255,0.6); }

@media(max-width:480px) {
  .wl-modal__container { padding: 28px 24px; border-radius: 20px; }
}
