/* Mobile app shell — works on real phones AND admin phone preview (.mob-app on html) */

.mob-app {
  --app-bg: #F2F2F7;
  --app-card: #FFFFFF;
  --app-line: rgba(60, 60, 67, 0.12);
  --app-tab-h: 68px;
  --app-radius: 14px;
  --app-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --app-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  --app-shadow-lg: 0 8px 24px rgba(109, 40, 217, 0.14);
}

.mob-app body {
  background: var(--app-bg) !important;
  padding-bottom: calc(var(--app-tab-h) + env(safe-area-inset-bottom, 0px) + 12px) !important;
  font-size: 0.9375rem;
  font-weight: 500;
}

.mob-app .container {
  padding-inline: 16px;
}

.mob-app .cursor-glow,
.mob-app .sticky-quote,
.mob-app .whatsapp-btn {
  display: none !important;
}

/* ── Header: app bar ── */
.mob-app .header {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--app-line) !important;
  box-shadow: none !important;
}

.mob-app .header__actions .btn--sm,
.mob-app .header__phone,
.mob-app .header__actions .lang-select {
  display: none !important;
}

.mob-app .header .logo--ventra .logo__img {
  height: 42px;
}

.mob-app .burger {
  margin-left: auto;
}

/* ── Bottom tab bar ── */
.mob-app .mob-tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: flex;
  align-items: stretch;
  height: calc(var(--app-tab-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--app-line);
  pointer-events: auto;
  touch-action: manipulation;
}

.mob-app .mob-tabbar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: var(--app-tab-h);
  padding: 8px 4px 6px;
  text-decoration: none;
  color: #8E8E93;
  -webkit-tap-highlight-color: rgba(109, 40, 217, 0.12);
  touch-action: manipulation;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.mob-app .mob-tabbar__item * {
  pointer-events: none;
}

.mob-app .mob-tabbar__item:active {
  background: rgba(109, 40, 217, 0.06);
  opacity: 0.88;
}

.mob-app .mob-tabbar__item.is-active {
  color: #6D28D9;
}

.mob-app .mob-tabbar__item.is-active .mob-tabbar__icon {
  transform: scale(1.06);
}

.mob-app .mob-tabbar__item.is-active .mob-tabbar__icon::after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  margin: 3px auto 0;
  border-radius: 50%;
  background: currentColor;
}

.mob-app .mob-tabbar__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  line-height: 1;
  transition: transform 0.22s var(--app-ease);
}

.mob-app .mob-tabbar__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.mob-app .mob-tabbar__label {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.mob-app body.mobile-preview .mob-tabbar {
  position: absolute;
  left: 0;
  right: 0;
}

.mob-app body.mobile-preview .mobile-preview-frame {
  padding-bottom: calc(var(--app-tab-h) + 24px);
}

/* ── Footer: minimal ── */
.mob-app .footer {
  background: transparent !important;
  border: 0 !important;
  padding: 8px 0 4px !important;
}

.mob-app .footer__grid,
.mob-app .footer__legal {
  display: none !important;
}

.mob-app .footer__bottom {
  font-size: 0.75rem !important;
  color: #8E8E93;
}

/* ── Section pattern: iOS grouped lists ── */
.mob-app main .corp-section,
.mob-app main .page-section {
  background: transparent !important;
}

.mob-app .section-tag,
.mob-app .page-hero__lead {
  display: none !important;
}

.mob-app .corp-head {
  margin-bottom: 8px !important;
  padding: 8px 4px 0;
}

.mob-app .corp-head h2,
.mob-app .page-hero h1 {
  font-size: 1.375rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em;
  line-height: 1.2 !important;
  margin: 0 !important;
}

.mob-app .page-hero,
.mob-app .page-hero--rich {
  padding: calc(var(--header-h) + 12px) 0 8px !important;
  background: var(--app-bg) !important;
  border: 0 !important;
  animation: mob-fade-up 0.55s var(--app-ease) both;
}

.mob-app .page-back {
  font-size: 0.875rem;
  margin-bottom: 8px;
}

/* ═══ HOME — app home screen ═══ */
.mob-app body[data-page="home"] main {
  display: flex;
  flex-direction: column;
  background: var(--app-bg);
}

.mob-app body[data-page="home"] .corp-hero { order: 0; }
.mob-app body[data-page="home"] [data-section-block="services"] { order: 1; }
.mob-app body[data-page="home"] [data-section-block="portfolio"] { order: 2; }
.mob-app body[data-page="home"] [data-section-block="process"] { order: 3; }
.mob-app body[data-page="home"] [data-section-block="reviews"] { order: 4; }
.mob-app body[data-page="home"] [data-section-block="guarantee"] { order: 5; }
.mob-app body[data-page="home"] [data-section-block="pricing"] { order: 6; }
.mob-app body[data-page="home"] .corp-cta { order: 7; }

.mob-app body[data-page="home"] .corp-badge,
.mob-app body[data-page="home"] .corp-hero__highlights,
.mob-app body[data-page="home"] .corp-hero__price,
.mob-app body[data-page="home"] .corp-trust,
.mob-app body[data-page="home"] .corp-hero__features,
.mob-app body[data-page="home"] .corp-hero__visual,
.mob-app body[data-page="home"] .corp-stats-bar,
.mob-app body[data-page="home"] .corp-trustbar,
.mob-app body[data-page="home"] [data-section-block="logos"],
.mob-app body[data-page="home"] [data-section-block="freelance"],
.mob-app body[data-page="home"] [data-section-block="payments"],
.mob-app body[data-page="home"] [data-section-block="faq"],
.mob-app body[data-page="home"] .corp-services-note,
.mob-app body[data-page="home"] .corp-hero__mesh,
.mob-app body[data-page="home"] .corp-hero__grid-bg {
  display: none !important;
}

.mob-app body[data-page="home"] .corp-hero {
  min-height: auto !important;
  padding: 12px 0 8px !important;
  background:
    radial-gradient(ellipse 130% 90% at 50% -30%, rgba(109, 40, 217, 0.09), transparent 58%),
    var(--app-bg) !important;
  display: block !important;
}

.mob-app body[data-page="home"] .corp-hero__grid {
  padding: 0 !important;
}

.mob-app body[data-page="home"] .corp-hero h1 {
  font-size: clamp(1.75rem, 8vw, 2.125rem) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em;
  margin-bottom: 10px !important;
  animation: mob-fade-up 0.65s var(--app-ease) both;
}

.mob-app body[data-page="home"] .corp-hero__tail {
  display: block;
  margin-top: 4px;
  font-size: 0.5em;
  font-weight: 600;
  opacity: 0.85;
  animation: mob-fade-up 0.65s var(--app-ease) 0.05s both;
}

.mob-app body[data-page="home"] .corp-hero__desc {
  font-size: 0.9375rem !important;
  line-height: 1.5 !important;
  color: #636366 !important;
  margin-bottom: 20px !important;
  max-width: none !important;
  display: block;
  animation: mob-fade-up 0.65s var(--app-ease) 0.1s both;
}

.mob-app body[data-page="home"] .corp-hero__actions .btn--glass {
  display: none !important;
}

.mob-app body[data-page="home"] .corp-hero__actions .btn--primary {
  width: 100%;
  min-height: 50px;
  border-radius: var(--app-radius);
  font-size: 1rem !important;
  font-weight: 700 !important;
  box-shadow: var(--app-shadow-lg);
  transition: transform 0.16s var(--app-ease), box-shadow 0.16s var(--app-ease);
  animation: mob-fade-up 0.65s var(--app-ease) 0.16s both;
}

.mob-app body[data-page="home"] .corp-hero__actions .btn--primary:active {
  opacity: 0.92;
  box-shadow: 0 4px 12px rgba(109, 40, 217, 0.2);
}

.mob-app body[data-page="home"] .corp-hero__secondary {
  display: block;
  margin-top: 12px;
  text-align: center;
  animation: mob-fade-up 0.65s var(--app-ease) 0.22s both;
}

.mob-app body[data-page="home"] .corp-hero__secondary a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6D28D9;
  text-decoration: none;
}

/* Grouped list card */
.mob-app .mob-list {
  background: var(--app-card);
  border-radius: var(--app-radius);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.mob-app body[data-page="home"] .corp-services--five,
.mob-app body[data-page="home"] .corp-process,
.mob-app body[data-page="home"] .corp-guarantee,
.mob-app body[data-page="home"] .corp-pricing--compare {
  display: flex !important;
  flex-direction: column !important;
  background: var(--app-card);
  border-radius: var(--app-radius);
  overflow: hidden;
  gap: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: var(--app-shadow);
}

/* Сброс desktop grid-column — иначе карточки наезжают друг на друга */
.mob-app body[data-page="home"] .corp-services--five .corp-svc {
  grid-column: auto !important;
  grid-row: auto !important;
  width: 100%;
  flex: 0 0 auto;
}

.mob-app body[data-page="home"] .corp-svc--card {
  display: block !important;
  position: relative !important;
  height: auto !important;
  overflow: hidden;
}

.mob-app body[data-page="home"] .corp-svc__sheet {
  display: block !important;
  width: 100%;
}

.mob-app .corp-svc--card,
.mob-app .corp-process__step,
.mob-app .corp-guarantee__item,
.mob-app .corp-plan,
.mob-app .corp-fl-card {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  min-height: auto !important;
  border-bottom: 1px solid var(--app-line) !important;
  background: transparent !important;
  transition: background 0.2s var(--app-ease);
}

.mob-app .corp-svc--card:hover,
.mob-app .corp-process__step:hover,
.mob-app .portfolio-item:hover {
  transform: none !important;
  box-shadow: none !important;
}

.mob-app .corp-svc--card:last-child,
.mob-app .corp-process__step:last-child,
.mob-app .corp-guarantee__item:last-child,
.mob-app .corp-plan:last-child {
  border-bottom: none !important;
}

.mob-app .corp-svc__accent,
.mob-app .corp-svc__num {
  display: none !important;
}

.mob-app .corp-svc__summary,
.mob-app .corp-process__summary,
.mob-app .corp-guarantee__summary,
.mob-app .corp-plan__summary,
.mob-app .corp-fl-card__summary {
  padding: 14px 16px !important;
  min-height: 48px;
  transition: background 0.2s var(--app-ease), color 0.2s var(--app-ease);
}

.mob-app .mob-accordion details > summary {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(109, 40, 217, 0.1);
}

.mob-app .mob-accordion details > summary:active {
  background: rgba(109, 40, 217, 0.05);
}

.mob-app .mob-accordion details[open] > summary {
  background: #FAFAFF;
  color: #6D28D9;
}

.mob-app .mob-accordion details > summary::after {
  width: 20px;
  height: 20px;
  font-size: 0.8rem;
  border-radius: 50%;
  background: #EFEFF4;
  color: #6D28D9;
  transition: transform 0.22s var(--app-ease), background 0.2s ease, color 0.2s ease;
}

.mob-app .mob-accordion details[open] > summary::after {
  background: #6D28D9;
  color: #fff;
}

.mob-app .corp-svc__body,
.mob-app .corp-plan__body,
.mob-app .corp-fl-card__body {
  padding: 0 16px 14px !important;
  animation: mob-accordion-in 0.28s var(--app-ease) both;
}

/* Portfolio — horizontal cards */
.mob-app .corp-portfolio-home.portfolio-grid {
  display: flex !important;
  flex-direction: row !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px !important;
  padding: 4px 0 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12px, #000 calc(100% - 28px), transparent);
  mask-image: linear-gradient(to right, transparent, #000 12px, #000 calc(100% - 28px), transparent);
}

.mob-app .corp-portfolio-home.portfolio-grid::-webkit-scrollbar {
  display: none;
}

.mob-app .corp-portfolio-home .portfolio-item {
  flex: 0 0 82%;
  scroll-snap-align: start;
  border-radius: var(--app-radius);
  overflow: hidden;
  background: var(--app-card);
  box-shadow: var(--app-shadow);
  transition: transform 0.2s var(--app-ease), box-shadow 0.2s var(--app-ease);
}

.mob-app .corp-portfolio-home .portfolio-item:active {
  opacity: 0.94;
}

.mob-app body[data-page="home"] .corp-portfolio-home .portfolio-item:nth-child(n + 4) {
  display: none !important;
}

.mob-app .portfolio-item__img {
  aspect-ratio: 16 / 10;
}

.mob-app .corp-portfolio-home__more,
.mob-app .corp-reviews__more {
  text-align: center;
  margin-top: 8px;
}

.mob-app .corp-portfolio-home__more a,
.mob-app .corp-reviews__more a {
  color: #6D28D9;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
}

.mob-app body[data-page="home"] .corp-reviews .corp-review:nth-child(n + 2) {
  display: none !important;
}

.mob-app .corp-review,
.mob-app .review-card {
  background: var(--app-card);
  border-radius: var(--app-radius);
  border: none !important;
  box-shadow: var(--app-shadow);
}

.mob-app body[data-page="home"] .corp-cta {
  padding: 16px 0 8px !important;
  background: transparent !important;
  text-align: center;
}

.mob-app body[data-page="home"] .corp-cta h2 {
  font-size: 1.125rem !important;
}

.mob-app body[data-page="home"] .corp-cta p {
  display: none;
}

.mob-app body[data-page="home"] .corp-cta .btn {
  width: 100%;
  border-radius: var(--app-radius);
  min-height: 50px;
}

/* Internal pages */
.mob-app .about-split,
.mob-app .contact-layout {
  grid-template-columns: 1fr !important;
}

.mob-app .page-card,
.mob-app .contact-card {
  background: var(--app-card);
  border-radius: var(--app-radius);
  border: none !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Kill admin preview overrides that restore desktop mobile clutter */
.mob-app body.mobile-preview .corp-hero__visual,
.mob-app body.mobile-preview .corp-hero__features,
.mob-app body.mobile-preview .corp-stats-bar,
.mob-app body.mobile-preview .corp-trustbar {
  display: none !important;
}

.mob-app body.mobile-preview .corp-hero__grid {
  grid-template-columns: 1fr !important;
  min-height: auto !important;
  padding: 0 !important;
}

.mob-app body.mobile-preview .corp-stat {
  flex: none !important;
}

.mob-app body.mobile-preview .header__actions {
  display: none !important;
}

/* ── Burger menu — iOS grouped list ── */
.nav__group {
  display: contents;
}

.mob-app .nav-backdrop.is-visible {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
}

.mob-app .nav {
  top: var(--header-h) !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: auto !important;
  background: var(--app-bg) !important;
  padding: 12px 16px calc(var(--app-tab-h) + env(safe-area-inset-bottom, 0px) + 20px) !important;
  gap: 16px !important;
  transform: translateY(6px) !important;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease !important;
  box-shadow: none !important;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mob-app .nav.open {
  transform: translateY(0) !important;
  opacity: 1;
}

.mob-app .nav__group {
  display: flex;
  flex-direction: column;
  background: var(--app-card);
  border-radius: var(--app-radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.mob-app .nav__group a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px !important;
  min-height: 50px;
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  color: #475569 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid var(--app-line) !important;
  text-align: left;
}

.mob-app .nav__group a:last-child {
  border-bottom: none !important;
}

.mob-app .nav__group a.active {
  color: #6D28D9 !important;
  font-weight: 600 !important;
  background: #FAFAFF !important;
}

.mob-app .nav__group a::after {
  content: '›' !important;
  position: static !important;
  display: block !important;
  transform: none !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border-radius: 0 !important;
  color: #C7C7CC !important;
  font-size: 1.375rem !important;
  font-weight: 400 !important;
  line-height: 1;
  flex-shrink: 0;
}

.mob-app .nav__group a.active::after {
  color: #6D28D9 !important;
}

.mob-app .nav__drop {
  display: contents;
}

.mob-app .nav__drop-menu {
  display: contents;
}

.mob-app .nav__drop-trigger {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 15px 16px !important;
  min-height: 50px;
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  color: #475569 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid var(--app-line) !important;
  text-align: left;
}

.mob-app .nav__drop-trigger::before {
  display: none !important;
}

.mob-app .nav__drop-trigger::after {
  content: '›' !important;
  position: static !important;
  display: block !important;
  transform: none !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border-radius: 0 !important;
  color: #C7C7CC !important;
  font-size: 1.375rem !important;
  font-weight: 400 !important;
  line-height: 1;
  flex-shrink: 0;
  opacity: 1;
}

.mob-app .nav__drop-trigger.active {
  color: #6D28D9 !important;
  font-weight: 600 !important;
  background: #FAFAFF !important;
}

.mob-app .nav__drop-trigger.active::after {
  color: #6D28D9 !important;
}

.mob-app .nav-mobile-lang {
  display: block !important;
  margin-top: 0 !important;
  padding: 0 !important;
  border-top: none !important;
  background: var(--app-card);
  border-radius: var(--app-radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.mob-app .nav-mobile-lang label {
  display: block;
  padding: 12px 16px 4px;
  margin: 0 !important;
  font-size: 0.6875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8E8E93 !important;
}

.mob-app .nav-mobile-lang .lang-select {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 10px 36px 14px 16px !important;
  font-size: 1rem !important;
  font-weight: 500;
  color: #1C1C1E;
  border: none !important;
  border-radius: 0 !important;
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%238E8E93' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.mob-app body.mobile-preview .nav {
  position: absolute !important;
  top: var(--header-h) !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  max-height: none !important;
  height: auto !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: translateY(6px) !important;
}

.mob-app body.mobile-preview .nav.open {
  transform: translateY(0) !important;
}

/* ═══ Mobile motion & polish ═══ */
@keyframes mob-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mob-accordion-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mob-app .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s var(--app-ease),
    transform 0.55s var(--app-ease);
}

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

.mob-app .corp-section[data-section-block]:not(.mob-section-visible):not([data-section-block="hero"]),
.mob-app main .page-section:not(.mob-section-visible) {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--app-ease), transform 0.5s var(--app-ease);
}

.mob-app .corp-section.mob-section-visible,
.mob-app .page-section.mob-section-visible {
  opacity: 1;
  transform: translateY(0);
}

.mob-app .header {
  transition: box-shadow 0.25s var(--app-ease), background 0.25s var(--app-ease);
}

.mob-app .header.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06) !important;
}

.mob-app .btn--primary,
.mob-app .btn--outline {
  transition: transform 0.16s var(--app-ease), box-shadow 0.16s var(--app-ease);
}

.mob-app .btn--primary:active,
.mob-app .btn--outline:active {
  opacity: 0.92;
}

.mob-app a,
.mob-app button,
.mob-app summary,
.mob-app .filter-btn,
.mob-app .mob-tabbar__item {
  touch-action: manipulation;
}

.mob-app .nav__group a,
.mob-app .nav-mobile-lang .lang-select {
  transition: background 0.18s var(--app-ease);
}

.mob-app .nav__group a:active {
  background: #F2F2F7 !important;
}

.mob-app body.no-animations .reveal,
.mob-app body.no-animations .corp-hero h1,
.mob-app body.no-animations .corp-hero__desc,
.mob-app body.no-animations .corp-hero__tail,
.mob-app body.no-animations .corp-hero__actions .btn--primary,
.mob-app body.no-animations .corp-hero__secondary,
.mob-app body.no-animations .corp-section[data-section-block],
.mob-app body.no-animations main .page-section,
.mob-app body.no-animations .page-hero {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .mob-app *,
  .mob-app *::before,
  .mob-app *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .mob-app .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
