/* ── OrderNow SEO Landing Pages — Digital QR Menu Design Match ────────────── */

:root {
  --blue: #455EEB;
  --blue-strong: #153EEB;
  --blue-soft: #EEF3FF;
  --ink: #080D1A;
  --muted: #607086;
  --line: #DDE6F7;
  --green: #22C55E;
  --bg: #F7FAFF;
  --card: #FFFFFF;
  --shadow: 0 22px 60px rgba(20, 33, 70, 0.12);
  --shadow-soft: 0 14px 38px rgba(20, 33, 70, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;

  /* Aliases */
  --navy: #080D1A;
  --soft: #EEF3FF;
  --blue2: #153EEB;
  --text: #4A5568;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumbs a {
  color: var(--blue-strong);
  text-decoration: none;
  transition: color 0.15s ease;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Hero Section (Matches digital-qr-menu) */
main .hero {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(69,94,235,.15), transparent 30%),
    radial-gradient(circle at 22% 10%, rgba(34,197,94,.08), transparent 25%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FAFF 100%);
}
main .hero::after {
  content: "";
  position: absolute;
  right: -220px;
  top: 120px;
  width: 560px;
  height: 560px;
  background: rgba(69,94,235,.07);
  border-radius: 999px;
  filter: blur(5px);
  pointer-events: none;
}
main .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
main .hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(36px, 4.3vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--ink);
  font-weight: 900;
}
main .hero .lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.58;
  max-width: 620px;
}
main .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}
main .hero-actions .btn {
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
main .hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(69,94,235,.28);
  border: none;
}
main .hero-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(69,94,235,.36);
}
main .hero-actions .btn-secondary {
  background: #ffffff;
  color: var(--blue-strong);
  border: 1px solid #BFD0FF;
  box-shadow: 0 4px 14px rgba(20,33,70,.06);
}
main .hero-actions .btn-secondary:hover {
  background: #F4F7FF;
  transform: translateY(-2px);
}

/* Eyebrow badge with glowing pulse dot */
.eyebrow, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border: 1px solid #C9D7FF;
  background: linear-gradient(180deg, #FFFFFF, #F4F7FF);
  border-radius: 999px;
  color: #153EA8;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(69, 94, 235, 0.06);
}
.eyebrow::before, .section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  display: inline-block;
  flex-shrink: 0;
}

/* Hero Stats / Facts (Styled like stat-card on digital-qr-menu) */
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
  max-width: 620px;
}
.fact {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 16px;
  box-shadow: 0 10px 30px rgba(24, 39, 75, .06);
  transition: transform .2s ease;
}
.fact:hover {
  transform: translateY(-2px);
}
.fact strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 4px;
}
.fact span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

/* Hero Media Frame */
main .hero-media {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(20, 33, 70, 0.12);
}
main .hero-media img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  display: block;
}
main .hero-media:after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(69, 94, 235, 0.14), rgba(34, 197, 94, 0.08));
  z-index: -1;
}

/* Section Containers & Typography */
main .section {
  padding: 88px 0;
}
main .section-soft {
  background: var(--bg);
}
main h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 16px;
}
main h3 {
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-weight: 800;
}
main .lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.62;
  margin: 0;
}

/* Two Column Layouts (Matching digital-qr-menu seo-content-grid) */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}
.two-col.reverse .content {
  order: 2;
}
.two-col.reverse .media {
  order: 1;
}
.content p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}
.media {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(20, 33, 70, 0.08);
}
.media img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  display: block;
}

/* Direct Answer Definition Box (Executive Insight Card) */
.definition-box {
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #F4F7FF 0%, #FFFFFF 100%);
  border: 1px solid #C9D7FF;
  box-shadow: 0 12px 32px rgba(69, 94, 235, 0.07);
  color: #2D3A52;
  font-size: 16px;
  line-height: 1.72;
  margin: 24px 0;
}
.definition-box strong {
  color: var(--blue-strong);
  font-weight: 800;
}

/* Keyword Chips (Matching mini-chip on digital-qr-menu) */
.keyword-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #F3F6FF;
  color: #2541B2;
  font-size: 12.5px;
  font-weight: 800;
  border: 1px solid #D8E3FF;
  box-shadow: 0 2px 6px rgba(69, 94, 235, 0.04);
  transition: transform .15s ease, background .15s ease;
}
.chip:hover {
  transform: translateY(-1px);
  background: #E8EEFF;
}

/* Card Grids (Matching pain-cards & modules-grid on digital-qr-menu) */
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 20px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: 0 10px 32px rgba(22, 34, 67, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(20, 33, 70, 0.1);
  border-color: #BFD0FF;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-weight: 800;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.62;
}

/* Pain Cards with Amber Indicator */
.pain-card {
  position: relative;
  padding-left: 32px;
}
.pain-card:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(180deg, #F59E0B, #D97706);
  left: 0;
  top: 4px;
}

/* Feature Numbers (Matching card-icon on digital-qr-menu) */
.card-number {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue-strong);
  font-weight: 900;
  font-size: 17px;
  margin-bottom: 18px;
  border: 1px solid rgba(69, 94, 235, 0.14);
  box-shadow: 0 4px 12px rgba(69, 94, 235, 0.08);
}

/* Workflow Steps with Timeline Track */
.workflow {
  counter-reset: steps;
  margin-top: 24px;
}
.workflow .step {
  position: relative;
  padding: 0 0 34px 62px;
}
.workflow .step:before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  color: #ffffff;
  font-weight: 900;
  font-size: 15px;
  box-shadow: 0 8px 22px rgba(69, 94, 235, 0.32);
}
.workflow .step:not(:last-child):after {
  content: "";
  position: absolute;
  left: 20px;
  top: 48px;
  bottom: 4px;
  width: 2px;
  background: var(--line);
}
.workflow .step h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--ink);
  font-weight: 800;
}
.workflow .step p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

/* Use Cases Section (Premium Deep Tech SaaS Atmosphere) */
main .section-dark {
  background: radial-gradient(circle at 80% 20%, #152A50 0%, #081124 100%) !important;
  color: #DDE6F7 !important;
  position: relative;
  overflow: hidden;
}
main .section-dark::before {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -150px;
  width: 450px;
  height: 450px;
  background: rgba(69, 94, 235, 0.12);
  border-radius: 999px;
  filter: blur(40px);
  pointer-events: none;
}
main .section-dark h2,
main .section-dark h3 {
  color: #ffffff !important;
}
main .section-dark .section-label {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #93B4FF !important;
}
main .section-dark .section-label:before {
  background: var(--green) !important;
}
main .section-dark .card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(12px);
  color: #CBD7ED !important;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25) !important;
}
main .section-dark .card:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(147, 180, 255, 0.4) !important;
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35) !important;
}
main .section-dark .card h3 {
  color: #ffffff !important;
}
main .section-dark .card p {
  color: #CBD7ED !important;
}

/* Comparison Framework (Matches compare-panel on digital-qr-menu) */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.comparison .side:first-child {
  padding: 30px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid #C7D6FF;
  background: linear-gradient(180deg, #FFFFFF 0%, #EEF4FF 100%);
  box-shadow: 0 14px 40px rgba(69, 94, 235, 0.08);
}
.comparison .side:last-child {
  padding: 30px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid #E2E8F0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.comparison .side h3 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.comparison ul, .checklist {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
}
.comparison .side:first-child .checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #15803D;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
}
.comparison .side:last-child .checklist li:before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FEE2E2;
  color: #B91C1C;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 11px;
}

/* FAQ Accordion (Clean OrderNow FAQ style) */
.faq {
  border-top: 1px solid var(--line);
  max-width: 940px;
  margin: 32px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 0.15s ease;
}
.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 22px 0;
  font-weight: 800;
  color: var(--ink);
  font-size: 17.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  transition: color 0.15s ease;
}
.faq-q:hover {
  color: var(--blue-strong);
}
.faq-q span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-strong);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q span {
  transform: rotate(45deg);
  background: var(--blue-strong);
  color: #ffffff;
}
.faq-a {
  display: none;
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  display: block;
}

/* CTA Banner (Matching proof-main & cta on digital-qr-menu) */
.cta {
  padding: 56px 60px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-strong) 100%);
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  box-shadow: 0 24px 70px rgba(69, 94, 235, 0.32);
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
}
.cta h2 {
  color: #ffffff !important;
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
}
.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.6;
  max-width: 640px;
}
.cta .btn {
  background: #ffffff;
  color: var(--blue-strong);
  border: none;
  min-height: 56px;
  padding: 0 36px;
  font-weight: 800;
  font-size: 16px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

/* Related Solutions Cards */
.related a {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink);
  font-weight: 800;
  font-size: 18px;
  background: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(20, 33, 70, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.related a:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 16px 36px rgba(69, 94, 235, 0.12);
}
.related a span {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 13.5px;
  margin-top: 8px;
  line-height: 1.4;
}

/* Fix Sticky Header Scroll Collision for all targeted anchor sections */
html {
  scroll-padding-top: 96px;
}

section[id] {
  scroll-margin-top: 96px;
}

/* Longform Layout & Centered Prose */
.longform-layout {
  display: block;
  max-width: 880px;
  margin-inline: auto;
}

.longform-layout aside {
  display: contents;
}

/* True Floating Page Navigator (TOC) */
.toc {
  position: fixed;
  top: 115px;
  right: 28px;
  width: 215px;
  z-index: 95;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(221, 230, 247, 0.95);
  border-radius: 18px;
  padding: 14px 12px;
  box-shadow: 0 14px 35px rgba(20, 33, 70, 0.08), 0 2px 8px rgba(20, 33, 70, 0.04);
  transition: all 0.22s ease;
}

.toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 6px 8px 6px;
  border-bottom: 1px solid #EDF2F9;
  margin-bottom: 6px;
}

.toc strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #172037;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1;
}

.toc strong::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue, #2440B8);
}

.toc-toggle-btn {
  display: none;
  background: none;
  border: none;
  color: #718096;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  line-height: 1;
}

.toc-nav-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.toc a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 9px;
  color: #5A6B8A;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  cursor: pointer;
}

.toc a:hover {
  background: #F0F4FE;
  color: var(--blue, #2440B8);
  transform: translateX(2px);
}

/* Active section highlight (ScrollSpy) */
.toc a.active {
  background: #EEF3FE;
  color: var(--blue, #2440B8);
  font-weight: 750;
}

.toc a.active::after {
  content: '•';
  font-size: 14px;
  color: var(--blue, #2440B8);
  line-height: 1;
}

/* Compact / Collapsed Mode on screens < 1360px */
@media (max-width: 1359px) {
  .toc {
    top: auto;
    bottom: 24px;
    right: auto;
    left: 24px;
    width: auto;
    max-width: 260px;
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
  }

  .toc.is-collapsed {
    border-radius: 999px;
    padding: 9px 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 24px rgba(20, 33, 70, 0.12);
  }

  .toc.is-collapsed .toc-header {
    border-bottom: none;
    margin-bottom: 0;
    padding: 0;
  }

  .toc.is-collapsed .toc-toggle-btn {
    display: inline-flex;
    margin-left: 8px;
    transform: rotate(180deg);
  }

  .toc.is-collapsed .toc-nav-list {
    display: none;
  }

  .toc.is-expanded {
    border-radius: 18px;
    padding: 14px 12px;
    width: 220px;
    max-width: 90vw;
  }

  .toc.is-expanded .toc-header {
    border-bottom: 1px solid #EDF2F9;
    margin-bottom: 8px;
    padding: 2px 6px 8px 6px;
  }

  .toc.is-expanded .toc-toggle-btn {
    display: inline-flex;
    transform: rotate(0deg);
  }

  .toc.is-expanded .toc-nav-list {
    display: flex;
  }
}

@media (max-width: 768px) {
  .toc {
    bottom: 88px;
    left: 16px;
  }
}
.prose h2 {
  margin-top: 48px;
  color: var(--ink);
  font-size: clamp(26px, 2.8vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.prose h3 {
  margin-top: 32px;
  color: var(--ink);
  font-size: 21px;
  letter-spacing: -0.02em;
}
.prose p {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}
.prose ul {
  margin-bottom: 24px;
  padding-left: 20px;
}
.prose li {
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.65;
}

/* Responsive Media Queries */
@media (max-width: 940px) {
  main .hero-grid, 
  .two-col, 
  .longform-layout, 
  .cta {
    grid-template-columns: 1fr !important;
  }
  .two-col.reverse .content, 
  .two-col.reverse .media {
    order: initial !important;
  }
  .hero-facts, 
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr !important;
  }
  main .hero-media:after {
    display: none;
  }
}

@media (max-width: 620px) {
  main .hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  main .section {
    padding: 56px 0;
  }
  .hero-facts, 
  .grid-2, 
  .grid-3, 
  .grid-4, 
  .comparison {
    grid-template-columns: 1fr !important;
  }
  main .hero h1 {
    font-size: 32px !important;
  }
  .cta {
    padding: 36px 24px !important;
  }
}
