/* ================= CORE STYLES & RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
  scroll-behavior: smooth;
}

:root {
  --color-primary: #07070c;
  --color-secondary: #0f0f1c;
  --color-accent: #FF5E1A;
  --color-accent-hover: #FF7A3D;
  --color-text-primary: #ffffff;
  --color-text-secondary: #9ea4b0;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-glass: rgba(255, 255, 255, 0.03);
}

body {
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ================= UTILITIES ================= */
.hidden {
  display: none !important;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 94, 26, 0.1);
  color: var(--color-accent);
  border: 1px solid rgba(255, 94, 26, 0.2);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.section-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--color-text-secondary);
  font-size: 16px;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(7, 7, 12, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  color: var(--color-text-primary);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.brand-op {
  font-size: 28px;
  font-weight: 800;
}

.brand-rides {
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.btn-nav {
  padding: 10px 20px;
  background: #fff;
  color: #000 !important;
  border-radius: 12px;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
}

.btn-nav:hover {
  background: var(--color-accent) !important;
  color: #fff !important;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  padding: 160px 24px 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Drifting glows in hero background */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  /* Blur is static — never animated, no repaint cost */
  filter: blur(120px);
  opacity: 0.14;
  z-index: 0;
  pointer-events: none;
  /* Promote to GPU layer upfront so the browser doesn't repaint on each frame */
  will-change: transform, opacity;
  transform: translateZ(0);
}

.hero::before {
  background: var(--color-accent);
  top: 10%;
  left: 5%;
}

.hero::after {
  background: #3b82f6;
  bottom: 10%;
  right: 5%;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  z-index: 1;
}

.hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-content p {
  color: var(--color-text-secondary);
  font-size: clamp(16px, 2.5vw, 19px);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent);
  color: white;
  border: 1px solid transparent;
  box-shadow: 0 8px 30px rgba(255, 94, 26, 0.3);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ================= PHONE MOCKUP ================= */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 320px;
  height: 640px;
  background: #0f0f15;
  border: 12px solid #22222b;
  border-radius: 40px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6), 
              0 0 0 2px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-screen {
  flex: 1;
  background: #07070c;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 16px;
}

.app-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}

.app-mock-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
}

.app-mock-logo span {
  color: var(--color-accent);
  font-style: italic;
  font-weight: 400;
}

.app-mock-chip {
  padding: 4px 8px;
  background: rgba(255, 94, 26, 0.1);
  border: 1px solid rgba(255, 94, 26, 0.2);
  border-radius: 99px;
  font-size: 11px;
  color: var(--color-accent);
  font-weight: 600;
}

.app-mock-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  gap: 16px;
}

.app-mock-greeting {
  font-size: 18px;
  font-weight: 600;
}

.app-mock-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 16px;
}

.app-mock-card h4 {
  font-size: 13px;
  margin-bottom: 12px;
}

.mock-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 11px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.mock-input i {
  color: var(--color-accent);
}

.mock-btn {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: var(--color-accent);
  border: none;
  color: white;
  font-weight: 600;
  font-size: 12px;
  margin-top: 6px;
}

.app-mock-map {
  flex: 1;
  background: #0f0f1a;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.mock-marker {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.mock-marker.rider {
  background: var(--color-accent);
  color: white;
  top: 30%;
  left: 65%;
  animation: floatMock 4s infinite ease-in-out;
}

.mock-marker.student {
  background: #3b82f6;
  color: white;
  top: 65%;
  left: 30%;
}

@keyframes floatMock {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ================= FEATURES ================= */
.features {
  padding: 100px 24px;
  background-color: var(--color-secondary);
  position: relative;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--color-glass);
  border: 1px solid var(--color-border);
  padding: 40px 32px;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 94, 26, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 94, 26, 0.08);
  border: 1px solid rgba(255, 94, 26, 0.15);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--color-text-secondary);
  font-size: 15px;
}

/* ================= HOW IT WORKS ================= */
.how-it-works {
  padding: 100px 24px;
}

.steps-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 4px 15px rgba(255, 94, 26, 0.3);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--color-text-secondary);
  font-size: 15px;
  max-width: 260px;
  margin: 0 auto;
}

/* ================= IN-APP SHOWCASE ================= */
.in-app-showcase {
  padding: 100px 24px;
  background-color: var(--color-secondary);
}

.showcase-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--color-glass);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.showcase-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  scrollbar-width: none;
}

.showcase-tabs::-webkit-scrollbar {
  display: none;
}

.showcase-tab {
  flex: 1;
  min-width: 160px;
  padding: 20px;
  background: transparent;
  border: none;
  color: var(--color-text-secondary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

.showcase-tab i {
  font-size: 16px;
}

.showcase-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.01);
}

.showcase-tab.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  background: rgba(255, 94, 26, 0.04);
}

.showcase-content {
  padding: 48px;
  min-height: 380px;
  position: relative;
}

.showcase-panel {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  animation: panelFadeIn 0.4s ease both;
}

.showcase-panel.active {
  display: grid;
}

.panel-details h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}

.panel-details p {
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.panel-bullets {
  list-style: none;
  display: grid;
  gap: 12px;
}

.panel-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-primary);
  font-size: 15px;
  font-weight: 500;
}

.panel-bullets i {
  color: var(--color-accent);
}

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

.preview-card {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1.6 / 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.preview-map-mock {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 94, 26, 0.15), transparent 60%), #0d0d17;
}

.map-route-line {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 60%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--color-accent), var(--color-accent) 6px, transparent 6px, transparent 12px);
  transform: rotate(-15deg);
}

.map-stop-dot {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0d0d17;
}

.map-stop-dot.start {
  top: 55%;
  left: 15%;
}

.map-stop-dot.end {
  top: 35%;
  left: 75%;
  background: #3b82f6;
}

.landmark-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  color: var(--color-text-secondary);
}

.landmark-tag.hostel-i {
  top: 68%;
  left: 22%;
}

.landmark-tag.lecture-hall {
  top: 15%;
  left: 60%;
}

.queue-status-badge {
  align-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 94, 26, 0.1);
  border: 1px solid rgba(255, 94, 26, 0.2);
  padding: 6px 12px;
  border-radius: 99px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 16px;
}

.queue-position {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: center;
  margin: 12px 0;
}


.wallet-label {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}

.wallet-balance {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.wallet-actions {
  display: flex;
  gap: 10px;
}

.mini-btn {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.fingerprint-scan {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 94, 26, 0.08);
  border: 1px solid rgba(255, 94, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-accent);
  align-self: center;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.scan-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  top: 0;
  left: 0;
  animation: scanAnim 2s infinite ease-in-out;
}

@keyframes scanAnim {
  0%, 100% { top: 0%; }
  50% { top: 100%; }
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= MODAL OVERLAY ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
  animation: modalFadeIn 0.3s ease;
}

.modal-card {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: 40px 24px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  animation: modalSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.modal-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
  color: #fff;
}

.modal-card > p {
  color: var(--color-text-secondary);
  text-align: center;
  font-size: 14px;
  margin-bottom: 30px;
}

.download-options {
  display: grid;
  gap: 16px;
}

.download-option-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  padding: 18px;
  border-radius: 18px;
  text-decoration: none;
  color: white;
  cursor: pointer;
  transition: all 0.25s ease;
}

.download-option-card:hover {
  border-color: var(--color-accent);
  background: rgba(255, 94, 26, 0.04);
  transform: translateY(-2px);
}

.option-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-text-secondary);
  transition: all 0.2s ease;
}

.download-option-card:hover .option-icon {
  background: rgba(255, 94, 26, 0.1);
  color: var(--color-accent);
}

.option-info {
  flex: 1;
}

.option-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.option-info p {
  color: var(--color-text-secondary);
  font-size: 12px;
  margin: 0;
}

.download-option-card .arrow {
  color: var(--color-text-tertiary);
  font-size: 14px;
  transition: all 0.2s ease;
}

.download-option-card:hover .arrow {
  color: var(--color-accent);
  transform: translateX(4px);
}

.pwa-instructions {
  margin-top: 20px;
  background: rgba(255, 94, 26, 0.03);
  border: 1px solid rgba(255, 94, 26, 0.15);
  padding: 18px;
  border-radius: 14px;
  animation: panelFadeIn 0.3s ease;
}

.pwa-instructions h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.pwa-instructions ol {
  padding-left: 20px;
  color: var(--color-text-secondary);
  font-size: 13px;
  display: grid;
  gap: 8px;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ================= FOOTER ================= */
.footer {
  background: #040408;
  border-top: 1px solid var(--color-border);
  padding: 80px 24px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--color-text-secondary);
  font-size: 14px;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: var(--color-text-secondary);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  color: var(--color-text-secondary);
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--color-accent);
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: var(--color-text-tertiary);
  font-size: 13px;
}

/* ================= RESPONSIVE ================= */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-mockup {
  width: min(320px, 90vw);
  height: calc(min(320px, 90vw) * 2);
  background: #0f0f15;
  border: 12px solid #22222b;
  border-radius: 40px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6), 
              0 0 0 2px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }

  .showcase-panel {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .panel-bullets {
    justify-content: center;
  }
  
  .panel-bullets li {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    background: rgba(7, 7, 12, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 24px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  }

  .showcase-content {
    padding: 24px;
  }
}

@media (max-width: 576px) {
  .nav-container {
    padding: 0 16px;
  }
  
  .brand-op {
    font-size: 22px;
  }
  
  .brand-rides {
    font-size: 22px;
  }
  
  .btn-nav {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 10px;
  }
}


/* ================= WHO IT'S FOR (DUAL USER TYPE) ================= */
.who-its-for {
  padding: 100px 24px;
  background-color: var(--color-primary);
}

.user-type-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}

.user-type-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 99px;
  border: 1px solid var(--color-border);
  background: rgba(255,255,255,0.03);
  color: var(--color-text-secondary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.user-type-btn:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.user-type-btn.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255, 94, 26, 0.35);
}

.user-type-btn[data-target="panel-rider"].active {
  background: #f5b100;
  border-color: #f5b100;
  box-shadow: 0 6px 24px rgba(245, 177, 0, 0.35);
}

.user-type-panels {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.user-type-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  animation: panelFadeIn 0.4s ease both;
}

.user-type-panel.active {
  display: grid;
}

/* UTP Phone Visual */
.utp-visual {
  display: flex;
  justify-content: center;
}

.utp-phone {
  width: 280px;
  background: #0f0f15;
  border: 10px solid #1e1e28;
  border-radius: 36px;
  box-shadow: 0 28px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
}

.utp-screen {
  background: #07070c;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 420px;
}

.rider-screen {
  background: #0a0a0f;
}

.utp-screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.utp-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
}

.utp-logo em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

.utp-chip {
  padding: 4px 10px;
  background: rgba(255,94,26,0.1);
  border: 1px solid rgba(255,94,26,0.2);
  border-radius: 99px;
  font-size: 11px;
  color: var(--color-accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.rider-chip {
  background: rgba(245,177,0,0.1);
  border-color: rgba(245,177,0,0.25);
  color: #f5b100;
}

.utp-live-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,196,140,0.06);
  border: 1px solid rgba(0,196,140,0.15);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 11px;
  color: #00c48c;
  font-weight: 500;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00c48c;
  display: inline-block;
  animation: livePulse 1.8s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.utp-ride-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.utp-card-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.utp-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 11px;
  color: var(--color-text-secondary);
}

.utp-input i {
  color: var(--color-accent);
  font-size: 10px;
}

.utp-fare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 2px;
  font-size: 12px;
  color: var(--color-text-secondary);
}

.utp-fare-row strong {
  color: #00c48c;
  font-size: 14px;
}

.utp-btn {
  width: 100%;
  padding: 9px;
  border-radius: 8px;
  background: var(--color-accent);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}

/* Rider screen specific */
.utp-earnings-card {
  background: linear-gradient(135deg, rgba(245,177,0,0.18), rgba(255,94,26,0.1));
  border: 1px solid rgba(245,177,0,0.2);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.utp-earn-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(245,177,0,0.7);
}

.utp-earn-value {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #f5b100;
  line-height: 1.1;
}

.utp-earn-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}

.utp-status-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,196,140,0.07);
  border: 1px solid rgba(0,196,140,0.18);
  border-radius: 12px;
  padding: 10px 12px;
}

.utp-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00c48c;
  flex-shrink: 0;
  animation: livePulse 1.8s infinite ease-in-out;
}

.utp-status-card strong {
  display: block;
  font-size: 12px;
  color: #00c48c;
}

.utp-status-card span {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}

.utp-recent-earn {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.utp-earn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  font-size: 10px;
  color: var(--color-text-secondary);
}

.utp-earn-row b {
  color: #00c48c;
  font-size: 12px;
  font-weight: 700;
}

/* UTP Details (right side) */
.utp-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.utp-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.student-badge {
  background: rgba(255,94,26,0.1);
  border: 1px solid rgba(255,94,26,0.2);
  color: var(--color-accent);
}

.rider-badge {
  background: rgba(245,177,0,0.1);
  border: 1px solid rgba(245,177,0,0.2);
  color: #f5b100;
}

.utp-details h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}

.utp-details > p {
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.utp-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.utp-perks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.utp-perk-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,94,26,0.08);
  border: 1px solid rgba(255,94,26,0.15);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.rider-perk {
  background: rgba(245,177,0,0.08);
  border-color: rgba(245,177,0,0.15);
  color: #f5b100;
}

.utp-perks li > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.utp-perks li strong {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.utp-perks li span {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.btn-rider-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  background: #f5b100;
  color: #000;
  border: 1px solid transparent;
  box-shadow: 0 8px 30px rgba(245,177,0,0.3);
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-rider-primary:hover {
  background: #ffc62b;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .user-type-panel.active {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }
  .utp-visual {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .user-type-toggle {
    flex-direction: column;
    align-items: center;
  }
  .user-type-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}


/* ================= FEATURES — REVISED CARDS ================= */

/* Wider grid to fit 6 cards nicely (2 cols on mid, 3 on wide) */
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

/* Pricing card */
.feature-card-pricing {
  border-color: rgba(0,196,140,0.2);
  background: rgba(0,196,140,0.03);
}

.feature-card-pricing:hover {
  border-color: rgba(0,196,140,0.4);
}

.pricing-breakdown {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-naira {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #00c48c;
}

.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #00c48c;
  line-height: 1;
}

.pricing-label {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-left: 4px;
}

.pricing-split {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 14px;
}

.pricing-split-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.pricing-split-item.rider-split { color: #f5b100; }
.pricing-split-item.rider-split i { color: #f5b100; }
.pricing-split-item.platform-split { color: var(--color-text-secondary); }

.pricing-split-divider {
  width: 1px;
  height: 24px;
  background: var(--color-border);
}

.pricing-note {
  font-size: 12px;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.pricing-note i { color: var(--color-accent); }

/* Live Activity card */
.feature-card-live {
  border-color: rgba(0,196,140,0.15);
}

.feature-card-live:hover {
  border-color: rgba(0,196,140,0.35);
}

.live-icon {
  background: rgba(0,196,140,0.08) !important;
  border-color: rgba(0,196,140,0.2) !important;
  color: #00c48c !important;
}

.live-activity-demo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 16px 20px;
}

.live-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00c48c;
  display: block;
  animation: livePulse 1.8s infinite ease-in-out;
  margin-bottom: 2px;
}

.waiting-dot {
  background: #f5b100;
}

.live-stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  transition: all 0.4s ease;
}

.live-stat-label {
  font-size: 11px;
  color: var(--color-text-secondary);
  text-align: center;
}

.live-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* Trust & Safety card */
.feature-card-trust {
  border-color: rgba(59,130,246,0.15);
  background: rgba(59,130,246,0.02);
}

.feature-card-trust:hover {
  border-color: rgba(59,130,246,0.3);
}

.feature-card-trust .feature-icon {
  background: rgba(59,130,246,0.08);
  border-color: rgba(59,130,246,0.15);
  color: #3b82f6;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.trust-list li i {
  color: #3b82f6;
  font-size: 13px;
  width: 16px;
  flex-shrink: 0;
}


/* ================= TESTIMONIALS / STATS ================= */
.testimonials {
  padding: 100px 24px;
  background-color: var(--color-secondary);
}

.stats-row {
  max-width: 1100px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,94,26,0.3);
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.stat-plus, .stat-unit {
  font-size: 28px;
  color: var(--color-accent);
}

.stat-label {
  font-size: 14px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,94,26,0.3);
}

.testimonial-featured {
  border-color: rgba(245,177,0,0.25);
  background: rgba(245,177,0,0.04);
}

.testimonial-featured:hover {
  border-color: rgba(245,177,0,0.45);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #f5b100;
  font-size: 13px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-primary);
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #ff7a3d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.rider-avatar {
  background: linear-gradient(135deg, #f5b100, #ffc62b);
  color: #000;
}

.testimonial-author strong {
  font-size: 14px;
  display: block;
  color: #fff;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--color-text-secondary);
  display: block;
}

.testimonial-rider-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 99px;
  background: rgba(245,177,0,0.12);
  border: 1px solid rgba(245,177,0,0.25);
  color: #f5b100;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.join-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 24px 0;
}

.join-cta p {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.join-cta strong {
  color: var(--color-accent);
  font-weight: 700;
}

@media (max-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= FAQ SECTION ================= */
.faq-section {
  padding: 100px 24px;
  background-color: var(--color-primary);
}

.faq-grid {
  max-width: 1100px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  align-items: start;
}

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

.mkt-faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.mkt-faq-item[open] {
  border-color: rgba(255,94,26,0.3);
  background: rgba(255,94,26,0.03);
}

.mkt-faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  transition: color 0.2s ease;
  user-select: none;
}

.mkt-faq-summary::-webkit-details-marker { display: none; }

.mkt-faq-item[open] .mkt-faq-summary {
  color: var(--color-accent);
}

.mkt-faq-icon {
  font-size: 13px;
  color: var(--color-text-secondary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.mkt-faq-item[open] .mkt-faq-icon {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.mkt-faq-body {
  padding: 0 22px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  animation: panelFadeIn 0.25s ease;
}

.mkt-faq-body strong {
  color: var(--color-text-primary);
}

/* FAQ bottom contact */
.faq-still-stuck {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.faq-still-stuck p {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.faq-contact-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: rgba(255,255,255,0.04);
  color: var(--color-text-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.faq-contact-btn:hover {
  border-color: var(--color-accent);
  background: rgba(255,94,26,0.06);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.faq-contact-btn.whatsapp-btn:hover {
  border-color: #25D366;
  background: rgba(37,211,102,0.06);
  color: #25D366;
}

.faq-contact-btn i { font-size: 15px; }

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= PULSING HERO ORBS ================= */
/* Only animate transform (translate) and opacity — both GPU composited, zero repaint */
@keyframes orbFloat {
  0%   { transform: translateZ(0) translate(0px,   0px);  }
  33%  { transform: translateZ(0) translate(30px, -25px); }
  66%  { transform: translateZ(0) translate(-20px, 18px); }
  100% { transform: translateZ(0) translate(0px,   0px);  }
}

@keyframes orbFade {
  0%, 100% { opacity: 0.14; }
  50%       { opacity: 0.22; }
}

.hero::before {
  animation:
    orbFloat 14s ease-in-out infinite,
    orbFade  7s  ease-in-out infinite;
}

.hero::after {
  animation:
    orbFloat 18s ease-in-out infinite reverse,
    orbFade  9s  ease-in-out infinite 3s;
}

/* ================= HERO TRUST BADGES ================= */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all 0.2s ease;
}

.trust-badge i {
  color: var(--color-accent);
  font-size: 12px;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-primary);
}

@media (max-width: 991px) {
  .hero-trust-badges {
    justify-content: center;
  }
}

/* ================= THEME TOGGLE BUTTON ================= */
.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-secondary);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ================= LIGHT THEME ================= */
body.light-theme {
  --color-primary: #f5f5f7;
  --color-secondary: #ffffff;
  --color-text-primary: #0a0a0f;
  --color-text-secondary: #5c5f6e;
  --color-border: rgba(0, 0, 0, 0.09);
  --color-glass: rgba(0, 0, 0, 0.02);
}

/* Navbar */
body.light-theme .navbar {
  background: rgba(245, 245, 247, 0.85);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .nav-links a { color: #5c5f6e; }
body.light-theme .nav-links a:hover { color: #0a0a0f; }

body.light-theme .btn-nav {
  background: #0a0a0f;
  color: #fff !important;
}
body.light-theme .btn-nav:hover {
  background: var(--color-accent) !important;
  color: #fff !important;
}

body.light-theme .mobile-menu-btn { color: #0a0a0f; }

body.light-theme .theme-toggle-btn {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.12);
  color: #5c5f6e;
}
body.light-theme .theme-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #0a0a0f;
}

/* Nav dropdown on mobile */
body.light-theme .nav-links {
  background: rgba(245, 245, 247, 0.98);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* Hero */
body.light-theme .hero::before { opacity: 0.08; }
body.light-theme .hero::after  { opacity: 0.07; }

body.light-theme .badge {
  background: rgba(255, 94, 26, 0.08);
  color: var(--color-accent);
  border-color: rgba(255, 94, 26, 0.18);
}

body.light-theme .btn-secondary {
  background: rgba(0, 0, 0, 0.04);
  color: #0a0a0f;
  border-color: rgba(0, 0, 0, 0.1);
}
body.light-theme .btn-secondary:hover {
  background: rgba(0, 0, 0, 0.08);
}

body.light-theme .trust-badge {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.09);
  color: #5c5f6e;
}
body.light-theme .trust-badge:hover {
  background: rgba(0, 0, 0, 0.07);
  color: #0a0a0f;
}

/* Phone mockup */
body.light-theme .phone-mockup {
  border-color: #d1d1d8;
  box-shadow: 0 32px 64px rgba(0,0,0,0.12), 0 0 0 2px rgba(0,0,0,0.04);
}
body.light-theme .phone-screen { background: #f0f0f5; }
body.light-theme .app-mock-body .app-mock-greeting { color: #0a0a0f; }
body.light-theme .app-mock-card {
  background: #fff;
  border-color: rgba(0,0,0,0.07);
}
body.light-theme .mock-input {
  background: #f5f5f7;
  border-color: rgba(0,0,0,0.06);
  color: #5c5f6e;
}
body.light-theme .app-mock-map {
  background: #e8e8f0;
  border-color: rgba(0,0,0,0.06);
}

/* Features */
body.light-theme .features { background-color: #ffffff; }

body.light-theme .feature-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
}
body.light-theme .feature-card:hover {
  background: #fafafa;
  border-color: rgba(255, 94, 26, 0.3);
}
body.light-theme .feature-card h3 { color: #0a0a0f; }
body.light-theme .feature-card p  { color: #5c5f6e; }

body.light-theme .feature-card-pricing { background: rgba(0,196,140,0.04); border-color: rgba(0,196,140,0.18); }
body.light-theme .feature-card-trust   { background: rgba(59,130,246,0.03); border-color: rgba(59,130,246,0.14); }
body.light-theme .feature-card-live    { border-color: rgba(0,196,140,0.14); }

body.light-theme .pricing-split {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.08);
}
body.light-theme .pricing-split-divider { background: rgba(0,0,0,0.1); }

body.light-theme .live-activity-demo {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.08);
}
body.light-theme .live-stat-divider { background: rgba(0,0,0,0.1); }
body.light-theme .live-stat-value { color: #0a0a0f; }

body.light-theme .trust-list li { color: #5c5f6e; }

/* How It Works */
body.light-theme .how-it-works { background-color: #f5f5f7; }
body.light-theme .step-card h3 { color: #0a0a0f; }
body.light-theme .step-card p  { color: #5c5f6e; }

/* In-App Showcase */
body.light-theme .in-app-showcase { background-color: #ffffff; }
body.light-theme .showcase-container {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
}
body.light-theme .showcase-tabs {
  background: rgba(0,0,0,0.02);
  border-bottom-color: rgba(0,0,0,0.08);
}
body.light-theme .showcase-tab { color: #5c5f6e; }
body.light-theme .showcase-tab:hover { color: #0a0a0f; background: rgba(0,0,0,0.02); }
body.light-theme .showcase-tab.active { color: var(--color-accent); background: rgba(255,94,26,0.04); border-bottom-color: var(--color-accent); }

body.light-theme .panel-details h3 { color: #0a0a0f; }
body.light-theme .panel-details p  { color: #5c5f6e; }
body.light-theme .panel-bullets li { color: #0a0a0f; }

body.light-theme .preview-card {
  background: #f5f5f7;
  border-color: rgba(0,0,0,0.08);
}
body.light-theme .preview-map-mock { background: #e8e8f0; }
body.light-theme .landmark-tag {
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.1);
  color: #5c5f6e;
}
body.light-theme .queue-status-badge { background: rgba(255,94,26,0.08); border-color: rgba(255,94,26,0.18); }
body.light-theme .wallet-label { color: #5c5f6e; }
body.light-theme .wallet-balance { color: #0a0a0f; }
body.light-theme .mini-btn { border-color: rgba(0,0,0,0.1); background: #fff; color: #0a0a0f; }
body.light-theme .biometrics-preview p { color: #5c5f6e; }

/* Who It's For */
body.light-theme .who-its-for { background-color: #f5f5f7; }
body.light-theme .user-type-btn {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
  color: #5c5f6e;
}
body.light-theme .user-type-btn:hover { color: #0a0a0f; border-color: rgba(0,0,0,0.2); }
body.light-theme .user-type-btn.active { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
body.light-theme .user-type-btn[data-target="panel-rider"].active { background: #f5b100; border-color: #f5b100; }

body.light-theme .utp-phone { background: #e8e8f0; border-color: #d1d1d8; }
body.light-theme .utp-screen { background: #f5f5f7; }
body.light-theme .rider-screen { background: #f0f0f5; }
body.light-theme .utp-screen-header { border-bottom-color: rgba(0,0,0,0.07); }
body.light-theme .utp-logo { color: #0a0a0f; }
body.light-theme .utp-ride-card { background: #fff; border-color: rgba(0,0,0,0.07); }
body.light-theme .utp-input { background: #f0f0f5; border-color: rgba(0,0,0,0.06); color: #5c5f6e; }
body.light-theme .utp-fare-row { color: #5c5f6e; }
body.light-theme .utp-recent-earn .utp-earn-row { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.06); color: #5c5f6e; }

body.light-theme .utp-details h3  { color: #0a0a0f; }
body.light-theme .utp-details > p { color: #5c5f6e; }
body.light-theme .utp-perks li strong { color: #0a0a0f; }
body.light-theme .utp-perks li span   { color: #5c5f6e; }
body.light-theme .utp-perk-icon { background: rgba(255,94,26,0.07); border-color: rgba(255,94,26,0.14); }
body.light-theme .rider-perk    { background: rgba(245,177,0,0.07); border-color: rgba(245,177,0,0.14); }

/* Testimonials */
body.light-theme .testimonials { background-color: #f5f5f7; }
body.light-theme .stat-card { background: #fff; border-color: rgba(0,0,0,0.08); }
body.light-theme .stat-card:hover { background: #fafafa; border-color: rgba(255,94,26,0.25); }
body.light-theme .stat-label { color: #5c5f6e; }

body.light-theme .testimonial-card { background: #fff; border-color: rgba(0,0,0,0.08); }
body.light-theme .testimonial-card:hover { border-color: rgba(255,94,26,0.25); }
body.light-theme .testimonial-featured { background: rgba(245,177,0,0.04); border-color: rgba(245,177,0,0.2); }
body.light-theme .testimonial-text { color: #1a1a2e; }
body.light-theme .testimonial-author strong { color: #0a0a0f; }
body.light-theme .testimonial-author span   { color: #5c5f6e; }
body.light-theme .join-cta p { color: #5c5f6e; }

/* FAQ */
body.light-theme .faq-section { background-color: #ffffff; }
body.light-theme .mkt-faq-item { background: #fff; border-color: rgba(0,0,0,0.08); }
body.light-theme .mkt-faq-item[open] { background: rgba(255,94,26,0.03); border-color: rgba(255,94,26,0.25); }
body.light-theme .mkt-faq-summary { color: #0a0a0f; }
body.light-theme .mkt-faq-item[open] .mkt-faq-summary { color: var(--color-accent); }
body.light-theme .mkt-faq-icon { color: #5c5f6e; }
body.light-theme .mkt-faq-body { color: #5c5f6e; }
body.light-theme .mkt-faq-body strong { color: #0a0a0f; }
body.light-theme .faq-still-stuck p { color: #5c5f6e; }
body.light-theme .faq-contact-btn { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.1); color: #0a0a0f; }
body.light-theme .faq-contact-btn:hover { border-color: var(--color-accent); background: rgba(255,94,26,0.05); color: var(--color-accent); }
body.light-theme .faq-contact-btn.whatsapp-btn:hover { border-color: #25D366; background: rgba(37,211,102,0.05); color: #25D366; }

/* Footer */
body.light-theme .footer { background: #ffffff; border-top-color: rgba(0,0,0,0.08); }
body.light-theme .footer-brand p { color: #5c5f6e; }
body.light-theme .footer-links h4, body.light-theme .footer-contact h4 { color: #0a0a0f; }
body.light-theme .footer-links a { color: #5c5f6e; }
body.light-theme .footer-links a:hover { color: #0a0a0f; }
body.light-theme .footer-contact p { color: #5c5f6e; }
body.light-theme .footer-contact a:hover { color: #0a0a0f; }
body.light-theme .footer-bottom { border-top-color: rgba(0,0,0,0.08); }
body.light-theme .footer-bottom p { color: #9ea4b0; }

/* Modal */
body.light-theme .modal-card { background: #ffffff; border-color: rgba(0,0,0,0.1); }
body.light-theme .modal-card h3 { color: #0a0a0f; }
body.light-theme .modal-card > p { color: #5c5f6e; }
body.light-theme .modal-close { background: rgba(0,0,0,0.06); color: #0a0a0f; }
body.light-theme .modal-close:hover { background: rgba(0,0,0,0.1); }
body.light-theme .download-option-card { background: #f5f5f7; border-color: rgba(0,0,0,0.08); color: #0a0a0f; }
body.light-theme .download-option-card:hover { border-color: var(--color-accent); background: rgba(255,94,26,0.04); }
body.light-theme .option-icon { background: rgba(0,0,0,0.05); color: #5c5f6e; }
body.light-theme .option-info p { color: #5c5f6e; }
body.light-theme .download-option-card .arrow { color: #9ea4b0; }

/* Section header text */
body.light-theme .section-header h2 { color: #0a0a0f; }
body.light-theme .section-header p  { color: #5c5f6e; }

/* ================= MOBILE FIXES ================= */

/* --- Prevent any horizontal overflow globally --- */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* --- Navbar: tighten up on small screens --- */
@media (max-width: 480px) {
  .navbar { height: 64px; }

  .nav-container {
    padding: 0 14px;
    gap: 8px;
  }

  .brand-op,
  .brand-rides {
    font-size: 20px;
  }

  /* Hide "Launch App" text, keep it as an icon-only pill */
  .btn-nav {
    padding: 7px 12px;
    font-size: 12px;
    border-radius: 8px;
    white-space: nowrap;
  }

  .theme-toggle-btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  /* Push nav dropdown down to match shorter navbar */
  .nav-links {
    top: 64px;
  }
}

/* --- Hero: adjust top padding to match shorter navbar --- */
@media (max-width: 480px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-content h1 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-trust-badges {
    justify-content: center;
  }

  .trust-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* --- Phone mockup: don't let it overflow viewport width --- */
@media (max-width: 480px) {
  .phone-mockup {
    width: min(260px, 80vw);
    height: calc(min(260px, 80vw) * 2);
    border-radius: 32px;
    border-width: 8px;
  }

  .utp-phone {
    width: min(240px, 75vw);
    border-width: 8px;
    border-radius: 30px;
  }
}

/* --- Sections: reduce top/bottom padding on phones --- */
@media (max-width: 480px) {
  .who-its-for,
  .features,
  .how-it-works,
  .in-app-showcase,
  .testimonials,
  .faq-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-header {
    margin-bottom: 36px;
  }
}

/* --- Features grid: single column on small phones --- */
@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .pricing-amount {
    font-size: 42px;
  }
}

/* --- Stats row: 2-col on phones, never overflow --- */
@media (max-width: 600px) {
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .stat-card {
    padding: 22px 14px;
  }

  .stat-value {
    font-size: 36px;
  }

  .stat-plus, .stat-unit {
    font-size: 22px;
  }
}

@media (max-width: 360px) {
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-value { font-size: 28px; }
}

/* --- Testimonials: single column on phones --- */
@media (max-width: 480px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 20px;
  }
}

/* --- FAQ grid: already 1-col on mobile, tighten padding --- */
@media (max-width: 480px) {
  .mkt-faq-summary {
    padding: 16px;
    font-size: 14px;
  }

  .mkt-faq-body {
    padding: 0 16px 16px;
    font-size: 13px;
  }
}

/* --- Showcase tabs: allow horizontal scroll on very small screens --- */
@media (max-width: 480px) {
  .showcase-tab {
    min-width: 120px;
    padding: 14px 12px;
    font-size: 13px;
  }

  .showcase-content {
    padding: 20px 16px;
  }
}

/* --- Steps container: single column on phones --- */
@media (max-width: 480px) {
  .steps-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* --- User type toggle: already handled, extra safety --- */
@media (max-width: 480px) {
  .utp-details h3 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .utp-perks li span {
    font-size: 12px;
  }

  .btn-rider-primary,
  .utp-details .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 15px;
  }
}

/* --- Footer: tighter on phones --- */
@media (max-width: 480px) {
  .footer {
    padding: 50px 20px 28px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}
