/* ============================================================
   ReStore - Dark Tech Marketing Website Styles
   Theme: Version 2 (Modern & Bold Dark Theme with Neon Accents)
   Matches reference mockup & clean storytelling flow
   ============================================================ */

:root {
  /* Color Palette - Dark Tech */
  --bg-main: #0B0F17;
  --bg-surface: #111827;
  --bg-surface-elevated: #162032;
  --bg-surface-card: #0F172A;
  --border-subtle: #1E293B;
  --border-highlight: #334155;
  --border-glow: rgba(0, 229, 153, 0.3);
  
  /* Brand Accents */
  --accent-neon-green: #00E599;
  --accent-neon-hover: #05DF72;
  --accent-cyan: #38BDF8;
  --accent-cyan-glow: rgba(56, 189, 248, 0.25);
  --accent-purple: #A855F7;
  
  /* Condition Colors */
  --condition-new: #38BDF8;
  --condition-new-bg: rgba(56, 189, 248, 0.12);
  --condition-refurbished: #34D399;
  --condition-refurbished-bg: rgba(52, 211, 153, 0.12);
  --condition-used: #FBBF24;
  --condition-used-bg: rgba(251, 191, 36, 0.12);

  /* Typography */
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Glows & Shadows */
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --glow-accent: 0 0 24px rgba(0, 229, 153, 0.35);
  --glow-cyan: 0 0 24px rgba(56, 189, 248, 0.35);
  --transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Base */
body {
  font-family: var(--font-base);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--accent-neon-green);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #1E293B;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* ============================================================
   Navigation Header
   ============================================================ */
.navbar-restore {
  background: rgba(11, 15, 23, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.85rem 0;
  transition: var(--transition-smooth);
  z-index: 1040;
}

.restore-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}

.brand-title {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.brand-title span {
  color: #8B5CF6;
}

.brand-tagline {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-link-custom {
  color: #CBD5E1 !important;
  font-size: 0.93rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem !important;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: #FFFFFF !important;
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-link-custom.active {
  color: var(--accent-neon-green) !important;
}

/* Buttons */
.btn-neon {
  background-color: var(--accent-neon-green);
  color: #0B0F17 !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.6rem 1.35rem;
  border-radius: 8px;
  border: 1px solid var(--accent-neon-green);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0 16px rgba(0, 229, 153, 0.25);
  transition: var(--transition-smooth);
}

.btn-neon:hover {
  background-color: var(--accent-neon-hover);
  border-color: var(--accent-neon-hover);
  color: #0B0F17 !important;
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0, 229, 153, 0.45);
}

.btn-outline-neon {
  background: rgba(17, 24, 39, 0.6);
  color: #F8FAFC !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.6rem 1.35rem;
  border-radius: 8px;
  border: 1px solid var(--border-highlight);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.btn-outline-neon:hover {
  border-color: var(--accent-neon-green);
  color: var(--accent-neon-green) !important;
  background: rgba(0, 229, 153, 0.08);
  transform: translateY(-2px);
}

.btn-ios {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.6rem 1.35rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.btn-ios:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #FFFFFF;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.18);
}

/* Condition Badges */
.badge-condition {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

.badge-new {
  color: var(--condition-new);
  background-color: var(--condition-new-bg);
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.badge-refurbished {
  color: var(--condition-refurbished);
  background-color: var(--condition-refurbished-bg);
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.badge-used {
  color: var(--condition-used);
  background-color: var(--condition-used-bg);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(circle at 80% 20%, rgba(0, 229, 153, 0.07) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(56, 189, 248, 0.05) 0%, transparent 40%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-neon-green);
  background: rgba(0, 229, 153, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 229, 153, 0.25);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.hero-conditions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.condition-pill-text {
  font-size: 1.15rem;
  font-weight: 700;
}

.condition-pill-text.new { color: var(--accent-cyan); }
.condition-pill-text.refurbished { color: var(--accent-neon-green); }
.condition-pill-text.used { color: var(--condition-used); }
.condition-dot { color: var(--text-muted); font-size: 0.8rem; }

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 2rem;
}

.trust-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.trust-pill {
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid var(--border-subtle);
  padding: 0.45rem 0.9rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #E2E8F0;
  transition: var(--transition-smooth);
}

.trust-pill:hover {
  border-color: var(--border-highlight);
  background: rgba(22, 32, 50, 0.9);
}

.trust-pill i {
  color: var(--accent-neon-green);
  font-size: 0.95rem;
}

.trust-pill .pill-sub {
  color: var(--text-muted);
  font-size: 0.74rem;
}

/* Hero Mobile App Carousel */
.hero-carousel-wrapper {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}

.app-slide-card {
  position: relative;
  background: transparent;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.95), 0 0 40px rgba(139, 92, 246, 0.25);
  transition: var(--transition-smooth);
}

.app-mockup-img {
  width: 100%;
  height: auto;
  display: block;
}

#heroAppCarousel .carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 15, 23, 0.88) 35%, rgba(11, 15, 23, 0.98) 100%);
  padding: 2.2rem 1.25rem 1.25rem;
  text-align: center;
}

#heroAppCarousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: var(--text-muted);
  border: none;
  margin: 0 4px;
  transition: var(--transition-smooth);
}

#heroAppCarousel .carousel-indicators .active {
  width: 24px;
  background-color: var(--accent-neon-green);
}

.carousel-control-prev,
.carousel-control-next {
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  background: rgba(11, 15, 23, 0.85);
  border: 1px solid var(--border-subtle);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
  transition: var(--transition-smooth);
  z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(0, 229, 153, 0.2);
  border-color: var(--accent-neon-green);
  opacity: 1;
}

.carousel-control-prev {
  left: -16px;
}

.carousel-control-next {
  right: -16px;
}

.hero-floating-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(11, 15, 23, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.5rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  z-index: 15;
}

.hero-floating-badge i {
  color: var(--accent-neon-green);
}

/* ============================================================
   Section Shared Utilities
   ============================================================ */
.section-pad {
  padding: 4.5rem 0;
}

.section-eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-neon-green);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-size: clamp(1.85rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

/* ============================================================
   3 Core Pillars (One Marketplace • Verified Sellers • New/Refurb/Used)
   ============================================================ */
.pillar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-card);
}

.pillar-card.pillar-marketplace:hover {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 10px 30px -10px rgba(56, 189, 248, 0.2);
}

.pillar-card.pillar-sellers:hover {
  border-color: rgba(0, 229, 153, 0.4);
  box-shadow: 0 10px 30px -10px rgba(0, 229, 153, 0.2);
}

.pillar-card.pillar-condition:hover {
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 10px 30px -10px rgba(251, 191, 36, 0.2);
}

.pillar-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  border: 1px solid transparent;
}

.pillar-marketplace .pillar-icon-wrap {
  background: rgba(56, 189, 248, 0.1);
  color: var(--accent-cyan);
  border-color: rgba(56, 189, 248, 0.2);
}

.pillar-sellers .pillar-icon-wrap {
  background: rgba(0, 229, 153, 0.1);
  color: var(--accent-neon-green);
  border-color: rgba(0, 229, 153, 0.2);
}

.pillar-condition .pillar-icon-wrap {
  background: rgba(251, 191, 36, 0.1);
  color: var(--condition-used);
  border-color: rgba(251, 191, 36, 0.2);
}

.pillar-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.pillar-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.pillar-badges {
  margin-top: auto;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

/* ============================================================
   AI Assistant Showcase
   ============================================================ */
.ai-box {
  background: linear-gradient(180deg, #131B2A 0%, #0F172A 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
}

.ai-input-wrap {
  display: flex;
  align-items: center;
  background: #0B0F17;
  border: 1px solid var(--border-highlight);
  border-radius: 10px;
  padding: 0.4rem 0.5rem 0.4rem 1rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-smooth);
}

.ai-input-wrap:focus-within {
  border-color: var(--accent-neon-green);
  box-shadow: 0 0 16px rgba(0, 229, 153, 0.2);
}

.ai-input-text {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 0.95rem;
  outline: none;
}

.ai-input-text::placeholder {
  color: var(--text-muted);
}

.ai-submit-btn {
  background: var(--accent-neon-green);
  color: #0B0F17;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.ai-submit-btn:hover {
  background: var(--accent-neon-hover);
  transform: scale(1.05);
}

.prompt-chips-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.prompt-chips-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.prompt-chip {
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.8rem;
  color: #CBD5E1;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.prompt-chip:hover {
  border-color: var(--accent-neon-green);
  color: var(--accent-neon-green);
  background: rgba(0, 229, 153, 0.05);
}

/* Example result card (Clearly labeled Demo) */
.ai-demo-result-card {
  background: #0B0F17;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.25rem;
  position: relative;
}

.demo-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.ai-listing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-listing-row:last-child {
  border-bottom: none;
}

.ai-listing-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFFFFF;
}

.ai-listing-seller {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.ai-listing-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.ai-capability-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ai-capability-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 0.9rem 1.15rem;
  transition: var(--transition-smooth);
}

.ai-capability-item:hover {
  border-color: var(--border-highlight);
  background: var(--bg-surface-elevated);
}

.ai-cap-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 229, 153, 0.12);
  color: var(--accent-neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ai-cap-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.15rem;
}

.ai-cap-text p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* ============================================================
   Trust Section (Why Choose ReStore)
   ============================================================ */
.trust-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.75rem;
  height: 100%;
  transition: var(--transition-smooth);
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-card);
}

.trust-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 229, 153, 0.12);
  color: var(--accent-neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.trust-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   ReStore Rewards Program
   ============================================================ */
.rewards-section {
  position: relative;
  background: radial-gradient(circle at 80% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 60%), #0B0F17;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.reward-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.reward-step-card {
  display: flex;
  gap: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.15rem;
  transition: var(--transition-smooth);
}

.reward-step-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
}

.reward-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.15);
  color: var(--brand-purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.reward-step-content h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.reward-step-content p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.45;
}

.btn-purple {
  background-color: var(--brand-purple);
  color: #FFFFFF;
  border: 1px solid rgba(139, 92, 246, 0.5);
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
}

.btn-purple:hover {
  background-color: var(--brand-purple-hover);
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
}

/* Rewards UI Display Card (Matches Mobile App Screen) */
.rewards-display-card {
  background: #0D121F;
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.95), 0 0 35px rgba(139, 92, 246, 0.18);
  max-width: 440px;
  margin: 0 auto;
}

.rewards-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rewards-balance-card {
  background: #141B2D;
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 20px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.08);
}

.rewards-star-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brand-purple);
  color: #FBBF24;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.rewards-balance-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #94A3B8;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.rewards-balance-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.rewards-value-pill {
  display: inline-block;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.45);
  color: #D8B4FE;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.25rem 0.85rem;
}

.rewards-action-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.65rem;
}

.watch-earn-box {
  background: #141B2D;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.video-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.2);
  color: var(--brand-purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.btn-watch-earn {
  background: var(--brand-purple);
  color: #FFFFFF;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  padding: 0.7rem;
  transition: var(--transition-smooth);
}

.btn-watch-earn:hover {
  background: var(--brand-purple-hover);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.rewards-work-box {
  background: #141B2D;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.25rem;
}

.rewards-work-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.85rem;
}

.rewards-work-item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.rewards-work-item:last-child {
  margin-bottom: 0;
}

.work-item-icon {
  color: var(--brand-purple-light);
  font-size: 1.15rem;
  flex-shrink: 0;
  padding-top: 2px;
}

.work-item-icon.check-icon {
  color: #F59E0B;
}

.work-item-icon.cart-icon {
  color: var(--accent-neon-green);
}

.work-item-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
}

.work-item-sub {
  font-size: 0.76rem;
  color: #94A3B8;
  line-height: 1.4;
}

/* ============================================================
   Seller Section
   ============================================================ */
.seller-box {
  background: linear-gradient(135deg, #111827 0%, #0F172A 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.5rem;
}

.seller-steps-card {
  background: #0B0F17;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.seller-step-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.seller-step-item:last-child {
  border-bottom: none;
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background: rgba(0, 229, 153, 0.15);
  color: var(--accent-neon-green);
  font-size: 0.76rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text {
  font-size: 0.86rem;
  font-weight: 600;
  color: #E2E8F0;
}

.seller-quote-card {
  background: #0B0F17;
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent-neon-green);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.86rem;
  font-style: italic;
  color: #94A3B8;
}

/* ============================================================
   Vision Section
   ============================================================ */
.vision-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.5rem;
}

.principle-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.principle-item:last-child {
  margin-bottom: 0;
}

.principle-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.principle-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.principle-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   Footer
   ============================================================ */
.footer-restore {
  background: #070A10;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
  color: var(--text-secondary);
}

.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--accent-neon-green);
  padding-left: 3px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  color: var(--accent-neon-green);
  border-color: var(--accent-neon-green);
  background: rgba(0, 229, 153, 0.1);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Search Modal */
.modal-restore .modal-content {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-highlight);
  color: var(--text-primary);
  border-radius: 14px;
}

.modal-restore .modal-header {
  border-bottom: 1px solid var(--border-subtle);
}

.modal-restore .modal-footer {
  border-top: 1px solid var(--border-subtle);
}

.form-control-dark {
  background-color: #0B0F17 !important;
  border: 1px solid var(--border-subtle) !important;
  color: #FFFFFF !important;
}

.form-control-dark:focus {
  border-color: var(--accent-neon-green) !important;
  box-shadow: 0 0 12px rgba(0, 229, 153, 0.25) !important;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 3rem 0 2rem;
  }
}
