/* ═══════════════════════════════════════════════════════════
   SMART EXPAND — Shared Design System
   RocketB · Gold #BF9A3C / Navy #1E2D3D
   Fonts: Cormorant Garamond (display) + DM Sans (body)
═══════════════════════════════════════════════════════════ */


/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: 1.15;
  color: var(--ink);
}

p {
  text-wrap: pretty;
  max-width: 70ch;
}

::selection {
  background: rgba(191, 154, 60, 0.2);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

button {
  cursor: pointer;
}

details summary {
  cursor: pointer;
}

details summary::-webkit-details-marker {
  display: none;
}

/* ── LAYOUT ── */

.section {
  padding-block: clamp(var(--sp12), 7vw, var(--sp24));
}

.section--alt {
  background: var(--bg-alt);
}

.section--warm {
  background: var(--bg-warm);
}

.section--dark {
  background: var(--bg-dark);
  color: #e2e8f0;
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.tc {
  text-align: center;
}

h2.tc,
p.tc {
  margin-inline: auto;
}

/* ── TYPOGRAPHY ── */
.label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--sp3);
}

.label--light {
  color: rgba(191, 154, 60, 0.8);
}

.eyebrow {
  /* alias */
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--sp5);
}

.section-sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: var(--sp10);
  max-width: 58ch;
}

/* ── PILL ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp1) var(--sp4);
  border-radius: var(--r-full);
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  margin-bottom: var(--sp5);
}

.pill--dark {
  background: rgba(191, 154, 60, 0.12);
  border-color: rgba(191, 154, 60, 0.3);
  color: #d4aa55;
}

/* ── BUTTONS ── */

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-strong);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--lg {
  font-size: var(--text-base);
  padding: var(--sp4) var(--sp10);
}

.btn--full {
  width: 100%;
}



/* ═══════════════════════════════════════════════════════════
   SHARED COMPONENTS
═══════════════════════════════════════════════════════════ */

/* Roksana photo section */
.roksana-section {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(var(--sp10), 6vw, var(--sp20));
  align-items: center;
}

.roksana-photo-wrap {
  position: relative;
}

.roksana-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

.roksana-photo-badge {
  position: absolute;
  bottom: var(--sp6);
  right: calc(-1 * var(--sp6));
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp4) var(--sp5);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.roksana-photo-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.roksana-photo-badge span {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.3;
}

.roksana-text h2 {
  margin-bottom: var(--sp5);
  font-size: var(--text-2xl);
}

.roksana-text p {
  color: var(--text-muted);
  margin-bottom: var(--sp5);
  max-width: 56ch;
}

.roksana-creds {
  display: flex;
  gap: var(--sp3);
  flex-wrap: wrap;
  margin-bottom: var(--sp6);
}

.roksana-cred {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp3) var(--sp4);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.roksana-cred strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}

.roksana-blockquote {
  border-left: 3px solid var(--gold);
  padding: var(--sp4) var(--sp6);
  background: var(--gold-pale);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--navy-mid);
  max-width: 54ch;
  line-height: 1.5;
}

/* VS comparison box */
.vs-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.vs-col {
  padding: var(--sp6) var(--sp7, var(--sp6));
}

.vs-col--no {
  background: #fff;
}

.vs-col--yes {
  background: var(--gold-bg);
  border-left: 2px solid var(--gold-border);
}

.vs-head {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp5);
}

.vs-col--yes .vs-head {
  color: var(--gold);
}

.vs-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp3);
}

.vs-col li {
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding-left: var(--sp5);
  position: relative;
  line-height: 1.45;
}

.vs-col--no li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #c0765a;
  font-weight: 700;
  font-size: 0.75em;
  top: 0.2em;
}

.vs-col--yes li {
  color: var(--text);
}

.vs-col--yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8em;
  top: 0.1em;
}

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp2);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--gold-border);
}

.faq-item summary {
  padding: var(--sp4) var(--sp6);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp4);
  transition: color var(--transition);
}

.faq-item summary:hover {
  color: var(--gold);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 var(--sp6) var(--sp5);
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: none;
  line-height: 1.65;
}

.faq-item strong {
  color: var(--ink);
}

/* Form */
.form-box {
  max-width: 720px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--gold-border);
  border-radius: var(--r-xl);
  padding: clamp(var(--sp8), 5vw, var(--sp12));
  box-shadow: var(--shadow-md);
}
.form {
  display: flex;
  flex-direction: column;
  gap: var(--sp4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp2);
}

.form-group label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp3) var(--sp4);
  font-size: var(--text-base);
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: #fff;
}

.form-group input.error {
  border-color: #c0765a;
}

.form-group textarea {
  min-height: 88px;
}

.check-label {
  display: flex;
  align-items: flex-start;
  gap: var(--sp3);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

.check-label input {
  display: none;
}

.check-box {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-sm);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: all var(--transition);
  flex-shrink: 0;
}

.check-label input:checked+.check-box {
  background: var(--gold);
  border-color: var(--gold);
}

.check-label input:checked+.check-box::after {
  content: '✓';
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
}

.form-note {
  font-size: var(--text-xs);
  color: var(--text-faint);
  text-align: center;
  max-width: none;
}

.form-success {
  text-align: center;
  padding: var(--sp10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp4);
}

.success-ring {
  width: 60px;
  height: 60px;
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
}

.form-success p {
  color: var(--text-muted);
}

.form-success .sig {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-display);
}

/* Animate on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Product nav breadcrumb */
.product-breadcrumb {
  padding-block: var(--sp4);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.product-breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: var(--sp2);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.product-breadcrumb__inner a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.product-breadcrumb__inner a:hover {
  color: var(--gold);
}

.product-breadcrumb__sep {
  color: var(--text-faint);
}

.product-breadcrumb__current {
  color: var(--gold);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .roksana-section {
    grid-template-columns: 300px 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {


  .roksana-section {
    grid-template-columns: 1fr;
  }

  .roksana-photo-wrap {
    max-width: 340px;
    margin-inline: auto;
  }

  .roksana-photo-badge {
    right: 0;
  }

  .vs-box {
    grid-template-columns: 1fr;
  }

  .vs-col--yes {
    border-left: none;
    border-top: 2px solid var(--gold-border);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--sp8);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}



/* SMART EXPAND MISSION LITE — Page-specific styles */

/* Hero */
.hero {
  padding-block: clamp(var(--sp12), 7vw, var(--sp24));
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(var(--sp10), 5vw, var(--sp20));
  align-items: center;
}

.hero__left h1 {
  margin-block: var(--sp4) var(--sp5);
}

.hero__lead {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: var(--sp8);
  max-width: 50ch;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: var(--sp3);
  flex-wrap: wrap;
  margin-bottom: var(--sp8);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp3);
  padding-top: var(--sp6);
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat__n {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--sp1);
}

.stat__l {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.3;
}

/* Hero photo */
.hero__right {
  position: relative;
}

.hero__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

.hero__quote-badge {
  position: absolute;
  bottom: var(--sp6);
  left: calc(-1 * var(--sp6));
  max-width: 280px;
  background: #fff;
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: var(--sp4) var(--sp5);
  box-shadow: var(--shadow-md);
}

.hero__quote-badge p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--navy-mid);
  margin: var(--sp2) 0;
  max-width: none;
}

.hero__quote-badge span {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold);
}

/* Two col */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp8), 5vw, var(--sp16));
  align-items: start;
}

.two-col h2 {
  margin-bottom: var(--sp5);
}

.two-col p {
  color: var(--text-muted);
}

.two-col p+p {
  margin-top: var(--sp3);
}

/* Session plan */
.session-plan {
  display: flex;
  flex-direction: column;
  gap: var(--sp3);
}

.session-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp5) var(--sp6);
}

.session-block--second {
  border-color: var(--gold-border);
  background: var(--gold-bg);
}


.session-block__num {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--ink);
}

.session-block__tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-alt);
  border-radius: var(--r-full);
  padding: 2px var(--sp3);
}

.session-block__tag--gold {
  color: var(--gold);
  background: var(--gold-pale);
}

.session-block__modules {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp2);
  margin-bottom: var(--sp3);
}

.session-block__modules span {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 2px var(--sp3);
}

.session-block--second .session-block__modules span {
  background: #fff;
  border-color: var(--gold-border);
  color: var(--gold);
}

.session-block p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: none;
}

.session-break {
  display: flex;
  align-items: center;
  gap: var(--sp3);
  padding-inline: var(--sp2);
}

.session-break__line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.session-break span {
  font-size: var(--text-xs);
  color: var(--text-faint);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

/* Modules grid */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp4);
  margin-top: var(--sp4);
}

.module-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp5);
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.module-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}

.module-card--s2 {
  background: var(--gold-bg);
  border-color: var(--gold-border);
}

.module-card__session {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--sp3);
}

.module-card__session--s2 {
  color: var(--gold);
}

.module-card__code {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: rgba(191, 154, 60, 0.15);
  line-height: 1;
  margin-bottom: var(--sp2);
}

.module-card h3 {
  font-size: var(--text-base);
  margin-bottom: var(--sp3);
}

.module-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: none;
  margin-bottom: var(--sp4);
}

.module-card__time {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold);
  padding: 2px var(--sp3);
  background: var(--gold-pale);
  border-radius: var(--r-full);
  display: inline-block;
}

/* SMART READY SCORE section */
.score-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(var(--sp10), 6vw, var(--sp20));
  align-items: center;
}

.score-components {
  display: flex;
  flex-direction: column;
  gap: var(--sp4);
  margin: var(--sp6) 0;
}

.score-comp {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp4) var(--sp5);
}

.score-comp__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp2);
}

.score-comp__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--ink);
}

.score-comp__max {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 2px var(--sp3);
  border-radius: var(--r-full);
}

.score-comp p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: none;
}

.score-thresholds {
  display: flex;
  gap: var(--sp3);
}

.score-threshold {
  flex: 1;
  border-radius: var(--r-md);
  padding: var(--sp4);
  text-align: center;
}

.score-threshold--low {
  background: rgba(192, 118, 90, 0.1);
  border: 1px solid rgba(192, 118, 90, 0.2);
}

.score-threshold--mid {
  background: rgba(191, 154, 60, 0.1);
  border: 1px solid var(--gold-border);
}

.score-threshold--high {
  background: rgba(67, 122, 34, 0.1);
  border: 1px solid rgba(67, 122, 34, 0.2);
}

.score-threshold span {
  font-size: var(--text-xs);
  color: var(--text-muted);
  display: block;
  margin-bottom: var(--sp1);
}

.score-threshold strong {
  display: block;
  font-size: var(--text-base);
  margin-bottom: var(--sp2);
  color: var(--ink);
}

.score-threshold p {
  font-size: var(--text-xs);
  color: var(--text-muted);
  max-width: none;
}

.score-threshold--high strong {
  color: #437a22;
}

.score-section__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

/* Delivers grid */
.delivers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp4);
  margin-top: var(--sp4);
}

.deliver-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp6);
  transition: border-color var(--transition), transform var(--transition);
}

.deliver-item:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}

.deliver-item__icon {
  font-size: 1.6rem;
  margin-bottom: var(--sp4);
}

.deliver-item h3 {
  font-size: var(--text-base);
  margin-bottom: var(--sp3);
}

.deliver-item p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: none;
}

/* Next product CTA */
.next-product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp5);
  margin-top: var(--sp8);
  padding: var(--sp5) var(--sp8);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  flex-wrap: wrap;
}

.next-product p {
  color: var(--text-muted);
  max-width: none;
  margin: 0;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1100px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .delivers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__right {
    max-width: 380px;
  }

  .hero__quote-badge {
    left: 0;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .score-section {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .delivers-grid {
    grid-template-columns: 1fr;
  }

  .score-thresholds {
    flex-direction: column;
  }
}