/* ============================================================
   MarLogic – Design System
   Dark glassmorphism • Logistics amber accent
   marlogic.devandrepair.com
   ============================================================ */

:root {
  --bg:           #07080f;
  --bg-2:         #0c0e1a;
  --bg-card:      rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);

  /* Brand accent: amber/orange for logistics energy */
  --accent:       #f59e0b;
  --accent-2:     #ef4444;
  --accent-3:     #10b981;
  --accent-glow:  rgba(245,158,11,0.3);

  --text:         #e2e8f0;
  --text-muted:   #94a3b8;
  --text-dim:     #475569;
  --white:        #ffffff;

  --font: 'Inter', sans-serif;
  --section-pad: 6rem 0;
  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   28px;
  --r-pill: 999px;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.5);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

/* ── Utilities ── */
.gradient-text {
  background: linear-gradient(135deg, var(--accent), #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ── Scroll-reveal ── */
.reveal { opacity:0; transform:translateY(32px); transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }
.reveal-delay-4 { transition-delay:.4s; }

/* ── Keyframes ── */
@keyframes gradientShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:none} }
@keyframes pulseAmber { 0%,100%{box-shadow:0 0 12px rgba(245,158,11,.4)} 50%{box-shadow:0 0 32px rgba(245,158,11,.8)} }
@keyframes blink { 50%{opacity:0} }
@keyframes orb { 0%{transform:translate(0,0) scale(1)} 33%{transform:translate(50px,-30px) scale(1.08)} 66%{transform:translate(-30px,50px) scale(.95)} 100%{transform:translate(0,0) scale(1)} }
@keyframes spin { to{transform:rotate(360deg)} }
@keyframes trackPulse { 0%,100%{opacity:.4;transform:scale(1)} 50%{opacity:1;transform:scale(1.15)} }

/* ── Navbar ── */
.navbar {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  padding: 1.1rem 0;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
.navbar.scrolled {
  background: rgba(7,8,15,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--glass-border);
}
.navbar .container { display:flex; justify-content:space-between; align-items:center; }

.logo a {
  font-size:1.4rem; font-weight:800;
  display:flex; align-items:center; gap:.6rem; color:var(--white);
}
.logo-icon {
  width:34px; height:34px;
  background: linear-gradient(135deg, var(--accent), #fb923c);
  border-radius:9px;
  display:flex; align-items:center; justify-content:center;
  font-size:.95rem; color:var(--bg); flex-shrink:0;
}
.logo span { color: var(--accent); }

.nav-links { display:flex; gap:2.2rem; align-items:center; }
.nav-links a {
  font-size:.93rem; font-weight:500; color:var(--text-muted);
  transition: color .25s; position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0;
  height:2px; background:var(--accent); border-radius:2px;
  transform:scaleX(0); transition:transform .3s;
}
.nav-links a:hover, .nav-links a.active { color:var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--accent), #fb923c);
  color: var(--bg) !important;
  padding: .5rem 1.3rem;
  border-radius: var(--r-pill);
  font-weight: 700;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { opacity:.88; transform:translateY(-1px); }

.mobile-toggle {
  display:none; background:none;
  border:1px solid var(--glass-border); border-radius:var(--r-sm);
  width:38px; height:38px; cursor:pointer; color:var(--text);
  font-size:1.05rem; align-items:center; justify-content:center;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 8rem 0 5rem;
}

.hero-bg {
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 45%, rgba(245,158,11,.16) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 55%, rgba(239,68,68,.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 5%, rgba(16,185,129,.08) 0%, transparent 50%);
  animation: gradientShift 14s ease infinite;
  background-size: 200% 200%;
}

.hero-orb {
  position:absolute; border-radius:50%;
  filter:blur(80px); animation:orb 18s ease-in-out infinite;
  pointer-events:none;
}
.hero-orb-1 { width:460px; height:460px; background:rgba(245,158,11,.1); top:-100px; left:-130px; }
.hero-orb-2 { width:380px; height:380px; background:rgba(239,68,68,.08); bottom:-80px; right:-90px; animation-duration:24s; animation-direction:reverse; }

.hero-grid-overlay {
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero .container {
  position:relative; z-index:2;
  display:grid; grid-template-columns:1.1fr .9fr;
  gap:4rem; align-items:center;
}

.hero-badge {
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(245,158,11,.1); border:1px solid rgba(245,158,11,.3);
  border-radius:var(--r-pill); padding:.32rem 1rem;
  font-size:.8rem; font-weight:700; color:var(--accent);
  margin-bottom:1.6rem; animation:fadeInDown .7s ease both;
}
.hero-badge .dot {
  width:6px; height:6px; background:var(--accent);
  border-radius:50%; animation:pulseAmber 2s ease infinite;
}

.hero h1 {
  font-size:clamp(2.4rem,5vw,3.8rem); font-weight:800;
  line-height:1.1; margin-bottom:1.4rem;
  animation:fadeInDown .8s .1s ease both;
}

.hero-desc {
  font-size:1.1rem; color:var(--text-muted);
  max-width:480px; margin-bottom:2.2rem;
  animation:fadeInDown .8s .2s ease both;
}

.hero-buttons {
  display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:2.5rem;
  animation:fadeInDown .8s .3s ease both;
}

.store-badges {
  display:flex; gap:.75rem; flex-wrap:wrap;
  animation:fadeInDown .8s .4s ease both;
}
.store-badge {
  display:inline-flex; align-items:center; gap:.6rem;
  padding:.6rem 1.2rem;
  background:rgba(255,255,255,.05); border:1px solid var(--glass-border);
  border-radius:var(--r-md); font-size:.85rem; font-weight:600;
  transition:border-color .25s, background .25s;
}
.store-badge:hover { border-color:var(--accent); background:rgba(245,158,11,.07); }
.store-badge i { font-size:1.2rem; }
.store-badge .badge-sub { font-size:.7rem; font-weight:400; color:var(--text-muted); display:block; line-height:1.2; }
.store-badge .badge-label { font-size:.9rem; font-weight:700; display:block; }

/* Hero Visual – Phone Mockup */
.hero-visual {
  display:flex; justify-content:center; align-items:center;
  animation:fadeInDown .8s .15s ease both;
}

.phone-mockup {
  position:relative; width:300px; animation:float 6s ease-in-out infinite;
}

.phone-frame {
  background: var(--bg-card);
  border:1px solid var(--glass-border);
  border-radius:40px;
  padding:12px;
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(245,158,11,.1), inset 0 1px 0 rgba(255,255,255,.06);
  position:relative;
}

.phone-notch {
  width:90px; height:22px;
  background:var(--bg-2); border-radius:0 0 14px 14px;
  margin:0 auto 8px; position:relative; z-index:2;
}

.phone-screen {
  background: linear-gradient(160deg, #0f1625 0%, #0a0f1a 100%);
  border-radius:28px; overflow:hidden; padding:16px;
  min-height:480px;
}

/* Screen content */
.screen-header {
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:14px;
}
.screen-avatar {
  width:32px; height:32px; border-radius:50%;
  background:linear-gradient(135deg,var(--accent),#fb923c);
  display:flex; align-items:center; justify-content:center;
  font-size:.7rem; font-weight:700; color:var(--bg);
}
.screen-notif {
  width:8px; height:8px; background:var(--accent-2);
  border-radius:50%; animation:pulseAmber 1.5s ease infinite;
}
.screen-title { font-size:.75rem; font-weight:700; }

.screen-status {
  background:rgba(245,158,11,.1); border:1px solid rgba(245,158,11,.25);
  border-radius:12px; padding:10px 12px; margin-bottom:12px;
}
.status-label { font-size:.6rem; color:var(--text-muted); font-weight:600; text-transform:uppercase; letter-spacing:.1em; }
.status-value { font-size:.8rem; font-weight:700; color:var(--accent); }

.screen-map {
  background: linear-gradient(135deg, #0d1f0f, #0a1520);
  border-radius:14px; height:110px; margin-bottom:12px;
  position:relative; overflow:hidden;
  border:1px solid rgba(16,185,129,.15);
  display:flex; align-items:center; justify-content:center;
}
.map-grid {
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(16,185,129,.06) 1px, transparent 1px), linear-gradient(90deg,rgba(16,185,129,.06) 1px, transparent 1px);
  background-size:20px 20px;
}
.map-route {
  position:absolute; top:50%; left:15%; right:15%;
  height:2px; background:linear-gradient(90deg,var(--accent-3),var(--accent));
  transform:translateY(-50%);
}
.map-dot {
  position:absolute; top:50%; width:10px; height:10px;
  border-radius:50%; transform:translate(-50%,-50%);
  animation:trackPulse 2s ease-in-out infinite;
}
.map-dot.start { left:15%; background:var(--accent-3); }
.map-dot.truck { left:55%; background:var(--accent); animation-delay:.5s; }
.map-dot.end   { left:85%; background:var(--accent-2); animation-delay:1s; }

.screen-card {
  background:rgba(255,255,255,.04); border:1px solid var(--glass-border);
  border-radius:10px; padding:8px 10px; margin-bottom:8px;
  display:flex; align-items:center; gap:8px;
}
.screen-card-icon {
  width:28px; height:28px; border-radius:8px;
  display:flex; align-items:center; justify-content:center; font-size:.7rem; flex-shrink:0;
}
.screen-card-icon.shipper { background:rgba(245,158,11,.15); color:var(--accent); }
.screen-card-icon.driver  { background:rgba(16,185,129,.15);  color:var(--accent-3); }
.screen-card-icon.recv    { background:rgba(99,102,241,.15);   color:#818cf8; }
.screen-card-text { font-size:.65rem; font-weight:600; }
.screen-card-sub  { font-size:.58rem; color:var(--text-muted); }

/* Floating badges */
.float-badge {
  position:absolute;
  background:var(--bg-card); backdrop-filter:blur(16px);
  border:1px solid var(--glass-border); border-radius:12px;
  padding:.5rem .85rem; font-size:.72rem; font-weight:700;
  display:flex; align-items:center; gap:.4rem;
  box-shadow:var(--shadow-card);
}
.float-badge-1 {
  top: -16px; right:-20px;
  animation:float 5s .5s ease-in-out infinite;
  border-color:rgba(245,158,11,.3); color:var(--accent);
}
.float-badge-2 {
  bottom: 20px; left:-24px;
  animation:float 7s 1s ease-in-out infinite;
  border-color:rgba(16,185,129,.3); color:var(--accent-3);
}

/* Hero scroll cue */
.hero-scroll-cue {
  position:absolute; bottom:2rem; left:50%; transform:translateX(-50%);
  z-index:2; display:flex; flex-direction:column; align-items:center; gap:.4rem;
  font-size:.72rem; color:var(--text-dim); letter-spacing:.1em; text-transform:uppercase;
}
.scroll-line { width:1px; height:36px; background:linear-gradient(to bottom,var(--accent),transparent); animation:float 2s ease-in-out infinite; }

/* ── Buttons ── */
.btn {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.8rem 1.8rem; border-radius:var(--r-pill);
  font-weight:700; font-size:.93rem; cursor:pointer; border:none;
  transition:all .3s cubic-bezier(.16,1,.3,1);
}
.btn.primary {
  background:linear-gradient(135deg,var(--accent),#fb923c);
  color:var(--bg);
  box-shadow:0 4px 24px rgba(245,158,11,.35);
}
.btn.primary:hover { transform:translateY(-3px); box-shadow:0 8px 40px rgba(245,158,11,.55); }
.btn.secondary {
  background:rgba(255,255,255,.05); border:1px solid var(--glass-border); color:var(--text);
}
.btn.secondary:hover { background:rgba(255,255,255,.09); border-color:var(--accent); color:var(--white); transform:translateY(-2px); }

/* ── Stats ── */
.stats {
  padding:3.5rem 0;
  background:var(--bg-2);
  border-top:1px solid var(--glass-border);
  border-bottom:1px solid var(--glass-border);
}
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; }
.stat-item { text-align:center; padding:1.5rem 1rem; }
.stat-item i { font-size:1.4rem; color:var(--accent); display:block; margin-bottom:.6rem; }
.stat-number {
  font-size:2.6rem; font-weight:800; line-height:1;
  background:linear-gradient(135deg,var(--accent),#fb923c);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  margin-bottom:.4rem;
}
.stat-label { font-size:.9rem; color:var(--text-muted); font-weight:500; }

/* ── Roles ── */
.roles { padding:var(--section-pad); }
.roles-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }

.role-card {
  background:var(--bg-card); border:1px solid var(--glass-border);
  border-radius:var(--r-lg); padding:2.5rem 2rem;
  backdrop-filter:blur(12px);
  transition:transform .4s cubic-bezier(.16,1,.3,1), border-color .3s, box-shadow .4s;
  position:relative; overflow:hidden;
}
.role-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  opacity:0; transition:opacity .4s;
}
.role-card:hover { transform:translateY(-8px); box-shadow:0 24px 48px rgba(0,0,0,.5); }
.role-card:hover::before { opacity:1; }

.role-card.shipper::before { background:linear-gradient(90deg,transparent,var(--accent),transparent); }
.role-card.driver::before  { background:linear-gradient(90deg,transparent,var(--accent-3),transparent); }
.role-card.receiver::before{ background:linear-gradient(90deg,transparent,#818cf8,transparent); }
.role-card.shipper:hover { border-color:rgba(245,158,11,.3); }
.role-card.driver:hover  { border-color:rgba(16,185,129,.3); }
.role-card.receiver:hover{ border-color:rgba(129,140,248,.3); }

.role-icon {
  width:60px; height:60px; border-radius:var(--r-md);
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; margin-bottom:1.5rem;
}
.role-card.shipper  .role-icon { background:rgba(245,158,11,.15); border:1px solid rgba(245,158,11,.25); color:var(--accent); }
.role-card.driver   .role-icon { background:rgba(16,185,129,.15);  border:1px solid rgba(16,185,129,.25);  color:var(--accent-3); }
.role-card.receiver .role-icon { background:rgba(129,140,248,.15); border:1px solid rgba(129,140,248,.25); color:#818cf8; }

.role-card h3 { font-size:1.25rem; font-weight:700; margin-bottom:.8rem; }
.role-card p  { font-size:.9rem; color:var(--text-muted); margin-bottom:1.4rem; line-height:1.7; }

.role-features { display:flex; flex-direction:column; gap:.55rem; }
.role-features li { display:flex; align-items:center; gap:.65rem; font-size:.875rem; color:var(--text-muted); }
.role-features li i { font-size:.8rem; flex-shrink:0; }
.role-card.shipper  .role-features li i { color:var(--accent); }
.role-card.driver   .role-features li i { color:var(--accent-3); }
.role-card.receiver .role-features li i { color:#818cf8; }

/* ── How it works ── */
.how-it-works { padding:var(--section-pad); background:var(--bg-2); position:relative; overflow:hidden; }

.steps-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:0; align-items:start; }

.step-item { text-align:center; padding:0 .5rem; }
.step-circle {
  width:52px; height:52px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; margin:0 auto 1.2rem;
  position:relative;
}
.step-circle.amber  { background:rgba(245,158,11,.15); border:2px solid rgba(245,158,11,.4); color:var(--accent); }
.step-circle.green  { background:rgba(16,185,129,.15);  border:2px solid rgba(16,185,129,.4);  color:var(--accent-3); }
.step-circle.blue   { background:rgba(99,102,241,.15);  border:2px solid rgba(99,102,241,.4);  color:#818cf8; }
.step-circle.red    { background:rgba(239,68,68,.15);   border:2px solid rgba(239,68,68,.4);   color:var(--accent-2); }
.step-circle.purple { background:rgba(168,85,247,.15);  border:2px solid rgba(168,85,247,.4);  color:#a855f7; }

.step-connector {
  width:100%; height:2px; margin-top:26px;
  background:linear-gradient(90deg, rgba(245,158,11,.3), rgba(16,185,129,.3));
  flex:1;
}

.step-item h4 { font-size:.9rem; font-weight:700; margin-bottom:.4rem; }
.step-item p  { font-size:.78rem; color:var(--text-muted); line-height:1.6; }

/* ── GPS Feature ── */
.gps-feature {
  padding:var(--section-pad);
}
.gps-inner {
  background:var(--bg-card); border:1px solid var(--glass-border);
  border-radius:var(--r-lg); backdrop-filter:blur(12px);
  padding:4rem; display:grid; grid-template-columns:1fr 1fr;
  gap:3.5rem; align-items:center; position:relative; overflow:hidden;
}
.gps-inner::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,transparent,var(--accent-3),transparent);
}

.gps-map-visual {
  background:linear-gradient(135deg,#0d1f0f,#0a1520);
  border-radius:var(--r-lg); height:320px; position:relative; overflow:hidden;
  border:1px solid rgba(16,185,129,.2);
}
.gps-grid {
  position:absolute; inset:0;
  background-image:linear-gradient(rgba(16,185,129,.05) 1px, transparent 1px),linear-gradient(90deg,rgba(16,185,129,.05) 1px, transparent 1px);
  background-size:30px 30px;
}
.gps-ping {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:16px; height:16px; background:var(--accent); border-radius:50%;
  box-shadow:0 0 0 0 rgba(245,158,11,.5);
  animation:pulseAmber 2s ease-in-out infinite;
}
.gps-ring {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:60px; height:60px; border-radius:50%;
  border:2px solid rgba(245,158,11,.2); animation:spin 8s linear infinite;
}
.gps-ring-2 {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:120px; height:120px; border-radius:50%;
  border:1px solid rgba(16,185,129,.15); animation:spin 14s linear infinite reverse;
}

.gps-point {
  position:absolute; width:10px; height:10px;
  border-radius:50%; transform:translate(-50%,-50%);
}
.gps-point.a { top:30%; left:25%; background:var(--accent-3); animation:trackPulse 2.2s ease-in-out infinite; }
.gps-point.b { top:65%; left:70%; background:var(--accent); animation:trackPulse 2.2s .7s ease-in-out infinite; }
.gps-point.c { top:20%; left:75%; background:var(--accent-2); animation:trackPulse 2.2s 1.4s ease-in-out infinite; }

.gps-label {
  position:absolute; background:rgba(0,0,0,.6); backdrop-filter:blur(8px);
  border:1px solid var(--glass-border); border-radius:8px; padding:.3rem .6rem;
  font-size:.65rem; font-weight:700; white-space:nowrap;
}
.gps-label.a { top:22%; left:28%; color:var(--accent-3); }
.gps-label.b { top:70%; left:53%; color:var(--accent); }
.gps-label.c { top:12%; left:63%; color:var(--accent-2); }

.gps-info h3 { font-size:1.6rem; font-weight:800; margin-bottom:1rem; }
.gps-info p  { color:var(--text-muted); margin-bottom:1.5rem; line-height:1.7; }
.gps-features { display:flex; flex-direction:column; gap:.75rem; }
.gps-feat-item {
  display:flex; align-items:center; gap:.85rem;
  padding:.85rem 1rem;
  background:rgba(255,255,255,.03); border:1px solid var(--glass-border);
  border-radius:var(--r-sm);
}
.gps-feat-item i { color:var(--accent-3); font-size:1rem; flex-shrink:0; }
.gps-feat-item span { font-size:.88rem; color:var(--text-muted); }

/* ── Screenshots ── */
.screenshots { padding:var(--section-pad); background:var(--bg-2); }
.screenshots-row {
  display:flex; gap:1.5rem; justify-content:center;
  overflow-x:auto; padding-bottom:1rem;
}
.screenshot-frame {
  flex-shrink:0; width:200px;
  background:var(--bg-card); border:1px solid var(--glass-border);
  border-radius:28px; padding:10px;
  box-shadow:0 20px 50px rgba(0,0,0,.5);
  transition:transform .3s;
}
.screenshot-frame:hover { transform:translateY(-8px) scale(1.03); }
.screenshot-inner {
  background:linear-gradient(160deg,#0f1625 0%,#0a0f1a 100%);
  border-radius:20px; height:320px;
  display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:.5rem;
}
.screenshot-inner i { font-size:2.5rem; }
.screenshot-inner span { font-size:.75rem; font-weight:700; color:var(--text-muted); }

.sc-shipper  .screenshot-inner i { color:var(--accent); }
.sc-driver   .screenshot-inner i { color:var(--accent-3); }
.sc-receiver .screenshot-inner i { color:#818cf8; }
.sc-gps      .screenshot-inner i { color:var(--accent-2); }

.sc-label {
  text-align:center; margin-top:.75rem;
  font-size:.8rem; font-weight:700; color:var(--text-muted);
}

/* ── CTA ── */
.cta-section { padding:var(--section-pad); }
.cta-inner {
  background: linear-gradient(135deg,rgba(245,158,11,.12),rgba(239,68,68,.08));
  border:1px solid rgba(245,158,11,.2); border-radius:var(--r-lg);
  padding:5rem 3rem; text-align:center;
  position:relative; overflow:hidden;
}
.cta-inner::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,transparent,var(--accent),transparent);
}
.cta-icon-wrap {
  width:80px; height:80px; margin:0 auto 2rem;
  background:linear-gradient(135deg,var(--accent),#fb923c);
  border-radius:var(--r-md); display:flex; align-items:center;
  justify-content:center; font-size:2rem; color:var(--bg);
  box-shadow:0 8px 32px rgba(245,158,11,.45);
  animation:float 4s ease-in-out infinite;
}
.cta-inner h2 { font-size:clamp(1.8rem,4vw,2.8rem); font-weight:800; margin-bottom:1rem; }
.cta-inner p  { color:var(--text-muted); max-width:480px; margin:0 auto 2.5rem; font-size:1.05rem; line-height:1.7; }
.cta-buttons  { display:flex; justify-content:center; gap:1rem; flex-wrap:wrap; }

/* ── Footer ── */
footer {
  background:var(--bg-2); border-top:1px solid var(--glass-border);
  padding:2.5rem 0;
}
.footer-inner {
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:1.5rem;
}
.footer-brand-link {
  display:flex; align-items:center; gap:.6rem;
  font-size:1.2rem; font-weight:800; color:var(--white);
}
.footer-links { display:flex; gap:1.5rem; }
.footer-links a { font-size:.88rem; color:var(--text-dim); transition:color .25s; }
.footer-links a:hover { color:var(--accent); }
.footer-copy { font-size:.8rem; color:var(--text-dim); width:100%; text-align:center; margin-top:.5rem; }

/* ── Responsive ── */
@media(max-width:900px){
  .roles-grid { grid-template-columns:1fr; }
  .steps-grid { grid-template-columns:repeat(3,1fr); gap:1.5rem; }
  .step-connector { display:none; }
  .gps-inner { grid-template-columns:1fr; }
  .gps-map-visual { height:220px; }
}
@media(max-width:768px){
  :root { --section-pad:4.5rem 0; }
  .mobile-toggle { display:flex; }
  .nav-links {
    display:none; position:fixed; inset:0;
    background:rgba(7,8,15,.97); backdrop-filter:blur(20px);
    flex-direction:column; justify-content:center; align-items:center;
    gap:2.5rem; z-index:999;
  }
  .nav-links.active { display:flex; }
  .nav-links a { font-size:1.4rem; }
  .mobile-toggle { z-index:1001; }
  .hero .container { grid-template-columns:1fr; text-align:center; }
  .hero-visual { display:none; }
  .hero-desc { margin:0 auto 2rem; }
  .hero-buttons, .store-badges { justify-content:center; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .steps-grid { grid-template-columns:1fr 1fr; }
  .footer-inner { flex-direction:column; text-align:center; }
  .footer-links { justify-content:center; }
}
@media(max-width:480px){
  .stats-grid { grid-template-columns:1fr 1fr; }
  .cta-inner { padding:3rem 1.5rem; }
}
