/* ==========================================================================
   MULTIIS — Multi Innovative Services
   Design system. One stylesheet, no build step.

   Motif: the waybill. Perforated edges, monospaced consignment data,
   index numerals, red seal. Navy is the ground, red is the stamp.
   ========================================================================== */

/* --- 1. Tokens ---------------------------------------------------------- */

:root {
  /* Brand */
  --ink:        #08111F;
  --navy-900: #0B1B33;
  --navy-800: #10254A;
  --navy-700: #16315F;
  --navy-600: #1D4E9B;
  --navy-100: #DDE6F5;
  --accent:       #7FB0EA;
  --red:        #CE1126;
  --red-700:    #A50E1F;
  --red-100:    #FBE4E7;

  /* Neutrals */
  --paper:      #F6F5F1;
  --paper-2:    #EDEBE4;
  --paper-3:    #E2DFD6;
  --line:       #D6D2C7;
  --line-dark:  rgba(255,255,255,.14);
  --muted:      #5C6673;
  --muted-dark: #9BAAC4;

  /* Type */
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Space */
  --gut: clamp(1.25rem, 4vw, 3rem);
  --max: 1240px;
  --sec: clamp(3.5rem, 8vw, 7rem);

  --radius: 3px;
  --shadow: 0 1px 2px rgba(8,17,31,.06), 0 12px 32px -12px rgba(8,17,31,.18);
}

/* --- 2. Reset ----------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.03; letter-spacing: -.022em; margin: 0; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--red); color: #fff; padding: .7rem 1.1rem; font-weight: 600;
}
.skip:focus { left: 0; }

/* --- 3. Layout ---------------------------------------------------------- */

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.sec  { padding-block: var(--sec); }
.sec--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.dark { background: var(--navy-900); color: #F1F4F9; }
.dark h1, .dark h2, .dark h3 { color: #fff; }
.tint { background: var(--paper-2); }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.75rem); }
@media (min-width: 800px) {
  .g-2 { grid-template-columns: repeat(2, 1fr); }
  .g-3 { grid-template-columns: repeat(3, 1fr); }
  .g-4 { grid-template-columns: repeat(4, 1fr); }
  .g-side { grid-template-columns: minmax(0,7fr) minmax(0,5fr); }
  .g-side-r { grid-template-columns: minmax(0,5fr) minmax(0,7fr); }
}

/* --- 4. Type ------------------------------------------------------------ */

.eyebrow {
  font-family: var(--mono);
  font-size: .705rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  display: flex; align-items: center; gap: .6rem;
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--red); flex: none;
}
.dark .eyebrow { color: var(--accent); }
.dark .eyebrow::before { background: var(--accent); }

.h-xl { font-size: clamp(2.4rem, 5.1vw, 3.75rem); }
.h-lg { font-size: clamp(2.05rem, 4.4vw, 3.35rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.05rem); letter-spacing: -.015em; }
.h-sm { font-size: 1.16rem; letter-spacing: -.01em; }

.lede { font-size: clamp(1.02rem, 1.5vw, 1.19rem); color: var(--muted); max-width: 60ch; line-height: 1.58; }
.dark .lede { color: var(--muted-dark); }
.small { font-size: .875rem; }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.muted { color: var(--muted); }
.dark .muted { color: var(--muted-dark); }
.mw-60 { max-width: 60ch; }
.mw-46 { max-width: 46ch; }

.sec-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.sec-head--split { display: grid; gap: 1.5rem; align-items: end; }
@media (min-width: 900px) { .sec-head--split { grid-template-columns: minmax(0,1fr) minmax(0,26rem); } }

/* --- 5. Buttons --------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .82rem 1.35rem;
  font-family: var(--display); font-weight: 600; font-size: .95rem; letter-spacing: -.005em;
  border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; background: none;
  transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}
.btn .ico { transition: transform .2s ease; }
.btn:hover .ico { transform: translateX(3px); }
.btn--red    { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-700); }
.btn--navy  { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-700); }
.btn--ghost  { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); background: rgba(8,17,31,.04); }
.dark .btn--ghost, .foot .btn--ghost { border-color: var(--line-dark); color: #fff; }
.dark .btn--ghost:hover, .foot .btn--ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.07); }
.btn--wide { width: 100%; justify-content: center; }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.02rem; }
.btn[disabled] { opacity: .45; pointer-events: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-family: var(--display); font-size: .93rem;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  color: var(--red);
}
.link-arrow .ico { transition: transform .2s ease; }
.link-arrow:hover .ico { transform: translateX(4px); }
.dark .link-arrow { color: var(--accent); }

/* --- 6. Header ---------------------------------------------------------- */

.topbar {
  background: var(--ink); color: #B7C3D6;
  font-size: .795rem; letter-spacing: .01em;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 38px; }
.topbar a:hover { color: #fff; }
.topbar-l, .topbar-r { display: flex; align-items: center; gap: 1.4rem; }
.topbar .ico { color: var(--accent); }
.topbar-item { display: inline-flex; align-items: center; gap: .42rem; }
@media (max-width: 860px) { .topbar-l .topbar-item:nth-child(n+2) { display: none; } }
@media (max-width: 560px) { .topbar-r { display: none; } }

.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,245,241,.93);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; gap: 1.5rem; min-height: 74px; }
.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand svg { display: block; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt b { font-family: var(--display); font-size: 1.22rem; letter-spacing: .01em; }
.brand-txt span { font-size: .585rem; letter-spacing: .19em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-family: var(--display); font-weight: 500; font-size: .945rem;
  padding: .35rem 0; position: relative; color: #22303F;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: .6rem; }
.nav-toggle { display: none; border: 1px solid var(--line); border-radius: var(--radius); padding: .5rem; background: none; cursor: pointer; }

@media (max-width: 1040px) {
  .nav-links { gap: 1.15rem; }
  .nav-links a { font-size: .89rem; }
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 112px 0 auto; background: var(--paper);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: .5rem var(--gut) 1.5rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .95rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  #navlinks .in-drawer { display: block; }
  .nav-cta .btn--ghost { display: none; }
}
.nav-links .in-drawer { display: none; }
@media (max-width: 660px) {
  .nav .wrap { gap: .75rem; min-height: 66px; }
  .nav-cta .btn--red { display: none; }
  .nav-links { inset-block-start: 104px; }
}
@media (max-width: 400px) {
  .brand .logo { height: 38px; width: auto; }
}

/* --- 7. Hero ------------------------------------------------------------ */

.hero { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 100% 7px; pointer-events: none;
}
.hero-grid { display: grid; position: relative; z-index: 2; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: minmax(0,1fr) minmax(0,440px); gap: clamp(2rem,4vw,4rem); align-items: center; } }

.hero-copy { padding-block: clamp(3.25rem, 7vw, 6rem); }
.hero h1 { margin-bottom: 1.35rem; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lede { color: #BCCBE2; font-size: clamp(1.02rem,1.5vw,1.16rem); max-width: 46ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.6rem; }

.hero-img {
  position: absolute; inset: 0 0 0 52%;
  background-size: cover; background-position: center;
  opacity: .16; filter: grayscale(.3);
}
@media (min-width: 980px) { .hero-img { opacity: .3; } }
.hero-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy-900) 0%, rgba(11,27,51,.65) 42%, rgba(11,27,51,.35) 100%);
}

.hero-marks { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line-dark); }
.hero-mark b { display: block; font-family: var(--display); font-size: 1.65rem; line-height: 1; }
.hero-mark span { font-family: var(--mono); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: #8A9AB5; }

/* --- 8. The waybill card (core motif) ----------------------------------- */

.docket {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.5);
  position: relative;
}
.docket--float { margin-block: clamp(-1rem, 0vw, 0); }
@media (min-width: 980px) { .docket--float { margin-bottom: -3.5rem; margin-top: 1rem; } }

.docket-head {
  background: var(--navy-800); color: #fff;
  padding: .85rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border-radius: var(--radius) var(--radius) 0 0;
}
.docket-head b { font-family: var(--display); font-size: .95rem; letter-spacing: -.005em; }
.docket-head .tag {
  font-family: var(--mono); font-size: .655rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(127,176,234,.4); padding: .2rem .45rem; border-radius: 2px;
}
.docket-body { padding: 1.25rem; }
.docket-foot {
  border-top: 1px dashed var(--line);
  padding: .85rem 1.25rem;
  font-family: var(--mono); font-size: .705rem; letter-spacing: .05em;
  color: var(--muted); display: flex; justify-content: space-between; gap: 1rem;
}

/* perforation notches */
.perf { position: relative; }
.perf::before, .perf::after {
  content: ""; position: absolute; width: 16px; height: 16px; border-radius: 50%;
  background: var(--navy-900); top: -8px;
}
.perf::before { left: -8px; }
.perf::after { right: -8px; }

/* --- 9. Forms ----------------------------------------------------------- */

.field { display: block; margin-bottom: .9rem; }
.field > span,
.lbl {
  display: block;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .38rem;
}
.input, .select, .textarea {
  width: 100%; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: .72rem .8rem;
  font-size: .97rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.input:hover, .select:hover, .textarea:hover { border-color: #B9B4A6; }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(29,78,155,.14);
}
.input::placeholder, .textarea::placeholder { color: #98A0AC; }
.textarea { min-height: 110px; resize: vertical; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5l5-5' fill='none' stroke='%235F6B64' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center; padding-right: 2.2rem;
}
.input.mono { font-family: var(--mono); letter-spacing: .06em; }

.row { display: grid; gap: .75rem; }
.row-2 { grid-template-columns: 1fr 1fr; }
.row-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 520px) { .row-2 { grid-template-columns: 1fr; } }

.hint { font-size: .78rem; color: var(--muted); margin-top: .35rem; }

.check {
  display: flex; gap: .65rem; align-items: flex-start;
  padding: .7rem .8rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; cursor: pointer; transition: border-color .15s ease, background .15s ease;
}
.check:hover { border-color: #B9B4A6; }
.check input { margin-top: .28rem; accent-color: var(--navy-600); flex: none; }
.check b { display: block; font-size: .92rem; font-weight: 600; }
.check span { font-size: .78rem; color: var(--muted); }
.check:has(input:checked) { border-color: var(--navy-600); background: #F1F5FB; }

/* --- 10. Alerts --------------------------------------------------------- */

.alert {
  border-left: 3px solid var(--red); background: var(--red-100);
  padding: .85rem 1rem; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 1.25rem;
  font-size: .92rem;
}
.alert ul li { margin: .15rem 0; }
.alert--ok { border-color: var(--navy-600); background: #E8EFF9; }
.alert--warn { border-color: #C98A16; background: #FBF2DF; }

/* --- 11. Service index (editorial list, not a card wall) ---------------- */

.svc-index { border-top: 1px solid var(--line); }
.dark .svc-index { border-color: var(--line-dark); }
.svc-row {
  display: grid; gap: .35rem 1.5rem; align-items: baseline;
  grid-template-columns: 3.2rem minmax(0,1fr);
  padding: 1.55rem 0; border-bottom: 1px solid var(--line);
  transition: padding-left .25s ease;
}
.dark .svc-row { border-color: var(--line-dark); }
.svc-row:hover { padding-left: .6rem; }
@media (min-width: 860px) {
  .svc-row { grid-template-columns: 3.2rem minmax(0,15rem) minmax(0,1fr) 2rem; align-items: center; }
}
.svc-num { font-family: var(--mono); font-size: .76rem; color: var(--red); letter-spacing: .08em; }
.dark .svc-num { color: var(--accent); }
.svc-name { font-family: var(--display); font-weight: 700; font-size: 1.32rem; letter-spacing: -.017em; }
.svc-lede { color: var(--muted); font-size: .945rem; grid-column: 2 / -1; }
@media (min-width: 860px) { .svc-lede { grid-column: auto; margin: 0; } }
.svc-go { color: var(--red); justify-self: end; display: none; }
@media (min-width: 860px) { .svc-go { display: block; } }
.svc-row:hover .svc-go { transform: translateX(4px); }
.svc-go .ico { transition: transform .2s ease; }
.dark .svc-go { color: var(--accent); }

/* --- 12. Stat rail ------------------------------------------------------ */

.rail {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: #fff;
}
@media (min-width: 760px) { .rail { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .rail--6 { grid-template-columns: repeat(6, 1fr); } }
.rail-cell { padding: 1.5rem 1.2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rail-cell:last-child { border-right: 0; }
.rail-cell b { display: block; font-family: var(--display); font-size: clamp(1.55rem, 3vw, 2.1rem); line-height: 1; letter-spacing: -.03em; }
.rail-cell span { display: block; font-family: var(--mono); font-size: .655rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-top: .55rem; }
.dark .rail { background: transparent; border-color: var(--line-dark); }
.dark .rail-cell { border-color: var(--line-dark); }
.dark .rail-cell span { color: var(--muted-dark); }

/* --- 13. Feature blocks ------------------------------------------------- */

.feat { display: grid; gap: .75rem; }
.feat-ico {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: var(--radius); color: var(--navy-600);
  background: #fff;
}
.dark .feat-ico { border-color: var(--line-dark); background: rgba(255,255,255,.05); color: var(--accent); }
.feat h3 { font-size: 1.09rem; letter-spacing: -.012em; }
.feat p { color: var(--muted); font-size: .93rem; margin: 0; }
.dark .feat p { color: var(--muted-dark); }

/* --- 14. Ticked list ---------------------------------------------------- */

.ticks li {
  display: grid; grid-template-columns: 1.35rem 1fr; gap: .55rem;
  padding: .42rem 0; font-size: .95rem; align-items: start;
}
.ticks .ico { color: var(--navy-600); margin-top: .28rem; }
.dark .ticks .ico { color: var(--accent); }

/* --- 15. Spec table ----------------------------------------------------- */

.spec { border-top: 1px solid var(--line); }
.spec div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .68rem 0; border-bottom: 1px solid var(--line);
  font-size: .9rem;
}
.spec dt, .spec .k { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.spec .v { font-weight: 600; text-align: right; }
.dark .spec, .dark .spec div { border-color: var(--line-dark); }
.dark .spec .k { color: var(--muted-dark); }

/* --- 16. Media ---------------------------------------------------------- */

.media { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--navy-800); }
.media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; display: block; }
.media--tall { aspect-ratio: 4 / 5; }
.media--wide { aspect-ratio: 16 / 10; }
.media-tag {
  position: absolute; left: 0; bottom: 0;
  background: var(--red); color: #fff;
  font-family: var(--mono); font-size: .655rem; letter-spacing: .13em; text-transform: uppercase;
  padding: .42rem .7rem;
}

/* --- 17. Booking stepper ------------------------------------------------ */

.steps { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 2rem; border-bottom: 1px solid var(--line); }
.step {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem .95rem .8rem; margin-bottom: -1px;
  font-family: var(--mono); font-size: .69rem; letter-spacing: .11em; text-transform: uppercase;
  color: var(--muted); border-bottom: 2px solid transparent;
}
.step i { font-style: normal; width: 19px; height: 19px; border-radius: 50%; border: 1px solid currentColor; display: grid; place-items: center; font-size: .62rem; }
.step.is-on { color: var(--red); border-bottom-color: var(--red); }
.step.is-done { color: var(--navy-600); }
.step.is-done i { background: var(--navy-600); border-color: var(--navy-600); color: #fff; }
@media (max-width: 620px) { .step span { display: none; } .step { padding-inline: .8rem; } }

/* --- 18. Rate options --------------------------------------------------- */

.rate {
  display: block; position: relative; cursor: pointer;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  padding: 1.1rem 1.15rem; margin-bottom: .8rem;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.rate:hover { border-color: var(--navy-600); transform: translateY(-1px); box-shadow: var(--shadow); }
.rate input { position: absolute; opacity: 0; pointer-events: none; }
.rate:has(input:checked) { border-color: var(--navy-600); box-shadow: 0 0 0 2px rgba(29,78,155,.18); }
.rate:has(input:checked)::after {
  content: "Selected"; position: absolute; top: -1px; right: -1px;
  background: var(--navy-600); color: #fff;
  font-family: var(--mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .25rem .5rem; border-radius: 0 var(--radius) 0 var(--radius);
}
.rate-top { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .5rem 1rem; }
.rate-name { font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.015em; }
.rate-mode {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--line); padding: .13rem .4rem; border-radius: 2px; color: var(--muted);
  margin-left: .55rem; vertical-align: middle;
}
.rate-price { font-family: var(--display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.03em; }
.rate-price small { display: block; font-family: var(--mono); font-size: .6rem; font-weight: 400; letter-spacing: .11em; text-transform: uppercase; color: var(--muted); text-align: right; margin-top: 2px; }
.rate-meta { display: flex; flex-wrap: wrap; gap: .3rem 1.2rem; margin-top: .6rem; font-size: .84rem; color: var(--muted); }
.rate-meta b { color: var(--ink); font-weight: 600; }
.rate-break {
  margin-top: .85rem; padding-top: .75rem; border-top: 1px dashed var(--line);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(5.4rem, 1fr)); gap: .5rem 1rem;
  font-family: var(--mono); font-size: .715rem; color: var(--muted);
}
.rate-break b { display: block; color: var(--ink); font-size: .84rem; font-weight: 500; margin-top: 2px; }

/* --- 19. Summary panel -------------------------------------------------- */

.panel { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.panel-head { padding: .95rem 1.15rem; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.panel-head b { font-family: var(--display); font-size: 1rem; }
.panel-body { padding: 1.15rem; }
.panel--sticky { position: sticky; top: 96px; }

.kv { display: flex; justify-content: space-between; gap: 1rem; padding: .4rem 0; font-size: .9rem; }
.kv .k { color: var(--muted); }
.kv .v { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.kv--total { border-top: 1px solid var(--line); margin-top: .6rem; padding-top: .8rem; font-size: 1.05rem; }
.kv--total .v { font-family: var(--display); font-weight: 700; font-size: 1.35rem; letter-spacing: -.03em; }

/* --- 20. Tracking timeline ---------------------------------------------- */

.tl { position: relative; padding-left: 1.9rem; }
.tl::before { content: ""; position: absolute; left: 6px; top: .55rem; bottom: 1.2rem; width: 1px; background: var(--line); }
.tl-item { position: relative; padding-bottom: 1.5rem; }
.tl-item::before {
  content: ""; position: absolute; left: -1.9rem; top: .38rem;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--line);
}
.tl-item.is-done::before { background: var(--navy-600); border-color: var(--navy-600); }
.tl-item.is-now::before { background: var(--red); border-color: var(--red); box-shadow: 0 0 0 4px rgba(206,17,38,.16); }
.tl-when { font-family: var(--mono); font-size: .69rem; letter-spacing: .09em; color: var(--muted); text-transform: uppercase; }
.tl-title { font-family: var(--display); font-weight: 600; font-size: 1.03rem; margin-top: .1rem; }
.tl-note { font-size: .89rem; color: var(--muted); margin: .1rem 0 0; }
.tl-item.is-pending .tl-title, .tl-item.is-pending .tl-note { color: #959CA8; }

.status-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .32rem .6rem; border-radius: 2px;
  background: var(--navy-100); color: var(--navy-700);
}
.status-chip--live { background: var(--red-100); color: var(--red-700); }
.status-chip--done { background: var(--navy-100); color: var(--navy-700); }
.status-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* --- 21. Coverage ------------------------------------------------------- */

.pin-result { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 1.25rem; }
.pin-result.is-ok { border-color: var(--navy-600); }
.pin-result.is-oda { border-color: #C98A16; }
.pin-result.is-bad { border-color: var(--red); }

.chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .09em;
  border: 1px solid var(--line); border-radius: 2px; padding: .25rem .55rem; color: var(--muted);
  background: #fff;
}
.dark .chip { border-color: var(--line-dark); background: rgba(255,255,255,.05); color: #C9D5E8; }

.state-block { padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.state-block h3 { font-size: .98rem; margin-bottom: .5rem; }

/* --- 22. Clients -------------------------------------------------------- */

.logos { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
@media (min-width: 700px) { .logos { grid-template-columns: repeat(4, 1fr); } }
.logo-cell {
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 2rem 1.25rem; display: grid; place-items: center; text-align: center; min-height: 118px;
}
.logo-cell b { font-family: var(--display); font-size: 1.06rem; letter-spacing: -.01em; }
.logo-cell span { display: block; font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .35rem; }

/* --- 23. Quote / pull --------------------------------------------------- */

.pull {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.35rem, 3vw, 2.05rem); line-height: 1.24; letter-spacing: -.02em;
  border-left: 3px solid var(--red); padding-left: clamp(1rem, 2.5vw, 1.75rem);
  max-width: 32ch;
}

/* --- 24. CTA band ------------------------------------------------------- */

.cta-band { background: var(--navy-800); color: #fff; position: relative; overflow: hidden; }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-inner { display: grid; gap: 1.75rem; align-items: center; padding-block: clamp(2.75rem, 6vw, 4.5rem); }
@media (min-width: 880px) { .cta-inner { grid-template-columns: minmax(0,1fr) auto; } }

/* --- 25. Footer --------------------------------------------------------- */

.foot { background: var(--ink); color: #A6B4CB; padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.foot h4 { font-family: var(--mono); font-size: .655rem; letter-spacing: .15em; text-transform: uppercase; color: #7A88A1; margin-bottom: 1rem; font-weight: 400; }
.foot a:hover { color: #fff; }
.foot-grid { display: grid; gap: 2.25rem; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1040px) { .foot-grid { grid-template-columns: 1.7fr 1fr 1fr 1.3fr; } }
.foot-links li { margin-bottom: .5rem; font-size: .92rem; }
.foot-addr { font-size: .88rem; line-height: 1.6; margin-bottom: 1.1rem; }
.foot-addr b { display: block; color: #E4EAF4; font-family: var(--display); font-size: .93rem; margin-bottom: .2rem; }
.foot-bar {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.35rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .8rem; color: #7A88A1;
}
.foot-bar .mono { letter-spacing: .04em; }

/* --- 26. Utilities ------------------------------------------------------ */

.stack > * + * { margin-top: var(--s, 1rem); }
.flex { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.between { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: .75rem; } .mt-2 { margin-top: 1.5rem; } .mt-3 { margin-top: 2.25rem; }
.mb-1 { margin-bottom: .75rem; } .mb-2 { margin-bottom: 1.5rem; } .mb-3 { margin-bottom: 2.25rem; }
.tr { text-align: right; }
.nowrap { white-space: nowrap; }
.hide { display: none !important; }
@media (max-width: 760px) { .hide-sm { display: none !important; } }

.rule { height: 1px; background: var(--line); margin-block: clamp(2rem,4vw,3rem); }
.dark .rule { background: var(--line-dark); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

@media print {
  .nav, .topbar, .foot, .cta-band, .btn { display: none !important; }
  body { background: #fff; }
}

/* ==========================================================================
   27. Homepage — masthead, cards, showcase, reference table
   A short heading over the animated route network, then dense reference
   material. Nothing here is a feature card.
   ========================================================================== */

/* --- Masthead ----------------------------------------------------------- */

.masthead {
  position: relative;
  display: flex; align-items: center;
  background: var(--navy-900);
  color: #F1F4F9;
  overflow: hidden;
  padding-block: clamp(2.5rem, 5.5vw, 4.5rem) clamp(2rem, 4vw, 3.25rem);
  min-height: clamp(520px, 68vh, 660px);
}
.masthead .wrap { position: relative; z-index: 2; width: 100%; }
.masthead-img {
  position: absolute; inset: 0 0 0 46%;
  background-size: cover; background-position: center 35%;
  opacity: .18; filter: grayscale(.45);
}
.masthead-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy-900) 0%, rgba(11,27,51,.72) 45%, rgba(11,27,51,.42) 100%);
}

.masthead-id {
  font-family: var(--mono); font-size: .69rem; letter-spacing: .15em; text-transform: uppercase;
  color: #8A9AB5; margin: 0 0 1.4rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-dark);
}
.masthead-h {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.15rem, 4.6vw, 3.5rem); line-height: 1.06; letter-spacing: -.024em;
  color: #fff; max-width: 26ch; margin: 0 0 1.25rem;
}
.masthead-sub {
  font-size: clamp(1rem, 1.5vw, 1.14rem); line-height: 1.6;
  color: #BCCBE2; max-width: 46ch; margin: 0 0 2rem;
}
.masthead-do { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }
.masthead-note {
  margin: 0; font-size: .8rem; color: #8A9AB5; line-height: 1.7;
  max-width: 62ch;
}

/* --- Section heads (no eyebrows here) ----------------------------------- */

.block-head {
  display: grid; gap: 1rem 3rem; align-items: start;
  border-top: 1px solid var(--ink); padding-top: 1.25rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
.dark .block-head { border-top-color: rgba(255,255,255,.45); }
@media (min-width: 900px) { .block-head { grid-template-columns: minmax(0, 19rem) minmax(0, 1fr); } }
.block-head h2 { margin: 0; }
.block-head p { max-width: 68ch; font-size: .96rem; }

/* --- Reference table ---------------------------------------------------- */

.scroll-cue {
  display: none; margin: 0 0 .7rem;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}
.scroll-cue::after { content: " \2192"; }
@media (max-width: 900px) { .scroll-cue { display: block; } }

.tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.dt { width: 100%; min-width: 46rem; border-collapse: collapse; }
.dt th, .dt td { text-align: left; padding: .95rem 1.1rem .95rem 0; vertical-align: top; }
.dt thead th {
  font-family: var(--mono); font-weight: 400; font-size: .64rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--ink); padding-bottom: .6rem;
}
.dt thead th span { display: block; margin-top: .2rem; color: #868FA0; letter-spacing: .1em; }
.dt tbody tr { border-bottom: 1px solid var(--line); }
.dt tbody tr:hover { background: rgba(29,78,155,.045); }
.dt tbody th {
  font-family: var(--display); font-weight: 700; font-size: 1rem; letter-spacing: -.012em;
  white-space: nowrap; padding-right: 2rem;
}
.dt tbody th span {
  display: block; font-family: var(--body); font-weight: 400; font-size: .78rem;
  color: var(--muted); letter-spacing: 0; margin-top: .15rem; white-space: normal;
}
.dt td b { display: block; font-family: var(--display); font-weight: 600; font-size: .95rem; }
.dt td span { display: block; font-family: var(--mono); font-size: .745rem; color: var(--muted); margin-top: .2rem; }
.dt td.is-na { font-family: var(--mono); font-size: .745rem; color: #98A0AC; }

.notes {
  display: grid; gap: .35rem 2.5rem; margin-top: 1.5rem;
  padding-top: 1.1rem; border-top: 1px solid var(--line);
}
@media (min-width: 820px) { .notes { grid-template-columns: 1fr 1fr; } }
.notes p { margin: 0 0 .45rem; font-size: .82rem; color: var(--muted); line-height: 1.6; }
.notes a { border-bottom: 1px solid var(--red); color: var(--red); }

/* --- Service cards ------------------------------------------------------ */

.scards {
  display: grid;
  gap: clamp(1.25rem, 2.4vw, 1.9rem) clamp(1rem, 1.8vw, 1.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 620px)  { .scards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .scards { grid-template-columns: repeat(4, 1fr); } }

.scard { display: block; min-width: 0; }

.scard-media {
  display: block; position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px; overflow: hidden;
  background: var(--navy-800);
  isolation: isolate;
}
.scard-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s cubic-bezier(.2,.6,.2,1), filter .35s ease;
}
.scard:hover .scard-media img { transform: scale(1.05); }

/* Scrim: keeps the number and the title legible over any photograph */
.scard-media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(8,17,31,.86) 0%, rgba(8,17,31,.42) 34%, rgba(8,17,31,0) 62%),
    linear-gradient(to bottom, rgba(8,17,31,.5) 0%, rgba(8,17,31,0) 34%);
}

.scard-no {
  position: absolute; top: .85rem; left: 1rem; z-index: 2;
  font-family: var(--mono); font-size: 1.35rem; font-weight: 400;
  letter-spacing: .04em; color: rgba(255,255,255,.92);
}
.scard-title {
  position: absolute; left: 1rem; right: 1rem; bottom: .85rem; z-index: 2;
  font-family: var(--display); font-weight: 700; font-size: 1.12rem;
  line-height: 1.15; letter-spacing: -.018em; color: #fff;
  text-wrap: balance;
}

.scard-desc {
  display: block; margin: .85rem 0 .5rem;
  font-size: .89rem; line-height: 1.55; color: var(--muted);
}
.scard-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--display); font-weight: 600; font-size: .85rem;
  color: var(--red);
}
.scard-cta .ico { transition: transform .2s ease; }
.scard:hover .scard-cta .ico { transform: translateX(4px); }
.scard:focus-visible .scard-media { outline: 2px solid var(--red); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .scard-media img { transition: none; }
  .scard:hover .scard-media img { transform: none; }
}

/* --- Showcase panel ----------------------------------------------------- */
/* The container cutout overhangs the top of the dark panel. The overlap is a
   percentage of the wrap width, so it holds at every viewport. */

.showcase { padding-block: clamp(1rem, 3vw, 2.5rem) clamp(2.75rem, 5vw, 4.25rem); }

.showcase-box {
  display: block; position: relative; z-index: 2;
  width: min(68%, 760px); height: auto;
  margin: 0 auto -13%;
  filter: drop-shadow(0 32px 46px rgba(8,17,31,.4));
}

.showcase-panel {
  position: relative; z-index: 1;
  background: var(--navy-900); color: #E4EAF4;
  border-radius: 22px;
  padding: clamp(6.5rem, 15vw, 9rem) clamp(1.5rem, 4vw, 3.25rem) clamp(2.25rem, 4vw, 3.25rem);
  overflow: hidden;
}
/* a slow warm glow behind the container, as in the reference */
.showcase-panel::before {
  content: ""; position: absolute; z-index: 0;
  top: -34%; left: 50%; transform: translateX(-50%);
  width: 80%; aspect-ratio: 2 / 1; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(206,17,38,.22) 0%, rgba(206,17,38,0) 68%);
  pointer-events: none;
}
.showcase-panel > * { position: relative; z-index: 1; }

.showcase-lbl {
  font-family: var(--mono); font-size: .63rem; letter-spacing: .15em; text-transform: uppercase;
  color: #7A88A1; text-align: center; margin: 0 0 1.1rem;
}
.showcase-logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem clamp(1.5rem, 4vw, 3.25rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line-dark);
}
.showcase-logos li {
  font-family: var(--display); font-weight: 600; font-size: clamp(.95rem, 1.5vw, 1.15rem);
  letter-spacing: -.01em; color: rgba(255,255,255,.62);
  transition: color .2s ease;
}
.showcase-logos li:hover { color: #fff; }

.showcase-body {
  display: grid; gap: clamp(1.75rem, 4vw, 3.25rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 900px) {
  .showcase-body { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); }
}

/* left: the picture stack */
.showcase-art { display: grid; gap: .85rem; min-width: 0; }
.showcase-art figure { margin: 0; border-radius: 14px; overflow: hidden; background: var(--navy-800); }
.showcase-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sa-main { aspect-ratio: 16 / 11; }
.sa-main img { object-position: 68% center; }
.sa-row { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: .85rem; }
.sa-small { aspect-ratio: 16 / 10; }
.sa-stat {
  border-radius: 14px; background: var(--red); color: #fff;
  display: flex; flex-direction: column; justify-content: center;
  padding: 1rem 1.1rem;
}
.sa-stat b {
  font-family: var(--display); font-weight: 700; font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  line-height: 1; letter-spacing: -.03em;
}
.sa-stat span {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  margin-top: .45rem; color: rgba(255,255,255,.88);
}

/* right: the claim */
.showcase-copy { min-width: 0; }
.showcase-h {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.65rem); line-height: 1.1; letter-spacing: -.026em;
  color: #fff; margin: 0 0 1.1rem; text-wrap: balance;
}
.showcase-fig { color: var(--red); }
.showcase-copy p {
  font-size: clamp(.96rem, 1.4vw, 1.05rem); line-height: 1.62;
  color: #A6B4CB; max-width: 46ch; margin: 0 0 1.75rem;
}
.showcase-do { display: flex; flex-wrap: wrap; gap: .75rem; }

@media (max-width: 640px) {
  .showcase-box { width: 88%; margin-bottom: -16%; }
  .sa-row { grid-template-columns: 1fr 1fr; }
}

/* --- Hub list ----------------------------------------------------------- */

.hubs { border-top: 1px solid var(--line); }
@media (min-width: 820px) { .hubs { columns: 2; column-gap: 3.5rem; } }
.hub {
  display: grid; grid-template-columns: 6.5rem minmax(0, 1fr); gap: .2rem 1.25rem;
  padding: .75rem 0; border-bottom: 1px solid var(--line);
  break-inside: avoid;
}
.hub-name { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); padding-top: .12rem; }
.hub-cities { font-size: .9rem; color: var(--muted); }

/* --- Fact list ---------------------------------------------------------- */

.facts { margin: 0; border-top: 1px solid var(--line-dark); }
.facts > div { padding: .8rem 0; border-bottom: 1px solid var(--line-dark); }
.facts dt {
  font-family: var(--mono); font-size: .63rem; letter-spacing: .13em; text-transform: uppercase;
  color: #8A9AB5; margin-bottom: .28rem;
}
.facts dd { margin: 0; font-size: .9rem; color: #DAE2EF; line-height: 1.55; }
.facts dd a { border-bottom: 1px solid rgba(127,176,234,.5); }
.facts dd a:hover { color: var(--accent); }

/* ==========================================================================
   28. Homepage route network
   The SVG in partials/routes.php. Trunk lines sit still; a signal pulse runs
   down two of them and two vehicles drive the line. Route `d` values are
   duplicated below as offset-path — edit both together.
   ========================================================================== */

.routes {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.rt-plates rect { fill: none; stroke: rgba(255,255,255,.055); stroke-width: 2; }

.rt-base path {
  stroke: rgba(255,255,255,.17);
  stroke-width: 2.5;
  stroke-linecap: round;
}

/* --- Signal pulse ------------------------------------------------------- */

.pulse {
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 70 930;          /* one 7%-long blip on a normalised path */
  stroke-dashoffset: 1000;
  animation: rt-run 9s linear infinite;
}
.pulse--red  { stroke: var(--red);  animation-duration: 11s;  animation-delay: .4s; }
.pulse--accent { stroke: var(--accent); animation-duration: 7s;    animation-delay: 2.6s; }
.pulse--red2 { stroke: var(--red);  animation-duration: 15s;   animation-delay: 1.2s; opacity: .75; }
.pulse--dim  { stroke: rgba(255,255,255,.5); animation-duration: 8.5s; animation-delay: 4.2s; }

@keyframes rt-run {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}

/* --- Junction nodes ----------------------------------------------------- */

.node {
  fill: var(--navy-900);
  stroke: rgba(255,255,255,.35);
  stroke-width: 2;
  animation: rt-node 4.5s ease-in-out infinite;
}
.node--b { animation-delay: 1.1s; }
.node--c { animation-delay: 2.3s; }
.node--d { animation-delay: 3.2s; }
.node--e { animation-delay: 1.8s; }

@keyframes rt-node {
  0%, 100% { stroke: rgba(255,255,255,.28); r: 4.5; }
  50%      { stroke: rgba(127,176,234,.85);  r: 5.5; }
}

/* --- Vehicles ----------------------------------------------------------- */

.van {
  offset-rotate: auto;
  offset-distance: 0%;
  filter: drop-shadow(0 3px 7px rgba(0,0,0,.45));
  animation: rt-drive 30s linear infinite;
}
.van--a {
  offset-path: path("M 1000 -60 V 40 Q 1000 80 1040 80 H 1180 Q 1220 80 1220 120 V 200 Q 1220 240 1180 240 H 1060 Q 1020 240 1020 280 V 360 Q 1020 400 1060 400 H 1680");
  animation-duration: 22s;
}
.van--b {
  offset-path: path("M -80 606 H 1160 Q 1200 606 1200 646 V 740");
  animation-duration: 26s;
  animation-delay: 2s;
}

@keyframes rt-drive {
  from { offset-distance: 0%; }
  to   { offset-distance: 100%; }
}

/* Browsers without offset-path would stack both vans at the origin. */
@supports not (offset-path: path("M0 0 H1")) {
  .van { display: none; }
}

/* Honour the system setting: routes stay, motion stops. */
@media (prefers-reduced-motion: reduce) {
  .pulse { animation: none; stroke-dashoffset: 620; opacity: .55; }
  .node  { animation: none; }
  .van   { animation: none; offset-distance: 62%; }
  .van--b { offset-distance: 34%; }
}

/* The network needs room to read; below that it only crowds the form. */
@media (max-width: 720px) {
  .routes { opacity: .7; }
  .van { display: none; }
}
