:root {
  --ink: #17212b;
  --muted: #5f6b76;
  --soft: #f5f8f7;
  --soft-2: #edf3f2;
  --line: #dce5e3;
  --green: #15905f;
  --green-dark: #0c6b48;
  --teal: #0f7f86;
  --blue: #2d5f89;
  --amber: #c78b2d;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(23, 33, 43, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 229, 227, 0.85);
  backdrop-filter: blur(14px);
}

.top-strip {
  border-bottom: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  font-size: 13px;
}

.top-strip .container {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-links a {
  transition: color 180ms ease;
}

.top-links a:hover,
.top-links a:focus {
  color: var(--green-dark);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 228px;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.15;
}

.brand span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.site-nav > a,
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus,
.nav-link:hover,
.nav-link:focus,
.site-nav > a.is-active {
  background: var(--soft-2);
  color: var(--green-dark);
}

.has-menu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 300px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.has-menu:hover .submenu,
.has-menu:focus-within .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.submenu a {
  display: block;
  padding: 9px 10px;
  border-radius: 4px;
  color: var(--muted);
  font-size: 14px;
}

.submenu a:hover,
.submenu a:focus {
  background: var(--soft);
  color: var(--green-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--green);
  border-radius: 4px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.button.light {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.button.ghost {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--line);
}

.button.ghost:hover,
.button.ghost:focus {
  background: var(--soft);
  border-color: var(--green);
}

.icon-button {
  width: 42px;
  height: 42px;
  padding: 0;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(9, 28, 35, 0.92) 0%, rgba(9, 28, 35, 0.72) 40%, rgba(9, 28, 35, 0.12) 76%), url("../images/hero-djm.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 76px 0 92px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #75e0ae;
}

.hero h1,
.page-hero h1,
.detail-hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  width: min(650px, 100%);
  margin-top: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
}

.metric {
  padding: 16px;
  background: rgba(10, 28, 34, 0.36);
}

.metric strong {
  display: block;
  font-size: 26px;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.quick-contact {
  background: var(--ink);
  color: var(--white);
}

.quick-contact .container {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 92px;
}

.quick-contact span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-contact strong,
.quick-contact a {
  color: var(--white);
  font-weight: 800;
}

.section {
  padding: 86px 0;
}

.section.tight {
  padding: 58px 0;
}

.section.soft {
  background: var(--soft);
}

.section.green {
  background: #0e6e4b;
  color: var(--white);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-title {
  max-width: 760px;
}

.section-title h2,
.section-title h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1.15;
}

.section-title p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.green .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(21, 144, 95, 0.35);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}

.tag {
  display: inline-block;
  width: fit-content;
  padding: 4px 8px;
  border: 1px solid rgba(21, 144, 95, 0.25);
  border-radius: 4px;
  color: var(--green-dark);
  background: rgba(21, 144, 95, 0.08);
  font-weight: 800;
  font-size: 12px;
}

.service-card h3 {
  margin: 14px 0 10px;
  font-size: 22px;
  line-height: 1.22;
}

.service-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 800;
}

.text-link:hover,
.text-link:focus {
  color: var(--teal);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.feature-box {
  min-height: 190px;
  padding: 26px;
  background: var(--white);
}

.feature-box svg {
  width: 34px;
  height: 34px;
  color: var(--green);
}

.feature-box h3 {
  margin: 18px 0 8px;
  font-size: 20px;
}

.feature-box p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.callout {
  margin-top: -54px;
  margin-left: 34px;
  width: min(330px, calc(100% - 34px));
  padding: 20px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.callout strong {
  display: block;
  font-size: 24px;
  line-height: 1.15;
}

.callout span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.copy h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.14;
}

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

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 4px;
  background: var(--green);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.35);
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  counter-increment: step;
  min-height: 212px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.process-step::before {
  content: "0" counter(step);
  display: block;
  color: #92e3ba;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.process-step h3 {
  margin: 18px 0 8px;
  font-size: 20px;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.sector {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--white);
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.cta-band {
  padding: 58px 0;
  background: var(--ink);
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.16;
}

.cta-inner p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.page-hero,
.detail-hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 430px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero {
  background-image: linear-gradient(90deg, rgba(10, 28, 34, 0.88), rgba(10, 28, 34, 0.42)), url("../images/consulting-market.png");
  background-size: cover;
  background-position: center;
}

.page-hero.about {
  background-image: linear-gradient(90deg, rgba(10, 28, 34, 0.9), rgba(10, 28, 34, 0.38)), url("../images/industrial-facility.png");
}

.page-hero.contact {
  background-image: linear-gradient(90deg, rgba(10, 28, 34, 0.92), rgba(10, 28, 34, 0.48)), url("../images/global-trade.png");
}

.page-hero .container,
.detail-hero .container {
  position: relative;
  z-index: 1;
  padding: 86px 0 64px;
}

.page-hero p,
.detail-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--muted);
  font-weight: 800;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus {
  border-color: var(--green);
  background: rgba(21, 144, 95, 0.08);
  color: var(--green-dark);
}

.detail-hero {
  background-size: cover;
  background-position: center;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 28, 34, 0.9), rgba(10, 28, 34, 0.45), rgba(10, 28, 34, 0.16));
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(280px, 0.34fr);
  gap: 42px;
  align-items: start;
}

.detail-main h2,
.detail-side h2 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.2;
}

.detail-main p {
  color: var(--muted);
  font-size: 17px;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.detail-list li {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.detail-list span {
  color: var(--muted);
}

.side-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.side-panel + .side-panel {
  margin-top: 18px;
}

.side-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-panel li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.side-panel li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.timeline-item {
  min-height: 170px;
  padding: 22px;
  background: var(--white);
}

.timeline-item strong {
  color: var(--green-dark);
}

.timeline-item h3 {
  margin: 10px 0 8px;
  font-size: 20px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

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

.value-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.value-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item a {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  line-height: 1.35;
}

.contact-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

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

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

.field textarea {
  min-height: 144px;
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--green-dark);
  font-weight: 800;
}

.map-panel {
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(23, 33, 43, 0.74), rgba(23, 33, 43, 0.2)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 48px),
    linear-gradient(135deg, #17445a, #0f7f86 48%, #15905f);
  color: var(--white);
}

.map-panel h2 {
  margin: 0;
  font-size: 28px;
}

.map-panel p {
  max-width: 460px;
  margin: 10px 0 20px;
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  background: #101820;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 30px;
  padding: 54px 0;
}

.footer img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: var(--white);
  border-radius: 4px;
}

.footer h2,
.footer h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.7);
}

.footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .site-nav {
    position: absolute;
    inset: 100% 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .nav-link {
    width: 100%;
    justify-content: flex-start;
  }

  .has-menu {
    width: 100%;
  }

  .submenu {
    position: static;
    width: 100%;
    display: block;
    margin: 4px 0 8px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    background: var(--soft);
  }

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

  .hero h1,
  .page-hero h1,
  .detail-hero h1 {
    font-size: 44px;
  }

  .quick-contact .container,
  .service-grid,
  .feature-row,
  .process,
  .timeline,
  .values-grid,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-contact .container {
    padding: 20px 0;
  }

  .split,
  .split.reverse,
  .detail-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container,
  .hero-content {
    width: min(100% - 28px, var(--container));
  }

  .top-strip {
    display: none;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 74vh;
    background-position: 58% center;
  }

  .hero-content {
    padding: 58px 0 70px;
  }

  .hero h1,
  .page-hero h1,
  .detail-hero h1 {
    font-size: 34px;
  }

  .hero p,
  .page-hero p,
  .detail-hero p {
    font-size: 16px;
  }

  .hero-metrics,
  .quick-contact .container,
  .service-grid,
  .feature-row,
  .process,
  .logo-wall,
  .timeline,
  .values-grid,
  .detail-list,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-header,
  .cta-inner,
  .footer-bottom .container {
    align-items: stretch;
    flex-direction: column;
  }

  .section-title h2,
  .section-title h1,
  .copy h2,
  .cta-inner h2 {
    font-size: 30px;
  }

  .callout {
    margin: 14px 0 0;
    width: 100%;
  }

  .page-hero,
  .detail-hero {
    min-height: 360px;
  }

  .page-hero .container,
  .detail-hero .container {
    padding: 64px 0 48px;
  }

  .contact-form {
    padding: 20px;
  }
}
