/* JamiGO brand system.
   Deliberately not Deliveroo teal, not Uber black-and-green, not Just Eat
   orange — and not SPEDALIS's own warm terracotta either. Navy + a fair-pay
   gold, receipt/stamp motifs: the whole pitch is "we show you the maths and
   take none of it," so the UI itself should look like an honest ledger, not
   a glossy lifestyle app. */
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@700;800;900&family=Work+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600;700&display=swap");

:root {
  --jg-navy: #10192e;
  --jg-navy-2: #1c2c4d;
  --jg-navy-soft: #33456f;
  --jg-gold: #d79a2c;
  --jg-gold-2: #f0b94a;
  --jg-paper: #fbf5e8;
  --jg-card: #fffdf8;
  --jg-line: #e4d7ba;
  --jg-ink: #191509;
  --jg-muted: #746b58;
  --jg-olive: #4f6b3a;
  --jg-danger: #a63b2e;
  --jg-danger-bg: #fbeae6;
  --jg-danger-line: #e6c3ba;
  --jg-warn: #8a5a12;
  --jg-warn-bg: #fbf0da;
  --jg-warn-line: #e9d09a;
  --jg-font-display: "Archivo", "Arial Black", sans-serif;
  --jg-font: "Work Sans", "Segoe UI", sans-serif;
  --jg-font-mono: "IBM Plex Mono", "Courier New", monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--jg-font);
  color: var(--jg-ink);
  background: var(--jg-paper);
}

/* Faint ledger-rule texture behind the app content — visible but quiet. */
body.jg-ruled {
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 34px,
    rgba(16, 25, 46, 0.05) 34px,
    rgba(16, 25, 46, 0.05) 35px
  );
}

h1, h2, h3 {
  font-family: var(--jg-font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
}

a { color: var(--jg-navy); }

.jg-app {
  max-width: 520px;
  margin: 0 auto;
  padding: calc(16px + env(safe-area-inset-top)) 16px calc(48px + env(safe-area-inset-bottom));
}

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

.jg-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  font-family: var(--jg-font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.jg-wordmark .jg-wordmark-go {
  color: var(--jg-gold);
}

.jg-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: var(--jg-navy-soft);
  font-weight: 700;
  font-family: var(--jg-font-mono);
}

.jg-top h1 {
  margin: 4px 0 0;
  font-size: clamp(2rem, 8vw, 2.6rem);
  color: var(--jg-navy);
}

.jg-top h1 .jg-wordmark-go { color: var(--jg-gold); }

.jg-panel {
  background: var(--jg-card);
  border: 1px solid var(--jg-line);
  border-radius: 4px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(16, 25, 46, 0.08);
}

.jg-panel h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--jg-navy);
}

.jg-muted, .jg-hint {
  color: var(--jg-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.jg-message {
  background: var(--jg-warn-bg);
  border: 1px solid var(--jg-warn-line);
  color: var(--jg-warn);
  padding: 10px 12px;
  border-radius: 4px;
  margin: 0 0 14px;
  font-weight: 600;
}

.jg-message.is-error {
  background: var(--jg-danger-bg);
  border-color: var(--jg-danger-line);
  color: var(--jg-danger);
}

.jg-message.is-success {
  background: #f1f6ec;
  border-color: #cddcbe;
  color: var(--jg-olive);
}

.jg-form {
  display: grid;
  gap: 10px;
}

.jg-form label {
  display: grid;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--jg-navy);
}

.jg-form input {
  border: 1px solid var(--jg-line);
  border-radius: 4px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  color: var(--jg-ink);
}

.jg-form input:focus {
  outline: 2px solid var(--jg-gold);
  outline-offset: 1px;
}

.jg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.jg-btn, .jg-ghost {
  border: 0;
  border-radius: 4px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--jg-font-display);
  letter-spacing: 0.01em;
}

.jg-btn {
  background: var(--jg-navy);
  color: var(--jg-gold-2);
  box-shadow: 3px 3px 0 var(--jg-gold);
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}

.jg-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--jg-gold);
}

.jg-btn.secondary {
  background: #efe4c8;
  color: var(--jg-navy);
  box-shadow: none;
}

.jg-btn.warn {
  background: var(--jg-warn-bg);
  color: var(--jg-warn);
  box-shadow: none;
}

.jg-ghost {
  background: transparent;
  color: var(--jg-muted);
  text-decoration: underline;
  font-family: var(--jg-font);
  font-weight: 600;
}

.jg-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eaf1e2;
  color: var(--jg-olive);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--jg-font-mono);
}

.jg-status.is-offline {
  background: #ece8dd;
  color: var(--jg-muted);
}

.jg-card {
  border: 1px solid var(--jg-line);
  border-radius: 4px;
  padding: 14px;
  margin-top: 12px;
  background: #fff;
}

.jg-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
  font-family: var(--jg-font-display);
}

.jg-money {
  font-family: var(--jg-font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--jg-navy);
}

.jg-tabs {
  display: flex;
  gap: 8px;
  margin: 16px 0 8px;
}

.jg-tabs button {
  flex: 1;
  border: 1px solid var(--jg-line);
  background: #fff;
  border-radius: 4px;
  padding: 10px;
  font: inherit;
  font-weight: 700;
  color: var(--jg-muted);
  cursor: pointer;
}

.jg-tabs button.is-active {
  background: var(--jg-navy);
  border-color: var(--jg-navy);
  color: var(--jg-gold-2);
}

.jg-install {
  background: var(--jg-navy);
  color: #f3ecd8;
  border-radius: 4px;
  padding: 14px 16px;
  margin: 0 0 14px;
  border: 1px solid var(--jg-navy-2);
}

.jg-install .jg-hint,
.jg-install .jg-ghost {
  color: #c7cfe0;
}

.jg-home-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.jg-sticky-bar {
  position: sticky;
  top: env(safe-area-inset-top);
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 4px;
  padding: 10px 0;
  background: linear-gradient(180deg, rgba(251,245,232,0.98), rgba(251,245,232,0.9));
}

.jg-btn-lg {
  min-height: 52px;
  font-size: 1.05rem;
  padding: 14px 18px;
  width: 100%;
}

.jg-actions-stack {
  flex-direction: column;
}

.jg-actions-stack .jg-btn,
.jg-actions-stack .jg-btn-lg,
.jg-actions-stack a.jg-btn {
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.jg-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #efe4c8;
  color: var(--jg-navy);
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--jg-font-mono);
}

.jg-checklist {
  margin-top: 14px;
  padding: 14px;
  border: 1px dashed var(--jg-line);
  border-radius: 4px;
  background: #fff;
}

.jg-checklist h3 {
  margin: 0 0 4px;
  color: var(--jg-navy);
}

.jg-checklist ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.jg-checklist li {
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid var(--jg-line);
}

.jg-checklist li.is-done {
  border-color: var(--jg-olive);
  background: #f1f6ec;
}

.jg-checklist li > span {
  font-weight: 700;
  color: var(--jg-navy);
}

.jg-checklist button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.jg-card-offer,
.jg-card-active {
  border-color: var(--jg-gold);
  box-shadow: 2px 2px 0 var(--jg-gold);
}

.jg-status-label {
  text-transform: capitalize;
}

/* —— The seal: JamiGO's one recurring mark. A stamp, not a logo lockup —
   because the entire brand claim is "verified fair," not "look how slick
   we are." Used on both marketing pages and in-app. —— */
.jg-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 108px;
  height: 108px;
  border-radius: 999px;
  border: 3px solid var(--jg-gold);
  color: var(--jg-gold-2);
  background: var(--jg-navy);
  font-family: var(--jg-font-mono);
  text-align: center;
  line-height: 1.15;
  transform: rotate(-6deg);
  flex-shrink: 0;
}

.jg-seal strong {
  display: block;
  font-family: var(--jg-font-display);
  font-size: 1.5rem;
  color: var(--jg-gold-2);
}

.jg-seal span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* —— Receipt: itemised, monospace, torn edge. The core visual device for
   "here is exactly where the money goes." —— */
.jg-receipt {
  background: #fff;
  border: 1px solid var(--jg-line);
  border-radius: 2px;
  padding: 18px 16px 22px;
  font-family: var(--jg-font-mono);
  box-shadow: 0 14px 30px rgba(16, 25, 46, 0.1);
  position: relative;
}

.jg-receipt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--jg-paper) 0 7px,
    transparent 7px 14px
  );
  background-size: 14px 14px;
}

.jg-receipt-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--jg-line);
  font-size: 0.92rem;
}

.jg-receipt-row:last-child { border-bottom: 0; }

.jg-receipt-row.jg-receipt-total {
  border-top: 2px solid var(--jg-ink);
  border-bottom: 0;
  margin-top: 4px;
  padding-top: 10px;
  font-weight: 700;
  font-size: 1.05rem;
}

.jg-receipt-row .jg-receipt-you {
  color: var(--jg-olive);
  font-weight: 700;
}

.jg-receipt-row .jg-receipt-them {
  color: var(--jg-danger);
  text-decoration: line-through;
}

.jg-join-body {
  min-height: 100vh;
}

.jg-join {
  max-width: 560px;
  margin: 0 auto;
  padding: calc(28px + env(safe-area-inset-top)) 20px calc(48px + env(safe-area-inset-bottom));
}

.jg-join-hero {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 8px;
}

.jg-join h1 {
  margin: 6px 0 10px;
  font-size: clamp(2.4rem, 11vw, 3.2rem);
  line-height: 1.02;
  color: var(--jg-navy);
}

.jg-join-lead {
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--jg-ink);
  max-width: 26rem;
  margin: 0 0 22px;
}

.jg-join-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  text-decoration: none;
  margin-bottom: 22px;
}

.jg-join-card {
  margin-top: 14px;
}

.jg-join-card h2 {
  margin-top: 0;
  color: var(--jg-navy);
}

.jg-steps {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--jg-muted);
  line-height: 1.5;
}

.jg-steps li {
  margin-bottom: 10px;
}

.jg-steps ul {
  margin: 6px 0 0;
  padding-left: 1.1rem;
}

.jg-join-qr img {
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
  background: #fff;
  padding: 8px;
  border: 1px solid var(--jg-line);
}

/* —— Live maps (driver + customer track) —— */
.jg-home {
  display: grid;
  gap: 0;
}

.jg-map-shell {
  position: relative;
  height: min(42vh, 340px);
  min-height: 220px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--jg-line);
  box-shadow: 0 10px 30px rgba(16, 25, 46, 0.1);
  background: var(--jg-navy-2);
}

.jg-map-shell-full {
  height: min(52vh, 420px);
  min-height: 260px;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.jg-map {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.jg-map-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 500;
  background: rgba(16, 25, 46, 0.92);
  border: 1px solid var(--jg-navy-soft);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--jg-gold-2);
  font-family: var(--jg-font-mono);
  box-shadow: 0 4px 14px rgba(16, 25, 46, 0.2);
  max-width: calc(100% - 24px);
}

.jg-sheet {
  margin-top: -18px;
  position: relative;
  z-index: 2;
  background: var(--jg-card);
  border: 1px solid var(--jg-line);
  border-radius: 8px 8px 4px 4px;
  padding: 18px 16px 8px;
  box-shadow: 0 -8px 28px rgba(16, 25, 46, 0.1);
}

.jg-track-body {
  background: var(--jg-navy);
}

.jg-track-app {
  max-width: 640px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.jg-track-sheet {
  flex: 1;
  margin-top: -24px;
  position: relative;
  z-index: 2;
  background: var(--jg-card);
  border-radius: 10px 10px 0 0;
  padding: 20px 18px calc(28px + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 32px rgba(16, 25, 46, 0.18);
}

.jg-track-head h1 {
  margin: 4px 0 6px;
  font-size: clamp(1.45rem, 5vw, 1.85rem);
  color: var(--jg-navy);
}

.jg-eta {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--jg-navy-soft);
  font-family: var(--jg-font-mono);
}

.jg-progress-steps {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.jg-progress-steps li {
  position: relative;
  padding: 8px 10px 8px 34px;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--jg-muted);
  background: #f6efdd;
}

.jg-progress-steps li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--jg-line);
}

.jg-progress-steps li.is-done {
  color: var(--jg-navy);
}

.jg-progress-steps li.is-done::before {
  background: var(--jg-olive);
}

.jg-progress-steps li.is-active {
  font-weight: 700;
  color: var(--jg-ink);
  background: #f0e4c4;
}

.jg-progress-steps li.is-active::before {
  background: var(--jg-gold);
  box-shadow: 0 0 0 4px rgba(215, 154, 44, 0.25);
}

.jg-map-marker {
  background: transparent !important;
  border: 0 !important;
}

.jg-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(16, 25, 46, 0.3);
}

.jg-pin-store {
  background: var(--jg-navy);
  color: var(--jg-gold-2);
}

.jg-pin-drop {
  background: #fff;
  color: var(--jg-navy);
  border: 2px solid var(--jg-navy);
  font-size: 0.7rem;
}

.jg-pin-driver {
  background: var(--jg-gold);
  color: var(--jg-navy);
  font-size: 1.15rem;
  border: 3px solid #fff;
}

.jg-pin-self {
  background: #2f5fd6;
  color: #fff;
  border: 3px solid #fff;
  font-size: 0.7rem;
}

/* —— Restaurant landing page —— */
.jg-biz-body {
  background: var(--jg-paper);
}

.jg-biz {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.jg-biz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(18px + env(safe-area-inset-top)) 0 18px;
}

.jg-biz-nav a.jg-btn {
  text-decoration: none;
  padding: 10px 18px;
  font-size: 0.9rem;
}

.jg-hero {
  display: grid;
  gap: 36px;
  padding: 28px 0 52px;
}

.jg-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--jg-font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jg-danger);
  background: var(--jg-danger-bg);
  border: 1px solid var(--jg-danger-line);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.jg-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  line-height: 1.02;
  color: var(--jg-navy);
  margin: 0 0 20px;
  max-width: 18ch;
}

.jg-hero h1 mark {
  background: none;
  color: var(--jg-navy);
  text-decoration: underline;
  text-decoration-color: var(--jg-gold);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.06em;
}

.jg-hero-lead {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--jg-ink);
  max-width: 38ch;
  margin: 0 0 26px;
}

.jg-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.jg-hero-ctas a.jg-btn {
  text-decoration: none;
  padding: 15px 24px;
  font-size: 1.02rem;
}

.jg-hero-fine {
  font-size: 0.85rem;
  color: var(--jg-muted);
}

.jg-hero-visual {
  display: flex;
  justify-content: center;
}

.jg-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 48px 0;
}

.jg-stat {
  background: var(--jg-card);
  border: 1px solid var(--jg-line);
  border-radius: 4px;
  padding: 18px 16px;
  text-align: left;
}

.jg-stat strong {
  display: block;
  font-family: var(--jg-font-mono);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  color: var(--jg-navy);
  line-height: 1;
  margin-bottom: 6px;
}

.jg-stat span {
  font-size: 0.85rem;
  color: var(--jg-muted);
  line-height: 1.35;
  display: block;
}

.jg-section {
  padding: 44px 0;
  border-top: 1px solid var(--jg-line);
}

.jg-section-head {
  max-width: 44ch;
  margin: 0 0 28px;
}

.jg-section-head .jg-eyebrow { margin-bottom: 10px; }

.jg-section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  color: var(--jg-navy);
  margin: 0 0 10px;
}

.jg-section-head p {
  color: var(--jg-muted);
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
}

.jg-compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--jg-card);
  border: 1px solid var(--jg-line);
  border-radius: 4px;
  overflow: hidden;
  font-size: 0.95rem;
}

.jg-compare th, .jg-compare td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--jg-line);
}

.jg-compare thead th {
  font-family: var(--jg-font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--jg-muted);
  background: #f6efdd;
}

.jg-compare tbody th {
  font-weight: 700;
  color: var(--jg-navy);
  white-space: nowrap;
}

.jg-compare .jg-compare-us {
  background: rgba(215, 154, 44, 0.08);
}

.jg-compare .jg-good { color: var(--jg-olive); font-weight: 700; }
.jg-compare .jg-bad { color: var(--jg-danger); }
.jg-compare-scroll { overflow-x: auto; }

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

.jg-feature-card {
  background: var(--jg-card);
  border: 1px solid var(--jg-line);
  border-radius: 4px;
  padding: 20px;
}

.jg-feature-card .jg-feature-num {
  font-family: var(--jg-font-mono);
  color: var(--jg-gold);
  font-weight: 700;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
}

.jg-feature-card h3 {
  margin: 0 0 8px;
  color: var(--jg-navy);
  font-size: 1.1rem;
}

.jg-feature-card p {
  margin: 0;
  color: var(--jg-muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.jg-quote {
  background: var(--jg-navy);
  color: #f3ecd8;
  border-radius: 4px;
  padding: 32px 28px;
  display: grid;
  gap: 16px;
}

.jg-quote p {
  font-family: var(--jg-font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  line-height: 1.3;
  margin: 0;
  max-width: 42ch;
}

.jg-quote footer {
  font-family: var(--jg-font-mono);
  font-size: 0.85rem;
  color: var(--jg-gold-2);
}

.jg-cta-band {
  background: var(--jg-navy);
  border-radius: 4px;
  padding: 40px 28px;
  text-align: center;
  color: #f3ecd8;
}

.jg-cta-band h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  margin: 0 0 12px;
}

.jg-cta-band p {
  color: #cfd6e6;
  max-width: 40ch;
  margin: 0 auto 22px;
  line-height: 1.5;
}

.jg-contact-form {
  max-width: 480px;
  margin: 24px auto 0;
  display: grid;
  gap: 12px;
  text-align: left;
}

.jg-contact-form label {
  display: grid;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f3ecd8;
}

.jg-contact-form input,
.jg-contact-form textarea {
  border: 1px solid var(--jg-navy-soft);
  border-radius: 4px;
  padding: 12px 14px;
  font: inherit;
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.jg-contact-form input::placeholder,
.jg-contact-form textarea::placeholder {
  color: #8b94ac;
}

.jg-contact-form input:focus,
.jg-contact-form textarea:focus {
  outline: 2px solid var(--jg-gold);
}

.jg-biz-footer {
  padding: 36px 0 10px;
  color: var(--jg-muted);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .jg-stat-row { grid-template-columns: 1fr; }
  .jg-cards-3 { grid-template-columns: 1fr; }
  .jg-hero-visual { display: none; }
}

@media (min-width: 720px) {
  .jg-app {
    max-width: 640px;
  }
  .jg-map-shell {
    height: 380px;
  }
}
