:root {
  color-scheme: light;
  --ink: #101813;
  --muted: #5f6f65;
  --page: #fffdf8;
  --surface: #f4f6ee;
  --card: #ffffff;
  --green: #0f8a5f;
  --green-dark: #073f2c;
  --green-soft: #e6f5ee;
  --orange: #f2672d;
  --gold: #f4b73e;
  --line: #e7e2d8;
  --shadow: 0 22px 60px rgba(18, 32, 24, 0.13);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffaf0 0, #fffdf8 28%, #f7faf3 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::selection {
  background: rgba(15, 138, 95, 0.18);
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--green-dark);
  color: #fff;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid rgba(231, 226, 216, 0.72);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #11a06d);
  box-shadow: 0 10px 24px rgba(15, 138, 95, 0.22);
  font-weight: 900;
}

.site-header nav,
.site-footer nav,
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-header nav a,
.site-footer nav a,
.social-links a {
  color: #304238;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a:hover,
.site-footer nav a:hover,
.social-links a:hover {
  color: var(--green);
}

.header-action {
  flex: 0 0 auto;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 54px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 74px 20px 54px;
}

.hero-copy h1,
.section-heading h2,
.feature-copy h2,
.partner-copy h2,
.about-copy h2,
.contact-section h2,
.download-strip h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.section-heading h2,
.feature-copy h2,
.partner-copy h2,
.about-copy h2,
.contact-section h2,
.download-strip h2 {
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 1.02;
}

.hero-copy p,
.section-heading p,
.feature-copy p,
.partner-copy p,
.about-copy p,
.contact-section p,
.download-strip p,
.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 1.18rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-actions,
.download-actions,
.partner-actions,
.delivery-card,
.screen-top,
.meta-row,
.contact-card,
.footer-brand {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(15, 138, 95, 0.22);
}

.button-primary:hover {
  background: #0a744e;
}

.button-secondary {
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--line);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-disabled,
.store-badge.disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.trust-row span,
.mini-card,
.step-card,
.category-card,
.pay-card,
.contact-card,
.about-card,
.faq-list details,
.download-strip,
.partner-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.trust-row span {
  padding: 12px;
  color: #284033;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(15, 138, 95, 0.12), rgba(242, 103, 45, 0.09)),
    #f6f2e9;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 24px;
  background-image:
    linear-gradient(90deg, rgba(7, 63, 44, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(7, 63, 44, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.phone {
  position: relative;
  z-index: 1;
  width: min(360px, 92%);
  margin: 8px auto 0;
  padding: 18px;
  border: 10px solid #111713;
  border-radius: 34px;
  background: #fbfaf6;
  box-shadow: 0 30px 80px rgba(16, 24, 19, 0.3);
}

.screen-top {
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
}

.screen-top strong {
  display: block;
}

.screen-top span,
.delivery-card span,
.mini-card span,
.pay-card span,
.step-card span,
.category-card span {
  color: var(--muted);
  font-size: 0.84rem;
}

.avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.search-pill {
  padding: 12px 14px;
  color: #66756c;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
}

.food-card {
  margin-top: 14px;
  padding: 16px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #073f2c, #0f8a5f 68%, #62b98d);
  background-size: cover;
  background-position: center;
  min-height: 178px;
}

.food-card h3 {
  max-width: 210px;
  margin: 64px 0 8px;
  font-size: 1.4rem;
  line-height: 1.05;
}

.meta-row {
  flex-wrap: wrap;
  gap: 8px;
}

.meta-row span {
  padding: 7px 9px;
  color: #163325;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 900;
}

.delivery-card {
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.rider-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
}

.mini-card {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 40px;
  width: 220px;
  padding: 14px;
  box-shadow: 0 18px 38px rgba(16, 24, 19, 0.14);
}

.mini-card strong,
.mini-card span {
  display: block;
}

.page-band {
  margin: 26px 0 0;
  padding: 24px 20px;
  background: var(--green-dark);
}

.download-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px;
  color: #fff;
  background:
    linear-gradient(135deg, #073f2c, #0f8a5f 68%, #1bb276);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 48px rgba(7, 63, 44, 0.18);
}

.download-strip h2,
.download-strip p {
  color: #fff;
}

.download-strip p {
  margin-bottom: 0;
  opacity: 0.86;
}

.download-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.store-badge {
  display: inline-flex;
  flex-direction: column;
  min-width: 156px;
  padding: 11px 14px;
  color: #101813;
  background: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
}

.store-badge span {
  color: #66756c;
  font-size: 0.72rem;
  font-weight: 800;
}

.store-badge.disabled {
  color: rgba(16, 24, 19, 0.6);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 78px 20px;
}

.anchor-offset {
  display: block;
  position: relative;
  top: -86px;
  height: 0;
  visibility: hidden;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.steps-grid,
.category-grid,
.payment-grid,
.stats-grid {
  display: grid;
  gap: 16px;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card,
.category-card,
.pay-card {
  padding: 18px;
  box-shadow: 0 12px 28px rgba(16, 24, 19, 0.06);
}

.step-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: #fff;
  border-radius: 50%;
  background: var(--green);
  font-weight: 900;
}

.step-card h3,
.category-card h3,
.pay-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.step-card p,
.category-card p,
.pay-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
  min-height: 184px;
  padding: 16px;
  background: #fff;
}

.category-image {
  width: 100%;
  height: 96px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 138, 95, 0.86), rgba(242, 103, 45, 0.7)),
    #e6f5ee;
}

.category-image.local {
  background:
    linear-gradient(135deg, rgba(242, 103, 45, 0.82), rgba(244, 183, 62, 0.75)),
    #fff4df;
}

.category-image.fast {
  background:
    linear-gradient(135deg, rgba(7, 63, 44, 0.9), rgba(15, 138, 95, 0.66)),
    #e6f5ee;
}

.category-image.drinks {
  background:
    linear-gradient(135deg, rgba(45, 112, 242, 0.72), rgba(15, 138, 95, 0.7)),
    #eef6ff;
}

.feature-split,
.partner-section,
.about-card,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.feature-copy ul,
.partner-copy ul,
.terms-content ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-copy li,
.partner-copy li,
.terms-content li {
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
  color: #304238;
  font-weight: 700;
}

.feature-copy li::before,
.partner-copy li::before,
.terms-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
}

.map-mockup {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(7, 63, 44, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(7, 63, 44, 0.08) 1px, transparent 1px),
    #eef1ea;
  background-size: 52px 52px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-route {
  position: absolute;
  left: 14%;
  top: 50%;
  width: 72%;
  height: 5px;
  background: var(--ink);
  border-radius: 999px;
  transform: rotate(-14deg);
}

.map-route::after {
  content: "";
  position: absolute;
  right: 18%;
  top: -3px;
  width: 46px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.map-pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 14px 30px rgba(16, 24, 19, 0.18);
  font-weight: 900;
}

.map-pin.restaurant {
  left: 12%;
  top: 62%;
  background: var(--green);
}

.map-pin.customer {
  right: 14%;
  top: 28%;
  background: var(--orange);
}

.map-pin.rider {
  left: 58%;
  top: 38%;
  background: var(--gold);
  color: #1d1d1b;
}

.eta-panel {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
}

.eta-panel strong,
.eta-panel span {
  display: block;
}

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

.pay-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  color: #fff;
  border-radius: var(--radius);
  background: var(--green-dark);
  font-weight: 900;
}

.partner-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

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

.stat {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--green-soft);
}

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

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.about-card {
  padding: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

.founder-photo {
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface);
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 8px 12px;
  color: var(--green-dark);
  border-radius: 999px;
  background: var(--green-soft);
  font-weight: 900;
}

.about-copy h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 34px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 16px 18px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-section {
  border-top: 1px solid var(--line);
}

.contact-card {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 24, 19, 0.06);
}

.contact-card a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.social-links {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.social-links a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 34px max(20px, calc((100vw - var(--max)) / 2));
  color: #dce9e2;
  background: #081b13;
}

.site-footer p {
  max-width: 520px;
  margin: 12px 0 0;
  color: #b8c8bf;
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer nav a {
  color: #dce9e2;
}

.footer-brand {
  color: #fff;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(231, 226, 216, 0.72);
  backdrop-filter: blur(18px);
}

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

.nav nav a {
  color: #304238;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #11a06d);
  box-shadow: 0 10px 24px rgba(15, 138, 95, 0.22);
  font-weight: 900;
}

.nav-download {
  padding: 10px 16px;
  color: #fff !important;
  background: var(--green);
  border-radius: 999px;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.about-hero h1,
.section > h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(2.15rem, 4.5vw, 4.2rem);
  line-height: 1;
}

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

.feature-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 24, 19, 0.06);
}

.feature-grid article h3 {
  margin: 0 0 8px;
}

.feature-grid article p {
  margin: 0;
  color: var(--muted);
}

.founder-premium,
.split-section,
.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: center;
}

.founder-premium.founder-text-only {
  display: block;
  max-width: 920px;
}

.founder-text-only .founder-badge {
  margin-bottom: 20px;
}

.founder-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.founder-photo-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
}

.founder-photo-wrap .founder-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.94);
}

.bio,
.split-section p,
.vision p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.founder-details {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.founder-details span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--green-soft);
  color: #284033;
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.timeline li span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.vision {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.socials a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

body > footer:not(.site-footer) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 30px max(20px, calc((100vw - var(--max)) / 2));
  color: #dce9e2;
  background: #081b13;
}

body > footer:not(.site-footer) a,
body > footer:not(.site-footer) span {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.terms-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 74px 20px 24px;
}

.terms-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
}

.terms-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.terms-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 20px 82px;
}

.terms-content section {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.terms-content h2 {
  margin: 0 0 10px;
}

.terms-content p {
  color: var(--muted);
}

/* Current FoodGo landing page refinements */
.brand > span:last-child {
  display: grid;
  gap: 1px;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-content h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.45rem, 5.5vw, 5.25rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.phone-main {
  padding: 20px;
}

.phone-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.phone-top span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-top strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.phone-top::after {
  content: "";
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 28%, transparent 30%),
    var(--green);
  box-shadow: 0 10px 22px rgba(15, 138, 95, 0.22);
}

.phone-main .food-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: auto;
  margin-top: 12px;
  padding: 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.phone-main .food-card strong,
.phone-main .food-card p {
  display: block;
  margin: 0;
}

.phone-main .food-card p {
  color: var(--muted);
  font-size: 0.86rem;
}

.food-photo {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--orange), var(--gold));
}

.food-bank {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.checkout-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 14px;
  color: #fff;
  border-radius: var(--radius);
  background: var(--ink);
}

.checkout-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.route-card {
  position: absolute;
  z-index: 3;
  left: 28px;
  bottom: 28px;
  width: min(300px, calc(100% - 56px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 44px rgba(16, 24, 19, 0.15);
}

.route-card strong,
.route-card p {
  display: block;
  margin: 8px 0 0;
}

.route-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.route-line {
  display: block;
  width: 100%;
  height: 5px;
  margin: 12px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0 64%, #e3e8df 64% 100%);
}

.route-pin {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
}

.route-end {
  background: var(--orange);
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.steps-grid article,
.category-grid article,
.payment-grid article,
.partner-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 24, 19, 0.06);
}

.steps-grid article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: #fff;
  border-radius: 50%;
  background: var(--green);
  font-weight: 900;
}

.steps-grid h3,
.category-grid h3,
.payment-grid h3,
.partner-card h3 {
  margin: 0 0 8px;
}

.steps-grid p,
.category-grid p,
.payment-grid p {
  margin: 0;
  color: var(--muted);
}

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

.category-visual {
  display: block;
  height: 112px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 138, 95, 0.82), rgba(242, 103, 45, 0.72)),
    #e6f5ee;
}

.visual-local {
  background:
    linear-gradient(135deg, rgba(242, 103, 45, 0.82), rgba(244, 183, 62, 0.72)),
    #fff4df;
}

.visual-fast {
  background:
    linear-gradient(135deg, rgba(7, 63, 44, 0.9), rgba(15, 138, 95, 0.62)),
    #e6f5ee;
}

.visual-family {
  background:
    linear-gradient(135deg, rgba(45, 112, 242, 0.68), rgba(15, 138, 95, 0.68)),
    #eef6ff;
}

.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 28px;
  color: #304238;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
}

.map-road {
  position: absolute;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.road-one {
  left: -4%;
  top: 31%;
  width: 80%;
  transform: rotate(13deg);
}

.road-two {
  right: -9%;
  top: 58%;
  width: 88%;
  transform: rotate(-19deg);
}

.restaurant-pin {
  left: 12%;
  top: 62%;
  background: var(--green);
}

.driver-pin {
  left: 58%;
  top: 38%;
  background: var(--gold);
  color: #1d1d1b;
}

.home-pin {
  right: 14%;
  top: 28%;
  background: var(--orange);
}

.map-status {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
}

.map-status p {
  margin: 4px 0 0;
  color: var(--muted);
}

.partner-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.partner-card li {
  margin: 10px 0;
  color: #304238;
  font-weight: 800;
}

.about-section .about-card {
  display: block;
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 52px);
}

.about-section .about-card h2 {
  max-width: 720px;
}

.about-section .about-card > div > p:not(.eyebrow):not(.founder-line) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.founder-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.founder-line strong {
  color: var(--green-dark);
}

.founder-line span {
  color: var(--muted);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.momo-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 960px) {
  .site-header nav {
    display: none;
  }

  .nav nav {
    display: none;
  }

  .hero,
  .download-strip,
  .feature-split,
  .partner-section,
  .about-card,
  .faq-section,
  .contact-section,
  .founder-premium,
  .split-section,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .steps-grid,
  .category-grid,
  .payment-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-actions,
  .store-actions,
  .site-footer nav {
    justify-content: flex-start;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav {
    padding: 12px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .mark {
    width: 38px;
    height: 38px;
  }

  .header-action {
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .hero {
    gap: 30px;
    padding: 34px 16px 44px;
  }

  .hero-content h1 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }

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

  .trust-row,
  .steps-grid,
  .category-grid,
  .payment-grid,
  .feature-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 16px;
  }

  .download-strip,
  .partner-section,
  .about-card {
    padding: 22px;
  }

  .hero-visual {
    min-height: 470px;
    padding: 12px;
  }

  .phone {
    width: 100%;
    border-width: 8px;
    border-radius: 28px;
  }

  .mini-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 14px auto 0;
  }

  .route-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin-top: 14px;
  }

  .map-mockup {
    min-height: 360px;
  }

  .eta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding: 30px 16px;
  }
}
