/* ═══════════════════════════════════════════════════
   THRIVING SILVER MINDS — Flyer-matched theme
   Navy · Olive Green · Gold · White
═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,700;0,900;1,700&family=Open+Sans:wght@400;500;600;700;800&family=Great+Vibes&display=swap');

:root {
  --navy:        #1B2B6B;
  --navy-mid:    #152257;
  --navy-dark:   #0E1840;
  --navy-light:  #E8EBF5;
  --navy-pale:   #F2F4FA;
  --olive:       #4A5E2A;
  --olive-mid:   #3A4A20;
  --olive-light: #EBF0E0;
  --olive-pale:  #F4F7EE;
  --gold:        #C9A84C;
  --gold-light:  #F7EFD8;
  --gold-pale:   #FDFAF2;
  --white:       #FFFFFF;
  --off-white:   #FAFAFA;
  --text-dark:   #111827;
  --text-mid:    #374151;
  --text-soft:   #6B7280;
  --border:      #E5E7EB;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 16px;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
p   { font-size: 16px; line-height: 1.85; color: var(--text-mid); margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* ── TYPE ── */
h1, h2, h3, h4 {
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.15; color: var(--navy);
}
h1 { font-size: clamp(36px, 5.5vw, 68px); font-weight: 900; }
h2 { font-size: clamp(26px, 3.8vw, 46px); font-weight: 900; }
h3 { font-size: clamp(18px, 2.2vw, 24px); font-weight: 700; }
h4 { font-size: clamp(15px, 1.8vw, 18px); font-weight: 700; }

.script { font-family: 'Great Vibes', cursive; }

/* ── LAYOUT ── */
.wrap    { max-width: 1180px; margin: 0 auto; padding: 0 5vw; }
.wrap-sm { max-width: 840px;  margin: 0 auto; padding: 0 5vw; }
section  { padding: 88px 5vw; }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Open Sans', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--olive);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--olive));
  border-radius: 2px; flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Open Sans', sans-serif; font-size: 15px; font-weight: 700;
  border: none; border-radius: 6px; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap; text-decoration: none; padding: 14px 32px;
  letter-spacing: .02em;
}
.btn:hover { transform: translateY(-2px); }
.btn-navy  { background: var(--navy);  color: #fff; box-shadow: 0 4px 16px rgba(27,43,107,.3); }
.btn-navy:hover  { background: var(--navy-mid); box-shadow: 0 8px 24px rgba(27,43,107,.42); color: #fff; }
.btn-olive { background: var(--olive); color: #fff; box-shadow: 0 4px 16px rgba(74,94,42,.3); }
.btn-olive:hover { background: var(--olive-mid); box-shadow: 0 8px 24px rgba(74,94,42,.42); color: #fff; }
.btn-gold  { background: var(--gold);  color: var(--navy); box-shadow: 0 4px 16px rgba(201,168,76,.35); }
.btn-gold:hover  { background: #B8943C; color: var(--navy); box-shadow: 0 8px 24px rgba(201,168,76,.5); }
.btn-white { background: #fff; color: var(--navy); box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,.2); color: var(--navy); }
.btn-outline-navy  { background: transparent; color: var(--navy);  border: 2px solid var(--navy); }
.btn-outline-navy:hover  { background: var(--navy);  color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.65); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.btn-lg   { padding: 17px 40px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }
.btn-pill { border-radius: 50px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 72px; background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 5vw;
  justify-content: space-between; transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo-wrap { width: 42px; height: 42px; flex-shrink: 0; }
.nav-logo-wrap svg { width: 100%; height: 100%; }
.nav-name { font-family: 'Merriweather', serif; font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.nav-tag  { font-family: 'Great Vibes', cursive; font-size: 14px; color: var(--gold); line-height: 1.2; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--text-mid); padding: 7px 13px; border-radius: 6px; transition: .15s; }
.nav-links a:hover, .nav-links a.active { background: var(--navy-pale); color: var(--navy); }
.nav-cta {
  background: var(--olive) !important; color: #fff !important;
  font-weight: 700 !important; padding: 9px 22px !important;
  border-radius: 6px !important; box-shadow: 0 3px 12px rgba(74,94,42,.3);
}
.nav-cta:hover { background: var(--olive-mid) !important; color: #fff !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy); color: #fff;
  text-align: center; padding: 10px 5vw;
  font-size: 14px; font-weight: 600; position: relative; z-index: 899;
}
.topbar a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.topbar-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #4ADE80; margin-right: 8px; vertical-align: middle;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ── SECTION HEADER ── */
.sec-hd { text-align: center; margin-bottom: 56px; }
.sec-lead { font-size: 18px; color: var(--text-mid); max-width: 540px; margin: 0 auto; line-height: 1.8; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 136px 5vw 80px;
  text-align: center;
  background: linear-gradient(160deg, var(--navy-pale) 0%, var(--olive-pale) 100%);
}
.page-hero p { max-width: 580px; margin: 16px auto 0; font-size: 19px; }

/* ── GOLD DIVIDER ── */
.gold-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0;
}
.gold-divider-line { flex: 1; height: 1px; background: var(--gold); opacity: .4; }
.gold-divider-heart { color: var(--gold); font-size: 14px; }

/* ── ICON FEATURE STRIP ── */
.icon-strip {
  background: var(--olive);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.icon-strip-item {
  padding: 32px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
  opacity: 0; transform: translateY(12px);
  transition: opacity .5s, transform .5s;
}
.icon-strip-item:last-child { border-right: none; }
.icon-strip-item.show { opacity: 1; transform: none; }
.strip-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-size: 24px;
  border: 1.5px solid rgba(255,255,255,.2);
}
.strip-title { font-family: 'Open Sans', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 8px; }
.strip-desc  { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.65; }

/* ── STEP CARDS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 36px; left: 20%; right: 20%; height: 2px; background: linear-gradient(90deg, var(--gold), var(--olive)); opacity: .25; }
.step-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 12px; padding: 36px 24px 28px; text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.09); border-color: var(--gold); }
.step-num {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: 0 4px 14px rgba(27,43,107,.3);
}
.step-icon  { font-size: 26px; margin-bottom: 10px; }
.step-title { font-family: 'Merriweather', serif; font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-text  { font-size: 15px; line-height: 1.8; color: var(--text-mid); }

/* ── CIRCLE CARDS ── */
.circles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.circle-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.circle-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.1); }
.circle-head { padding: 28px 24px 20px; }
.ch-navy   { background: var(--navy); }
.ch-olive  { background: var(--olive); }
.ch-purple { background: #4A3080; }
.circle-head .tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; background: rgba(255,255,255,.2); color: #fff; margin-bottom: 10px; }
.circle-head .emoji { font-size: 34px; margin-bottom: 10px; }
.circle-head h3 { color: #fff; }
.circle-body { padding: 18px 24px 22px; }
.circle-body p { font-size: 14px; line-height: 1.75; color: var(--text-mid); margin-bottom: 14px; }
.circle-link { font-size: 14px; font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 5px; transition: gap .2s, color .2s; }
.circle-link:hover { gap: 9px; color: var(--olive); }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--navy); padding: 80px 5vw; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1180px; margin: 0 auto; }
.testi-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 26px 22px; position: relative; }
.testi-qmark { position: absolute; top: 10px; left: 16px; font-size: 50px; color: var(--gold); opacity: .3; font-family: Georgia, serif; line-height: 1; }
.testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.testi-text  { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,.88); font-style: italic; margin-bottom: 18px; position: relative; z-index: 1; }
.testi-person { display: flex; align-items: center; gap: 11px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(255,255,255,.25); }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name   { font-size: 14px; font-weight: 700; color: #fff; }
.testi-detail { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 1px; }

/* ── PRICING ── */
.price-card {
  background: #fff; border-radius: 14px;
  border: 2px solid var(--gold); overflow: hidden;
  max-width: 600px; margin: 0 auto;
  box-shadow: 0 8px 40px rgba(201,168,76,.18);
}
.price-head { background: var(--navy); padding: 30px 34px; }
.price-badge { display: inline-block; background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; margin-bottom: 12px; }
.price-name  { font-family: 'Merriweather', serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.price-desc  { font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.price-amt   { display: flex; align-items: baseline; gap: 5px; }
.price-dollar{ font-family: 'Merriweather', serif; font-size: 58px; font-weight: 900; color: var(--gold); line-height: 1; }
.price-per   { font-size: 14px; color: rgba(255,255,255,.65); }
.price-sub   { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; font-style: italic; }
.price-body  { padding: 26px 34px 30px; }
.price-list  { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.price-list li { font-size: 15px; color: var(--text-mid); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.pchk { color: var(--olive); font-weight: 800; font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.price-fine { text-align: center; font-size: 12px; color: var(--text-soft); margin-top: 10px; font-style: italic; }

/* ── CTA ── */
.cta-band {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-mid) 100%);
  padding: 80px 5vw; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='2' fill='white' opacity='.05'/%3E%3C/svg%3E") repeat;
}
.cta-inner   { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-script  { font-family: 'Great Vibes', cursive; font-size: clamp(26px, 4vw, 44px); color: var(--gold); margin-bottom: 12px; }
.cta-heading { color: #fff; margin-bottom: 14px; }
.cta-text    { font-size: 18px; color: rgba(255,255,255,.88); line-height: 1.8; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-fine    { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.45); }

/* ── FOOTER ── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.55); padding: 56px 5vw 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; max-width: 1180px; margin-left: auto; margin-right: auto; }
.footer-brand-name { font-family: 'Merriweather', serif; font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.footer-brand-tag  { font-family: 'Great Vibes', cursive; font-size: 16px; color: var(--gold); margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 230px; }
.footer-col-title  { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 13px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.44); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-url { background: var(--olive); padding: 14px 5vw; text-align: center; font-size: 14px; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; max-width: 1180px; margin: 0 auto; }
.footer-bottom p { font-size: 12px; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.32); transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ── NOTICE BOXES ── */
.notice { padding: 16px 20px; border-radius: 8px; margin-bottom: 18px; }
.notice-olive { background: var(--olive-pale); border-left: 4px solid var(--olive); }
.notice-navy  { background: var(--navy-pale);  border-left: 4px solid var(--navy); }
.notice-gold  { background: var(--gold-pale);  border-left: 4px solid var(--gold); }
.notice p { font-size: 14px; margin: 0; color: var(--text-mid); }

/* ── FORMS ── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); margin-bottom: 7px; }
.form-input  { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'Open Sans', sans-serif; font-size: 15px; color: var(--text-dark); background: var(--off-white); outline: none; transition: border-color .2s, box-shadow .2s; }
.form-input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,43,107,.1); background: #fff; }
.form-input.error { border-color: #DC2626; }
textarea.form-input { resize: vertical; min-height: 110px; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-helper { font-size: 12px; color: var(--text-soft); margin-top: 5px; }
.form-sec-title { font-family: 'Merriweather', serif; font-size: 17px; font-weight: 700; color: var(--navy); margin: 24px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--navy-pale); }
.checkbox-row { display: flex; align-items: flex-start; gap: 12px; padding: 13px 15px; background: var(--navy-pale); border-radius: 8px; border: 1.5px solid var(--navy-light); margin-bottom: 9px; cursor: pointer; transition: border-color .2s; }
.checkbox-row:hover { border-color: var(--navy); }
.checkbox-row.req { background: #FFF7ED; border-color: rgba(201,168,76,.35); }
.checkbox-row input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--navy); flex-shrink: 0; margin-top: 2px; }
.checkbox-label { font-size: 13.5px; line-height: 1.65; color: var(--text-mid); }
.checkbox-label a { color: var(--navy); text-decoration: underline; }
.req-star { color: #DC2626; margin-left: 2px; }
.success-state { display: none; flex-direction: column; align-items: center; text-align: center; padding: 32px 0; }
.success-icon  { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--olive)); display: flex; align-items: center; justify-content: center; font-size: 36px; margin: 0 auto 18px; }
.success-title { font-family: 'Merriweather', serif; font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.success-text  { font-size: 16px; line-height: 1.8; color: var(--text-mid); max-width: 400px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 840px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; background: #fff; }
.faq-item:hover { border-color: var(--navy-light); }
.faq-q { padding: 17px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Open Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); transition: background .2s; user-select: none; gap: 12px; }
.faq-q:hover { background: var(--navy-pale); }
.faq-q.open   { color: var(--olive); background: var(--olive-pale); }
.faq-chev { font-size: 11px; color: var(--gold); transition: transform .3s; flex-shrink: 0; }
.faq-q.open .faq-chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s ease; font-size: 15px; line-height: 1.8; color: var(--text-mid); padding: 0 20px; }
.faq-a.open { max-height: 400px; padding: 4px 20px 18px; }

/* ── ANIMATIONS ── */
.fade-up    { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.show { opacity: 1; transform: none; }
.fade-left  { opacity: 0; transform: translateX(-22px); transition: opacity .6s ease, transform .6s ease; }
.fade-left.show  { opacity: 1; transform: none; }
.fade-right { opacity: 0; transform: translateX(22px);  transition: opacity .6s ease, transform .6s ease; }
.fade-right.show { opacity: 1; transform: none; }
@keyframes shakeIt { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-6px)} 40%{transform:translateX(6px)} 60%{transform:translateX(-4px)} 80%{transform:translateX(4px)} }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .testi-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .form-row-2  { grid-template-columns: 1fr; }
  .icon-strip  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links   { display: none; }
  .hamburger   { display: flex; }
  .testi-grid, .steps-grid, .circles-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  section { padding: 68px 5vw; }
}

/* ── ADA: Focus visible for keyboard navigation ── */
:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
}
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Skip navigation */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 15px;
  z-index: 9999;
  transition: top .2s;
  text-decoration: none;
}
.skip-nav:focus {
  top: 0;
  outline: 3px solid var(--gold);
}
