/* ===========================================================
   Nemae : feuille partagée (accueil + pages légales)
   =========================================================== */

:root {
  --bg: #FAF9F5;
  --surface: #FFFFFF;
  --surface-2: #F2EFE9;
  --ink: #2A2523;
  --ink-2: #6E645F;
  --line: #E6E1DA;
  --accent: #D97567;
  --accent-text: #B04E3C;
  --center: #B04E3C;
  --btn-bg: #2A2523;
  --btn-ink: #FAF9F5;
  --btn-hover: #463E3B;
  --band-bg: #1C1A19;
  --band-surface: #262322;
  --band-ink: #F3EFEA;
  --band-ink-2: #ABA19B;
  --band-accent: #E58A7C;
  --band-line: #3A3533;
  --phone-frame: #2A2523;

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Helvetica Neue", Arial, sans-serif;
  --r: 20px;
  --r-lg: 28px;
  --wrap: 72rem;
  --measure: 40rem;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section: clamp(4.5rem, 11vw, 8rem);

  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1C1A19;
    --surface: #262322;
    --surface-2: #2E2A28;
    --ink: #F3EFEA;
    --ink-2: #ABA19B;
    --line: #3A3533;
    --accent: #E58A7C;
    --accent-text: #E58A7C;
    --btn-bg: #F3EFEA;
    --btn-ink: #1C1A19;
    --btn-hover: #FFFFFF;
    --band-bg: #121110;
    --band-surface: #211E1D;
    --band-line: #34302E;
    --phone-frame: #3A3533;
  }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; text-wrap: balance; }
p, ul, ol, dl, dd, figure { margin: 0; }
p, li { text-wrap: pretty; }
img, svg { display: block; max-width: 100%; }
strong, b { font-weight: 600; }

a { color: var(--accent-text); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--ink); }

:focus-visible { outline: 3px solid var(--accent-text); outline-offset: 3px; border-radius: 6px; }
::selection { background: color-mix(in oklab, var(--accent) 30%, transparent); }

.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;
}
.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 10;
  background: var(--btn-bg); color: var(--btn-ink);
  padding: 0.75rem 1.25rem; border-radius: 999px; font-weight: 600; text-decoration: none;
}
.skip:focus { top: 1rem; color: var(--btn-ink); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Logotype ---------- */
.logo {
  display: inline-flex; align-items: baseline; gap: 0.12em;
  color: var(--ink); text-decoration: none;
  font-size: 1.5rem; font-weight: 500; letter-spacing: 0.11em;
  min-height: 44px; align-items: center;
}
.logo:hover { color: var(--ink); }
.logo-dot {
  width: 0.26em; height: 0.26em; border-radius: 50%;
  background: var(--accent); align-self: flex-end; margin-bottom: 0.72em;
}

/* ---------- En-tête ---------- */
.site-header { padding-block: 1rem; }
.site-header .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.25rem 2rem;
}
.site-nav ul {
  display: flex; flex-wrap: wrap; gap: 0 0.25rem;
  list-style: none; margin: 0; padding: 0;
}
.site-nav a {
  display: inline-flex; align-items: center; min-height: 48px;
  padding-inline: 0.75rem; border-radius: 999px;
  color: var(--ink); font-weight: 500; font-size: 1rem; text-decoration: none;
}
.site-nav li:first-child a { padding-left: 0; }
.site-nav a:hover { color: var(--accent-text); }
@media (min-width: 48rem) {
  .site-header { padding-block: 1.5rem; }
  .site-nav li:first-child a { padding-left: 0.75rem; }
}
.back-link {
  display: inline-flex; align-items: center; min-height: 48px;
  color: var(--ink); font-weight: 500; font-size: 1rem; text-decoration: none;
}
.back-link:hover { color: var(--accent-text); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 56px; padding: 0.9rem 1.75rem; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-ink);
  font: inherit; font-size: 1.0625rem; font-weight: 600; text-decoration: none;
  transition: background-color 0.15s ease;
}
.btn:hover { background: var(--btn-hover); color: var(--btn-ink); }
.btn:active { transform: translateY(1px); }

/* ---------- Sections ---------- */
.section { padding-block: var(--section); }
.kicker {
  font-size: 0.9375rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-text); margin-bottom: 1rem;
}
.section h2 { font-size: clamp(1.875rem, 5vw, 2.75rem); max-width: 22ch; }
.section-lead { font-size: 1.1875rem; color: var(--ink-2); max-width: var(--measure); margin-top: 1.25rem; }

/* ---------- Accueil : hero ---------- */
.hero { padding-block: clamp(2rem, 6vw, 4.5rem) var(--section); }
.hero .wrap { display: grid; gap: clamp(3rem, 8vw, 4rem); align-items: center; }
.hero h1 { font-size: clamp(2.75rem, 9vw, 4.5rem); letter-spacing: -0.035em; line-height: 1.02; }
.hero-text p { font-size: clamp(1.1875rem, 2.4vw, 1.3125rem); color: var(--ink-2); max-width: 32rem; margin-top: 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 2.25rem; }
.platforms { font-size: 1rem; font-weight: 500; color: var(--ink-2); }
@media (min-width: 60rem) {
  .hero .wrap { grid-template-columns: minmax(0, 1fr) auto; gap: 4rem; }
}

/* ---------- Téléphone dessiné ---------- */
.phone {
  width: min(310px, 86vw); justify-self: center;
  border-radius: 46px; background: var(--phone-frame); padding: 10px;
  box-shadow: 0 1px 2px rgb(42 37 35 / 0.08), 0 24px 60px rgb(42 37 35 / 0.14);
}
.phone-screen {
  border-radius: 37px; background: var(--bg); padding: 2rem 1rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.625rem;
}
.ph-kicker { font-size: 0.8125rem; font-weight: 500; color: var(--ink-2); padding-inline: 0.25rem; }
.ph-name { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; padding-inline: 0.25rem; margin-bottom: 0.25rem; }
.ph-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 0.8rem 0.95rem; display: flex; flex-direction: column; gap: 0.35rem;
}
.ph-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-text); }
.ph-row { display: flex; justify-content: space-between; gap: 0.5rem; font-size: 0.875rem; line-height: 1.4; }
.ph-row span { color: var(--ink-2); }
.ph-row b { text-align: right; }
.ph-main { font-size: 0.9375rem; font-weight: 600; line-height: 1.35; }
.ph-sub { font-size: 0.8125rem; color: var(--ink-2); line-height: 1.45; }
.ph-share { display: flex; align-items: center; padding: 0.5rem 0.25rem 0; font-size: 0.8125rem; color: var(--ink-2); }
.ph-share i {
  width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--bg);
  background: var(--accent); margin-right: -8px;
}
.ph-share i:nth-child(2) { background: #E58A7C; }
.ph-share i:nth-child(3) { background: var(--center); margin-right: 0.6rem; }

/* ---------- Constat ---------- */
.constat { background: var(--surface-2); }
.constat-text { display: grid; gap: 1.25rem; max-width: var(--measure); margin-top: 1.75rem; font-size: 1.1875rem; }
.constat-text p:last-child { color: var(--ink-2); }

/* ---------- Le carnet ---------- */
.features {
  list-style: none; margin: 3rem 0 0; padding: 0;
  display: grid; gap: 1rem; grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 40rem) { .features { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64rem) { .features { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.75rem; display: flex; flex-direction: column; gap: 0.625rem;
}
.feature h3 { font-size: 1.25rem; letter-spacing: -0.01em; }
.feature p { color: var(--ink-2); font-size: 1.0625rem; }
.sample {
  margin-top: auto; padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.sample span {
  display: inline-flex; align-items: center; min-height: 36px;
  padding: 0.35rem 0.85rem; border-radius: 999px;
  background: var(--surface-2); font-size: 0.9375rem; font-weight: 500; color: var(--ink);
}

/* ---------- Ordonnance ---------- */
.steps {
  list-style: none; margin: 3rem 0 0; padding: 0; counter-reset: step;
  display: grid; gap: 2rem; grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 52rem) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.5rem; } }
.steps li { counter-increment: step; display: grid; gap: 0.5rem; align-content: start; }
.steps li::before {
  content: counter(step);
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--accent); color: var(--accent-text);
  font-weight: 600; font-size: 1.0625rem; margin-bottom: 0.5rem;
}
.steps h3 { font-size: 1.25rem; letter-spacing: -0.01em; }
.steps p { color: var(--ink-2); }
.note { margin-top: 2.5rem; font-size: 1rem; color: var(--ink-2); max-width: var(--measure); }

/* ---------- À plusieurs ---------- */
.partage .wrap { display: grid; gap: 3.5rem; align-items: center; }
@media (min-width: 60rem) { .partage .wrap { grid-template-columns: minmax(0, 1fr) minmax(0, 26rem); gap: 5rem; } }
.partage-text > p { margin-top: 1.25rem; max-width: var(--measure); }
.partage-text > p + p { color: var(--ink-2); }
.symbole-note {
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  font-size: 1rem; color: var(--ink-2); max-width: 30rem;
}
.cercle {
  position: relative; width: 100%; max-width: 26rem; aspect-ratio: 1; justify-self: center;
  margin: 0;
}
.cercle::before {
  content: ""; position: absolute; inset: 12%; border-radius: 50%;
  border: 1.5px dashed var(--line);
}
.cercle span {
  position: absolute; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  font-size: 0.9375rem; font-weight: 500; white-space: nowrap;
}
.cercle span::before {
  content: ""; width: clamp(34px, 10vw, 46px); aspect-ratio: 1; border-radius: 50%; background: var(--accent);
}
.cercle .c-centre {
  left: 50%; top: 50%;
  width: 26%; aspect-ratio: 1; border-radius: 50%; background: var(--center);
  color: #FAF9F5; justify-content: center; font-weight: 600; font-size: 1rem;
}
.cercle .c-centre::before { display: none; }
.cercle .c1 { left: 50%; top: 12%; }
.cercle .c2 { left: 86%; top: 38%; }
.cercle .c3 { left: 72%; top: 81%; }
.cercle .c4 { left: 28%; top: 81%; }
.cercle .c5 { left: 14%; top: 38%; }
.cercle .c1, .cercle .c2, .cercle .c3, .cercle .c4, .cercle .c5 { margin-top: 0.9rem; }

/* ---------- Vos données (bande sombre) ---------- */
.donnees { background: var(--band-bg); color: var(--band-ink); }
.donnees .kicker { color: var(--band-accent); }
.donnees .section-lead { color: var(--band-ink-2); }
.donnees a { color: var(--band-accent); }
.donnees a:hover { color: var(--band-ink); }
.donnees :focus-visible { outline-color: var(--band-accent); }
.garanties {
  list-style: none; margin: 3.5rem 0 0; padding: 0;
  display: grid; gap: 2.25rem 3rem; grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 44rem) { .garanties { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64rem) { .garanties { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.garanties li { display: grid; gap: 0.4rem; padding-top: 1.5rem; border-top: 1px solid var(--band-line); }
.garanties h3 { font-size: 1.1875rem; letter-spacing: -0.01em; }
.garanties p { color: var(--band-ink-2); font-size: 1.0625rem; }
.donnees-link { margin-top: 3rem; font-weight: 600; }

/* ---------- Ce que Nemae n'est pas ---------- */
.limites-box {
  border: 2px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.75rem, 5vw, 3rem); max-width: 50rem;
}
.limites-box h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
.limites-box p { margin-top: 1rem; font-size: 1.1875rem; max-width: var(--measure); }
.limites-box .urgence { color: var(--ink-2); font-size: 1.0625rem; }
.limites { padding-bottom: 0; }

/* ---------- Formules ---------- */
.formules-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.5rem 2rem; }
.periode { border: 0; margin: 0; padding: 4px; display: inline-flex; background: var(--surface-2); border-radius: 999px; }
.periode label { position: relative; }
.periode input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.periode label span {
  display: inline-flex; align-items: center; min-height: 48px; padding-inline: 1.35rem;
  border-radius: 999px; font-size: 1rem; font-weight: 500; color: var(--ink-2);
}
.periode input:checked + span { background: var(--surface); color: var(--ink); font-weight: 600; box-shadow: 0 1px 3px rgb(42 37 35 / 0.12); }
.periode input:hover + span { color: var(--ink); }
.periode input:focus-visible + span { outline: 3px solid var(--accent-text); outline-offset: 2px; }
.formules:not(.prix-ok) .periode,
.formules:not(.prix-ok) .prix { display: none; }
.formules.prix-ok .prix-nojs { display: none; }
.prix-nojs { color: var(--ink-2); margin-top: 0.5rem; }

.plans {
  list-style: none; margin: 3rem 0 0; padding: 0;
  display: grid; gap: 1rem; grid-template-columns: minmax(0, 1fr); align-items: stretch;
}
@media (min-width: 60rem) { .plans { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
.plan {
  border: 2px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: 0.5rem;
}
.plan-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.5rem; }
.plan h3 { font-size: 1.3125rem; letter-spacing: -0.01em; }
.badge {
  font-size: 0.875rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 999px;
  background: #E58A7C; color: #1C1A19;
}
.prix { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.5rem; }
.prix-montant { font-size: 2.25rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
.prix-periode { font-size: 1rem; color: var(--ink-2); }
.plan ul { list-style: none; margin: 1.25rem 0 0; padding: 1.25rem 0 0; border-top: 1px solid var(--line); display: grid; gap: 0.7rem; }
.plan li { position: relative; padding-left: 1.4rem; font-size: 1.0625rem; }
.plan li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}
.plan-plus { background: var(--btn-bg); color: var(--btn-ink); border-color: var(--btn-bg); }
.plan-plus .prix-periode { color: color-mix(in oklab, var(--btn-ink) 78%, var(--btn-bg)); }
.plan-plus ul { border-top-color: color-mix(in oklab, var(--btn-ink) 20%, var(--btn-bg)); }
.plan-plus li::before { background: #E58A7C; }
@media (prefers-color-scheme: dark) { .plan-plus li::before { background: var(--center); } }
.formules-notes { margin-top: 2.25rem; display: grid; gap: 0.6rem; max-width: 46rem; font-size: 1rem; color: var(--ink-2); }

/* ---------- Pied de page ---------- */
.site-footer { margin-top: var(--section); padding-block: 3.5rem 3rem; border-top: 1px solid var(--line); font-size: 1rem; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 52rem) { .footer-grid { grid-template-columns: minmax(0, 1fr) auto; } }
.footer-sig { color: var(--ink-2); margin-top: 0.25rem; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0 1.5rem; }
.footer-nav a { display: inline-flex; align-items: center; min-height: 44px; color: var(--ink); font-weight: 500; }
.footer-nav a:hover { color: var(--accent-text); }
.footer-meta { grid-column: 1 / -1; display: grid; gap: 0.5rem; color: var(--ink-2); padding-top: 2rem; border-top: 1px solid var(--line); }
.footer-meta a { color: var(--ink-2); }
.footer-meta a:hover { color: var(--ink); }

/* ===========================================================
   Pages légales
   =========================================================== */
.legal { padding-block: clamp(2rem, 6vw, 4rem) 0; }
.legal-head { max-width: var(--measure); }
.legal-head h1 { font-size: clamp(2.125rem, 6.5vw, 3.25rem); letter-spacing: -0.03em; line-height: 1.08; }
.legal-head .updated { margin-top: 1rem; color: var(--ink-2); font-size: 1rem; }

.toc-mobile { margin-top: 2rem; border: 2px solid var(--line); border-radius: var(--r); }
.toc-mobile summary {
  display: flex; align-items: center; justify-content: space-between; min-height: 56px;
  padding: 0.5rem 1.25rem; cursor: pointer; font-weight: 600; list-style: none;
}
.toc-mobile summary::-webkit-details-marker { display: none; }
.toc-mobile summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--accent-text); }
.toc-mobile[open] summary::after { content: "–"; }
.toc-mobile summary:focus-visible { border-radius: var(--r); }
.toc-mobile ul { padding: 0 1.25rem 1rem; }

.toc ul, .toc-mobile ul { list-style: none; margin: 0; display: grid; gap: 0.1rem; }
.toc ul { padding: 0; }
.toc a, .toc-mobile a {
  display: block; padding: 0.45rem 0; color: var(--ink-2); text-decoration: none;
  font-size: 1rem; line-height: 1.4;
}
.toc a:hover, .toc-mobile a:hover { color: var(--accent-text); }
.toc { display: none; }
.toc-title { font-size: 0.9375rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 0.75rem; }

.legal-grid { display: grid; gap: 3rem; margin-top: 2.5rem; }
@media (min-width: 62rem) {
  .toc-mobile { display: none; }
  .toc { display: block; position: sticky; top: 2rem; align-self: start; max-height: calc(100vh - 4rem); overflow-y: auto; padding-right: 0.5rem; }
  .legal-grid { grid-template-columns: 15rem minmax(0, var(--measure)); gap: 5rem; margin-top: 3.5rem; }
  .legal-head { margin-left: calc(15rem + 5rem); }
}

.prose { max-width: var(--measure); font-size: 1.125rem; line-height: 1.75; }
.prose > :first-child { margin-top: 0; }
.prose h2 {
  font-size: clamp(1.375rem, 3.5vw, 1.625rem); letter-spacing: -0.015em; line-height: 1.25;
  margin: 3.5rem 0 1rem; scroll-margin-top: 1.5rem;
}
.prose h3 { font-size: 1.1875rem; letter-spacing: -0.01em; line-height: 1.3; margin: 2rem 0 0.6rem; }
.prose p, .prose ul, .prose ol { margin: 0 0 1.1rem; }
.prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: 0.45rem; padding-left: 0.2rem; }
.prose li::marker { color: var(--accent); }
.prose .lead { font-size: 1.25rem; line-height: 1.6; margin-bottom: 1rem; }
.prose .card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.5rem 1.6rem 1.1rem; margin: 0 0 1rem;
}
.prose .card h3 { margin-top: 0; }
.prose .scroll { overflow-x: auto; margin: 0 0 1.1rem; border: 1px solid var(--line); border-radius: var(--r); }
.prose table { width: 100%; border-collapse: collapse; font-size: 1rem; line-height: 1.5; min-width: 30rem; }
.prose th, .prose td { text-align: left; vertical-align: top; padding: 0.8rem 1rem; border-bottom: 1px solid var(--line); }
.prose thead th { background: var(--surface-2); font-weight: 600; }
.prose tbody tr:last-child td { border-bottom: 0; }
.prose .urgent {
  background: var(--surface-2); border-radius: var(--r);
  padding: 1.25rem 1.5rem; margin-top: 1.5rem;
}

.legal-pages { margin-top: 4.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.legal-pages p { font-weight: 600; margin-bottom: 0.75rem; }
.legal-pages ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.legal-pages a {
  display: inline-flex; align-items: center; min-height: 48px; padding-inline: 1.25rem;
  border: 2px solid var(--line); border-radius: 999px;
  color: var(--ink); font-weight: 500; text-decoration: none;
}
.legal-pages a:hover { border-color: var(--accent); color: var(--accent-text); }
@media (min-width: 62rem) { .legal-pages { margin-left: calc(15rem + 5rem); max-width: var(--measure); } }

/* ---------- Impression ---------- */
@media print {
  :root { --bg: #fff; --ink: #000; --ink-2: #333; --line: #ccc; }
  body { font-size: 11pt; }
  .site-nav, .toc, .toc-mobile, .legal-pages, .skip, .back-link, .footer-nav { display: none !important; }
  .legal-grid { display: block; }
  .legal-head { margin-left: 0; }
  .prose { max-width: none; }
  .prose a[href^="http"]::after, .prose a[href^="mailto"]::after { content: " (" attr(href) ")"; font-size: 0.9em; }
  .prose h2 { break-after: avoid; }
  .site-footer { margin-top: 2rem; }
}
