html {
    scroll-behavior: smooth;
}

/* ----------------------------- */
/* GLOBAL STYLES                 */
/* ----------------------------- */
body {
  font-family: system-ui, sans-serif;
  background: #ffffff;
  color: #003366;
  margin: 0;
  padding: 0;
}

/* ----------------------------- */
/* Landing-Navigation wird in Milestone B4 finalisiert */
/* ----------------------------- */

/* ----------------------------- */
/* HERO SECTION                  */
/* ----------------------------- */
.hero {
  text-align: center;
  padding: 60px 20px 120px;
  background: linear-gradient(to bottom, #edf7ff, #ffffff);
  max-width: none;
}
.hero h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero p {
  color: #444;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.signup-button {
  padding: 16px 30px;
  background: #0094FF;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0,148,255,0.3);
}

/* ----------------------------- */
/* SECTIONS (HOW, PRODUCTS, FAQ) */
/* ----------------------------- */

#vorteile {
    background: linear-gradient(to top, #edf7ff 25%, #ffffff 75%);
}

#how {
  background: #edf7ff;
  padding: 80px 20px 120px;
}

#products {
   background: linear-gradient(to bottom, #edf7ff 25%, #ffffff 75%); 
}

#products, .grid { max-width: none; padding: 80px 20px 120px; }
h3 { text-align: center; font-size: 2rem; margin-bottom: 40px; }

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.steps > div {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.steps h4 { font-size: 20px; margin-bottom: 8px; }
.steps p { font-size: 1.2rem; color: #555; margin: 0; }

/* FAQ */
.questions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background: linear-gradient(to bottom, #ffffff, #edf7ff);
}
.questions > div {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 15px;
}
.questions h4 { font-size: 20px; margin-bottom: 8px; }
.questions p { font-size: 1.2rem; color: #555; margin: 0; }

/* ----------------------------- */
/* CONTACT SECTION               */
#contact {
  background: #edf7ff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
form, .form-container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#contact p { margin-top: 20px; color: #555; text-align: center; }
#contact a { text-decoration: none; color: #0094FF; font-weight: 500; }

/* ----------------------------- */
/* CARDS (FEATURES, PRODUCTS)    */
.feature, .product {
  width: 280px;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border: 1px solid #e6e6e6;
  margin: 10px;
}
.feature h4, .product h4 { margin-bottom: 10px; color: #003366; }
.feature p, .product p { color: #555; }
.product p.price { color: #0094FF; font-weight: bold; }

/* FORM ELEMENTS */
input, textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 100%;
}
textarea { min-height: 120px; }
button.submit {
  padding: 14px 20px;
  background: #0094FF;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

/* FOOTER */
footer { text-align: center; padding: 30px; color: #777; font-size: 15px; }

/* GRID */
.grid { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; }


/* Stellt sicher, dass nur Inputs den Cursor zeigen */
body, h1, h2, h3, h4, p, span, div {
  caret-color: transparent; /* verhindert blinkenden Cursor */
}

/* Normale Inputs/Textareas dürfen weiterhin blinkenden Cursor haben */
input, textarea {
  caret-color: auto;
}

/* =======================================================================
   RESPONSIVE-ERWEITERUNG (NEU) — nur unterhalb des bestehenden CSS
   Regeln: keine neuen Klassen/IDs, kein JS, kein Inline-CSS, Desktop unverändert
======================================================================= */

/* -----------------------------------------------------------------------
   MOBILE (NEU) — max-width: 480px
   Ziele: volle Breite ab 320px, Touch-Abstände, lesbare Schriftgrößen,
          kein horizontales Scrollen
----------------------------------------------------------------------- */
@media (max-width: 480px) {
  html, body {
    overflow-x: hidden; /* verhindert horizontales Scrollen */
  }

  .hero {
    padding: 44px 16px 78px;
  }

  .hero h2 {
    font-size: 2.05rem;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .signup-button {
    width: 100%;
    max-width: 420px;
    box-sizing: border-box;
    padding: 14px 18px;
    font-size: 16px;
  }

  #how,
  #products,
  #contact,
  .questions,
  #products, .grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  h3 {
    font-size: 1.55rem;
    margin-bottom: 28px;
  }

  .steps {
    gap: 16px;
  }

  .steps h4,
  .questions h4 {
    font-size: 18px;
  }

  .steps p,
  .questions p {
    font-size: 1.05rem;
  }

  .feature, .product {
    width: 100%;
    max-width: 420px;
    box-sizing: border-box;
    margin: 8px 0;
    padding: 20px;
  }

  form, .form-container {
    gap: 14px;
  }

  input, textarea {
    font-size: 16px;
    padding: 12px 14px;
  }

  button.submit {
    width: 100%;
    font-size: 16px;
    padding: 14px 18px;
  }

  footer {
    padding: 22px 16px;
    font-size: 14px;
  }
}

/* -----------------------------------------------------------------------
   MOBILE (NEU) — max-width: 767px
   Ziele: volle Breite, angenehme Touch-Abstände, kein horizontales Scrollen
----------------------------------------------------------------------- */
@media (max-width: 767px) {
  html, body {
    overflow-x: hidden;
  }

  .hero {
    padding: 50px 18px 90px;
  }

  .hero h2 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .signup-button {
    width: 100%;
    max-width: 520px;
    box-sizing: border-box;
    font-size: 16px;
  }

  #how,
  #products,
  #contact,
  .questions,
  #products, .grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .feature, .product {
    width: 100%;
    max-width: 520px;
    box-sizing: border-box;
  }

  button.submit {
    width: 100%;
  }
}

/* -----------------------------------------------------------------------
   TABLET (NEU) — max-width: 1024px
   Ziele: Tablet wirkt nicht "gezoomt", stabile Breiten/Abstände,
          Desktop bleibt unverändert (nur <=1024 betroffen)
----------------------------------------------------------------------- */
@media (max-width: 1024px) {
  html, body {
    overflow-x: hidden;
  }

  .hero {
    padding: 54px 20px 105px;
  }

  .hero h2 {
    font-size: 2.65rem;
  }

  .hero p {
    font-size: 1.12rem;
    max-width: 720px;
  }

  #how,
  #products,
  #contact,
  .questions,
  #products, .grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature, .product {
    width: 300px;
    max-width: 100%;
    box-sizing: border-box;
  }

  form, .form-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  button.submit {
    padding: 14px 22px;
  }

  footer {
    font-size: 15px;
  }
}


/* ===== Milestone 1: public landing banner polish ===== */
.qs-public-view-banner {
  max-width: 1120px;
  margin: 16px auto 0;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(0, 51, 102, 0.10);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 10px 24px rgba(0, 29, 61, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.qs-public-view-banner__copy {
  display: grid;
  gap: 4px;
}

.qs-public-view-banner__title {
  font-size: 1rem;
  font-weight: 750;
  color: #003366;
}

.qs-public-view-banner__desc {
  color: #667085;
  line-height: 1.5;
}

.qs-public-view-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(0, 51, 102, 0.12);
  background: #fff;
  color: #003366;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 29, 61, 0.06);
}


/* ===== Milestone: Public Landing vs Hub ===== */
body.qs-landing-page {
  background: #ffffff;
}

.qs-header--landing {
  border-bottom-color: #e4edf5;
  box-shadow: 0 6px 18px rgba(0, 51, 102, 0.05);
}

.qs-header--landing .brand {
  gap: 12px;
}

.qs-header--landing .brand-name {
  margin-left: 0;
}

.qs-header--landing .qs-header-right {
  gap: 14px;
}

.qs-header--landing .top-nav.qs-top-nav--landing-preview {
  gap: 10px;
}

.qs-header--landing .top-nav.qs-top-nav--landing-preview .nav-link {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 51, 102, 0.10);
  background: rgba(255, 255, 255, 0.92);
}

.qs-header--landing .top-nav.qs-top-nav--landing-preview .qs-nav-link--cta {
  background: rgba(0, 148, 255, 0.09);
  border-color: rgba(0, 148, 255, 0.20);
}

/* ===== Milestone 1: public landing banner polish ===== */
.qs-public-view-banner {
  width: min(980px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(0, 51, 102, 0.10);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,250,253,0.92));
  box-shadow: 0 12px 34px rgba(0, 51, 102, 0.08);
  display: grid;
  gap: 10px;
}

.qs-public-view-banner__chip {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(0, 148, 255, 0.10);
  color: #003366;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.qs-public-view-banner__title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #003366;
  line-height: 1.35;
}

.qs-public-view-banner__desc {
  color: #5f6f85;
  line-height: 1.6;
  font-size: 0.98rem;
  max-width: 72ch;
}

/* ===== Milestone: Public Landing vs Hub ===== */
body.qs-landing-page {
  background: #ffffff;
}

body.qs-landing-page.qs-landing-drawer-open {
  overflow: hidden;
}

.qs-header--landing {
  border-bottom-color: #e4edf5;
  box-shadow: 0 6px 18px rgba(0, 51, 102, 0.05);
}

.qs-header--landing .brand {
  gap: 12px;
}

.qs-header--landing .brand-name {
  margin-left: 0;
}

.qs-header--landing .qs-header-right {
  gap: 14px;
}

.qs-header--landing .top-nav.qs-top-nav--landing-preview {
  gap: 10px;
}

.qs-header--landing .top-nav.qs-top-nav--landing-preview .nav-link {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 51, 102, 0.10);
  background: rgba(255, 255, 255, 0.92);
}

.qs-header--landing .top-nav.qs-top-nav--landing-preview .qs-nav-link--cta {
  background: rgba(0, 148, 255, 0.09);
  border-color: rgba(0, 148, 255, 0.20);
}

.qs-landing-drawer-toggle {
  position: fixed;
  top: clamp(88px, 10vh, 112px);
  left: clamp(16px, 2.5vw, 28px);
  z-index: 10030;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(0, 51, 102, 0.10);
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  color: #003366;
  box-shadow: 0 14px 34px rgba(0, 51, 102, 0.10);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.qs-landing-drawer-toggle:hover,
.qs-landing-drawer-toggle:focus-visible,
.qs-landing-drawer-open .qs-landing-drawer-toggle {
  outline: none;
  transform: translateY(-1px);
  background: rgba(255,255,255,0.99);
  border-color: rgba(0, 148, 255, 0.24);
  box-shadow: 0 18px 40px rgba(0, 51, 102, 0.14);
}

.qs-landing-drawer-toggle__icon {
  display: inline-grid;
  gap: 4px;
  width: 18px;
  flex: 0 0 auto;
}

.qs-landing-drawer-toggle__icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.qs-landing-drawer-toggle__label {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.qs-landing-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10031;
  background: rgba(7, 22, 41, 0.30);
  backdrop-filter: blur(2px);
}

.qs-landing-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10032;
  width: min(340px, calc(100vw - 24px));
  height: 100vh;
  padding: calc(84px + env(safe-area-inset-top, 0px)) 20px calc(24px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(245,249,252,0.98));
  border-right: 1px solid rgba(0, 51, 102, 0.08);
  box-shadow: 18px 0 40px rgba(0, 29, 61, 0.14);
  display: grid;
  align-content: start;
  gap: 18px;
  transform: translateX(-104%);
  transition: transform 220ms ease;
}

.qs-landing-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

.qs-landing-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.qs-landing-drawer__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(0, 148, 255, 0.09);
  color: #003366;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.qs-landing-drawer__close {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(0, 51, 102, 0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.96);
  color: #003366;
  box-shadow: 0 10px 24px rgba(0, 29, 61, 0.06);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.qs-landing-drawer__close:hover,
.qs-landing-drawer__close:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background: rgba(0, 148, 255, 0.08);
  border-color: rgba(0, 148, 255, 0.22);
  box-shadow: 0 12px 28px rgba(0, 51, 102, 0.10);
}

.qs-landing-drawer__intro {
  display: grid;
  gap: 8px;
  padding: 2px 2px 4px;
}

.qs-landing-drawer__title {
  font-size: 1.22rem;
  font-weight: 800;
  color: #003366;
  line-height: 1.3;
}

.qs-landing-drawer__desc {
  color: #5f6f85;
  line-height: 1.6;
  font-size: 0.96rem;
}

.qs-landing-drawer__nav {
  display: grid;
  gap: 10px;
}

.qs-landing-drawer__link {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(0, 51, 102, 0.08);
  background: rgba(255,255,255,0.94);
  color: #003366;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 29, 61, 0.05);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.qs-landing-drawer__link:hover,
.qs-landing-drawer__link:focus-visible {
  outline: none;
  transform: translateX(2px);
  background: rgba(0, 148, 255, 0.08);
  border-color: rgba(0, 148, 255, 0.20);
  box-shadow: 0 12px 24px rgba(0, 51, 102, 0.08);
}

.qs-landing-drawer__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.qs-landing-drawer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(0, 51, 102, 0.10);
  background: rgba(255,255,255,0.98);
  color: #003366;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 29, 61, 0.06);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.qs-landing-drawer__cta:hover,
.qs-landing-drawer__cta:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background: rgba(0, 148, 255, 0.08);
  border-color: rgba(0, 148, 255, 0.20);
  box-shadow: 0 12px 24px rgba(0, 51, 102, 0.10);
}

.qs-landing-drawer__cta--primary {
  background: rgba(0, 148, 255, 0.10);
  border-color: rgba(0, 148, 255, 0.18);
}

body.qs-landing-page section[id] {
  scroll-margin-top: 112px;
}

body.qs-landing-page .hero {
  padding-top: 56px;
}

body.qs-landing-page.qs-landing-page--hub-preview .hero {
  padding-top: 44px;
}

@media (max-width: 900px) {
  .qs-public-view-banner {
    width: min(100% - 24px, 100%);
    padding: 16px 18px;
    border-radius: 20px;
  }

  .qs-landing-drawer {
    width: min(320px, calc(100vw - 18px));
    padding-top: calc(76px + env(safe-area-inset-top, 0px));
  }

  .qs-landing-drawer-toggle {
    top: calc(74px + env(safe-area-inset-top, 0px));
    left: 14px;
    min-height: 48px;
    padding: 0 16px 0 12px;
    border-radius: 16px;
  }

  .qs-landing-drawer-toggle__label {
    font-size: 0.94rem;
  }

  body.qs-landing-page .hero,
  body.qs-landing-page.qs-landing-page--hub-preview .hero {
    padding-top: 40px;
  }
}

@media (max-width: 640px) {
  .qs-landing-drawer-toggle {
    gap: 0;
    width: 48px;
    justify-content: center;
    padding: 0;
  }

  .qs-landing-drawer-toggle__label {
    display: none;
  }

  .qs-landing-drawer {
    width: min(300px, calc(100vw - 14px));
    padding-left: 16px;
    padding-right: 16px;
  }

  body.qs-landing-page section[id] {
    scroll-margin-top: 96px;
  }
}

/* ===== Milestone B3: logged-in landing preview ===== */
.qs-public-view-banner[hidden] {
  display: none !important;
}

body.qs-landing-page.qs-landing-page--hub-preview .hero {
  padding-top: 28px;
}

body.qs-landing-page.qs-landing-page--hub-preview .hero .qs-public-view-banner {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto 20px;
  padding: 18px 62px 18px 22px;
  border-radius: 24px;
  border: 1px solid rgba(0, 51, 102, 0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,249,252,0.96));
  box-shadow: 0 14px 32px rgba(0, 51, 102, 0.08);
  text-align: left;
}

body.qs-landing-page.qs-landing-page--hub-preview .hero .qs-public-view-banner--inline {
  display: grid;
  gap: 12px;
}

.qs-public-view-banner__top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  padding-right: 10px;
}

.qs-public-view-banner__copy {
  display: grid;
  gap: 6px;
  max-width: 72ch;
}

.qs-public-view-banner__close {
  appearance: none;
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(0, 51, 102, 0.10);
  background: rgba(255,255,255,0.96);
  color: #003366;
  box-shadow: 0 8px 18px rgba(0, 29, 61, 0.06);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.qs-public-view-banner__close:hover,
.qs-public-view-banner__close:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background: rgba(0, 148, 255, 0.08);
  border-color: rgba(0, 148, 255, 0.20);
  box-shadow: 0 12px 24px rgba(0, 51, 102, 0.10);
}

.qs-public-view-banner__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 2px;
}

.qs-public-view-banner__btn--primary {
  background: rgba(0, 148, 255, 0.10);
  border-color: rgba(0, 148, 255, 0.20);
}

.qs-public-view-banner__btn--primary:hover,
.qs-public-view-banner__btn--primary:focus-visible {
  outline: none;
  background: rgba(0, 148, 255, 0.16);
  border-color: rgba(0, 148, 255, 0.26);
}

body.qs-landing-page.qs-landing-page--hub-preview.qs-landing-preview-banner-dismissed .hero {
  padding-top: 40px;
}

@media (max-width: 900px) {
  body.qs-landing-page.qs-landing-page--hub-preview .hero .qs-public-view-banner {
    width: min(100%, 100%);
    margin-bottom: 22px;
    padding: 14px 54px 14px 16px;
    border-radius: 20px;
  }

  .qs-public-view-banner__close {
    top: 14px;
    right: 14px;
  }
}

@media (max-width: 640px) {
  body.qs-landing-page.qs-landing-page--hub-preview .hero .qs-public-view-banner {
    gap: 10px;
    padding: 14px 52px 14px 14px;
  }

  .qs-public-view-banner__top {
    align-items: flex-start;
    padding-right: 0;
  }

  .qs-public-view-banner__title {
    font-size: 1rem;
    line-height: 1.4;
  }

  .qs-public-view-banner__desc {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .qs-public-view-banner__actions {
    width: 100%;
  }

  .qs-public-view-banner__actions .qs-public-view-banner__btn {
    width: 100%;
  }

  .qs-public-view-banner__close {
    width: 36px;
    height: 36px;
    top: 12px;
    right: 12px;
  }
}
