:root {
  --primary: #2563EB;
  --primary-light: #1E88E5;
  --accent: #EAB308;
  --accent-light: #FBC02D;
  --bg: #F8FAFC;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --radius: 20px;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lift: 0 20px 45px rgba(37, 99, 235, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF3FB 40%, #F8FAFC 100%);
  overflow-x: hidden;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  background: rgba(248, 250, 252, 0.7);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-dark);
  flex-shrink: 0;
}

.nav-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.nav-links {
  display: flex;
  gap: 32px;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #1e293b;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(234, 179, 8, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.contact-badge svg {
  width: 16px;
  height: 16px;
}

.contact-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(234, 179, 8, 0.45);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
}

/* ---------- HERO ---------- */
.hero {
  padding: 150px 24px 90px;
  position: relative;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.pill-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #92650a;
  background: rgba(234, 179, 8, 0.16);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0F172A 20%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.subheadline {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
}

.highlights-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 10px 16px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}

.highlight-item:hover {
  transform: translateY(-3px);
}

.hi-icon { font-size: 1.1rem; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35), 0 0 0 rgba(37, 99, 235, 0);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  border: 2px solid rgba(37, 99, 235, 0.35);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-3px);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: #0F172A;
  border-radius: 42px;
  padding: 14px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
  position: relative;
  z-index: 2;
}

.phone-notch {
  width: 90px;
  height: 18px;
  background: #0F172A;
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #F8FAFC, #E7EEFB);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 22px 16px 10px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.app-logo {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.app-map {
  flex: 1;
  position: relative;
  margin: 8px 14px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.route-svg {
  width: 100%;
  height: 100%;
}

.route-path {
  stroke-dashoffset: 0;
  animation: dash 3s linear infinite;
}

@keyframes dash {
  to { stroke-dashoffset: -36; }
}

.pulse-dot {
  animation: pulse 1.6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes pulse {
  0%, 100% { r: 6; opacity: 1; }
  50% { r: 10; opacity: 0.5; }
}

.map-card {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: var(--shadow-soft);
}

.map-card-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
}

.map-card-row.muted {
  color: var(--text-muted);
  margin-top: 2px;
}

.live-dot {
  color: #16a34a;
  font-weight: 700;
  font-size: 0.7rem;
}

.app-bottom {
  padding: 10px 14px 18px;
}

.app-chip {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 12px;
  text-align: center;
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 1;
}

.blob-blue {
  width: 260px;
  height: 260px;
  background: var(--primary);
  top: -20px;
  right: 20px;
}

.blob-gold {
  width: 220px;
  height: 220px;
  background: var(--accent);
  bottom: -30px;
  left: 10px;
}

/* ---------- FEATURES ---------- */
.features {
  padding: 100px 24px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(37, 99, 235, 0.3);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(234, 179, 8, 0.12));
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
  padding: 20px 24px 100px;
}

.cta-strip-inner {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 28px;
  padding: 56px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  box-shadow: var(--shadow-lift);
}

.cta-strip-inner h2 {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  max-width: 480px;
}

.cta-strip-inner .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

.cta-strip-inner .btn-primary:hover {
  background: var(--accent-light);
  color: #1e293b;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0F172A;
  color: #E2E8F0;
  padding-top: 0;
}

.footer-gold-line {
  height: 4px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent), var(--accent-light));
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 24px 40px;
}

.footer .nav-brand {
  color: #fff;
}

.footer-tagline {
  color: #94A3B8;
  margin-top: 14px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-link:hover {
  transform: translateY(-3px);
  background: var(--primary);
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding: 20px 24px 30px;
  font-size: 0.85rem;
  color: #64748B;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .highlights-row, .cta-row {
    justify-content: center;
  }
  .hero-visual { order: -1; margin-bottom: 20px; }
  .subheadline { margin-left: auto; margin-right: auto; }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    transform: translateY(-140%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-toggle { display: flex; }
  .contact-badge span { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .phone-mockup { width: 230px; height: 460px; }
}

@media (max-width: 420px) {
  .hero { padding-top: 130px; }
}
