:root {
  --bg: #f6f8f6;
  --surface: #ffffff;
  --surface-soft: #f8fbf8;
  --text: #111827;
  --muted: #5f6b7a;
  --line: #e7ece9;
  --green: #009b4e;
  --green-dark: #007f40;
  --green-soft: #f1fbf5;
  --blue: #2d8cff;
  --orange: #f59e0b;
  --shadow: 0 20px 50px rgba(20, 36, 22, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fcfefd 0%, #f6f8f6 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 155, 78, 0.08), transparent 22%),
    radial-gradient(circle at 100% 20%, rgba(45, 140, 255, 0.06), transparent 18%);
}

.page-shell {
  position: relative;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 12px 0 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.topbar,
.section,
.service-card,
.step-card,
.merchant-section,
.footer,
.floating-card,
.newsletter-card {
  background: var(--surface);
  box-shadow: var(--shadow);
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  border: 1px solid rgba(231, 236, 233, 0.9);
  border-radius: 999px;
  position: sticky;
  top: 12px;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  font-size: 16px;
  font-weight: 800;
}

.brand-name {
  font-size: 24px;
  font-weight: 800;
}

.nav {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 38px;
}

.nav a {
  font-size: 18px;
  font-weight: 600;
  color: #263140;
}

.nav a.active {
  color: var(--green);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.locale-button {
  border: 0;
  background: transparent;
  color: #2a3442;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  box-shadow: 0 14px 26px rgba(22, 163, 74, 0.18);
}

.button-small {
  min-height: 42px;
  padding: 0 20px;
  font-size: 18px;
}

.button-large {
  min-height: 52px;
  padding: 0 22px;
  font-size: 15px;
}

.button-inline {
  min-height: 38px;
  padding: 0 14px;
  font-size: 12px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 28px;
  align-items: stretch;
  padding: 24px 0 18px;
}

.hero-copy h1,
.section-head h2,
.merchant-copy h2 {
  margin: 0;
  line-height: 1.08;
}

.hero-copy h1 {
  font-size: clamp(2.05rem, 3.7vw, 3.35rem);
  letter-spacing: -0.04em;
  max-width: 17.5ch;
}

.hero-copy h1 span {
  color: var(--green);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  margin-bottom: 12px;
  border: 1px solid #dbece2;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.hero-text {
  max-width: 34rem;
  margin: 14px 0 18px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 22px;
  padding: 6px 0;
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
}

.mini-feature {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
  padding: 22px 20px;
}

.mini-feature strong {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mini-feature span {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
  color: #6b7280;
  max-width: 18ch;
}

.benefit-icon,
.step-icon,
.service-badge {
  display: grid;
  place-items: center;
  font-weight: 800;
}

.mini-icon {
  width: 82px;
  height: 82px;
  display: block;
  object-fit: contain;
  margin: 0 auto 6px;
}

.hero-actions {
  margin-bottom: 14px;
}

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

.trust-badge {
  padding: 7px 11px;
  border-radius: 999px;
  background: #f3f7f4;
  color: #51606d;
  font-size: 11px;
  font-weight: 600;
}

.hero-visual {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-height: 100%;
}

.hero-device {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.hero-device-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  transform: scale(1.08);
  transform-origin: center;
  filter: drop-shadow(0 26px 44px rgba(18, 27, 20, 0.16));
}

.section {
  margin-top: 14px;
  padding: 20px;
  border: 1px solid rgba(231, 236, 233, 0.9);
  border-radius: var(--radius-xl);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-head.centered {
  justify-content: center;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

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

.service-card {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.service-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
}

.service-badge.blue {
  background: #eaf3ff;
  color: var(--blue);
}

.service-badge.orange {
  background: #fff3dc;
  color: var(--orange);
}

.service-copy h3,
.step-card h3,
.newsletter-card h3,
.footer-links h3 {
  margin: 0 0 8px;
}

.service-copy p,
.step-card p,
.benefit-item p,
.merchant-copy p,
.footer-brand p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-copy .button {
  margin-top: 16px;
}

.service-art {
  height: 170px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7faf8, #edf6f0);
}

.food-art::before,
.food-art::after,
.box-art::before,
.box-art::after,
.rider-art::before,
.rider-art::after {
  content: "";
  position: absolute;
}

.food-art::before {
  left: 26px;
  bottom: 18px;
  width: 104px;
  height: 104px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 62%, #ffffff 0 42px, transparent 43px),
    radial-gradient(circle at 35% 38%, #f6a54d 0 10px, transparent 11px),
    radial-gradient(circle at 58% 36%, #78b943 0 12px, transparent 13px),
    radial-gradient(circle at 44% 56%, #c8762c 0 14px, transparent 15px),
    radial-gradient(circle at 62% 56%, #8cc84b 0 13px, transparent 14px),
    #fff6ea;
  box-shadow: inset 0 -16px 0 rgba(0, 0, 0, 0.05);
}

.food-art::after {
  right: 18px;
  top: 18px;
  width: 34px;
  height: 72px;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(180deg, #d98d43, #6a3412);
}

.box-art::before {
  left: 26px;
  top: 30px;
  width: 110px;
  height: 88px;
  transform: rotate(-8deg);
  background: linear-gradient(135deg, #d8a361, #ba7d37);
  border-radius: 12px;
  box-shadow: 0 18px 28px rgba(145, 97, 42, 0.18);
}

.box-art::after {
  left: 52px;
  top: 20px;
  width: 58px;
  height: 18px;
  background: linear-gradient(135deg, #e6bc82, #c98f48);
  transform: skew(-18deg);
  border-radius: 8px;
}

.rider-art::before {
  right: 18px;
  bottom: 28px;
  width: 118px;
  height: 52px;
  border-radius: 28px;
  background: linear-gradient(135deg, #1faa55, #0d7d39);
  box-shadow:
    -10px 18px 0 -8px #1f2937,
    62px 18px 0 -8px #1f2937;
}

.rider-art::after {
  right: 56px;
  top: 26px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 34%, #ffe4bc 0 10px, transparent 11px),
    linear-gradient(180deg, #1faa55 0 70%, #0e7e3a 70% 100%);
}

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

.step-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  text-align: center;
}

.step-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--green-dark);
}

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

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: start;
}

.benefit-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
}

.merchant-section {
  display: grid;
  grid-template-columns: 320px 1fr 260px;
  gap: 24px;
  align-items: center;
}

.merchant-dashboard {
  height: 240px;
  display: grid;
  grid-template-columns: 92px 1fr;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
}

.dashboard-sidebar {
  background: linear-gradient(180deg, #162433, #101b27);
}

.dashboard-main {
  padding: 18px;
  background: #fbfcfb;
}

.dashboard-chart {
  height: 108px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.06) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(rgba(17, 24, 39, 0.06) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(180deg, rgba(22, 163, 74, 0.14), rgba(45, 140, 255, 0.05));
}

.dashboard-bars {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 64px;
  margin-top: 18px;
}

.dashboard-bars span {
  width: 18%;
  border-radius: 12px 12px 6px 6px;
  background: linear-gradient(180deg, #76dd9a, #1da453);
}

.dashboard-bars span:nth-child(1) {
  height: 44px;
}

.dashboard-bars span:nth-child(2) {
  height: 62px;
}

.dashboard-bars span:nth-child(3) {
  height: 34px;
}

.dashboard-bars span:nth-child(4) {
  height: 52px;
}

.merchant-list {
  margin: 16px 0 22px;
  padding-left: 18px;
  color: #2b3643;
  line-height: 1.8;
}

.merchant-store {
  position: relative;
  height: 250px;
}

.store-sign,
.store-awning,
.store-body,
.store-door,
.store-plant {
  position: absolute;
}

.store-sign {
  left: 52px;
  top: 8px;
  width: 136px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff7eb;
  border: 1px solid #eadbc3;
  font-weight: 800;
  color: var(--green-dark);
}

.store-awning {
  left: 30px;
  top: 52px;
  width: 190px;
  height: 34px;
  border-radius: 16px 16px 8px 8px;
  background:
    repeating-linear-gradient(
      90deg,
      #1aa454 0 16px,
      #1aa454 16px 32px,
      #fff5df 32px 48px,
      #fff5df 48px 64px
    );
}

.store-body {
  left: 44px;
  top: 82px;
  width: 160px;
  height: 118px;
  border-radius: 14px;
  background: linear-gradient(180deg, #3c8f63, #2e6d4d);
}

.store-door {
  left: 102px;
  top: 126px;
  width: 44px;
  height: 74px;
  border-radius: 10px 10px 0 0;
  background: #173b29;
}

.store-plant {
  left: 22px;
  bottom: 18px;
  width: 46px;
  height: 58px;
  border-radius: 18px 18px 10px 10px;
  background:
    radial-gradient(circle at 50% 12%, #58c979 0 12px, transparent 13px),
    radial-gradient(circle at 36% 26%, #49b86b 0 12px, transparent 13px),
    linear-gradient(180deg, #b77f45 58%, #8f5f30 58%);
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid rgba(231, 236, 233, 0.9);
  border-radius: 30px;
}

.footer-brand p {
  max-width: 28rem;
  margin: 16px 0;
}

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

.social-row span {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #f2f6f3;
  color: #374554;
  font-size: 12px;
  font-weight: 800;
}

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

.footer-links a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  font-size: 14px;
}

.newsletter-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 16px 0;
}

.newsletter-form input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  outline: none;
}

.newsletter-trust {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1120px) {
  .hero,
  .merchant-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: start;
  }

  .feature-row,
  .service-grid,
  .steps-grid,
  .benefit-row,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 18px, 1180px);
    padding-top: 10px;
  }

  .topbar,
  .nav,
  .topbar-actions,
  .hero,
  .hero-visual,
  .feature-row,
  .service-grid,
  .steps-grid,
  .benefit-row,
  .merchant-section,
  .footer,
  .footer-links,
  .newsletter-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .topbar {
    border-radius: 28px;
  }

  .nav {
    gap: 12px;
  }

  .hero {
    gap: 22px;
    padding-top: 24px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-visual {
    justify-content: stretch;
  }

  .phone-screen {
    min-height: 600px;
  }

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

  .section,
  .footer {
    padding: 20px;
    border-radius: 26px;
  }
}
