/* ============ DESIGN TOKENS ============ */
:root {
  --red:        #EB0A1E;
  --red-dark:   #C40818;
  --red-soft:   rgba(235,10,30,0.10);
  --black:      #0A0A0A;
  --gray-900:   #1A1A1A;
  --gray-700:   #404040;
  --gray-500:   #737373;
  --gray-300:   #D4D4D4;
  --gray-200:   #E5E5E5;
  --gray-100:   #F5F5F5;
  --gray-50:    #FAFAFA;
  --white:      #FFFFFF;

  --font-head:  'Montserrat', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --container:  1240px;
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  24px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow:     0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.18);
  --shadow-red: 0 16px 40px rgba(235,10,30,0.28);

  --ease:       cubic-bezier(.2,.7,.2,1);
}

/* ============ RESET ============ */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.1;
}
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; font-weight: 700; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.white { color: var(--white); }
.white-soft { color: rgba(255,255,255,0.78); }

/* ============ SECTION HEAD ============ */
.section-head { margin-bottom: 48px; }
.section-head--center { text-align: center; }
.section-head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.section-head h2 { margin-top: 6px; }
.eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 0;
}
.eyebrow--red { color: var(--red); }

.stars {
  margin-top: 14px;
  font-size: 1.1rem;
  color: #FFB300;
  letter-spacing: 4px;
  display: inline-flex;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all .25s var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--sm { padding: 9px 16px; font-size: 0.78rem; }
.btn--lg { padding: 16px 30px; font-size: 0.95rem; }

.btn--red { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
.btn--red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 20px 48px rgba(235,10,30,0.4); }

.btn--black { background: var(--black); color: var(--white); }
.btn--black:hover { background: var(--gray-900); transform: translateY(-2px); }

.btn--white { background: var(--white); color: var(--black); }
.btn--white:hover { transform: translateY(-2px); }

.btn--ghost-white { color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn--ghost-red { color: var(--red); border-color: var(--red); }
.btn--ghost-red:hover { background: var(--red); color: var(--white); }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}
.nav__brand { flex: 0 0 auto; }
.nav__logo { height: 52px; width: auto; }
.nav__menu {
  display: flex; gap: 32px; margin-left: auto;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav__menu a { position: relative; padding: 8px 0; color: var(--gray-700); }
.nav__menu a:hover { color: var(--black); }
.nav__menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width .25s var(--ease);
}
.nav__menu a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gray-700); font-weight: 600; font-size: 0.9rem;
}
.nav__phone:hover { color: var(--red); }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav__toggle span {
  width: 22px; height: 2px; background: var(--black);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('assets/hero.png') center / cover no-repeat;
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.30) 45%, rgba(0,0,0,0.85) 100%);
}

/* Portrait/mobile hero image variant */
@media (max-width: 860px) {
  .hero__bg {
    background-image: url('assets/hero-mobile.png');
    background-size: cover;
    background-position: center top;
    transform: none;
  }
  .hero__overlay {
    background: linear-gradient(180deg,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.02) 22%,
      rgba(0,0,0,0.55) 52%,
      rgba(0,0,0,0.94) 100%);
  }
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 880px;
  animation: heroIn .9s var(--ease) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin: 0 0 18px;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-shadow: 0 4px 30px rgba(0,0,0,0.45);
}
.hero__title-accent {
  display: inline-block;
  font-style: italic;
  font-weight: 700;
  color: var(--red);
  text-shadow: 0 4px 30px rgba(235,10,30,0.4);
}
.hero__subtitle {
  max-width: 620px;
  margin: 22px auto 32px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}
.hero__cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.hero__stats {
  margin-top: 56px;
  display: inline-flex; align-items: center; gap: 32px;
  padding: 18px 32px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
}
.hero__stat {
  display: flex; flex-direction: column; align-items: center;
  font-family: var(--font-head);
}
.hero__stat strong {
  font-size: 1.5rem; font-weight: 900; color: var(--white); line-height: 1;
}
.hero__stat span {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-top: 6px;
}
.hero__stat-divider {
  width: 1px; height: 28px; background: rgba(255,255,255,0.2);
}

/* ============ PILLARS ============ */
.pillars { padding: 100px 0; background: var(--white); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  padding: 36px 30px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.pillar-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.pillar-card h3 { margin-bottom: 10px; }
.pillar-card p { color: var(--gray-700); margin: 0; }

/* ============ VEHICLES ============ */
.vehicles {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
}
.vehicles .section-head h2 { color: var(--white); }

/* ============ CAROUSEL (shared) ============ */
.carousel {
  position: relative;
  margin-top: 12px;
}
.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 4px 32px;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { scroll-snap-align: start; }

.carousel__btn {
  position: absolute; top: calc(50% - 16px);
  width: 52px; height: 52px;
  background: var(--red); color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-red);
  transition: background .25s var(--ease), transform .25s var(--ease);
  z-index: 4;
}
.carousel__btn:hover { background: var(--red-dark); transform: translateY(-50%) scale(1.08); }
.carousel__btn:disabled { opacity: 0.35; cursor: not-allowed; }
.carousel__btn--prev { left: -22px; transform: translateY(-50%); }
.carousel__btn--next { right: -22px; transform: translateY(-50%); }

/* ============ VEHICLE CARD ============ */
.vehicle-card {
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.vehicle-card__media {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--gray-100);
  overflow: hidden;
}
.vehicle-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.vehicle-card:hover .vehicle-card__media img { transform: scale(1.06); }
.vehicle-card__badge {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 11px;
  font-family: var(--font-head); font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); border-radius: 4px;
}
.vehicle-card__badge--new { background: var(--red); }
.vehicle-card__badge--used { background: var(--black); }
.vehicle-card__body { padding: 18px 18px 20px; }
.vehicle-card__model {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 8px;
}
.vehicle-card__specs {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-size: 0.75rem; color: var(--gray-500);
  margin-bottom: 16px;
}
.vehicle-card__specs li {
  padding: 3px 9px;
  background: var(--gray-100);
  border-radius: 4px;
}
.vehicle-card__footer {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.vehicle-card__price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--red);
  margin: 0;
}

/* ============ SERVICE SECTIONS ============ */
.service { padding: 0; }
.service__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.service--reverse .service__inner { grid-template-areas: "text media"; }
.service--reverse .service__text { grid-area: text; }
.service--reverse .service__media { grid-area: media; }

.service__media {
  background-size: cover; background-position: center;
  position: relative;
  min-height: 320px;
}
.service__media-tint {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(235,10,30,0.18), transparent 60%);
}
.service__media-tint--dark {
  background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(235,10,30,0.25));
}
.service__text {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 620px;
}
.service__text h2 { margin: 8px 0 18px; }
.service__text .lead {
  font-size: 1.05rem; color: var(--gray-700); margin: 0 0 28px;
}
.service--dark { background: var(--black); }
.service--dark .service__text .lead { color: rgba(255,255,255,0.78); }
.service--gray { background: var(--gray-100); }
.service--light { background: var(--white); }

.service__list {
  margin-bottom: 32px;
  display: grid; gap: 12px;
}
.service__list li {
  position: relative;
  padding-left: 32px;
  font-weight: 500;
  color: var(--gray-700);
}
.service__list li::before {
  content: '✓';
  position: absolute; left: 0; top: -2px;
  width: 22px; height: 22px;
  background: var(--red); color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.75rem; font-weight: 800;
}

.referral-stat {
  display: flex; align-items: baseline; gap: 14px;
  margin: 8px 0 32px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
}
.referral-stat__amount {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--red);
  line-height: 1;
}
.referral-stat__label {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.steps {
  display: grid; gap: 14px;
  margin-bottom: 32px;
}
.steps li {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.steps__num {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  background: var(--red); color: var(--white);
  border-radius: 50%;
  font-family: var(--font-head); font-weight: 800; font-size: 0.95rem;
}
.steps__text { font-weight: 600; color: var(--gray-700); }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 100px 0; background: var(--gray-100); }
.testimonials .carousel__track {
  grid-auto-columns: calc((100% - 48px) / 3);
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  min-height: 280px;
}
.testimonial__stars {
  color: #FFB300;
  font-size: 1rem; letter-spacing: 3px;
  margin-bottom: 14px;
}
.testimonial__quote {
  flex: 1;
  font-size: 0.98rem; line-height: 1.6;
  color: var(--gray-700);
  margin: 0 0 22px;
  position: relative;
}
.testimonial__quote::before {
  content: '"';
  position: absolute; top: -28px; left: -8px;
  font-family: var(--font-head); font-weight: 900;
  font-size: 4rem; color: var(--red); opacity: 0.18;
  line-height: 1;
}
.testimonial__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.avatar {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-head); font-weight: 800; font-size: 0.85rem;
}
.testimonial__author strong { display: block; font-size: 0.92rem; }
.testimonial__author small { color: var(--gray-500); font-size: 0.75rem; }

/* ============ FLOATING CTA CARD ============ */
.cta-wrap {
  padding: 100px 24px;
  background: var(--white);
}
.cta-card {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #050505 0%, #1a1a1a 45%, #6a0a14 80%, var(--red) 100%);
  box-shadow: 0 40px 100px rgba(235,10,30,0.32), 0 12px 40px rgba(0,0,0,0.4);
}
.cta-card__glow {
  position: absolute;
  top: -40%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  padding: 64px 72px;
  align-items: center;
}
.cta-card__text h2 { margin: 8px 0 16px; }
.cta-card__text .lead { margin: 0 0 28px; max-width: 480px; }
.cta-card__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.cta-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex-shrink: 0;
}
.cta-card__portrait {
  position: relative;
  width: 280px;
  height: 280px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,0.95);
  box-shadow:
    0 0 0 10px rgba(255,255,255,0.10),
    0 24px 60px rgba(0,0,0,0.55),
    0 0 80px rgba(235,10,30,0.4);
  isolation: isolate;
}
.cta-card__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 50%;
}

/* ============ FOOTER ============ */
.footer {
  background: #050505;
  color: rgba(255,255,255,0.7);
  padding: 72px 0 28px;
  font-size: 0.9rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__col h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  padding: 5px 0;
  color: rgba(255,255,255,0.65);
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--red); }
.footer__logo {
  height: 60px; width: auto;
  filter: invert(1) brightness(1.2);
  margin-bottom: 14px;
}
.footer__tag { max-width: 320px; margin: 0 0 18px; line-height: 1.55; }
.footer__hours { margin-top: 10px; color: rgba(255,255,255,0.5); }
.footer__social {
  display: flex; gap: 10px;
}
.footer__social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--white);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.footer__social a:hover { background: var(--red); transform: translateY(-2px); }

.footer__bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}
.footer__bottom a { color: rgba(255,255,255,0.55); }
.footer__bottom a:hover { color: var(--red); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .carousel__track { grid-auto-columns: calc((100% - 48px) / 3); }
  .testimonials .carousel__track { grid-auto-columns: calc((100% - 24px) / 2); }
  .service__text { padding: 64px 40px; }
  .cta-card__inner { padding: 56px 48px; }
}

@media (max-width: 860px) {
  .nav__menu {
    position: fixed; top: 80px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu a { padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
  .nav__phone span { display: none; }
  .nav__toggle { display: flex; }

  .hero {
    min-height: 92vh;
    padding: 0;
    display: grid;
    grid-template-rows: 42vh 1fr;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-items: stretch;
    text-align: center;
  }
  .hero__content {
    grid-row: 2;
    grid-column: 1;
    align-self: end;
    padding: 0 20px 32px;
    max-width: 100%;
  }
  .hero__title { font-size: clamp(2.1rem, 8vw, 3rem); }
  .hero__subtitle { font-size: 0.92rem; margin: 14px auto 22px; }
  .hero__stats {
    margin-top: 22px;
    gap: 14px;
    padding: 12px 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero__stat-divider { display: none; }
  .hero__stat strong { font-size: 1.2rem; }
  .hero__stat span { font-size: 0.62rem; }

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

  .carousel__track,
  .testimonials .carousel__track {
    grid-auto-columns: 80%;
  }
  .carousel__btn { display: none; }

  .service__inner,
  .service--reverse .service__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "media" "text";
  }
  .service__text { padding: 48px 28px; max-width: 100%; }
  .service__media { min-height: 240px; }

  .cta-card__inner {
    grid-template-columns: 1fr;
    padding: 44px 28px;
    gap: 24px;
  }
  .cta-card__visual { margin: 0 auto; }
  .cta-card__portrait {
    width: 200px;
    height: 200px;
    border-width: 4px;
  }
  .cta-card__actions .btn { flex: 1; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__col:first-child { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.2rem; }
  .section-head--row { flex-direction: column; align-items: flex-start; }
}
