/* ============================================================
   Flash the Sloth — Design System
   Dark theme, Bootstrap 5, glassmorphism, modern UI
   ============================================================ */

/* ---- Fonts & Root Variables ---- */
:root {
  --orange:     #ff6b2b;
  --orange-2:   #ff8c00;
  --amber:      #ffb800;
  --blue:       #3b82f6;
  --green:      #22c55e;
  --purple:     #a855f7;
  --bg-dark:    #080c14;
  --bg-card:    #0f1623;
  --bg-card-2:  #131c2e;
  --border:     rgba(255,255,255,.07);
  --text-muted: #8fa8cc;
  --gradient:   linear-gradient(135deg, var(--orange), var(--amber));
  --glow:       0 0 30px rgba(255,107,43,.35), 0 0 60px rgba(255,107,43,.15);
  --glow-sm:    0 0 15px rgba(255,107,43,.25);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: #c8d0e8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Override Bootstrap muted color for dark theme */
.text-muted { color: #8fa8cc !important; }

/* ---- Section Spacing ---- */
.py-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.section-dark    { background: var(--bg-dark); }
.section-gradient { background: linear-gradient(160deg, #0a0f1e 0%, #0d1525 50%, #080c14 100%); }

/* ---- Typography ---- */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,107,43,.12);
  border: 1px solid rgba(255,107,43,.25);
  border-radius: 50px;
  padding: .3rem .9rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #f0f4ff;
  line-height: 1.15;
  margin: 0;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn-glow {
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  padding: .6rem 1.5rem;
  box-shadow: var(--glow-sm);
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-glow:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.btn-ghost {
  background: transparent;
  color: #c8d0e8;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  padding: .6rem 1.5rem;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.07);
  color: #fff;
  border-color: rgba(255,255,255,.35);
  transform: translateY(-2px);
}

/* ---- Navbar ---- */
.fts-navbar {
  background: rgba(8,12,20,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
  transition: all .3s ease;
}
.fts-navbar.scrolled {
  background: rgba(8,12,20,.97);
}

.brand-icon {
  width: 32px; height: 32px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #fff;
  box-shadow: var(--glow-sm);
  flex-shrink: 0;
}
.brand-icon.sm { width: 26px; height: 26px; font-size: .8rem; border-radius: 6px; }

.brand-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: #f0f4ff;
  letter-spacing: -.01em;
}
.brand-accent { color: var(--orange); }

.navbar-nav .nav-link {
  color: #8b9bbf;
  font-weight: 500;
  font-size: .875rem;
  padding: .5rem .75rem;
  transition: color .2s;
  border-radius: 8px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,.05);
}

/* ---- Hero ---- */
.hero-section {
  min-height: 100vh;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero {
  min-height: 65vh;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-sm {
  min-height: 50vh;
  padding: 120px 0 60px;
}

.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(255,107,43,.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(59,130,246,.07) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(255,184,0,.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: rgba(255,107,43,.12);
  top: -150px; right: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 350px; height: 350px;
  background: rgba(59,130,246,.1);
  bottom: -80px; left: -80px;
  animation-delay: -3s;
}
.orb-3 {
  width: 280px; height: 280px;
  background: rgba(255,184,0,.08);
  top: 40%; left: 45%;
  animation-delay: -5s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  font-size: .8rem;
  font-weight: 600;
  color: var(--amber);
  background: rgba(255,184,0,.1);
  border: 1px solid rgba(255,184,0,.25);
  border-radius: 50px;
  padding: .4rem 1rem;
  letter-spacing: .05em;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: #f0f4ff;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #7080a0;
  line-height: 1.7;
  max-width: 480px;
}
.hero-subtitle strong { color: #c8d0e8; }

/* Stats */
.hero-stats { gap: 1.5rem; }
.stat-item { }
.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f0f4ff;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: .75rem; color: var(--text-muted); font-weight: 500; margin-top: .2rem; }
.stat-divider {
  width: 1px; background: var(--border);
  align-self: stretch;
}

/* Hero Visual */
.hero-visual { position: relative; width: 400px; max-width: 100%; }

.glass-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,.4);
}
.glass-card-sm {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: .6rem 1rem;
  display: flex; align-items: center;
}

.card-main { position: relative; z-index: 2; }
.card-float-1 {
  position: absolute;
  top: -20px; right: -30px;
  z-index: 3;
  animation: float-1 4s ease-in-out infinite;
}
.card-float-2 {
  position: absolute;
  bottom: -20px; left: -20px;
  z-index: 3;
  animation: float-2 5s ease-in-out infinite;
}
@keyframes float-1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes float-2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

.pulse-dot {
  width: 10px; height: 10px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(34,197,94,.4);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.5); opacity: 0; }
}

.avatar-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.badge-active {
  background: rgba(34,197,94,.15);
  color: var(--green);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 50px;
  font-size: .7rem;
  padding: .3rem .7rem;
  font-weight: 600;
}

.progress-track {
  display: flex; align-items: center; gap: 0;
}
.progress-step {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.1);
  color: #6b7a99;
  flex-shrink: 0;
  transition: all .3s;
}
.progress-step.done { background: var(--green); border-color: var(--green); color: #fff; }
.progress-step.active { background: var(--orange); border-color: var(--orange); color: #fff; animation: step-pulse 1.5s ease-in-out infinite; }
@keyframes step-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(255,107,43,.4)} 50%{box-shadow:0 0 0 8px rgba(255,107,43,0)} }
.progress-line {
  flex: 1; height: 2px;
  background: rgba(255,255,255,.1);
}
.progress-line.done { background: var(--green); }

.hero-scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.3);
  font-size: 1.2rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ---- Problem Cards ---- */
.problem-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  transition: all .25s ease;
}
.problem-card:hover {
  border-color: rgba(255,107,43,.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,.3);
}
.problem-icon {
  width: 44px; height: 44px;
  background: rgba(255,107,43,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  flex-shrink: 0;
}
.problem-text {
  font-weight: 500;
  color: #b0bcd6;
  font-size: .9rem;
}

.solution-arrow {
  display: inline-flex; align-items: center; gap: .75rem;
  color: var(--orange);
  font-weight: 600;
  font-size: .95rem;
}
.solution-arrow i { font-size: 1.5rem; animation: bounce 2s ease-in-out infinite; }

/* ---- Service Cards ---- */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.4); border-color: rgba(255,107,43,.2); }
.service-card:hover::before { opacity: 1; }

.service-card-featured {
  border-color: rgba(255,107,43,.3);
  background: linear-gradient(160deg, rgba(255,107,43,.06), var(--bg-card));
}
.service-card-featured::before { opacity: 1; }

.featured-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gradient);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 50px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.icon-orange { background: rgba(255,107,43,.12); color: var(--orange); }
.icon-blue   { background: rgba(59,130,246,.12); color: var(--blue); }
.icon-green  { background: rgba(34,197,94,.12); color: var(--green); }
.icon-purple { background: rgba(168,85,247,.12); color: var(--purple); }

.service-title { font-size: 1.15rem; font-weight: 700; color: #f0f4ff; }
.service-desc  { color: var(--text-muted); font-size: .9rem; line-height: 1.65; }

.service-features {
  list-style: none; padding: 0; margin: 0;
}
.service-features li {
  font-size: .875rem;
  color: #8b9bbf;
  padding: .3rem 0;
  display: flex; align-items: center;
}

/* ---- How It Works ---- */
.how-connector {
  position: absolute;
  top: 48px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--green));
  opacity: .3;
  z-index: 0;
}

.how-step {
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 1;
}

.step-num {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: .5rem;
}

.step-icon {
  width: 56px; height: 56px;
  background: var(--bg-card);
  border: 2px solid rgba(255,107,43,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  margin: 0 auto;
  transition: all .3s;
}
.how-step:hover .step-icon {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--glow-sm);
  transform: scale(1.1);
}

.step-title { font-weight: 700; color: #f0f4ff; font-size: .95rem; }
.step-desc  { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ---- Industries ---- */
.industry-highlights { display: flex; flex-direction: column; gap: .75rem; }
.highlight-row {
  display: flex; align-items: center;
  font-size: .9rem;
  color: #b0bcd6;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.industry-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 500;
  color: #8b9bbf;
  transition: all .25s;
}
.industry-item i {
  font-size: 1.5rem;
  color: var(--orange);
  transition: transform .25s;
}
.industry-item:hover {
  border-color: rgba(255,107,43,.25);
  transform: translateY(-4px);
  color: #c8d0e8;
}
.industry-item:hover i { transform: scale(1.2); }

/* ---- Partner Cards ---- */
.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  transition: all .25s;
}
.partner-card:hover {
  border-color: rgba(255,107,43,.25);
  transform: translateY(-4px);
}
.partner-icon {
  width: 52px; height: 52px;
  background: rgba(255,107,43,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  margin: 0 auto;
}

/* ---- CTA Strip ---- */
.cta-strip {
  background: linear-gradient(135deg, rgba(255,107,43,.12) 0%, rgba(255,184,0,.06) 100%);
  border-top: 1px solid rgba(255,107,43,.15);
  border-bottom: 1px solid rgba(255,107,43,.1);
}
.cta-inner { gap: 2rem; }
.cta-title { font-size: 1.4rem; font-weight: 800; color: #f0f4ff; }
.cta-sub { color: var(--text-muted); }

/* ---- Footer ---- */
.fts-footer {
  background: #05080f;
  border-top: 1px solid var(--border);
}
.footer-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }
.footer-heading {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f0f4ff;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .5rem;
}
.footer-links a {
  font-size: .875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
  display: flex; align-items: center;
}
.footer-links a:hover { color: var(--orange); }
.footer-divider { border-color: var(--border); margin: 0; }
.footer-copy { font-size: .8rem; color: #3a4560; }

.social-links { display: flex; gap: .5rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: .9rem;
  transition: all .2s;
}
.social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,43,.08);
}

/* ==============================
   COURIERS PAGE
   ============================== */

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  transition: all .25s;
}
.benefit-card:hover {
  border-color: rgba(255,107,43,.25);
  transform: translateY(-4px);
}
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

/* Phone Mockup */
.phone-mockup {
  display: flex;
  justify-content: center;
}
.phone-screen {
  width: 300px;
  background: var(--bg-card-2);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 30px 70px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.app-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.app-task-list { display: flex; flex-direction: column; gap: .6rem; }
.app-task-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .6rem .75rem;
}
.task-status-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.task-status-dot.done    { background: var(--green); }
.task-status-dot.active  { background: var(--amber); }
.task-status-dot.pending { background: #3a4560; }

.app-earn-summary {
  background: linear-gradient(135deg, rgba(255,107,43,.12), rgba(255,184,0,.08));
  border: 1px solid rgba(255,107,43,.2);
  border-radius: 12px;
  padding: .9rem 1rem;
  text-align: center;
}
.earn-label { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }
.earn-amount { font-size: 1.6rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; }
.earn-sub { font-size: .7rem; color: var(--text-muted); }

/* Alert Card */
.alert-card {
  background: rgba(255,184,0,.06);
  border: 1px solid rgba(255,184,0,.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex; align-items: flex-start;
  font-size: .875rem;
}

/* Store Buttons */
.store-btn {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: .9rem 1.25rem;
  color: #c8d0e8;
  text-decoration: none;
  font-size: 1.5rem;
  gap: .5rem;
  transition: all .25s;
  min-width: 180px;
}
.store-btn:hover {
  border-color: rgba(255,107,43,.35);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}
.store-label { font-size: .65rem; color: var(--text-muted); line-height: 1; margin-bottom: .1rem; }
.store-name  { font-size: .95rem; font-weight: 700; color: #f0f4ff; line-height: 1; }

/* Resource Cards */
.resource-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  transition: all .25s;
  height: 100%;
}
.resource-card:hover { border-color: rgba(255,107,43,.25); transform: translateY(-4px); }
.resource-icon {
  width: 52px; height: 52px;
  background: rgba(255,107,43,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
}

/* Contact Grid */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  text-decoration: none;
  transition: all .25s;
  min-width: 180px;
}
.contact-item i { font-size: 1.5rem; color: var(--orange); }
.contact-item:hover { border-color: rgba(255,107,43,.3); transform: translateY(-3px); }
.contact-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); font-weight: 600; }
.contact-val   { font-size: .875rem; color: #c8d0e8; font-weight: 500; }

/* ==============================
   COURIERS APP MANUAL
   ============================== */

.notification-banner {
  background: rgba(255,184,0,.05);
  border: 1px solid rgba(255,184,0,.2);
  border-radius: 16px;
  padding: 1.5rem;
}
.notif-icon {
  width: 44px; height: 44px;
  background: rgba(255,184,0,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--amber);
}

/* Steps Timeline */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.step-timeline-item {
  display: flex;
  gap: 0;
  position: relative;
}
.step-last .step-line { display: none; }

.step-timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 60px;
}

.step-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg-dark);
  border: 2px solid transparent;
}
.step-orange { background: rgba(255,107,43,.15); border-color: rgba(255,107,43,.4); color: var(--orange); }
.step-blue   { background: rgba(59,130,246,.15); border-color: rgba(59,130,246,.4); color: var(--blue); }
.step-green  { background: rgba(34,197,94,.15);  border-color: rgba(34,197,94,.4);  color: var(--green); }
.step-purple { background: rgba(168,85,247,.15); border-color: rgba(168,85,247,.4); color: var(--purple); }

.step-final {
  background: var(--green) !important;
  border-color: var(--green) !important;
  color: #fff !important;
  font-size: 1.5rem;
  box-shadow: 0 0 0 4px var(--bg-dark), 0 0 20px rgba(34,197,94,.4) !important;
}

.step-num-big { font-size: 1.1rem; font-weight: 900; line-height: 1; }

.step-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, rgba(255,107,43,.3), rgba(59,130,246,.3));
  min-height: 40px;
  margin: 0 auto;
}

.step-timeline-content {
  flex: 1;
  padding: 0 0 2.5rem 1.5rem;
  padding-top: .4rem;
}

.step-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .5rem;
}
.step-badge-green { color: var(--green); }

.step-content-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f0f4ff;
  margin-bottom: .6rem;
}
.step-content-desc {
  color: #8b9bbf;
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.step-tip {
  display: flex; align-items: flex-start;
  background: rgba(255,184,0,.06);
  border: 1px solid rgba(255,184,0,.15);
  border-radius: 10px;
  padding: .7rem 1rem;
  margin-top: .9rem;
  font-size: .825rem;
  color: #8b9bbf;
}
.tip-important {
  background: rgba(255,107,43,.06);
  border-color: rgba(255,107,43,.2);
}

/* Status Chips */
.status-chip {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  border-radius: 50px;
  padding: .15rem .65rem;
}
.chip-assigned { background: rgba(59,130,246,.15); color: var(--blue); }
.chip-collected { background: rgba(255,107,43,.15); color: var(--orange); }
.chip-enroute  { background: rgba(255,184,0,.15); color: var(--amber); }
.chip-arrived  { background: rgba(168,85,247,.15); color: var(--purple); }

/* Note Cards */
.note-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  height: 100%;
  transition: all .25s;
}
.note-card:hover { border-color: rgba(255,107,43,.25); transform: translateY(-3px); }

/* Status Reference Cards */
.status-ref-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem .75rem;
  transition: all .25s;
}
.status-ref-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.12); }
.status-dot-lg {
  width: 24px; height: 24px;
  border-radius: 50%;
  margin: 0 auto;
}
.status-ref-name { font-size: .8rem; font-weight: 700; }
.status-ref-desc { font-size: .7rem; line-height: 1.3; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-title   { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .hero-visual  { width: 100%; }
  .card-float-1, .card-float-2 { display: none; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .how-connector { display: none; }
  .contact-grid { flex-direction: column; align-items: center; }
  .stat-divider { display: none; }
}
