/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --primary:   #FFB703;
  --accent:    #FB8500;
  --teal:      #028090;
  --bg:        #f0f4f8;
  --surface:   #ffffff;
  --text:      #1a1e25;
  --muted:     #5e6a7a;
  --wa:        #25D366;
  --hero-bg:   #0d1117;
  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --shadow:    0 8px 24px rgba(13,17,23,0.10);
  --shadow-lg: 0 20px 50px rgba(13,17,23,0.18);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.15;
}

p { color: var(--muted); }

.container {
  width: min(1140px, 94%);
  margin-inline: auto;
}

.section { padding: 5rem 0; }

/* ─── NAVBAR ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13,17,23,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(13,17,23,0.92);
  box-shadow: 0 4px 24px rgba(0,0,0,0.32);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #02a8bd, var(--teal));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.brand-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

@media (min-width: 540px) { .nav-phone { display: flex; align-items: center; gap: 0.4rem; } }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-4px); filter: brightness(1.06); }
.btn:active { transform: translateY(-1px); }

.btn:focus-visible {
  outline: 3px solid rgba(255,183,3,.5);
  outline-offset: 3px;
}

.btn-nav {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #1a1e25;
  padding: 0.65rem 1.3rem;
  font-size: 0.88rem;
  box-shadow: 0 6px 18px rgba(251,133,0,0.38);
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #1a1e25;
  padding: 1.05rem 1.7rem;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(251,133,0,0.45);
}

.btn-hero-wa {
  background: var(--wa);
  color: #fff;
  padding: 1.05rem 1.7rem;
  font-size: 1rem;
  box-shadow: 0 10px 28px rgba(37,211,102,0.38);
}

.btn-band-primary {
  background: #fff;
  color: var(--accent);
  padding: 0.95rem 1.65rem;
  box-shadow: 0 8px 22px rgba(0,0,0,0.14);
}

.btn-band-wa {
  background: var(--wa);
  color: #fff;
  padding: 0.95rem 1.65rem;
  box-shadow: 0 8px 22px rgba(37,211,102,0.32);
}

.btn-cinfo-primary {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #1a1e25;
  padding: 1rem 1.7rem;
  box-shadow: 0 8px 24px rgba(251,133,0,0.36);
  width: 100%;
  justify-content: center;
}

/* pulse */
.pulse { animation: pulseGlow 2s infinite; }

@keyframes pulseGlow {
  0%   { box-shadow: 0 10px 30px rgba(251,133,0,0.45), 0 0 0 0 rgba(251,133,0,0.5); }
  60%  { box-shadow: 0 10px 30px rgba(251,133,0,0.45), 0 0 0 14px rgba(251,133,0,0); }
  100% { box-shadow: 0 10px 30px rgba(251,133,0,0.45), 0 0 0 0 rgba(251,133,0,0); }
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--hero-bg);
  overflow: hidden;
  padding: 6rem 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

.hero-orb-a {
  width: 540px; height: 540px;
  top: -220px; right: -140px;
  background: radial-gradient(circle, rgba(251,133,0,0.32) 0%, transparent 70%);
}

.hero-orb-b {
  width: 380px; height: 380px;
  bottom: -120px; left: -100px;
  background: radial-gradient(circle, rgba(2,128,144,0.26) 0%, transparent 70%);
}

.hero-orb-c {
  width: 240px; height: 240px;
  top: 30%; left: 42%;
  background: radial-gradient(circle, rgba(255,183,3,0.12) 0%, transparent 68%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-inner {
  display: grid;
  gap: 3.5rem;
  align-items: center;
  padding-bottom: 5.5rem;
}

/* hero content */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,183,3,0.12);
  border: 1px solid rgba(255,183,3,0.3);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: blink 1.8s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.25; }
}

.hero-title {
  display: block;
  margin-bottom: 1.25rem;
}

.title-line {
  display: block;
  font-size: clamp(2.4rem, 8vw, 5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

.title-gradient {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 60%, #ff5e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255,255,255,0.62);
  max-width: 48ch;
  margin-bottom: 2rem;
}

.hero-sub strong { color: rgba(255,255,255,0.9); }

.hero-cta {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-cta .btn { width: 100%; min-height: 58px; font-size: 1.02rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}

.hero-trust i { color: var(--primary); }

/* taxi mockup panel */
.taxi-mockup {
  background: linear-gradient(150deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
}

.tm-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.tm-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #02c4de, var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4ae080;
}

.tm-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--wa);
  animation: blink 1.8s infinite;
}

.tm-plate {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.55rem;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.tm-driver {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
}

.tm-driver i {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
}

.tm-driver strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.tm-driver span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.tm-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 1.2rem;
}

.tm-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
}

.tm-stats div strong {
  display: block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1rem;
}

.tm-stats div span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

.tm-stats-sep {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.12);
}

/* wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg { width: 100%; height: 80px; }

/* ─── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 2rem 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.stat-item i {
  font-size: 1.6rem;
  color: var(--accent);
  flex-shrink: 0;
}

.stat-item strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--text);
  font-size: 1.05rem;
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

.stat-sep {
  display: none;
  width: 1px;
  background: rgba(0,0,0,0.1);
  align-self: stretch;
}

/* ─── WHY SECTION ─────────────────────────────────────────── */
.why { background: var(--bg); }

.section-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.why-header { margin-bottom: 3rem; }

.why-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.section-sub { max-width: 56ch; }

.why-grid {
  display: grid;
  gap: 1.4rem;
}

.why-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.why-icon-orange {
  background: linear-gradient(135deg, rgba(255,183,3,0.18) 0%, rgba(251,133,0,0.12) 100%);
  color: var(--accent);
  border: 1px solid rgba(255,183,3,0.22);
}

.why-icon-teal {
  background: linear-gradient(135deg, rgba(2,128,144,0.14) 0%, rgba(2,128,144,0.08) 100%);
  color: var(--teal);
  border: 1px solid rgba(2,128,144,0.18);
}

.why-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.why-body p { font-size: 0.93rem; margin: 0; }

/* ─── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(120deg, #1a1e25 0%, #0d1117 60%, #1a1823 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(255,183,3,0.15), transparent 50%),
    radial-gradient(ellipse at 85% 50%, rgba(2,128,144,0.12), transparent 50%);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  display: grid;
  gap: 1.8rem;
  align-items: center;
}

.cta-band-text h2 {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.4rem;
}

.cta-band-text p { color: rgba(255,255,255,0.55); margin: 0; }

.cta-band-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact { background: var(--surface); }

.contact-header { margin-bottom: 2.5rem; }

.contact-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--text);
}

.contact-grid {
  display: grid;
  gap: 1.4rem;
}

.contact-info {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.cinfo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cinfo-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(251,133,0,0.1);
  border: 1px solid rgba(251,133,0,0.18);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.cinfo-icon-wa {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.22);
  color: var(--wa);
}

.cinfo-row strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.cinfo-row span, .cinfo-row a {
  font-weight: 600;
  color: var(--text);
  font-size: 0.96rem;
}

.cinfo-row a:hover { color: var(--accent); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 300px;
  border: 1px solid rgba(0,0,0,0.07);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--hero-bg);
  padding: 1.8rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.brand-footer .brand-text { color: rgba(255,255,255,0.75); }

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ─── MOBILE STICKY CTA ───────────────────────────────────── */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  padding: 0.55rem 0.75rem 0.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  background: rgba(13,17,23,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.mobile-cta-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 0.5rem;
  border-radius: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border: 0;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
}

.mobile-cta-btn:active { transform: scale(0.97); }
.mobile-cta-btn:hover  { filter: brightness(1.07); }

.mobile-cta-btn i { font-size: 1.05rem; }

.mobile-cta-call {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #1a1e25;
  box-shadow: 0 4px 16px rgba(251,133,0,0.35);
}

.mobile-cta-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.28);
}

/* ─── REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.why-grid   .reveal:nth-child(2) { transition-delay: 0.1s; }
.why-grid   .reveal:nth-child(3) { transition-delay: 0.2s; }
.why-grid   .reveal:nth-child(4) { transition-delay: 0.3s; }
.stats-inner .reveal:nth-child(3) { transition-delay: 0.1s; }
.stats-inner .reveal:nth-child(5) { transition-delay: 0.2s; }
.stats-inner .reveal:nth-child(7) { transition-delay: 0.3s; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (min-width: 640px) {
  .hero-cta { grid-template-columns: repeat(2, 1fr); }
  .hero-cta .btn { width: auto; }
  .cta-band-inner { grid-template-columns: 1fr auto; }
}

@media (min-width: 820px) {
  .hero-inner { grid-template-columns: 1fr 0.9fr; padding-bottom: 6rem; }
  .hero-cta { grid-template-columns: repeat(2, auto); }
  .hero-cta .btn { width: auto; }
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
  .stat-sep { display: block; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
  .mobile-cta-bar { display: none; }
  .section { padding: 6rem 0; }
}

@media (min-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
}

/* extra bottom padding on mobile for sticky bar */
@media (max-width: 819px) {
  main { padding-bottom: 70px; }
}
