/* =====================================================
   PARCELO — Global Styles
   Colors: Purple #534AB7 | Light #AFA9EC | Dark #0D0B1A
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:       #534AB7;
  --purple-light: #AFA9EC;
  --purple-dark:  #3A2882;
  --purple-dim:   rgba(83, 74, 183, 0.18);
  --bg:           #0D0B1A;
  --bg2:          #13102A;
  --bg3:          #1C1836;
  --card:         #1A1730;
  --border:       rgba(175, 169, 236, 0.15);
  --text:         #F0EEF8;
  --text-muted:   #9993B8;
  --white:        #FFFFFF;
  --green:        #2DD4A4;
  --orange:       #F5A623;
  --red:          #E55B5B;
  --radius:       16px;
  --radius-sm:    10px;
  --shadow:       0 8px 32px rgba(0,0,0,0.45);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { color: var(--text-muted); }

.gradient-text {
  background: linear-gradient(90deg, var(--purple-light), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- LAYOUT ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 50px; font-size: 0.95rem;
  font-weight: 600; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(83,58,183,0.45); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--purple-light); color: var(--purple-light); }
.btn-white { background: #fff; color: var(--purple); }
.btn-white:hover { background: var(--purple-light); transform: translateY(-1px); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover { opacity: 0.85; }
.btn-success { background: var(--green); color: #0D0B1A; }
.btn-success:hover { opacity: 0.85; }

/* ---- LOGO ---- */
.logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  animation: logoPulse 3s ease-in-out infinite;
}
.logo-mark.sm {
  width: 34px; height: 34px;
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(127,119,221,0.2)); transform: scale(1); }
  40%       { filter: drop-shadow(0 0 18px rgba(127,119,221,1)) drop-shadow(0 0 36px rgba(83,74,183,0.7)); transform: scale(1.22); }
  55%       { filter: drop-shadow(0 0 12px rgba(127,119,221,0.8)); transform: scale(1.18); }
}
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-name { font-size: 1.15rem; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.logo-tagline { font-size: 0.6rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 11, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1140px; margin: 0 auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }
.nav-mobile { display: none; flex-direction: column; gap: 12px; padding: 16px 24px 20px; border-top: 1px solid var(--border); }
.nav-mobile a { color: var(--text-muted); text-decoration: none; font-size: 1rem; }
.nav-mobile.open { display: flex; }

/* ---- HERO ---- */
.hero {
  position: relative; padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(83,58,183,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { display: flex; align-items: center; gap: 60px; }
.hero-content { flex: 1; }
.hero-badge {
  display: inline-block; padding: 6px 16px; border-radius: 50px;
  background: var(--purple-dim); border: 1px solid var(--border);
  color: var(--purple-light); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.05em; margin-bottom: 24px;
}
.hero-content h1 { margin-bottom: 20px; }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 520px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 20px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.stat-label { font-size: 0.75rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Phone mockup */
.hero-visual { flex: 0 0 300px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.phone-frame {
  width: 260px; background: var(--bg2); border-radius: 40px;
  border: 2px solid var(--border); padding: 14px 10px;
  box-shadow: var(--shadow);
  position: relative;
}
.phone-notch {
  width: 80px; height: 12px; background: var(--bg);
  border-radius: 0 0 10px 10px; margin: 0 auto 12px;
}
.phone-screen { background: var(--bg3); border-radius: 24px; overflow: hidden; }
.mock-header {
  display: flex; align-items: center; gap: 10px; padding: 14px 14px 10px;
  font-weight: 600; font-size: 0.95rem; color: var(--text);
}
.mock-logo-sm {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  animation: logoPulse 3s ease-in-out infinite;
}
.mock-tabs {
  display: flex; gap: 8px; padding: 0 14px 12px; overflow-x: auto;
  scrollbar-width: none;
}
.mock-tab { font-size: 0.72rem; padding: 4px 10px; border-radius: 50px; border: 1px solid var(--border); color: var(--text-muted); white-space: nowrap; }
.mock-tab.active { background: var(--purple); color: #fff; border-color: var(--purple); }
.mock-loads { display: flex; flex-direction: column; gap: 1px; }
.mock-load { background: var(--card); padding: 12px 14px; }
.mock-load.transit { border-left: 3px solid var(--orange); }
.mock-load-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3px; }
.mock-load-id { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.mock-load-name { font-size: 0.72rem; color: var(--text-muted); display: block; margin-bottom: 5px; }
.mock-badge { font-size: 0.65rem; padding: 2px 8px; border-radius: 50px; font-weight: 600; }
.mock-badge.delivered { background: rgba(45,212,164,0.15); color: var(--green); }
.mock-badge.transit   { background: rgba(245,166,35,0.15); color: var(--orange); }
.mock-badge.accepted  { background: rgba(45,212,164,0.08); color: #7DE8CC; }
.mock-badge.assigned  { background: rgba(83,74,183,0.2); color: var(--purple-light); }
.mock-badge.pending   { background: rgba(175,169,236,0.1); color: var(--text-muted); }
.mock-route { font-size: 0.7rem; color: var(--text-muted); }
.arrow-up { color: var(--green); margin-right: 3px; }
.arrow-dn { color: var(--red); margin: 0 3px; }
.phone-add-banner {
  background: var(--purple-dim); border: 1px solid var(--border);
  border-radius: 12px; padding: 10px 16px; font-size: 0.8rem;
  color: var(--purple-light); text-align: center; width: 100%;
}

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block; color: var(--purple-light); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 { color: var(--text); }

/* ---- FEATURES ---- */
.features { background: var(--bg2); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: var(--purple); transform: translateY(-2px); }
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h3 { margin-bottom: 8px; color: var(--text); }
.feature-card p { font-size: 0.9rem; }

/* ---- HOW IT WORKS ---- */
.steps { display: flex; flex-direction: column; gap: 0; max-width: 700px; margin: 0 auto; }
.step { display: flex; gap: 28px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 52px; height: 52px;
  border-radius: 50%; background: var(--purple-dim);
  border: 2px solid var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--purple-light);
}
.step-content { padding-bottom: 8px; }
.step-content h3 { color: var(--text); margin-bottom: 6px; }
.step-content p { font-size: 0.92rem; }
.step-connector { width: 2px; height: 36px; background: var(--border); margin-left: 25px; }

/* ---- DRIVERS ---- */
.drivers { background: var(--bg2); }
.drivers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.drivers-content .section-eyebrow { display: block; margin-bottom: 12px; }
.drivers-content h2 { margin-bottom: 20px; }
.drivers-content p { margin-bottom: 28px; font-size: 0.95rem; }
.drivers-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.drivers-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--text); }
.check { color: var(--green); font-weight: 700; font-size: 1rem; }

.install-steps {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.install-step {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.install-step:hover { background: var(--bg3); }
.install-step.highlight { background: var(--purple-dim); border: 1px solid var(--border); }
.install-icon { font-size: 1.5rem; width: 40px; text-align: center; }
.install-step strong { color: var(--text); font-size: 0.9rem; }
.install-step p { font-size: 0.8rem; margin: 2px 0 0; }
.install-arrow { text-align: center; color: var(--border); padding: 2px 0 2px 32px; font-size: 1.1rem; }

/* ---- CTA ---- */
.cta { padding: 80px 0; }
.cta-box {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg3), var(--card));
  border: 1px solid var(--border); border-radius: 24px;
  padding: 72px 48px; text-align: center;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(83,58,183,0.3), transparent 70%);
  pointer-events: none;
}
.cta-box h2 { color: var(--text); margin-bottom: 12px; position: relative; }
.cta-box p { font-size: 1.05rem; margin-bottom: 32px; position: relative; }
.cta-box .btn { position: relative; }

/* ---- FOOTER ---- */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--text); }
.footer-copy { font-size: 0.82rem; color: var(--text-muted); }

/* =====================================================
   PORTAL PAGE STYLES
   ===================================================== */
.portal-layout { display: flex; height: calc(100vh - 60px); overflow: hidden; }

/* Sidebar */
.sidebar {
  width: 320px; flex-shrink: 0;
  background: var(--bg2); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; overflow: hidden;
}
.sidebar-top { padding: 16px; border-bottom: 1px solid var(--border); }
.sidebar-search {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 14px; color: var(--text);
  font-size: 0.9rem; outline: none; transition: border-color 0.2s;
}
.sidebar-search:focus { border-color: var(--purple); }
.status-tabs {
  display: flex; gap: 6px; flex-wrap: wrap; padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.status-tab {
  padding: 5px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600;
  border: 1px solid var(--border); background: transparent;
  color: var(--text-muted); cursor: pointer; transition: all 0.15s;
}
.status-tab:hover { border-color: var(--purple-light); color: var(--purple-light); }
.status-tab.active { background: var(--purple); color: #fff; border-color: var(--purple); }
.loads-list { overflow-y: auto; flex: 1; }
.load-item {
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background 0.15s;
  border-left: 3px solid transparent;
}
.load-item:hover { background: var(--bg3); }
.load-item.active { background: var(--bg3); border-left-color: var(--purple); }
.load-item-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.load-item-id { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.load-item-cargo { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; display: block; }
.load-item-meta { display: flex; align-items: center; justify-content: space-between; }
.load-item-company { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-muted); }
.load-item-driver { font-size: 0.78rem; color: var(--text-muted); }
.load-item-route { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.load-item-date { font-size: 0.75rem; color: var(--text-muted); }
.sidebar-add { padding: 14px 16px; border-top: 1px solid var(--border); }
.sidebar-add .btn { width: 100%; }

/* Status badges */
.badge {
  display: inline-flex; align-items: center; padding: 3px 10px;
  border-radius: 50px; font-size: 0.72rem; font-weight: 600; white-space: nowrap;
}
.badge-delivered  { background: rgba(45,212,164,0.12); color: var(--green); }
.badge-transit    { background: rgba(245,166,35,0.12); color: var(--orange); }
.badge-assigned   { background: rgba(83,58,183,0.2); color: var(--purple-light); }
.badge-accepted   { background: rgba(45,212,164,0.08); color: #7DE8CC; }
.badge-pending    { background: rgba(175,169,236,0.1); color: var(--text-muted); }
.badge-cancelled  { background: rgba(229,91,91,0.12); color: var(--red); }

/* Detail Panel */
.detail-panel {
  flex: 1; overflow-y: auto; padding: 32px;
  background: var(--bg);
}
.detail-empty {
  height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--text-muted);
}
.detail-empty .empty-icon { font-size: 3rem; }
.detail-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.detail-title h2 { font-size: 2rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.detail-title p { font-size: 0.9rem; color: var(--text-muted); }
.detail-section { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 20px; overflow: hidden; }
.detail-section-title {
  padding: 12px 20px; background: var(--bg3);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--text-muted); text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.detail-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--border); }
.detail-row:last-child { border-bottom: none; }
.detail-row-label { font-size: 0.88rem; color: var(--text-muted); }
.detail-row-value { font-size: 0.9rem; color: var(--text); text-align: right; max-width: 60%; }
.detail-row-value a { color: var(--purple-light); text-decoration: none; }
.detail-row-value a:hover { text-decoration: underline; }
.status-select {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); padding: 7px 12px; font-size: 0.88rem; cursor: pointer;
  outline: none;
}
.status-select:focus { border-color: var(--purple); }
.driver-select-wrap { padding: 14px 20px; border-bottom: 1px solid var(--border); }
.driver-select-wrap select {
  width: 100%; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); padding: 10px 12px; font-size: 0.9rem; cursor: pointer; outline: none;
  margin-bottom: 6px;
}
.driver-select-wrap .hint { font-size: 0.78rem; color: var(--text-muted); }
.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Navbar portal variant */
.portal-nav { padding: 10px 20px; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center;
  z-index: 200; padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(20px); transition: transform 0.2s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.modal-header h3 { font-size: 1.2rem; color: var(--text); }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 1.4rem; cursor: pointer; line-height: 1; }
.modal-close:hover { color: var(--text); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); padding: 10px 14px;
  font-size: 0.9rem; outline: none; transition: border-color 0.2s; font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--purple); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 28px; }

/* Toast */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 20px;
  font-size: 0.88rem; color: var(--text);
  transform: translateY(80px); opacity: 0;
  transition: all 0.3s ease; pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 3px solid var(--green); }
.toast.error   { border-left: 3px solid var(--red); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .drivers-grid  { grid-template-columns: 1fr; gap: 48px; }
  .hero .container { flex-direction: column; }
  .hero-visual { display: none; }
  .portal-layout { flex-direction: column; height: auto; }
  .sidebar { width: 100%; height: auto; max-height: 45vh; }
  .detail-panel { padding: 20px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-cta { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; }
  .cta-box { padding: 48px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}

/* =====================================================
   LIVE TRACKING MAP
   ===================================================== */
#trackingMap {
  border-radius: 0;
  z-index: 0;
}
/* Override Leaflet defaults to keep tiles sharp */
.leaflet-container { font-family: inherit; background: var(--bg3); }

/* Stats bar below map */
.track-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}
.track-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 10px; gap: 2px;
  border-right: 1px solid var(--border);
}
.track-stat:last-child { border-right: none; }
.track-stat span:first-child {
  font-size: 1.1rem; font-weight: 700; color: var(--text);
  letter-spacing: -0.02em;
}
.track-stat-label {
  font-size: 0.72rem; color: var(--text-muted); text-transform: lowercase;
}

/* Pulsing green live dot */
.track-dot-live {
  display: inline-block; width: 8px; height: 8px;
  background: var(--green); border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 0 0 rgba(45,212,164,0.6);
  animation: trackPulse 1.8s ease-out infinite;
}
@keyframes trackPulse {
  0%   { box-shadow: 0 0 0 0 rgba(45,212,164,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(45,212,164,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,212,164,0); }
}

/* Truck marker on map */
.truck-icon {
  font-size: 1.6rem; line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

@media (max-width: 600px) {
  .track-stats { grid-template-columns: repeat(2, 1fr); }
  .track-stat:nth-child(2) { border-right: none; }
}

/* ============================================================
   SMALL BUSINESS SECTION
   ============================================================ */
.smb-section { padding: 80px 0; background: var(--bg2); }

.smb-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin: 48px 0 36px;
}
.smb-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 24px; transition: border-color 0.2s, transform 0.2s;
}
.smb-card:hover { border-color: var(--purple); transform: translateY(-3px); }
.smb-icon { font-size: 1.8rem; margin-bottom: 14px; }
.smb-card h3 { font-size: 1rem; color: var(--text); margin-bottom: 10px; }
.smb-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.smb-callout {
  background: linear-gradient(135deg, var(--purple-dim), rgba(83,74,183,0.08));
  border: 1px solid rgba(127,119,221,0.3); border-radius: 18px; padding: 2px;
}
.smb-callout-inner {
  display: flex; align-items: center; gap: 20px; padding: 24px 28px;
  flex-wrap: wrap;
}
.smb-callout-emoji { font-size: 2.4rem; flex-shrink: 0; }
.smb-callout-inner > div { flex: 1; min-width: 200px; }
.smb-callout-inner strong { font-size: 1rem; color: var(--text); display: block; margin-bottom: 6px; }
.smb-callout-inner p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

@media (max-width: 900px) { .smb-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .smb-grid { grid-template-columns: 1fr; }
  .smb-callout-inner { flex-direction: column; text-align: center; }
}
.demo { padding: 80px 0; background: var(--bg2); }

.demo-steps {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin: 28px 0 36px;
}
.demo-step-pill {
  padding: 5px 13px; border-radius: 20px; font-size: 0.76rem; font-weight: 600;
  background: var(--bg); color: var(--text-muted); border: 1px solid var(--border);
  cursor: pointer; transition: all 0.2s; user-select: none;
}
.demo-step-pill:hover { border-color: var(--purple); color: var(--text); }
.demo-step-pill.active { background: var(--purple); color: #fff; border-color: var(--purple); }
.demo-step-pill.done { color: var(--purple); border-color: var(--purple); opacity: 0.55; }

/* Stage */
.demo-stage {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 16px; max-width: 980px; margin: 0 auto;
}
.demo-device { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.demo-device-browser { flex: 1; min-width: 0; }
.demo-device-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
}

/* Browser window mockup */
.demo-browser-frame {
  width: 100%; background: #08061a; border-radius: 10px;
  border: 1.5px solid #25214a;
  box-shadow: 0 24px 64px rgba(0,0,0,0.65), inset 0 0 0 1px rgba(255,255,255,0.03);
  overflow: hidden;
}
.demo-browser-chrome {
  display: flex; align-items: center; gap: 10px;
  background: #110e22; padding: 7px 12px; border-bottom: 1.5px solid #1e1b38;
  flex-shrink: 0;
}
.demo-browser-dots { display: flex; gap: 5px; }
.bdot { width: 9px; height: 9px; border-radius: 50%; display: block; }
.bdot.red    { background: #ff5f57; }
.bdot.yellow { background: #febc2e; }
.bdot.green  { background: #28c840; }
.demo-browser-bar {
  flex: 1; background: #1a1730; border-radius: 5px;
  font-size: 0.65rem; color: #6a6a8a; padding: 3px 9px;
  border: 1px solid #25214a; font-family: 'SF Mono', monospace;
}
.demo-browser-body {
  position: relative; height: 340px; background: #0d0b1a; overflow: hidden;
}

/* Portal layout inside browser */
.d-portal-layout {
  display: flex; height: 100%;
}
.d-sidebar {
  width: 90px; background: #0a0819; border-right: 1px solid #1e1b38;
  padding: 10px 8px; display: flex; flex-direction: column; gap: 4px; flex-shrink: 0;
}
.d-sidebar-logo {
  font-size: 0.58rem; font-weight: 800; color: #7F77DD; margin-bottom: 8px;
  padding-bottom: 8px; border-bottom: 1px solid #1e1b38; white-space: nowrap;
}
.d-sidebar-item {
  font-size: 0.58rem; color: #6a6a8a; padding: 5px 6px; border-radius: 5px;
  cursor: default; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.d-sidebar-item.active { background: #1d1b2e; color: #dddaf5; }

.d-main { flex: 1; padding: 10px; overflow: hidden; min-width: 0; }
.d-main-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.d-main-title { font-size: 0.72rem; font-weight: 700; color: #dddaf5; }

/* Split view: list + detail */
.d-main.d-split { padding: 0; display: flex; }
.d-list-col { width: 46%; padding: 10px 8px; border-right: 1px solid #1e1b38; overflow: hidden; flex-shrink: 0; }
.d-detail-col { flex: 1; padding: 10px 10px; overflow: hidden; min-width: 0; }
.d-detail-head { font-size: 0.76rem; font-weight: 700; color: #dddaf5; margin-bottom: 6px; }

.d-load-selected { border-color: #534AB7 !important; background: #1a1730 !important; }

.d-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5px 10px;
}

/* Phone shell */
.demo-phone-frame {
  width: 190px; min-height: 400px;
  background: #08061a; border-radius: 30px;
  border: 2px solid #25214a;
  box-shadow: 0 24px 64px rgba(0,0,0,0.65), inset 0 0 0 1px rgba(255,255,255,0.03);
  position: relative; overflow: hidden;
}
.demo-phone-notch {
  width: 64px; height: 14px; background: #08061a;
  border-radius: 0 0 10px 10px; border: 2px solid #25214a; border-top: none;
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 10;
}
.demo-phone-body { position: absolute; inset: 0; border-radius: 28px; overflow: hidden; }

/* Generic screen */
.d-scr, .v-scr {
  position: absolute; inset: 0; background: #0d0b1a;
  padding: 22px 10px 10px; overflow: hidden;
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.d-scr.active, .v-scr.active { opacity: 1; pointer-events: auto; }

/* Top bar */
.d-topbar, .v-topbar {
  font-size: 0.7rem; font-weight: 700; color: #dddaf5;
  text-align: center; margin-bottom: 9px; padding-top: 4px;
  letter-spacing: 0.02em;
}

/* ---- Dispatcher screens ---- */
.d-filter-row { display: flex; gap: 4px; margin-bottom: 8px; }
.d-filter {
  font-size: 0.6rem; padding: 2px 7px; border-radius: 10px;
  background: #1d1b2e; color: #7a7a9a; border: 1px solid #2a2550;
}
.d-filter.active { background: #534AB7; color: #fff; border-color: #534AB7; }

.d-load-item {
  background: #13111f; border-radius: 9px; padding: 7px 9px;
  margin-bottom: 5px; border: 1px solid #25214a;
}
.d-load-new { animation: dLoadFlash 0.7s ease-out; }
@keyframes dLoadFlash { 0%{background:#534AB730} 100%{background:#13111f} }

.d-li-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px; }
.d-li-id { font-size: 0.68rem; font-weight: 700; color: #dddaf5; }
.d-li-sub { font-size: 0.58rem; color: #6a6a8a; }

.d-badge { font-size: 0.55rem; font-weight: 700; padding: 2px 5px; border-radius: 8px; }
.d-badge.transit  { background: rgba(251,146,60,.15); color: #fb923c; }
.d-badge.accepted { background: rgba(99,102,241,.15); color: #818cf8; }
.d-badge.assigned { background: rgba(234,179,8,.15);  color: #facc15; }
.d-badge.delivered{ background: rgba(34,197,94,.15);  color: #4ade80; }
.d-badge.pending  { background: rgba(148,163,184,.12); color: #94a3b8; }

.d-new-btn, .d-create-btn {
  background: #534AB7; color: #fff; border-radius: 7px;
  padding: 7px; text-align: center; font-size: 0.65rem; font-weight: 700; margin-top: 6px;
}
.d-send-btn {
  background: #22c55e; color: #fff; border-radius: 7px;
  padding: 6px; text-align: center; font-size: 0.62rem; font-weight: 700; margin-top: 6px;
}

.d-form-row { margin-bottom: 5px; }
.d-form-row label { font-size: 0.56rem; color: #6a6a8a; display: block; margin-bottom: 2px; letter-spacing: 0.04em; }
.d-input {
  background: #1a1830; border: 1px solid #2a2550; border-radius: 5px;
  padding: 4px 7px; font-size: 0.62rem; color: #dddaf5; width: 100%; box-sizing: border-box;
}
.d-input.typed { border-color: #534AB7; color: #dddaf5; }

.d-status-block { text-align: center; padding: 12px 0 8px; }
.d-status-badge {
  display: inline-block; font-size: 0.66rem; font-weight: 800;
  padding: 4px 10px; border-radius: 8px; margin-bottom: 4px; letter-spacing: 0.05em;
}
.d-status-badge.assigned { background: rgba(234,179,8,.15); color: #facc15; }
.d-status-badge.accepted { background: rgba(99,102,241,.15); color: #818cf8; }
.d-status-badge.transit  { background: rgba(251,146,60,.15); color: #fb923c; }
.d-status-note { font-size: 0.6rem; color: #6a6a8a; }

.d-detail-row {
  display: flex; justify-content: space-between; padding: 5px 2px;
  border-bottom: 1px solid #1e1c32; font-size: 0.6rem; color: #dddaf5;
}
.d-detail-row span:first-child { color: #6a6a8a; }

.d-gps-row { display: flex; align-items: center; gap: 5px; justify-content: center; font-size: 0.6rem; color: #22c55e; margin: 4px 0; }
.d-gps-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: gpsBlink 1s ease infinite; flex-shrink:0; }
@keyframes gpsBlink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.45;transform:scale(1.5)} }

.d-coord { font-family: 'SF Mono', monospace; font-size: 0.62rem; color: #7F77DD; }

.d-mini-map { margin-top: 7px; border-radius: 7px; overflow: hidden; border: 1px solid #2a2550; }
.d-mini-map svg { display: block; width: 100%; }

/* ---- Driver/vehicle screens ---- */
.v-scr-0, .v-scr-1 { background: #07051a; }
.v-idle-time {
  font-size: 1.8rem; font-weight: 200; color: #dddaf5;
  text-align: center; padding-top: 28px; letter-spacing: 0.02em;
}
.v-idle-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin: 24px 8px 0; }
.v-app-icon {
  width: 36px; height: 36px; border-radius: 9px; background: #1a1830;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}

.v-notif-banner {
  margin: 10px 5px 0; background: rgba(255,255,255,0.09); border-radius: 13px;
  padding: 9px 10px; display: flex; gap: 8px; align-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  animation: slideDown 0.4s ease;
}
@keyframes slideDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }
.v-notif-icon { font-size: 1.3rem; flex-shrink: 0; }
.v-notif-title { font-size: 0.63rem; font-weight: 700; color: #dddaf5; }
.v-notif-body  { font-size: 0.56rem; color: #9a9acc; margin-top: 1px; }
.v-notif-hint  { text-align: center; font-size: 0.55rem; color: #5a5a7a; margin-top: 8px; }

.v-welcome-card {
  display: flex; align-items: center; gap: 8px;
  background: #13111f; border-radius: 9px; padding: 7px 9px;
  margin-bottom: 6px; border: 1px solid #25214a;
}
.v-welcome-icon {
  font-size: 1.1rem; width: 30px; height: 30px; background: #1d1b2e;
  border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.v-welcome-name { font-size: 0.63rem; font-weight: 700; color: #dddaf5; }
.v-welcome-sub  { font-size: 0.56rem; color: #6a6a8a; }

.v-load-card { background: #13111f; border-radius: 9px; padding: 7px 9px; margin-bottom: 5px; border: 1px solid #25214a; }
.v-load-card.compact { padding: 5px 9px; }
.v-load-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.v-load-id { font-size: 0.64rem; font-weight: 700; color: #dddaf5; }
.v-badge { font-size: 0.55rem; font-weight: 700; padding: 2px 6px; border-radius: 8px; }
.v-badge.assigned { background: rgba(234,179,8,.15); color: #facc15; }
.v-badge.accepted { background: rgba(99,102,241,.15); color: #818cf8; }
.v-badge.transit  { background: rgba(251,146,60,.15); color: #fb923c; }
.v-load-row { display: flex; justify-content: space-between; padding: 2px 0; border-bottom: 1px solid #1e1c32; }
.v-load-row span:first-child { font-size: 0.52rem; letter-spacing: 0.05em; color: #5a5a7a; }
.v-load-row span:last-child  { font-size: 0.58rem; color: #dddaf5; }

.v-no-signin {
  background: rgba(34,197,94,.08); color: #4ade80; font-size: 0.58rem;
  text-align: center; padding: 4px 8px; border-radius: 7px;
  border: 1px solid rgba(34,197,94,.2); margin-bottom: 6px;
}
.v-accept-btn {
  background: #534AB7; color: #fff; border-radius: 8px;
  padding: 8px; text-align: center; font-size: 0.65rem; font-weight: 700;
}
.v-start-btn {
  background: #22c55e; color: #fff; border-radius: 8px;
  padding: 8px; text-align: center; font-size: 0.65rem; font-weight: 700;
}
.v-stop-btn {
  background: #ef4444; color: #fff; border-radius: 7px;
  padding: 6px; text-align: center; font-size: 0.6rem; font-weight: 700; margin-top: 4px;
}

.v-tracking-pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,.07); border: 1px solid rgba(34,197,94,.22);
  border-radius: 9px; padding: 6px 9px; margin-bottom: 5px;
}
.v-track-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: gpsBlink 1s ease infinite; flex-shrink:0; }
.v-track-label { font-size: 0.63rem; font-weight: 700; color: #22c55e; }
.v-track-time  { font-size: 0.55rem; color: #6a6a8a; }

.v-loc-card { background: #13111f; border-radius: 9px; padding: 7px 9px; margin-bottom: 5px; border: 1px solid #25214a; }
.v-loc-title { font-size: 0.6rem; font-weight: 700; color: #dddaf5; margin-bottom: 4px; }
.v-loc-row { display: flex; justify-content: space-between; font-size: 0.56rem; color: #9a9acc; margin-bottom: 2px; }
.v-coord { font-family: 'SF Mono', monospace; font-size: 0.62rem; color: #dddaf5; }
.v-loc-ago { font-size: 0.54rem; color: #5a5a7a; margin-top: 3px; }

.v-map-card { background: #13111f; border-radius: 9px; overflow: hidden; border: 1px solid #25214a; }
.v-map-header { font-size: 0.6rem; font-weight: 700; color: #dddaf5; padding: 5px 9px; }
.v-map-area svg { display: block; width: 100%; }

/* ---- Center column ---- */
.demo-center-col {
  display: flex; flex-direction: column; align-items: center;
  gap: 18px; width: 180px; padding-top: 56px; flex-shrink: 0;
}
.demo-packet {
  font-size: 1.6rem; opacity: 0; display: block;
}
.demo-packet.fly {
  animation: flyPacket 0.9s ease-in-out forwards;
}
@keyframes flyPacket {
  0%   { transform: translateX(-50px) scale(0.7); opacity: 0; }
  25%  { opacity: 1; }
  75%  { opacity: 1; }
  100% { transform: translateX(50px) scale(0.7); opacity: 0; }
}
.demo-caption-box { text-align: center; }
.demo-caption-step { font-size: 0.7rem; font-weight: 700; color: var(--purple); margin-bottom: 6px; letter-spacing: 0.04em; }
.demo-caption-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ---- Controls ---- */
.demo-controls {
  display: flex; align-items: center; gap: 14px;
  justify-content: center; margin-top: 32px;
}
.demo-ctrl-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  color: var(--text); font-size: 1rem; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.demo-ctrl-btn:hover { background: var(--purple); border-color: var(--purple); color: #fff; }
.demo-replay-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); padding: 6px 14px; border-radius: 20px;
  font-size: 0.78rem; cursor: pointer; transition: all 0.2s;
}
.demo-replay-btn:hover { border-color: var(--purple); color: var(--purple); }
.demo-progress-wrap {
  width: 180px; height: 3px; background: var(--border); border-radius: 2px; overflow: hidden;
}
.demo-progress-bar { height: 100%; background: var(--purple); width: 0%; border-radius: 2px; }

/* Shared pulse animation for CTAs */
.demo-pulse { animation: demoPulse 1.6s ease-in-out infinite; }
@keyframes demoPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(83,74,183,0.5); }
  50%      { box-shadow: 0 0 0 7px rgba(83,74,183,0); }
}
.d-send-btn.demo-pulse {
  animation-name: demoGreenPulse;
}
@keyframes demoGreenPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%      { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}

/* Demo responsive */
@media (max-width: 800px) {
  .demo-stage { flex-direction: column; align-items: center; }
  .demo-device-browser { width: 100%; max-width: 520px; }
  .demo-center-col { flex-direction: row; padding-top: 0; width: 100%; justify-content: center; }
  .demo-phone-frame { width: 170px; }
}

/* ============================================================
   APP PREVIEW SECTION (phone screenshots)
   ============================================================ */
.app-preview { padding: 80px 0; background: var(--bg); }

.two-step-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin: 36px auto 48px; max-width: 620px;
}
.two-step-arrow {
  font-size: 1.8rem; color: var(--purple); padding: 0 16px; flex-shrink: 0;
}
.two-step-card {
  flex: 1; background: var(--bg2); border-radius: 16px; padding: 24px 20px;
  border: 1px solid var(--border); position: relative;
}
.two-step-card.two-step-highlight {
  border-color: var(--purple); background: var(--purple-dim);
}
.two-step-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em;
  background: var(--purple); color: #fff; padding: 3px 10px;
  border-radius: 20px; margin-bottom: 10px;
}
.two-step-card h3 { font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.two-step-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

.app-screens {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
}
.app-phone-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }

/* App preview phone */
.app-phone {
  width: 200px; background: #0a0818; border-radius: 30px; position: relative;
  border: 2px solid #25214a; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.app-phone-notch {
  width: 66px; height: 14px; background: #0a0818;
  border-radius: 0 0 10px 10px; border: 2px solid #25214a; border-top: none;
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 5;
}
.app-phone-label { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.04em; }
.dm-screen { padding: 26px 10px 12px; background: #0d0b1a; }

.dm-titlebar { font-size: 1rem; font-weight: 700; color: #dddaf5; padding: 4px 4px 10px; }

.dm-welcome-card {
  display: flex; align-items: center; gap: 10px;
  background: #13111f; border-radius: 12px; padding: 10px; margin-bottom: 8px; border: 1px solid #25214a;
}
.dm-avatar { font-size: 1.5rem; width: 40px; height: 40px; background: #1d1b2e; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink:0; }
.dm-welcome-title { font-size: 0.78rem; font-weight: 700; color: #dddaf5; }
.dm-welcome-sub { font-size: 0.68rem; color: #6a6a8a; }

.dm-tracking-active {
  display: flex; align-items: center; gap: 10px;
  background: rgba(34,197,94,.07); border: 1px solid rgba(34,197,94,.22);
  border-radius: 11px; padding: 8px 10px; margin-bottom: 8px;
}
.dm-track-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; animation: gpsBlink 1s ease infinite; flex-shrink:0; }
.dm-track-label { font-size: 0.72rem; font-weight: 700; color: #22c55e; }
.dm-track-time { font-size: 0.62rem; color: #6a6a8a; }

.dm-load-card { background: #13111f; border-radius: 11px; padding: 10px; margin-bottom: 8px; border: 1px solid #25214a; }
.dm-load-header { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; flex-wrap: wrap; }
.dm-load-icon { font-size: 0.9rem; }
.dm-load-num { font-size: 0.78rem; font-weight: 700; color: #dddaf5; flex: 1; }
.dm-transit-badge { font-size: 0.6rem; font-weight: 700; padding: 2px 7px; border-radius: 8px; background: rgba(251,146,60,.15); color: #fb923c; }
.dm-field { display: flex; flex-direction: column; margin-bottom: 5px; border-bottom: 1px solid #1e1c32; padding-bottom: 4px; }
.dm-flab { font-size: 0.58rem; letter-spacing: 0.05em; color: #5a5a7a; margin-bottom: 1px; }
.dm-field span:last-child { font-size: 0.68rem; color: #dddaf5; }

.dm-location-card { background: #13111f; border-radius: 11px; padding: 10px; margin-bottom: 8px; border: 1px solid #25214a; }
.dm-loc-header { font-size: 0.72rem; font-weight: 700; color: #dddaf5; margin-bottom: 6px; }
.dm-loc-row { display: flex; justify-content: space-between; font-size: 0.68rem; color: #9a9acc; margin-bottom: 3px; }
.dm-loc-row strong { color: #dddaf5; font-family: 'SF Mono', monospace; }
.dm-loc-ago { font-size: 0.6rem; color: #5a5a7a; margin-top: 4px; }

.dm-map-card { background: #13111f; border-radius: 11px; overflow: hidden; border: 1px solid #25214a; margin-bottom: 8px; }
.dm-map-header { font-size: 0.72rem; font-weight: 700; color: #dddaf5; padding: 8px 10px; }
.dm-map-area { width: 100%; }
.dm-map-area svg { display: block; width: 100%; }

.dm-btn-stop  { background: #ef4444; color: #fff; border-radius: 10px; padding: 9px; text-align: center; font-size: 0.75rem; font-weight: 700; margin-bottom: 6px; }
.dm-btn-share { background: #2563eb; color: #fff; border-radius: 10px; padding: 9px; text-align: center; font-size: 0.75rem; font-weight: 700; }

@media (max-width: 600px) {
  .two-step-row { flex-direction: column; gap: 10px; }
  .two-step-arrow { transform: rotate(90deg); }
  .app-screens { gap: 20px; }
  .app-phone { width: 170px; }
}
