.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(16px, 5vw, 68px);
  background: rgba(42, 42, 43, 0.62);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

[data-theme="light"] .navbar {
  background: rgba(245, 245, 245, 0.78);
}

.nav-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 900;
}

.logo-text b {
  color: var(--text-secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  list-style: none;
}

.nav-links a {
  position: relative;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto auto -7px 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width var(--transition-fast);
}

html[dir="rtl"] .nav-links a::after {
  right: 0;
  left: auto;
}

.nav-links a:hover::after {
  width: 100%;
}

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

.icon-btn,
.mobile-toggle,
.carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--text-primary);
  background: var(--glass-bg);
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.icon-btn:hover,
.mobile-toggle:hover,
.carousel-btn:hover {
  transform: translateY(-2px);
  border-color: var(--accent-primary);
}

.lang-toggle {
  width: auto;
  min-width: 66px;
  gap: 6px;
  padding-inline: 12px;
  font-size: 0.82rem;
  font-weight: 900;
}

.mobile-toggle,
.mobile-menu {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: var(--nav-height) 0 0;
  z-index: 999;
  padding: 32px;
  background: rgba(30, 30, 31, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
}

.mobile-menu .btn {
  color: #000;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

#three-canvas,
.hero-grid-overlay {
  position: absolute;
  inset: 0;
}

#three-canvas {
  z-index: -2;
}

.hero-grid-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 72% 42%, rgba(189, 229, 0, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(42, 42, 43, 0.35), var(--bg-primary) 62%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.72fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}

.hero-title {
  display: grid;
  gap: 4px;
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.2vw, 6.6rem);
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 32px;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  justify-self: end;
  width: min(100%, 430px);
  transform: perspective(900px) rotateY(-12deg) rotateX(8deg);
}

html[dir="rtl"] .hero-panel {
  transform: perspective(900px) rotateY(12deg) rotateX(8deg);
}

.parking-map {
  padding: 20px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: rgba(30, 30, 31, 0.78);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38), 0 0 54px var(--accent-glow);
}

.map-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--text-secondary);
}

.map-top strong {
  color: var(--accent-primary);
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.slot-grid span {
  aspect-ratio: 1.8;
  border-radius: 5px;
  background: #555B62;
  border: 1px solid rgba(255,255,255,0.08);
}

.slot-grid .free {
  background: var(--accent-primary);
  box-shadow: 0 0 18px var(--accent-glow);
}

.slot-grid .pulse {
  animation: slotPulse 1s infinite alternate;
}

@keyframes slotPulse {
  to { transform: scale(1.04); opacity: 0.72; }
}

.hero-stats {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
}

.stat-chip strong {
  color: var(--accent-primary);
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--accent-primary);
  background: var(--glass-bg);
  animation: bounceDown 1.3s infinite;
}

@keyframes bounceDown {
  50% { transform: translate(-50%, 8px); }
  0%, 100% { transform: translate(-50%, 0); }
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
}

.pain-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}



.pain-card {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
}

.pain-card svg {
  color: var(--error);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.pain-card > div {
  min-width: 0;
  flex: 1;
}

.pain-card p,
.feature-card p,
.tech-card p,
.timeline-step p {
  color: var(--text-secondary);
}

.solution-line {
  margin-top: 26px;
  color: var(--accent-primary);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.crisis-visual {
  perspective: 900px;
}

.road-card {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,0.18) 49%, rgba(255,255,255,0.18) 51%, transparent 52%),
    linear-gradient(145deg, #1E1E1F, #3A3B3B);
  transform: rotateX(58deg) rotateZ(-17deg);
  box-shadow: 0 45px 70px rgba(0, 0, 0, 0.38);
}

.moving-car {
  position: absolute;
  width: 58px;
  height: 90px;
  border-radius: 8px;
  background: var(--accent-primary);
  box-shadow: 0 0 30px var(--accent-glow);
  animation: drive 4s linear infinite;
}

.car-one { left: 24%; top: -110px; }
.car-two { right: 24%; animation-delay: -1.8s; background: #FFFFFF; }

@keyframes drive {
  to { transform: translateY(560px); }
}

.counter-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  padding: 18px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.64);
  transform: rotateZ(17deg) rotateX(-58deg);
}

.counter-card strong {
  color: var(--accent-primary);
  font-size: 3.4rem;
  line-height: 1;
}

.features-section,
.screenshots-section {
  background: linear-gradient(180deg, rgba(30,30,31,0.36), rgba(58,59,59,0.18));
}

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

.feature-card {
  min-height: 360px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
}

.feature-card > svg,
.tech-card svg {
  width: 38px;
  height: 38px;
  color: var(--accent-primary);
}

.mini-phone {
  height: 130px;
  border: 8px solid #0A0A0B;
  border-radius: 22px;
  background: linear-gradient(145deg, var(--bg-surface), var(--bg-deep));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.slot-preview,
.scan-preview,
.booking-preview,
.route-preview,
.qr-preview,
.gate-preview {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.illustration-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.timeline-line {
  position: absolute;
  top: 42px;
  left: 8%;
  width: 84%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), transparent);
  transform: scaleX(0);
  transform-origin: left;
}

html[dir="rtl"] .timeline-line {
  transform-origin: right;
}

.timeline-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--bg-surface);
}

.timeline-step > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #000;
  background: var(--accent-primary);
  font-weight: 900;
}

.timeline-step svg {
  color: var(--accent-primary);
}

.phone-carousel {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 18px;
}

.phone-stage {
  position: relative;
  height: 590px;
  perspective: 1100px;
  overflow: hidden;
}

.phone-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateX(0) scale(0.74);
  transition: transform 0.55s ease, opacity 0.55s ease;
}

.phone-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 3;
}

.phone-slide.prev {
  opacity: 0.64;
  transform: translateX(-230px) rotateY(22deg) scale(0.84);
  z-index: 2;
}

.phone-slide.next {
  opacity: 0.64;
  transform: translateX(230px) rotateY(-22deg) scale(0.84);
  z-index: 2;
}

.phone-screen {
  width: 276px;
  height: 548px;
  border: 12px solid #070707;
  border-radius: 38px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.home-screen {
  background: url('../assets/Screenshot_20260619_192847.png') no-repeat;
  background-size: cover;
  background-position: center;
}

.map-screen {
  background: url('../assets/Screenshot_20260619_172033.png') no-repeat;
  background-size: cover;
  background-position: center;
}

.booking-screen {
  background: url('../assets/Screenshot_20260619_172154.png') no-repeat;
  background-size: cover;
  background-position: center;
}

.ticket-screen {
  background: url('../assets/Screenshot_20260619_194325.png') no-repeat;
  background-size: cover;
  background-position: center;
}

.vehicle-screen {
  background: url('../assets/Screenshot_20260619_172118.png') no-repeat;
  background-size: cover;
  background-position: center;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--border);
  cursor: pointer;
}

.carousel-dots button.active {
  width: 28px;
  background: var(--accent-primary);
}

.tech-section {
  overflow: hidden;
  background: var(--bg-deep);
}

.tech-dots {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: radial-gradient(var(--accent-primary) 1px, transparent 1px);
  background-size: 26px 26px;
}

.tech-card {
  min-height: 210px;
}

.citation {
  margin-top: 30px;
  text-align: center;
  color: var(--text-secondary);
}

.stats-section {
  background: linear-gradient(135deg, rgba(189, 229, 0, 0.16), rgba(30, 30, 31, 0.86));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-item {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.stat-item svg,
.stat-item strong {
  color: var(--accent-primary);
}

.stat-item strong {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.stat-item span {
  color: var(--text-secondary);
}

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

.flip-card {
  min-height: 370px;
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 370px;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner,
.flip-card:focus-within .flip-inner {
  transform: rotateY(180deg);
}

html[dir="rtl"] .flip-card:hover .flip-inner,
html[dir="rtl"] .flip-card:focus-within .flip-inner {
  transform: rotateY(-180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  backface-visibility: hidden;
}

.flip-front img {
  width: 146px;
  height: 146px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: var(--bg-deep);
  border: 3px solid var(--accent-primary);
}

.flip-front p,
.flip-back p,
.flip-front span {
  color: var(--text-secondary);
}

.flip-front p {
  color: var(--accent-primary);
  font-weight: 800;
}

.flip-back {
  transform: rotateY(180deg);
}

html[dir="rtl"] .flip-back {
  transform: rotateY(-180deg);
}

.supervisors {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 36px;
  text-align: center;
}

.supervisors div,
.supervisors p {
  padding: 18px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass-bg);
}

.supervisor-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 24px 18px;
}

.supervisor-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--accent-primary);
  box-shadow: 0 0 22px var(--accent-glow);
}

.supervisors span {
  display: block;
  color: var(--text-secondary);
}

.supervisors p {
  grid-column: 1 / -1;
  color: var(--accent-primary);
  font-weight: 900;
}

.partner-section {
  background: radial-gradient(circle at 50% 44%, rgba(189,229,0,0.12), transparent 58%);
}

.partner-form {
  max-width: 860px;
  margin: 0 auto;
  border-top: 4px solid var(--accent-primary);
}

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

.form-grid label,
.contact-method {
  display: grid;
  gap: 8px;
  color: var(--text-secondary);
  font-weight: 700;
}

.full-field {
  grid-column: 1 / -1;
}

.form-input {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
  outline: 0;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

[data-theme="light"] .form-input {
  background: rgba(255, 255, 255, 0.82);
}

.form-input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.contact-method {
  grid-template-columns: repeat(4, auto);
  align-items: center;
  justify-content: start;
  margin-top: 18px;
  border: 0;
}

.contact-method label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 14px;
  color: #000;
  border-radius: var(--radius);
  background: var(--accent-primary);
  font-weight: 900;
}

.form-success.show {
  display: flex;
}

.download-section {
  background:
    radial-gradient(circle at 74% 42%, rgba(189,229,0,0.26), transparent 34%),
    linear-gradient(145deg, var(--bg-deep), var(--bg-primary));
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 50px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 190px;
  padding: 14px 18px;
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  background: #050505;
  border: 1px solid rgba(255,255,255,0.14);
}

.store-btn i {
  font-size: 2rem;
}

.store-btn span {
  display: grid;
  line-height: 1.1;
  font-weight: 900;
}

.store-btn small {
  color: #b8bdc7;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.rating {
  margin-top: 22px;
  color: #FFB800;
  font-weight: 900;
}

.rating span {
  color: var(--text-secondary);
  margin-inline-start: 8px;
}

.download-phone {
  display: grid;
  place-items: center;
  min-height: 420px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
}

.qr-link {
  display: block;
  width: 220px;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.qr-link:hover {
  transform: scale(1.05) translateY(-5px);
  border-color: var(--accent-primary);
}

.qr-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #fff; /* Ensure contrast for the QR code */
}

.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  padding: 56px 0;
}

.footer-content > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent-primary);
}

.footer-brand p {
  color: var(--text-secondary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(16px, 5vw, 68px);
  color: var(--text-secondary);
  border-top: 1px solid var(--glass-border);
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-content,
  .split-layout,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-self: start;
    transform: none;
  }

  .features-grid,
  .tech-grid,
  .team-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    display: none;
  }

  .timeline-step {
    padding: 16px 16px 16px 72px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .timeline-step > span {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  html[dir="rtl"] .timeline-step {
    padding: 16px 72px 16px 16px;
  }

  html[dir="rtl"] .timeline-step > span {
    left: auto;
    right: 14px;
  }

  .crisis-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding-inline: 14px;
  }

  .logo-text {
    font-size: 0.92rem;
  }

  .nav-logo-img,
  .footer-logo-img {
    height: 32px;
  }

  .hero {
    align-items: start;
    padding-top: calc(var(--nav-height) + 42px);
  }

  .hero-stats,
  .hero-actions,
  .store-buttons {
    flex-direction: column;
  }

  .btn,
  .store-btn {
    width: 100%;
  }

  .features-grid,
  .tech-grid,
  .team-grid,
  .stats-grid,
  .form-grid,
  .supervisors,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .phone-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .phone-stage {
    height: 500px;
  }

  .phone-screen {
    width: 236px;
    height: 468px;
  }

  .phone-slide.prev {
    transform: translateX(-120px) rotateY(20deg) scale(0.75);
  }

  .phone-slide.next {
    transform: translateX(120px) rotateY(-20deg) scale(0.75);
  }

  .contact-method {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Pain section mobile fixes */
  .pain-card {
    gap: 12px;
    padding: 14px;
  }

  .pain-card svg {
    width: 24px;
    height: 24px;
    margin-top: 2px;
  }

  .solution-line {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }

  /* Timeline mobile fine-tuning */
  .timeline-step {
    padding: 14px 14px 14px 66px;
  }

  .timeline-step > span {
    left: 12px;
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  html[dir="rtl"] .timeline-step {
    padding: 14px 66px 14px 14px;
  }

  html[dir="rtl"] .timeline-step > span {
    right: 12px;
    left: auto;
  }
}

@media (max-width: 480px) {
  .pain-card {
    gap: 10px;
    padding: 12px;
  }

  .pain-card svg {
    width: 22px;
    height: 22px;
  }

  .timeline-step {
    padding: 12px 12px 12px 58px;
  }

  .timeline-step > span {
    left: 10px;
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  html[dir="rtl"] .timeline-step {
    padding: 12px 58px 12px 12px;
  }

  html[dir="rtl"] .timeline-step > span {
    right: 10px;
    left: auto;
  }

  .phone-stage {
    height: 420px;
  }

  .phone-screen {
    width: 200px;
    height: 396px;
  }

  .phone-slide.prev {
    transform: translateX(-90px) rotateY(18deg) scale(0.7);
  }

  .phone-slide.next {
    transform: translateX(90px) rotateY(-18deg) scale(0.7);
  }
}
