@import url("https://fonts.googleapis.com/css2?family=Karla:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap");

:root {
  --tomato: #d81921;
  --tomato-dark: #a91017;
  --mango: #f59b24;
  --leaf: #11834b;
  --sky: #e8f3ff;
  --mint: #eaf8ef;
  --ink: #201716;
  --muted: #6f615f;
  --paper: #fffaf4;
  --white: #ffffff;
  --line: #eaded7;
  --shadow: 0 18px 50px rgba(93, 38, 31, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Karla", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(245, 155, 36, 0.65);
  outline-offset: 4px;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 244, 0.92);
  border-bottom: 1px solid rgba(234, 222, 215, 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(216, 25, 33, 0.18);
}

.brand span {
  color: var(--tomato);
}

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

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: #3b302e;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--tomato);
  background: rgba(216, 25, 33, 0.08);
}

.nav-action {
  background: var(--ink) !important;
  color: var(--white) !important;
}

.nav-action:hover {
  background: var(--tomato) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  margin: auto;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 78px 0 46px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(32, 23, 22, 0.9), rgba(32, 23, 22, 0.72) 48%, rgba(32, 23, 22, 0.28)),
    url("https://images.pexels.com/photos/5724558/pexels-photo-5724558.jpeg?auto=compress&cs=tinysrgb&w=1600&h=1000&dpr=1") center / cover no-repeat;
  color: var(--white);
}

.hero.compact {
  min-height: 520px;
  padding: 76px 0;
}

.hero-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #ffe0bd;
  font-weight: 800;
}

.eyebrow svg {
  width: 18px;
  height: 18px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.7rem;
  font-weight: 800;
}

.hero-copy p {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 1.24rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  margin-top: 34px;
  max-width: 680px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 8px;
  border: 0;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
  padding: 0 20px;
  background: var(--tomato);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(216, 25, 33, 0.25);
}

.button:hover {
  transform: translateY(-1px);
  background: var(--tomato-dark);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.button.secondary:hover {
  background: #fff4e8;
}

.button.green {
  background: var(--leaf);
  box-shadow: 0 10px 22px rgba(17, 131, 75, 0.22);
}

.text-link {
  color: var(--tomato);
}

.text-link svg,
.button svg {
  width: 19px;
  height: 19px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
}

.phone-stage {
  position: relative;
  min-height: 520px;
}

.phone-card {
  position: relative;
  width: min(100%, 360px);
  margin-left: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.phone-screen {
  overflow: hidden;
  min-height: 650px;
  border-radius: 26px;
  background: var(--paper);
  color: var(--ink);
}

.phone-top {
  padding: 22px 20px 18px;
  background: var(--tomato);
  color: var(--white);
}

.phone-top .brand {
  color: var(--white);
}

.phone-top .brand span {
  color: var(--white);
}

.phone-copy {
  margin-top: 18px;
}

.phone-copy strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.1;
}

.phone-copy span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.phone-list {
  padding: 18px;
}

.food-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  border-bottom: 1px solid #f0e4db;
}

.food-photo {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
}

.food-row h3 {
  font-size: 1rem;
}

.food-row p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 32px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--leaf);
  font-weight: 800;
  font-size: 0.9rem;
}

.floating-note {
  position: absolute;
  left: 0;
  bottom: 68px;
  width: 230px;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.floating-note strong {
  display: block;
  line-height: 1.1;
}

.floating-note span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: var(--white);
}

.section.sky {
  background: var(--sky);
}

.section.mint {
  background: var(--mint);
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--tomato);
  font-weight: 800;
}

h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
}

.section-head p,
.lead {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.audience-card,
.feature-card,
.app-card,
.partner-card,
.step-card,
.stat-card,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(71, 43, 35, 0.07);
}

.audience-card {
  min-height: 310px;
  padding: 28px;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--tomato);
}

.card-icon.green {
  background: var(--leaf);
}

.card-icon.orange {
  background: var(--mango);
}

.card-icon.blue {
  background: #2563eb;
}

.card-icon svg {
  width: 25px;
  height: 25px;
}

.audience-card h3,
.feature-card h3,
.app-card h3,
.pricing-card h3,
.step-card h3 {
  margin-top: 20px;
  font-size: 1.35rem;
}

.audience-card p,
.feature-card p,
.app-card p,
.pricing-card p,
.step-card p,
.partner-card p,
.stat-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.visual-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.image-panel {
  min-height: 440px;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.feature-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  min-height: 126px;
  padding: 20px;
}

.feature-card h3 {
  margin-top: 0;
  font-size: 1.12rem;
}

.partners-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.partner-card {
  min-height: 160px;
  padding: 18px;
  display: grid;
  place-items: center;
  text-align: center;
}

.partner-card img {
  max-height: 78px;
  width: auto;
  object-fit: contain;
}

.partner-card h3 {
  margin-top: 12px;
  font-size: 1rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.app-card {
  min-height: 370px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.app-card .badge-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.app-icon {
  width: 58px;
  height: 58px;
  border-radius: 8px;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--leaf);
  font-size: 0.86rem;
  font-weight: 800;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 48px;
  overflow: hidden;
  border-radius: 7px;
  background: #050505;
  flex: 0 0 144px;
  transition: transform 180ms ease;
}

.store-badge:hover {
  transform: translateY(-1px);
}

.store-badge img {
  display: block;
  max-width: none;
}

.store-badge img[src$="app-store-badge-official.svg"] {
  width: 144px;
  height: 48px;
}

.store-badge img[src$="google-play-badge-official.png"] {
  width: 185px;
  height: 71.5px;
}

.web-dashboard {
  min-height: 48px;
  padding: 0 15px;
  border-radius: 7px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.web-dashboard svg {
  width: 18px;
  height: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: steps;
}

.step-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
}

.step-card::before {
  counter-increment: steps;
  content: "0" counter(steps);
  position: absolute;
  right: 18px;
  bottom: -8px;
  color: rgba(216, 25, 33, 0.1);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  padding: 24px;
  min-height: 150px;
}

.stat-card strong {
  display: block;
  color: var(--tomato);
  font-size: 2rem;
  line-height: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pricing-card {
  padding: 30px;
}

.price {
  display: block;
  margin-top: 22px;
  color: var(--tomato);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-card ul,
.plain-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.pricing-card li,
.plain-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--muted);
}

.pricing-card li::before,
.plain-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: inset 0 0 0 5px var(--mint);
}

.cta-band {
  padding: 56px;
  border-radius: 8px;
  background:
    linear-gradient(100deg, rgba(216, 25, 33, 0.96), rgba(169, 16, 23, 0.9)),
    url("https://images.pexels.com/photos/28080712/pexels-photo-28080712.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1") center / cover no-repeat;
  color: var(--white);
}

.cta-band p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-hero {
  background-position: center;
  background-size: cover;
}

.customers-hero {
  background-image:
    linear-gradient(90deg, rgba(32, 23, 22, 0.88), rgba(32, 23, 22, 0.56)),
    url("https://images.pexels.com/photos/8625452/pexels-photo-8625452.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1");
}

.merchant-hero {
  background-image:
    linear-gradient(90deg, rgba(32, 23, 22, 0.88), rgba(32, 23, 22, 0.48)),
    url("https://images.pexels.com/photos/36023552/pexels-photo-36023552.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1");
}

.rider-hero {
  background-image:
    linear-gradient(90deg, rgba(32, 23, 22, 0.88), rgba(32, 23, 22, 0.5)),
    url("https://images.pexels.com/photos/12725451/pexels-photo-12725451.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1");
}

.about-hero {
  background-image:
    linear-gradient(90deg, rgba(32, 23, 22, 0.88), rgba(32, 23, 22, 0.5)),
    url("https://images.pexels.com/photos/32754756/pexels-photo-32754756.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1");
}

.footer {
  padding: 64px 0 30px;
  background: #1b1413;
  color: var(--white);
}

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

.footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer h2,
.footer h3 {
  font-family: "Karla", Arial, sans-serif;
}

.footer h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--mango);
}

.legal-note {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .visual-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    display: none;
  }

  .grid-3,
  .download-grid,
  .steps,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container,
  .hero-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero,
  .hero.compact {
    padding: 58px 0;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy p {
    font-size: 1.05rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 66px 0;
  }

  .grid-3,
  .grid-2,
  .download-grid,
  .steps,
  .stats,
  .pricing-grid,
  .partners-row {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .image-panel {
    min-height: 300px;
  }

  .cta-band {
    padding: 32px 22px;
  }

  .store-badge {
    width: 135px;
    height: 45px;
    flex-basis: 135px;
  }

  .store-badge img[src$="app-store-badge-official.svg"] {
    width: 135px;
    height: 45px;
  }

  .store-badge img[src$="google-play-badge-official.png"] {
    width: 173px;
    height: 67px;
  }
}
