/* FARAS web — Bolt / Yango inspired mobility marketing site */
:root {
  --fw-brand: #00b341;
  --fw-brand-hover: #009a38;
  --fw-brand-soft: #e8faf0;
  --fw-ink: #0a0a0a;
  --fw-ink-2: #1c1c1e;
  --fw-muted: #6b7280;
  --fw-line: #e8eaed;
  --fw-bg: #f5f6f8;
  --fw-white: #ffffff;
  --fw-radius: 16px;
  --fw-radius-xl: 24px;
  --fw-font: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  --fw-container: min(1200px, 92vw);
  --fw-header-h: 72px;
  --fw-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --fw-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --fw-shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--fw-font);
  color: var(--fw-ink);
  background: var(--fw-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.fw-container {
  width: var(--fw-container);
  margin-inline: auto;
}

/* —— Header (Bolt-style) —— */
.fw-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--fw-header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--fw-line);
}

.fw-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.fw-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--fw-ink);
}

.fw-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.fw-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fw-nav a {
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--fw-ink-2);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.fw-nav a:hover,
.fw-nav a.is-active {
  color: var(--fw-ink);
  background: var(--fw-bg);
}

.fw-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fw-menu-btn {
  display: none;
  border: none;
  background: var(--fw-bg);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.25rem;
}

/* Buttons */
.fw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.fw-btn:hover { transform: translateY(-1px); }

.fw-btn-brand {
  background: var(--fw-brand);
  color: var(--fw-white);
  box-shadow: 0 4px 14px rgba(0, 179, 65, 0.35);
}

.fw-btn-brand:hover {
  background: var(--fw-brand-hover);
  color: var(--fw-white);
}

.fw-btn-ghost {
  background: transparent;
  color: var(--fw-ink);
  border: 1.5px solid var(--fw-line);
}

.fw-btn-ghost:hover { border-color: var(--fw-ink); }

.fw-btn-light {
  background: var(--fw-white);
  color: var(--fw-ink);
}

.fw-btn-light:hover { color: var(--fw-brand); }

.fw-btn-dark {
  background: var(--fw-ink);
  color: var(--fw-white);
}

.fw-btn-dark:hover {
  background: #333;
  color: var(--fw-white);
}

.fw-btn-link {
  padding: 0;
  background: none;
  color: var(--fw-brand);
  font-weight: 600;
}

.fw-btn-link::after {
  content: " →";
}

/* Page offset for fixed header */
.fw-page { padding-top: var(--fw-header-h); }

/* —— Hero (Yango scale + Bolt clarity) —— */
.fw-hero {
  position: relative;
  min-height: calc(100vh - var(--fw-header-h));
  min-height: calc(100dvh - var(--fw-header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--fw-white);
}

.fw-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0, 179, 65, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0, 179, 65, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #fafbfc 0%, var(--fw-white) 100%);
  pointer-events: none;
}

.fw-hero .fw-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0 4rem;
}

.fw-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fw-brand);
  margin-bottom: 1.25rem;
}

.fw-hero-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--fw-brand);
  border-radius: 2px;
}

.fw-hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fw-ink);
}

.fw-hero h1 .accent {
  color: var(--fw-brand);
}

.fw-hero-lead {
  margin: 0 0 2rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--fw-muted);
  max-width: 32rem;
  line-height: 1.6;
}

.fw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.fw-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--fw-line);
}

.fw-hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fw-ink);
}

.fw-hero-stat span {
  font-size: 0.875rem;
  color: var(--fw-muted);
}

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

.fw-phone {
  width: min(300px, 85%);
  aspect-ratio: 9/19;
  background: var(--fw-ink);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--fw-shadow-lg);
  position: relative;
}

.fw-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(160deg, #0d2818 0%, var(--fw-brand) 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
  color: var(--fw-white);
}

.fw-phone-screen img {
  margin-top: auto;
  opacity: 0.95;
}

.fw-phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: var(--fw-ink);
  border-radius: 20px;
  z-index: 2;
}

.fw-float-card {
  position: absolute;
  background: var(--fw-white);
  border-radius: var(--fw-radius);
  padding: 0.85rem 1rem;
  box-shadow: var(--fw-shadow);
  font-size: 0.8125rem;
  font-weight: 600;
  animation: fw-float 4s ease-in-out infinite;
}

.fw-float-card--1 { bottom: 15%; left: -5%; animation-delay: 0s; }
.fw-float-card--2 { top: 20%; right: -8%; animation-delay: 1s; }

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

/* —— Services (Bolt grid) —— */
.fw-section {
  padding: 5rem 0;
}

.fw-section-dark {
  background: var(--fw-ink);
  color: var(--fw-white);
}

.fw-section-soft {
  background: var(--fw-bg);
}

.fw-section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fw-brand);
  margin: 0 0 0.75rem;
}

.fw-section-dark .fw-section-label { color: #5ee08a; }

.fw-section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.fw-section-desc {
  margin: 0 0 2.5rem;
  font-size: 1.125rem;
  color: var(--fw-muted);
  max-width: 36rem;
}

.fw-section-dark .fw-section-desc { color: rgba(255, 255, 255, 0.65); }

.fw-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.fw-service {
  position: relative;
  border-radius: var(--fw-radius-xl);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  color: var(--fw-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fw-service:hover {
  transform: translateY(-6px);
  box-shadow: var(--fw-shadow-lg);
}

.fw-service--rides { background: linear-gradient(145deg, #0a5c2e, #00b341); }
.fw-service--boda { background: linear-gradient(145deg, #1a4d6e, #2d9cdb); }
.fw-service--delivery { background: linear-gradient(145deg, #6b3a10, #e67e22); }
.fw-service--corporate { background: linear-gradient(145deg, #2d1f4e, #6c5ce7); }
.fw-service--miles { background: linear-gradient(145deg, #0d3d56, #00cec9); }
.fw-service--business { background: linear-gradient(145deg, #1e272e, #636e72); }

.fw-service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.fw-service h3 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.fw-service p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  opacity: 0.9;
  line-height: 1.45;
}

.fw-service .fw-btn-link {
  color: var(--fw-white);
  font-size: 0.875rem;
}

/* —— Mission split —— */
.fw-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fw-mission-visual {
  border-radius: var(--fw-radius-xl);
  background: var(--fw-brand-soft);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fw-mission-visual img {
  max-width: 100%;
}

/* —— How it works —— */
.fw-steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.fw-step-card {
  text-align: left;
  padding: 1.5rem;
  background: var(--fw-white);
  border-radius: var(--fw-radius);
  border: 1px solid var(--fw-line);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.fw-step-card:hover {
  border-color: var(--fw-brand);
  box-shadow: var(--fw-shadow-sm);
}

.fw-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--fw-brand-soft);
  color: var(--fw-brand);
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.fw-step-card h4 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
}

.fw-step-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--fw-muted);
  line-height: 1.5;
}

/* —— Regions (Yango countries) —— */
.fw-regions {
  text-align: center;
}

.fw-regions .fw-section-desc {
  margin-inline: auto;
}

.fw-region-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.fw-region-tab {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--fw-white);
  border: 1px solid var(--fw-line);
  color: var(--fw-muted);
  cursor: default;
}

.fw-region-tab.is-on {
  background: var(--fw-ink);
  color: var(--fw-white);
  border-color: var(--fw-ink);
}

.fw-countries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.fw-country {
  padding: 0.55rem 1.1rem;
  background: var(--fw-white);
  border: 1px solid var(--fw-line);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fw-ink-2);
  transition: border-color 0.2s, background 0.2s;
}

.fw-country:hover {
  border-color: var(--fw-brand);
  background: var(--fw-brand-soft);
}

/* —— Earn (Bolt partners) —— */
.fw-earn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.fw-earn-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--fw-radius-xl);
  padding: 2rem;
  transition: background 0.2s, transform 0.2s;
}

.fw-earn-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.fw-earn-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.fw-earn-card p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.fw-earn-card .fw-btn-light {
  font-size: 0.875rem;
  padding: 0.6rem 1.1rem;
}

/* —— App download (Bolt dual) —— */
.fw-download {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.fw-download-stores {
  display: flex;
  justify-content: center;
  padding-top: 0.25rem;
}

.fw-download-card {
  padding: 2rem;
  border-radius: var(--fw-radius-xl);
  background: var(--fw-bg);
  border: 1px solid var(--fw-line);
}

.fw-download-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.fw-download-card p {
  margin: 0;
  color: var(--fw-muted);
  font-size: 0.9375rem;
}

.fw-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.fw-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  background: var(--fw-ink);
  color: var(--fw-white);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.fw-store-badge:hover {
  background: #333;
  color: var(--fw-white);
}

.fw-store-images {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.fw-store-img-link {
  display: block;
  line-height: 0;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.fw-store-img-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.fw-store-img-link img {
  height: 44px;
  width: auto;
  display: block;
}

.fw-footer .fw-store-images .fw-store-img-link img {
  height: 40px;
}

.fw-download .fw-store-images .fw-store-img-link img {
  height: 48px;
}

/* —— Inner pages —— */
.fw-page-hero {
  padding: 4rem 0 3rem;
  background: var(--fw-bg);
}

.fw-page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.fw-page-hero p {
  margin: 0;
  font-size: 1.125rem;
  color: var(--fw-muted);
  max-width: 40rem;
}

.fw-card {
  background: var(--fw-white);
  border: 1px solid var(--fw-line);
  border-radius: var(--fw-radius-xl);
  padding: 2rem;
}

.fw-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.fw-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.fw-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.fw-vm-card {
  padding: 2rem;
  border-radius: var(--fw-radius-xl);
  background: var(--fw-brand-soft);
  border: 1px solid rgba(0, 179, 65, 0.15);
}

.fw-vm-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--fw-brand);
}

.fw-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.fw-contact-card {
  padding: 1.75rem;
  border-radius: var(--fw-radius-xl);
  background: var(--fw-white);
  border: 1px solid var(--fw-line);
  transition: box-shadow 0.2s;
}

.fw-contact-card:hover { box-shadow: var(--fw-shadow); }

.fw-contact-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.fw-contact-card .fw-muted {
  margin: 0;
  font-size: 0.875rem;
  color: var(--fw-muted);
}

.fw-coming {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--fw-radius-xl);
  background: var(--fw-bg);
  border: 1px dashed var(--fw-line);
}

.fw-cta-banner {
  border-radius: var(--fw-radius-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--fw-brand) 0%, #008f34 100%);
  color: var(--fw-white);
}

.fw-cta-banner h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
}

.fw-cta-banner p {
  margin: 0 0 1.5rem;
  opacity: 0.92;
  font-size: 1.05rem;
}

/* —— Footer (Bolt multi-col) —— */
.fw-footer {
  background: var(--fw-ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 2rem;
}

.fw-footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.fw-footer .fw-brand {
  color: var(--fw-white);
  margin-bottom: 1rem;
}

.fw-footer-tagline {
  margin: 0;
  font-size: 0.9375rem;
  max-width: 280px;
  line-height: 1.55;
}

.fw-footer h4 {
  color: var(--fw-white);
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fw-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fw-footer li { margin-bottom: 0.5rem; }

.fw-footer a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  transition: color 0.15s;
}

.fw-footer a:hover { color: var(--fw-white); }

.fw-footer-apps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fw-footer-apps .fw-store-badge {
  width: fit-content;
}

.fw-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.fw-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.fw-footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
}

/* Legacy aliases */
.fw-section-alt { background: var(--fw-bg); }
.fw-section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.fw-section-head h2 { margin: 0 0 0.65rem; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; }
.fw-muted { color: var(--fw-muted); }
.fw-btn-green { background: var(--fw-brand); color: var(--fw-white); }
.fw-btn-green:hover { background: var(--fw-brand-hover); color: var(--fw-white); }

/* Responsive */
@media (max-width: 1024px) {
  .fw-hero .fw-container { grid-template-columns: 1fr; text-align: center; }
  .fw-hero-lead { margin-inline: auto; }
  .fw-hero-actions { justify-content: center; }
  .fw-hero-stats { justify-content: center; }
  .fw-hero-visual { order: -1; margin-bottom: 1rem; }
  .fw-services { grid-template-columns: repeat(2, 1fr); }
  .fw-mission { grid-template-columns: 1fr; }
  .fw-steps-row { grid-template-columns: repeat(2, 1fr); }
  .fw-earn-grid { grid-template-columns: 1fr; }
  .fw-download { grid-template-columns: 1fr; }
  .fw-footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .fw-menu-btn { display: flex; align-items: center; justify-content: center; }
  .fw-header-actions .fw-btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.8125rem;
  }
  .fw-nav-wrap {
    display: none;
    position: fixed;
    top: var(--fw-header-h);
    left: 0;
    right: 0;
    background: var(--fw-white);
    border-bottom: 1px solid var(--fw-line);
    padding: 1rem 4vw 1.5rem;
    box-shadow: var(--fw-shadow);
  }
  .fw-nav-wrap.is-open { display: block; }
  .fw-nav { flex-direction: column; align-items: stretch; }
  .fw-services { grid-template-columns: 1fr; }
  .fw-steps-row { grid-template-columns: 1fr; }
  .fw-grid-3, .fw-split, .fw-vm-grid, .fw-contact-grid { grid-template-columns: 1fr; }
  .fw-footer-top { grid-template-columns: 1fr; }
  .fw-float-card { display: none; }
}
