/* ===========================================================
   Dozerman — Company Website Styles
   Brand: Black #0b0b0b + Amber/Orange #f0a830 (from logo)
   =========================================================== */

:root {
  --black: #0b0b0b;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --line: #e5e5e2;
  --bg: #ffffff;
  --bg-soft: #f6f5f1;
  --bg-dark: #121212;
  --amber: #f0a830;
  --amber-dark: #d98f17;
  --amber-soft: #fff5e0;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.18);
  --radius: 6px;
  --max: 1200px;
  --header-h: 80px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* Display typography */
h1, h2, h3, h4, .display {
  font-family: 'Barlow Condensed', 'Oswald', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--black);
  line-height: 1.08;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); letter-spacing: 1px; }
p  { color: var(--ink); }
p + p { margin-top: .9rem; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: .75rem;
  text-transform: uppercase;
  color: var(--amber-dark);
  padding: .35rem .7rem;
  background: var(--amber-soft);
  border-radius: 999px;
  margin-bottom: 1rem;
}
.eyebrow.on-dark { background: rgba(240,168,48,.15); color: var(--amber); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.6rem;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .5px;
  border-radius: var(--radius);
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  border: 2px solid transparent;
  text-transform: uppercase;
}
.btn:hover { transform: translateY(-2px); }
.btn-amber { background: var(--amber); color: var(--black); }
.btn-amber:hover { background: var(--amber-dark); color: var(--black); box-shadow: var(--shadow-lg); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: #2a2a2a; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: #fff; color: var(--black); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  transition: background .25s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand { display: flex; align-items: center; gap: .75rem; }
.brand img { height: 42px; width: auto; }
.brand .brand-mark {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Barlow Condensed', 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--black);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  position: relative;
  padding: .25rem 0;
  transition: color .15s var(--ease);
}
.nav a:hover { color: var(--amber-dark); }
.nav a.active { color: var(--black); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
}

.nav-cta { margin-left: .5rem; }

.mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  position: relative;
}
.mobile-toggle span::before,
.mobile-toggle span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--black);
}
.mobile-toggle span::before { top: -7px; }
.mobile-toggle span::after  { top: 7px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
  background: #000;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: brightness(.55) saturate(1.1);
  transform: scale(1.05);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.15) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}
.hero h1 { color: #fff; }
.hero h1 span.amber { color: var(--amber); }
.hero p.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 620px;
  color: #c8c8c8;
  margin-top: 1.2rem;
}
.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}
.hero-meta {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-meta .stat .num {
  font-family: 'Barlow Condensed', 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  display: block;
}
.hero-meta .stat .lbl {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .75rem;
  color: rgba(255,255,255,.8);
  margin-top: .35rem;
  display: block;
  max-width: 18ch;
  line-height: 1.35;
}

/* Centered hero variant — classical composition, single column, strong type */
.hero-centered .container { text-align: center; }
.hero-centered .eyebrow { display: inline-block; }
.hero-centered h1 { letter-spacing: -0.5px; }
.hero-centered p.lead { max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-centered .hero-actions { justify-content: center; }
.hero-centered .hero-meta { justify-content: center; gap: 3rem; }
.hero-centered .hero-meta .stat { text-align: center; }
.hero-centered .hero-meta .stat .lbl { margin-left: auto; margin-right: auto; }

/* Smaller page hero for non-home pages */
.page-hero {
  position: relative;
  min-height: 52vh;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 4rem) 0 3rem;
  background: #000;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: brightness(.55);
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.75) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero .crumbs {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero .crumbs .amber { color: var(--amber); }

/* ---------- Sections ---------- */
section { padding: 5rem 0; }
section.tight { padding: 3.5rem 0; }
section.dark { background: var(--bg-dark); color: #f0f0f0; }
section.dark h1, section.dark h2, section.dark h3 { color: #fff; }
section.dark p { color: #d1d1d1; }
section.soft { background: var(--bg-soft); }

.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 em { color: var(--amber-dark); font-style: normal; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-top: .85rem; }

/* Two-col feature block */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { grid-template-columns: 1fr 1.05fr; }
.two-col.reverse .col-img { order: 2; }
.col-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.col-img::after {
  content: "";
  position: absolute;
  left: -18px; bottom: -18px;
  width: 90px; height: 90px;
  background: var(--amber);
  border-radius: var(--radius);
  z-index: -1;
}
.col-text h2 { margin-bottom: 1rem; }
.col-text .lead { font-size: 1.12rem; color: var(--muted); margin-bottom: 1.25rem; }

/* ---------- Service / fleet cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--amber);
}
.card .thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eee;
}
.card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.card:hover .thumb img { transform: scale(1.06); }
.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: .5rem; }
.card-body .tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: .6rem;
}
.card-body .readmore {
  margin-top: auto;
  padding-top: 1.2rem;
  color: var(--black);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border-top: 1px solid var(--line);
  margin-top: 1.2rem;
  padding-top: 1.2rem;
}
.card-body .readmore::after { content: "→"; transition: transform .2s var(--ease); }
.card:hover .card-body .readmore::after { transform: translateX(4px); color: var(--amber-dark); }

/* Pills row (fleet summary) */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1rem;
}
.pill {
  padding: .35rem .9rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
}
.pills .pill.amber { background: var(--amber); border-color: var(--amber); color: var(--black); }

/* ---------- Why choose us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.why-item {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.why-item:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  background: rgba(240,168,48,.06);
}
.why-item .icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.why-item h3 { font-size: 1.1rem; letter-spacing: 1px; margin-bottom: .5rem; color: #fff; }
.why-item p { color: #c8c8c8; font-size: .95rem; }

/* Pyramid layout: 2 items top row (centered), 3 items bottom row */
@media (min-width: 900px) {
  .why-grid.why-grid-pyramid {
    grid-template-columns: repeat(12, 1fr);
  }
  .why-grid.why-grid-pyramid > :nth-child(1) { grid-column: 3 / span 4; }
  .why-grid.why-grid-pyramid > :nth-child(2) { grid-column: 7 / span 4; }
  .why-grid.why-grid-pyramid > :nth-child(3) { grid-column: 1 / span 4; }
  .why-grid.why-grid-pyramid > :nth-child(4) { grid-column: 5 / span 4; }
  .why-grid.why-grid-pyramid > :nth-child(5) { grid-column: 9 / span 4; }
}

/* Stats strip */
.stats-strip {
  background: var(--amber);
  color: var(--black);
  padding: 2.5rem 0;
}
.stats-strip .inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat-block .n {
  font-family: 'Barlow Condensed', 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}
.stat-block .t {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .75rem;
  font-weight: 700;
  margin-top: .4rem;
  opacity: .85;
}

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.value {
  padding: 1.75rem;
  border-left: 3px solid var(--amber);
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.value h3 { font-size: 1.15rem; margin-bottom: .5rem; color: var(--black); }
.value p { color: var(--muted); font-size: .95rem; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
}
.team-member {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.team-member:hover { border-color: var(--amber); transform: translateY(-4px); }
.team-member .avatar {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--amber-dark);
  border: 2px solid var(--amber);
  margin-bottom: 1.1rem;
}
.team-member h3 { font-size: 1.3rem; letter-spacing: 1px; color: var(--black); }
.team-member .role {
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--amber-dark);
  margin: .3rem 0 .9rem;
}
.team-member p { color: var(--muted); font-size: .95rem; }

/* ---------- Utilization list ---------- */
.use-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.use-item {
  padding: 1.75rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border-top: 4px solid var(--amber);
}
.use-item h3 {
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  color: var(--black);
  margin-bottom: .6rem;
}
.use-item p { color: var(--ink); font-size: .95rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: #fff; margin-bottom: .75rem; }
.cta-banner p { color: #c8c8c8; max-width: 620px; margin: 0 auto 1.75rem; }
.cta-banner .amber-band {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: var(--amber);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-block {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-block .icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--amber-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  font-size: 1.1rem;
  font-weight: 700;
}
.info-block h4 {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .7rem;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: .3rem;
}
.info-block .val { color: var(--ink); font-weight: 600; font-size: 1rem; }
.info-block .val a:hover { color: var(--amber-dark); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: .3rem; }
.contact-form .hint { color: var(--muted); font-size: .9rem; margin-bottom: 1.25rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: .4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(240,168,48,.2);
}
.form-note {
  font-size: .82rem;
  color: var(--muted);
  margin-top: .75rem;
}

/* Registration strip */
.reg-strip {
  background: var(--bg-soft);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--line);
}
.reg-strip .grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .75rem;
  font-size: .72rem;
  color: var(--muted);
  white-space: nowrap;
}
.reg-strip .grid > div {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 560px) {
  .reg-strip .grid {
    grid-template-columns: repeat(2, 1fr);
    white-space: normal;
  }
}

/* Phone reveal button (masks number until clicked) */
.phone-reveal {
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
  transition: color .2s ease, border-color .2s ease;
}
.phone-reveal[data-revealed="true"] {
  border-bottom-style: solid;
}
.phone-reveal:hover { color: var(--amber); }
.reg-strip strong {
  display: block;
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: .25rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0a0a0a;
  color: #bfbfbf;
  padding: 4rem 0 0;
  font-size: .95rem;
}
.site-footer .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.site-footer h4 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a:hover { color: var(--amber); }
.site-footer .brand img { height: 38px; margin-bottom: 1rem; filter: invert(1) brightness(1.5); }
.site-footer .brand p { color: #9a9a9a; font-size: .9rem; max-width: 320px; }
.site-footer .legal {
  padding: 1.25rem 0;
  border-top: 1px solid #1f1f1f;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #808080;
  font-size: .82rem;
}
.site-footer .legal .bbbee {
  padding: .25rem .75rem;
  background: var(--amber);
  color: var(--black);
  border-radius: 999px;
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: 1px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  :root { --header-h: 70px; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse .col-img { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer .grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 78vh; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow);
  }
  .nav.open a { padding: .5rem 0; border-bottom: 1px solid var(--line); }
  .nav.open .btn { align-self: flex-start; }
  .mobile-toggle { display: inline-flex; }
  .form-row { grid-template-columns: 1fr; }
  h1 { font-size: 2.4rem; }
  section { padding: 3.5rem 0; }
  .hero-meta { gap: 1.5rem; }
  .hero-meta .stat .num { font-size: 2.2rem; }
  .site-footer .grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 42vh; }
}

/* Subtle reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
