:root {
  --primary: #2e7d32;
  --primary-dark: #1b5e20;
  --primary-soft: #e8f5e9;
  --primary-soft-2: #c8e6c9;
  --leaf: #66bb6a;
  --text: #1c1c1c;
  --text-soft: #2f3a33;
  --muted: #5b6b60;
  --border: #e3e8e3;
  --bg: #ffffff;
  --bg-soft: #f6faf6;
  --accent: #ff6f00;
  --shadow:
    0 2px 6px rgba(20, 50, 25, 0.05), 0 12px 28px rgba(20, 50, 25, 0.06);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Shared header (also used by privacy/terms) ---------- */

header {
  background: #e7e9e7;
  color: white;
  padding: 14px 20px;
}

header a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 20px 64px;
}

h1 {
  color: var(--primary);
  font-size: 28px;
  margin: 0 0 4px;
}

h2 {
  color: #2c3a30;
  font-size: 20px;
  margin-top: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
}

h3 {
  font-size: 16px;
  margin-top: 18px;
}

p,
li {
  font-size: 15px;
}

ul {
  padding-left: 22px;
}

li {
  margin-bottom: 4px;
}

em {
  color: var(--muted);
}

a {
  color: var(--primary);
}

code {
  background: #f1f1f1;
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 0.9em;
}

footer {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.placeholder {
  background: #fff8e1;
  border-left: 3px solid var(--accent);
  padding: 8px 12px;
  margin: 16px 0;
  font-size: 13px;
  color: #6b4f00;
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 18px;
  }
  main {
    padding: 16px;
  }
}

.brand-footer {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.brand-footer img {
  height: 56px;
  display: inline-block;
}

.brand-footer .label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

/* =========================================================
   Landing page styles (only applied when body.landing is set)
   ========================================================= */

body.landing {
  background: var(--bg);
}

body.landing main {
  max-width: 1080px;
  padding: 0 20px 64px;
}

/* Strip default header styling so the new site-header takes over */
body.landing > header {
  display: none;
}

/* ---------- Site header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-dark);
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--primary);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-nav {
  display: flex;
  gap: 18px;
}

.site-nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}

.site-nav a:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

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

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 64px 0 32px;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -40px -40px auto -40px;
  height: 460px;
  background:
    radial-gradient(
      600px 320px at 25% 20%,
      var(--primary-soft) 0%,
      transparent 70%
    ),
    radial-gradient(
      420px 240px at 90% 0%,
      rgba(102, 187, 106, 0.2) 0%,
      transparent 70%
    );
  z-index: -1;
  border-radius: 32px;
}

.hero__content {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 4px rgba(102, 187, 106, 0.25);
}

.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1d2a22;
  margin: 0 0 16px;
}

.lede {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 56ch;
  margin: 0 0 24px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition:
    transform 0.1s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 6px 16px rgba(46, 125, 50, 0.25);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: white;
  color: var(--primary-dark);
  border-color: var(--primary-soft-2);
}
.btn--ghost:hover {
  background: var(--primary-soft);
}

.hero__chips {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero__chips li {
  font-size: 13px;
  background: white;
  border: 1px solid var(--border);
  color: var(--text-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 0;
}

.hero__art {
  display: flex;
  justify-content: center;
}

.leaf-card {
  width: min(360px, 100%);
  aspect-ratio: 1 / 1;
  background: white;
  border-radius: 32px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 32px 0 24px;
    gap: 24px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .lede {
    font-size: 16px;
  }
  .leaf-card {
    width: min(280px, 80%);
  }
}

/* ---------- Eco strip ---------- */

.eco-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 8px 0 32px;
}

.eco-strip__item {
  text-align: center;
  padding: 8px;
}
.eco-strip__item strong {
  display: block;
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 2px;
}
.eco-strip__item span {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .eco-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Generic section ---------- */

.section {
  padding: 48px 0;
  border: none;
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.section__head h2 {
  border: none;
  padding: 0;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1d2a22;
  margin: 0 0 10px;
}

.section__head p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

@media (max-width: 640px) {
  .section {
    padding: 32px 0;
  }
  .section__head h2 {
    font-size: 24px;
  }
}

/* ---------- Feature grid ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.feature:hover {
  transform: translateY(-2px);
  border-color: var(--primary-soft-2);
  box-shadow: var(--shadow);
}

.feature__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 17px;
  margin: 0 0 6px;
  color: #1d2a22;
}

.feature p {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Eco card ---------- */

.eco-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px;
  background: linear-gradient(135deg, var(--primary-soft) 0%, #ffffff 100%);
  border: 1px solid var(--primary-soft-2);
  border-radius: var(--radius-lg);
  margin: 16px 0;
}

.eco-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: white;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-soft-2);
}

.eco-card h2 {
  border: none;
  padding: 0;
  margin: 0 0 6px;
  font-size: 22px;
  color: #1d2a22;
}

.eco-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
}

@media (max-width: 560px) {
  .eco-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

/* ---------- About card ---------- */

.about-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-card h2 {
  border: none;
  padding: 0;
  margin: 0 0 8px;
  font-size: 22px;
  color: #1d2a22;
}

.about-card p {
  color: var(--text-soft);
  margin: 0 0 8px;
}

.about-card ul {
  padding-left: 18px;
}
.about-card ul li {
  color: var(--text-soft);
}

@media (max-width: 720px) {
  .about-card {
    grid-template-columns: 1fr;
  }
}

/* ---------- Steps ---------- */

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

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin: 0;
}

.step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.step h3 {
  margin: 2px 0 4px;
  font-size: 17px;
  color: #1d2a22;
}

.step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

/* ---------- Videos ---------- */

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.video-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.video-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-soft-2);
  box-shadow: var(--shadow);
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(
      circle at 30% 40%,
      rgba(255, 255, 255, 0.45),
      transparent 50%
    ),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.video-card__time {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}

.video-card h3 {
  margin: 14px 16px 4px;
  font-size: 16px;
  color: #1d2a22;
}

.video-card p {
  margin: 0 16px 16px;
  font-size: 14px;
  color: var(--text-soft);
}

.video-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 20px 0 0;
}

@media (max-width: 640px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ ---------- */

.faq {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 18px;
  transition: border-color 0.15s ease;
}

.faq__item[open] {
  border-color: var(--primary-soft-2);
  background: var(--bg-soft);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: #1d2a22;
  padding: 14px 28px 14px 0;
  position: relative;
  outline: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--primary);
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq__item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(0deg);
}

.faq__item p {
  margin: 0 0 14px;
  color: var(--text-soft);
  font-size: 14.5px;
}

/* ---------- Info grid (legal + contact) ---------- */

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.info-card h2 {
  border: none;
  padding: 0;
  margin: 0 0 10px;
  font-size: 18px;
  color: #1d2a22;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
}

.info-list li:last-child {
  border-bottom: none;
}

@media (max-width: 640px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Site footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 32px;
  padding-top: 24px;
  text-align: center;
  color: var(--muted);
}

.site-footer__top {
  font-size: 13px;
  margin-bottom: 16px;
}

body.landing .brand-footer {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

/* =========================================================
   Feature highlights (Khatabook-style phone + side text)
   ========================================================= */

.fhighlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 48px 0;
}

.fhighlight--reverse .fhighlight__phone {
  order: 2;
}
.fhighlight--reverse .fhighlight__text {
  order: 1;
}

.fhighlight__phone {
  display: flex;
  justify-content: center;
}

.fhighlight__text h3 {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1d2a22;
  margin: 10px 0 12px;
}

.fhighlight__text p {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 16px;
  max-width: 48ch;
}

.eyebrow--inline {
  margin-bottom: 0;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 8px;
}

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

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--primary-dark);
  border-bottom: 2px solid var(--primary-dark);
  transform: rotate(-45deg);
}

@media (max-width: 820px) {
  .fhighlight {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0;
  }
  .fhighlight--reverse .fhighlight__phone {
    order: 0;
  }
  .fhighlight--reverse .fhighlight__text {
    order: 0;
  }
  .fhighlight__text h3 {
    font-size: 22px;
  }
}

/* ----- Phone mockup ----- */

.phone {
  width: 260px;
  height: 520px;
  background: #1d2a22;
  border-radius: 38px;
  padding: 10px;
  position: relative;
  box-shadow:
    0 30px 60px -20px rgba(20, 50, 25, 0.35),
    0 0 0 1px rgba(20, 50, 25, 0.05);
}

.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 18px;
  background: #1d2a22;
  border-radius: 12px;
  z-index: 2;
}

.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f6faf6;
  border-radius: 30px;
  padding: 38px 16px 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mock-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.mock-bar span {
  width: 28px;
  height: 4px;
  border-radius: 4px;
  background: var(--primary-soft-2);
}
.mock-bar span:first-child {
  background: var(--primary);
}

.mock-title {
  font-weight: 700;
  font-size: 15px;
  color: #1d2a22;
  margin-bottom: 12px;
}
.mock-title--lg {
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.mock-list {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px 0;
  margin-bottom: 14px;
}
.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px;
  font-size: 12.5px;
  color: var(--text-soft);
  border-bottom: 1px dashed var(--border);
}
.mock-row:last-child {
  border-bottom: none;
}
.mock-row strong {
  color: #1d2a22;
  font-weight: 600;
}
.mock-row--total {
  background: var(--primary-soft);
}
.mock-row--total span,
.mock-row--total strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.mock-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: default;
}
.mock-btn--whatsapp {
  background: #25d366;
}

/* Dashboard variant */

.phone__screen--dash {
  padding-top: 42px;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.mock-stat {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
}
.mock-stat span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 2px;
}
.mock-stat strong {
  font-size: 12.5px;
  color: #1d2a22;
}
.mock-stat strong.pos {
  color: var(--primary-dark);
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 5px;
  height: 110px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 12px 10px;
  margin-bottom: 8px;
}
.mock-chart span {
  flex: 1;
  background: linear-gradient(180deg, var(--leaf), var(--primary));
  border-radius: 4px 4px 0 0;
  min-height: 8px;
}

.mock-caption {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

/* Shops variant */

.mock-shops {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px;
  margin-bottom: 12px;
}
.mock-shop {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
}
.mock-shop--active {
  background: var(--primary-soft);
}
.mock-shop strong {
  display: block;
  font-size: 12.5px;
  color: #1d2a22;
}
.mock-shop span:not(.mock-tick):not(.mock-shop__avatar) {
  font-size: 10.5px;
  color: var(--muted);
}
.mock-shop__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.mock-shop__avatar--alt {
  background: #43a047;
}
.mock-shop__avatar--alt2 {
  background: #00897b;
}
.mock-tick {
  color: var(--primary-dark);
  font-weight: 700;
}

/* UPI variant */

.phone__screen--upi {
  align-items: center;
  text-align: center;
}
.phone__screen--upi .mock-title {
  align-self: flex-start;
}
.mock-amount {
  font-size: 30px;
  font-weight: 700;
  color: #1d2a22;
  margin: 6px 0 12px;
}
.mock-qr {
  width: 130px;
  height: 130px;
  background: white;
  border: 2px solid #1d2a22;
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-qr__inner {
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(45deg, #1d2a22 25%, transparent 25%),
    linear-gradient(-45deg, #1d2a22 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #1d2a22 75%),
    linear-gradient(-45deg, transparent 75%, #1d2a22 75%);
  background-size: 12px 12px;
  background-position:
    0 0,
    0 6px,
    6px -6px,
    -6px 0;
}
.mock-upi {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}
.mock-pay-row {
  display: flex;
  gap: 6px;
  width: 100%;
}
.mock-pay-pill {
  flex: 1;
  text-align: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 600;
}
.mock-pay-pill:first-child {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* =========================================================
   Hero phone, store badges, proof, CTA banner, testimonials
   ========================================================= */

/* Hero art container */

.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}

.hero__art-blob {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    var(--primary-soft-2),
    var(--primary-soft) 60%,
    transparent 75%
  );
  z-index: -1;
}

.phone--lg {
  width: 280px;
  height: 560px;
  border-radius: 42px;
}
.phone--lg .phone__screen {
  border-radius: 32px;
}

.hero__phone {
  transform: rotate(-3deg);
  box-shadow:
    0 40px 80px -30px rgba(20, 50, 25, 0.35),
    0 0 0 1px rgba(20, 50, 25, 0.05);
}

.float-card {
  position: absolute;
  right: 0;
  top: 60px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 18px 40px -16px rgba(20, 50, 25, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  z-index: 2;
  max-width: 220px;
}
.float-card strong {
  display: block;
  color: #1d2a22;
  font-size: 13px;
  margin-bottom: 2px;
}
.float-card span {
  font-size: 11.5px;
  color: var(--muted);
}
.float-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
}

@media (max-width: 820px) {
  .hero__art {
    min-height: 460px;
    margin-top: 8px;
  }
  .hero__art-blob {
    width: 280px;
    height: 280px;
  }
  .phone--lg {
    width: 240px;
    height: 480px;
  }
  .float-card {
    right: 10%;
    top: 30px;
  }
}

/* Store badges */

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 14px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 14px;
  text-decoration: none;
  color: #1d2a22;
  transition:
    transform 0.12s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  box-shadow: 0 4px 12px -8px rgba(20, 50, 25, 0.25);
}
.store-badge:hover {
  transform: translateY(-1px);
  border-color: var(--primary-soft-2);
  box-shadow: 0 10px 24px -14px rgba(20, 50, 25, 0.35);
}
.store-badge__icon {
  width: 32px;
  height: 32px;
  background: var(--primary-soft);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.store-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.store-badge__text small {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.store-badge__text strong {
  font-size: 14px;
  font-weight: 700;
}

/* Social proof */

.hero__proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.hero__proof-avatars {
  display: inline-flex;
}
.hero__proof-avatars span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid white;
  margin-left: -8px;
}
.hero__proof-avatars span:first-child {
  margin-left: 0;
}

/* Hero chips full-row treatment */

body.landing .hero__chips {
  max-width: 1080px;
  margin: 8px auto 24px;
  padding: 0 4px;
  justify-content: center;
}

/* CTA banner */

.cta-banner {
  position: relative;
  margin: 48px 0 24px;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  border: none;
  padding: 0;
  margin: 0 0 8px;
  font-size: 26px;
  color: white;
  letter-spacing: -0.01em;
}
.cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  max-width: 48ch;
  font-size: 15px;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.btn--white {
  background: white;
  color: var(--primary-dark);
}
.btn--white:hover {
  background: #f0f7f0;
}
.btn--ghost-light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
}
.cta-banner__leaf {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(255, 255, 255, 0.25),
    transparent 60%
  );
  z-index: 0;
}

@media (max-width: 720px) {
  .cta-banner {
    padding: 32px 22px;
  }
  .cta-banner__inner {
    grid-template-columns: 1fr;
  }
  .cta-banner__actions {
    justify-content: flex-start;
  }
  .cta-banner h2 {
    font-size: 22px;
  }
}

/* Testimonials */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 14px -10px rgba(20, 50, 25, 0.12);
}
.testimonial__stars {
  color: #f9a825;
  font-size: 16px;
  letter-spacing: 2px;
}
.testimonial blockquote {
  margin: 0;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.testimonial__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}
.testimonial figcaption strong {
  display: block;
  color: #1d2a22;
  font-size: 14px;
  margin-bottom: 2px;
}
.testimonial figcaption span {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Realistic app-screen mockups for the "See it in action" section
   ========================================================= */

/* Common app screen body */
.phone__screen--app {
  background: #f4f8f4;
  padding: 0;
  display: flex;
  flex-direction: column;
  font-size: 11.5px;
}

.phone__screen--app > * {
  flex-shrink: 0;
}

/* Two-phone group for Reports row */
.fhighlight__phone--pair {
  position: relative;
  width: 320px;
  height: 540px;
}
.fhighlight__phone--pair .phone--back {
  position: absolute;
  top: 30px;
  left: 0;
  transform: rotate(-6deg) scale(0.9);
  transform-origin: top left;
  z-index: 1;
  opacity: 0.95;
}
.fhighlight__phone--pair .phone--front {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  transform: rotate(4deg) scale(0.95);
  transform-origin: bottom right;
}

@media (max-width: 820px) {
  .fhighlight__phone--pair {
    width: 280px;
    height: 480px;
    margin: 0 auto;
  }
  .fhighlight__phone--pair .phone--back {
    transform: rotate(-5deg) scale(0.82);
  }
  .fhighlight__phone--pair .phone--front {
    transform: rotate(3deg) scale(0.85);
  }
}

/* App bar */
.appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 14px 8px;
  background: white;
  font-size: 13px;
  font-weight: 700;
  color: #1d2a22;
}
.appbar--green {
  background: var(--primary);
  color: white;
  padding-top: 32px;
  padding-bottom: 10px;
}
.appbar__icon {
  color: var(--primary);
  font-size: 18px;
}
.appbar__icon-w {
  color: white;
  font-size: 16px;
}
.appbar__settings {
  color: #1d2a22;
  font-size: 14px;
}

/* Dashboard tiles (S2) */
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
}
.dash-tile {
  background: var(--primary-soft);
  border-radius: 10px;
  padding: 8px 10px;
  position: relative;
  min-height: 56px;
}
.dash-tile small {
  display: block;
  font-size: 9.5px;
  color: var(--muted);
  margin: 4px 0 2px;
}
.dash-tile strong {
  font-size: 14px;
  font-weight: 700;
}
.dash-tile__icon {
  position: absolute;
  right: 8px;
  top: 8px;
  font-size: 12px;
  color: var(--primary-dark);
  opacity: 0.7;
}
.green {
  color: var(--primary-dark);
}
.orange {
  color: #ef6c00;
}
.teal {
  color: #00897b;
}
.purple {
  color: #6a1b9a;
}
.muted {
  color: var(--muted);
}

.dash-pending {
  margin: 0 10px 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 10.5px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-pending__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef6c00;
}

.dash-top {
  margin: 0 10px 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
}
.dash-top__head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 11.5px;
  color: #1d2a22;
}
.dash-top__chip {
  color: var(--primary);
}

.rank-row {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 10.5px;
  color: var(--text-soft);
}
.rank-num {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 9.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rank-name {
  font-weight: 600;
  color: #1d2a22;
}
.rank-meta {
  font-size: 9.5px;
  color: var(--muted);
}

/* Sell screen (S3) */
.filter-row {
  display: flex;
  gap: 5px;
  padding: 8px 10px 4px;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
}
.filter-pill {
  font-size: 9.5px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--text-soft);
  white-space: nowrap;
}
.filter-pill--icon {
  padding: 3px 6px;
  font-size: 11px;
  color: var(--muted);
}
.filter-pill--icon.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.filter-pill--outline {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.cat-row {
  display: flex;
  gap: 5px;
  padding: 4px 10px 8px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.cat-pill {
  font-size: 9.5px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--text-soft);
  white-space: nowrap;
}
.cat-pill--active {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary-dark);
  font-weight: 600;
}

.prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  padding: 0 10px;
  flex: 1;
  overflow: hidden;
}
.prod-card {
  background: var(--primary-soft);
  border-radius: 8px;
  padding: 6px 6px 5px;
  font-size: 9px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-height: 70px;
}
.prod-card strong {
  font-size: 9.5px;
  color: #1d2a22;
  line-height: 1.15;
}
.prod-card__price {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--primary-dark);
  background: white;
  border-radius: 6px;
  padding: 2px 5px;
  align-self: flex-start;
}
.prod-card--active {
  background: white;
  border: 2px solid var(--primary);
}
.qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-radius: 999px;
  padding: 2px 4px;
  margin-top: auto;
}
.qty button {
  border: none;
  background: transparent;
  width: 14px;
  height: 14px;
  font-size: 11px;
  color: var(--primary-dark);
  font-weight: 700;
  padding: 0;
  cursor: default;
}
.qty span {
  font-size: 8.5px;
  color: var(--text-soft);
}

.sell-bar {
  margin-top: auto;
  padding: 8px 10px;
  background: white;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-soft);
}
.sell-bar strong {
  color: #1d2a22;
  font-size: 11px;
  margin-right: 4px;
}
.pay-tag {
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 600;
}
.mock-btn--sm {
  padding: 6px 10px;
  font-size: 10px;
  border-radius: 999px;
  width: auto;
}

/* Reports & Analytics (S4 / S4.2) */
.rep-daterow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  font-size: 10px;
  color: var(--primary-dark);
  background: white;
}
.rep-tabs {
  display: flex;
  gap: 8px;
  padding: 0 10px;
  border-bottom: 1px solid var(--border);
  background: white;
}
.rep-tab {
  font-size: 10px;
  color: var(--muted);
  padding: 6px 0;
  font-weight: 600;
}
.rep-tab--active {
  color: var(--primary-dark);
  border-bottom: 2px solid var(--primary);
  margin-bottom: -1px;
}
.rep-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 8px 10px;
}
.rep-stat {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 8px;
}
.rep-stat small {
  display: block;
  font-size: 8.5px;
  color: var(--muted);
}
.rep-stat strong {
  font-size: 13px;
  font-weight: 700;
}

.rep-card {
  margin: 0 10px 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
}
.rep-card__title {
  display: block;
  font-size: 10.5px;
  color: #1d2a22;
  margin-bottom: 4px;
}
.cat-line {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-soft);
  padding: 3px 0;
}
.cat-line span:last-child {
  font-weight: 700;
  color: #1d2a22;
}

.chart-title {
  display: block;
  padding: 8px 10px 4px;
  font-size: 11px;
  color: #1d2a22;
}
.line-chart {
  margin: 0 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  height: 180px;
}
.chart-axis {
  display: flex;
  justify-content: space-between;
  padding: 4px 14px 0;
  font-size: 8.5px;
  color: var(--muted);
}

/* Order History (S6) */
.hist-daterow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 8px 10px;
  font-size: 10px;
  color: var(--primary-dark);
}
.hist-arrow {
  font-size: 14px;
  color: var(--muted);
}
.hist-date {
  font-weight: 600;
}

.hist-chips {
  display: flex;
  gap: 5px;
  padding: 6px 10px;
  background: white;
  border-bottom: 1px solid var(--border);
}

.hist-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 8px 10px;
  background: var(--primary-soft);
}
.hist-summary small {
  display: block;
  font-size: 8.5px;
  color: var(--muted);
}
.hist-summary strong {
  font-size: 12px;
}

.hist-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  padding: 7px 10px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.hist-no {
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-radius: 6px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 0;
}
.hist-row strong {
  display: block;
  font-size: 10.5px;
  color: #1d2a22;
}
.hist-amt {
  float: right;
}
.hist-row small {
  display: block;
  font-size: 8.5px;
  color: var(--muted);
  margin-top: 2px;
}
.status {
  background: #e0f2e0;
  color: var(--primary-dark);
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 4px;
}
.pay-mini {
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 4px;
}

.hist-day {
  padding: 6px 10px;
  background: var(--bg-soft);
  font-size: 10px;
  font-weight: 600;
  color: #1d2a22;
  display: flex;
  justify-content: space-between;
}
.hist-day em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
}
.hist-fab {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

/* Language (S7) */
.lang-list {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.lang-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 8px;
  background: var(--primary-soft);
  border-radius: 8px;
  padding: 7px 10px;
}
.lang-row strong {
  display: block;
  font-size: 11px;
  color: #1d2a22;
}
.lang-row small {
  display: block;
  font-size: 8.5px;
  color: var(--muted);
}
.lang-radio {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--muted);
  border-radius: 50%;
  position: relative;
}
.lang-row--active .lang-radio {
  border-color: var(--primary);
}
.lang-row--active .lang-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

/* Text-style brand footer (replaces logo) */
.brand-footer--text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.brand-footer--text .label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-footer__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.video-card__thumb {
  position: relative; /* Allows positioning play button and time over the image */
  overflow: hidden;
  border-radius: 8px; /* Optional: smooth corners */
  aspect-ratio: 16 / 9; /* Matches standard video format */
}

.video-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the area beautifully */
  display: block;
}

/* Ensure your play icon and time sit on top of the image */
.video-card__play,
.video-card__time {
  position: absolute;
  z-index: 1;
}
.store-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.coming-soon {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff3b30;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: blink 2s infinite;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}
