/* ===========================================================
   qvx — одностраничный сайт фрилансера
   Швейцарский монохромный минимализм.
   =========================================================== */

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --bg: #fafafa;
  --gray-100: #f3f3f3;
  --gray-200: #e5e5e5;
  --gray-400: #b3b3b3;
  --gray-500: #999999;
  --gray-700: #555555;
  --text: #333333;
  --container: 1120px;
  --gap: 24px;
  --radius: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; color: var(--black); font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

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

.section {
  padding: 140px 0;
  border-bottom: 1px solid var(--gray-200);
}

.section--tight { padding: 108px 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 14px;
  font-weight: 600;
}

.section-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 48px;
}

.marker {
  width: 10px;
  height: 10px;
  background: var(--black);
  margin-top: 10px;
  flex-shrink: 0;
}

.section-head h2 {
  font-size: 44px;
  line-height: 1.15;
}

.section-sub {
  color: var(--gray-700);
  font-size: 17px;
  max-width: 560px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 28px;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 10px;
  height: 100%;
  background: rgba(255, 255, 255, 0.55);
  transform: skewX(-18deg) scale(1);
  opacity: 0;
  animation: btn-shine 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-shine {
  0%   { left: -10%; opacity: 0; transform: skewX(-18deg) scale(1); }
  3%   { opacity: 0.8; }
  14%  { opacity: 0.9; transform: skewX(-18deg) scale(1.15); }
  25%  { left: 110%; opacity: 0; transform: skewX(-18deg) scale(1); }
  100% { left: 110%; opacity: 0; transform: skewX(-18deg) scale(1); }
}

.btn:hover {
  background: var(--white);
  color: var(--black);
}

.btn--ghost {
  background: transparent;
  color: var(--black);
}

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

.btn--sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn--full { width: 100%; }

/* ---------- Header ---------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(6px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.25s ease;
}

.header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0;
  background: var(--black);
  animation: header-line-draw 1s ease forwards;
  animation-delay: 0.15s;
}

.header.is-scrolled {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
}

@keyframes header-line-draw {
  to { width: 100%; }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--black);
}

.logo span { color: var(--gray-400); }

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

.nav__links {
  display: flex;
  gap: 28px;
}

.nav__links a {
  font-size: 15px;
  color: var(--text);
  transition: color 0.15s ease;
}

.nav__links a:hover { color: var(--black); }

.header__tg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--gray-200);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.header__tg:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 168px 0 96px;
  border-bottom: 1px solid var(--gray-200);
}

.hero__heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hero__heading .marker {
  margin-top: 20px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  max-width: 820px;
}

.hero__prefix {
  white-space: nowrap;
}

.hero h1 .rule {
  display: inline-block;
  width: 4px;
  height: 44px;
  background: var(--black);
  margin: 0 16px;
  vertical-align: middle;
  transform: translateY(-4px);
}

/* ---------- Hero background blobs ---------- */

.hero__blobs {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.blob {
  position: absolute;
  right: -14%;
  border-radius: 50%;
  background: rgba(110, 110, 110, 0.06);
  opacity: 0.75;
  animation: blob-breathe 3s ease-in-out infinite alternate;
}

.blob--lg {
  width: 900px;
  height: 900px;
  top: -180px;
}

.blob--sm {
  width: 500px;
  height: 500px;
  bottom: -80px;
  right: 2%;
  animation-delay: 0.8s;
}

@keyframes blob-breathe {
  from { transform: scale(1); opacity: 0.75; }
  to { transform: scale(1.04); opacity: 1; }
}

/* ---------- Hero giant watermark word ---------- */

.hero__stackwords {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.stackword {
  position: absolute;
  font-size: 20vw;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--text);
  opacity: 0;
  white-space: nowrap;
  transition: opacity 1.2s ease;
}

.stackword.is-active {
  opacity: 0.05;
}

/* ---------- Hero typewriter ---------- */

.typewriter {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  white-space: nowrap;
}

.typewriter::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.85em;
  margin-left: 4px;
  background: var(--black);
  vertical-align: text-bottom;
  animation: cursor-blink 0.5s ease-in-out infinite alternate;
}

@keyframes cursor-blink {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero__text {
  margin-top: 28px;
  max-width: 620px;
  color: var(--gray-700);
  font-size: 18px;
}

.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.chip {
  border: 1px solid var(--gray-200);
  padding: 7px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-700);
  font-weight: 600;
}

.offer {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--gray-100);
  border: 1px dashed var(--gray-400);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
}

.hero__cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- About / Why ---------- */

.about-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 56px;
  display: flex;
  gap: 48px;
  align-items: center;
}

.about-card__photo {
  position: relative;
  width: 180px;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
  background: var(--gray-700);
  border: 1px solid #333;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card__photo img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card__photo-label {
  color: var(--gray-400);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.about-card__name-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 6px;
}

.about-card__body h3 {
  color: var(--white);
  font-size: 26px;
}

.about-card__brand {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 4px 10px;
}

.about-card__role {
  color: var(--gray-400);
  font-size: 15px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.about-card__body p {
  color: #d4d4d4;
  max-width: 560px;
}

.facts {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.fact {
  background: var(--white);
  padding: 32px;
}

.fact__num {
  font-size: 32px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 6px;
}

.fact__label {
  font-size: 13px;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.perks {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.perk {
  background: var(--white);
  padding: 32px;
}

.perk__title {
  font-weight: 700;
  color: var(--black);
  font-size: 16px;
  margin-bottom: 6px;
}

.perk__desc {
  font-size: 14px;
  color: var(--gray-700);
}

/* ---------- Services grid ---------- */

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.service-card {
  background: var(--white);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card h3 {
  font-size: 18px;
  line-height: 1.3;
}

.service-card p {
  font-size: 14.5px;
  color: var(--gray-700);
  flex-grow: 1;
}

.service-card__price {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
}

/* ---------- Pricing tiers ---------- */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.tier {
  border: 1px solid var(--gray-200);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.tier > .btn {
  margin-top: auto;
}

.tier--featured {
  border: 2px solid var(--black);
}

@media (min-width: 1025px) {
  .tier--featured {
    transform: translateY(-8px);
  }
}

.tier__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 10px;
  font-weight: 700;
  white-space: nowrap;
}

.tier h3 { font-size: 22px; }

.tier__price {
  font-size: 30px;
  font-weight: 800;
}

.tier__term {
  font-size: 13px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.tier__list li {
  padding: 10px 0;
  border-top: 1px solid var(--gray-200);
  font-size: 15px;
  padding-left: 18px;
  position: relative;
}

.tier__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  background: var(--black);
}

/* ---------- Calculator ---------- */

.calc {
  border: 1px solid var(--gray-200);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.calc__field { margin-bottom: 22px; }

.calc__hint {
  margin-top: 8px;
  font-size: 13px;
  color: var(--gray-500);
}

.calc__field label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 8px;
}

.calc select,
.calc input[type="number"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
}

.calc select:focus,
.calc input:focus {
  outline: none;
  border-color: var(--black);
}

.calc__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.check input {
  width: 18px;
  height: 18px;
  accent-color: var(--black);
}

.calc__result {
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.calc__result.is-visible {
  opacity: 1;
}

.calc__result-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  font-weight: 600;
}

.calc__result-value {
  font-size: 34px;
  font-weight: 800;
}

.calc__disclaimer {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--gray-500);
}

/* ---------- Portfolio ---------- */

.portfolio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.portfolio-card:hover { border-color: var(--black); }

.portfolio-card__thumb {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 3 / 2;
  background: var(--gray-100);
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
}

.portfolio-card__thumb::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.portfolio-card__thumb img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-card__thumb img {
  transform: scale(1.03);
}

.portfolio-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 32px;
}

.portfolio-card__body h3 { font-size: 19px; margin-bottom: 6px; }

.portfolio-card__body p {
  font-size: 14.5px;
  color: var(--gray-700);
  margin-bottom: 12px;
  flex-grow: 1;
}

.portfolio-card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.portfolio-card__arrow {
  display: inline-block;
  margin-left: 6px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.portfolio-card:hover .portfolio-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Testimonials ---------- */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.testimonial {
  border: 1px solid var(--gray-200);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial__quote {
  font-size: 15.5px;
  color: var(--text);
}

.testimonial__author {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-500);
}

/* ---------- Process ---------- */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.process-step {
  border-top: 3px solid var(--black);
  padding-top: 20px;
}

.process-step__num {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

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

.process-step p { font-size: 14.5px; color: var(--gray-700); }

/* ---------- CTA ---------- */

.cta-block {
  text-align: center;
  padding: 140px 0;
}

.cta-block h2 {
  font-size: 46px;
  margin-bottom: 28px;
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
}

.faq-item__icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--gray-500);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  font-size: 15.5px;
  color: var(--gray-700);
}

.faq-item.is-open .faq-item__a {
  max-height: 400px;
  padding-bottom: 22px;
}

/* ---------- Footer ---------- */

.footer {
  padding: 56px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 14.5px;
  color: var(--gray-700);
}

.footer__nav a:hover { color: var(--black); }

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  font-size: 14.5px;
}

.footer__copy {
  margin-top: 40px;
  font-size: 13px;
  color: var(--gray-500);
}

/* ---------- Contact modal (Telegram / MAX) ---------- */

body.no-scroll {
  overflow: hidden;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 10, 10, 0.5);
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 44px 40px 40px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.25s ease, transform 0.25s ease;
  outline: none;
}

.modal-overlay.is-visible .modal {
  opacity: 1;
  transform: scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--gray-200);
  color: var(--black);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.modal__close:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.modal h3 {
  font-size: 24px;
  line-height: 1.25;
  max-width: 320px;
  margin-bottom: 28px;
}

.modal__channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal__channel {
  justify-content: flex-start;
  gap: 10px;
}

@media (max-width: 768px) {
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .modal {
    max-width: 100%;
    padding: 36px 24px 28px;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .modal-overlay.is-visible .modal {
    transform: translateY(0);
  }

  .modal::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: var(--gray-200);
  }
}

/* ---------- Reveal on scroll ---------- */

.anim-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.anim-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cascade > .anim-item:nth-child(3n+2) { transition-delay: 0.1s; }
.cascade > .anim-item:nth-child(3n+3) { transition-delay: 0.2s; }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .perks { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .portfolio { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; }
  .about-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }

  .hero { padding: 128px 0 64px; }
  .hero h1 { font-size: 34px; }
  .hero h1 .rule { height: 28px; margin: 0 10px; }
  .hero__heading .marker { margin-top: 12px; }
  .section { padding: 72px 0; }
  .section-head h2 { font-size: 30px; }
  .cta-block { padding: 72px 0; }
  .cta-block h2 { font-size: 32px; }

  .services { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .perks { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .about-card { padding: 32px; }
  .about-card__photo { width: 120px; height: 120px; }
  .calc { padding: 28px; }

  .footer__inner { flex-direction: column; }
  .footer__contacts { align-items: flex-start; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 28px; }
}
