/* ─── Variables charte graphique ─── */
/* Last updated: 2026-06-21 - Visual improvements deployed */
:root {
  --color-primary-dark: #1a3a6e;
  --color-primary: #2e5fa3;
  --color-primary-light: #4a80c4;
  --color-accent: #0097a7;
  --color-cta: #e07b54;
  --font-title: "Outfit", sans-serif;
  --section-padding: clamp(20px, 4vw, 30px);

  /* Mode clair */
  --bg-page: #f5f7fa;
  --bg-section: #ffffff;
  --bg-card: #eef2f8;
  --bg-card-alt: #e0e8f4;
  --bg-highlight: #fff3cd;
  --text-main: #1a2332;
  --text-muted: #445570;
  --text-light: #7a90a8;
  --border-color: rgba(0, 0, 0, 0.08);
  --shadow: 0 2px 8px rgba(30, 58, 110, 0.12);
  --shadow-hover: 0 6px 16px rgba(30, 58, 110, 0.2);
  --nav-bg: #1a3a6e;
  --footer-bg: #1a3a6e;
  --toggle-bg: rgba(255, 255, 255, 0.15);
  --toggle-icon: "☀️";
}

:root[data-theme="dark"] {
  --bg-page: #0d1b2a;
  --bg-section: #152235;
  --bg-card: #1c2e45;
  --bg-card-alt: #243550;
  --bg-highlight: #1a3a4a;
  --text-main: #e4eaf4;
  --text-muted: #a8bad0;
  --text-light: #7a90a8;
  --border-color: rgba(255, 255, 255, 0.08);
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.55);
  --nav-bg: #0d1b2a;
  --footer-bg: #0a1520;
  --toggle-bg: rgba(255, 255, 255, 0.1);
  --toggle-icon: "🌙";
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px; /* Offset for desktop sticky nav */
}

body {
  font-family: "Open Sans", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--bg-page);
  transition:
    background 0.3s,
    color 0.3s;
  overflow-x: hidden;
}

/* Accessibilité : Focus clavier visible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-accent) !important;
  outline-offset: 2px;
}

/* Accessibilité: focus visible */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* ─── Header ─── */
header {
  background: linear-gradient(
    135deg,
    var(--color-primary-dark) 0%,
    var(--color-primary) 100%
  );
  color: white;
  padding: 40px 20px 32px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-svg {
  flex-shrink: 0;
}

.header-brand h1 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(1.8em, 4vw, 2.5em);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: left;
}

.header-brand .subtitle {
  font-size: 0.95em;
  opacity: 0.85;
  text-align: left;
  font-weight: 400;
}

header .tagline {
  font-style: italic;
  opacity: 0.75;
  font-size: 0.88em;
  margin-top: 8px;
}

.header-tih {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78em;
  opacity: 0.8;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  padding: 3px 12px;
  letter-spacing: 0.03em;
}

/* ─── Navigation + toggle ─── */
nav {
  background-color: var(--nav-bg);
  padding: 0;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav a {
  color: rgba(255, 255, 255, 0.9);
  padding: 14px 22px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px; /* A11y target size */
  font-size: 0.92em;
  font-weight: 500;
  transition:
    background-color 0.2s,
    color 0.2s;
}

nav a:hover {
  background-color: var(--color-primary-light);
  color: white;
}

#theme-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--toggle-bg);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.82em;
  min-height: 44px; /* A11y target size */
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 10;
}
#theme-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ─── Layout ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
}

.section {
  background: var(--bg-section);
  margin: 28px 0;
  padding: var(--section-padding);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition:
    background 0.3s,
    box-shadow 0.3s;
}

.section h2 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 5px solid var(--color-accent);
}

[data-theme="dark"] .section h2 {
  color: var(--color-primary-light);
}

/* ─── À propos ─── */
.about-text {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.highlight {
  background-color: var(--bg-highlight);
  padding: 16px 20px;
  border-left: 4px solid var(--color-accent);
  margin: 20px 0;
  border-radius: 4px;
  color: var(--text-main);
}

/* ─── Services ─── */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.service-card {
  background: var(--bg-card);
  padding: 22px;
  border-radius: 8px;
  border-top: 4px solid var(--color-accent);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px) rotate(0.5deg);
  box-shadow: var(--shadow-hover);
}

.service-card h3 {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
  font-size: 1em;
}

[data-theme="dark"] .service-card h3 {
  color: var(--color-primary-light);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.93em;
  flex-grow: 1;
}

/* ─── Expertise ─── */
.expertise-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.expertise-item {
  background: var(--bg-card);
  padding: 13px;
  border-radius: 6px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.88em;
  text-align: center;
  transition:
    background 0.3s,
    transform 0.25s,
    box-shadow 0.25s;
}

.expertise-item:hover {
  background: var(--color-primary-light);
  color: white;
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

[data-theme="dark"] .expertise-item {
  color: var(--color-primary-light);
}

[data-theme="dark"] .expertise-item:hover {
  background: var(--color-primary-light);
  color: var(--bg-page);
}

/* ─── Équipe ─── */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.team-member {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 10px;
  border-bottom: 3px solid var(--color-primary-dark);
  transition: background 0.3s;
}

.team-member .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary-dark),
    var(--color-primary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.4em;
  color: white;
  margin: 0 auto 12px;
}

.team-member h3 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
  text-align: center;
}

[data-theme="dark"] .team-member h3 {
  color: var(--color-primary-light);
}

.team-member .role {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.88em;
  text-align: center;
  margin-bottom: 10px;
}

.team-member .bio {
  color: var(--text-muted);
  font-size: 0.88em;
  line-height: 1.6;
  text-align: center;
}

.team-member .tih-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78em;
  background: var(--bg-card-alt);
  color: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3px 10px;
  text-align: center;
  width: 100%;
}

/* ─── Contact ─── */
.contact-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.contact-card {
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    var(--bg-card-alt) 100%
  );
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
  transition:
    background 0.3s,
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 210px;
}

.contact-card::after {
  content: "→";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  color: var(--color-accent);
  font-weight: bold;
  opacity: 0;
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
}

.contact-card:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(4px);
}

.contact-card h3 {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
  font-size: 1em;
}

[data-theme="dark"] .contact-card h3 {
  color: var(--color-primary-light);
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.93em;
  word-break: break-word;
}

.contact-card a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  min-height: 44px; /* A11y target */
  align-content: center;
}

.contact-card a:hover {
  text-decoration: underline;
}

.btn-contact {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: white !important;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.88em;
  font-weight: 600;
  text-decoration: none !important;
  margin-top: 6px;
  transition:
    background 0.2s,
    transform 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  min-height: 36px !important;
}

.btn-contact:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
  text-decoration: none !important;
}

/* ─── Bouton WhatsApp & Infobulle (Tooltip) ─── */
.btn-whatsapp {
  position: relative !important;
  background-color: #25d366 !important;
  color: white !important;
}

.btn-whatsapp:hover {
  background-color: #1fa956 !important;
}

.btn-whatsapp .qr-tooltip {
  visibility: hidden;
  opacity: 0;
  width: 140px;
  background-color: var(--bg-section);
  color: var(--text-main);
  text-align: center;
  border-radius: 12px;
  padding: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  
  /* Placement absolu au-dessus du bouton */
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  left: 50%;
  margin-left: -70px;
  
  /* Transition fluide */
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
}

.btn-whatsapp .qr-tooltip img {
  display: block;
  width: 110px !important;
  height: 110px !important;
  margin: 0 auto 6px;
  padding: 4px;
  background: white;
  border-radius: 8px;
}

.btn-whatsapp .qr-tooltip span {
  font-size: 0.78em;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  line-height: 1.3;
}

/* Flèche pointant vers le bouton */
.btn-whatsapp .qr-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: var(--bg-section) transparent transparent transparent;
}

/* Affichage au survol (ordinateurs et écrans non tactiles) */
@media (hover: hover) {
  .btn-whatsapp:hover .qr-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

/* Masquage complet sur mobile pour conserver le clic direct */
@media (max-width: 768px) {
  .btn-whatsapp .qr-tooltip {
    display: none !important;
  }
}

/* Bouton CTA */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px; /* A11y target */
  margin-top: 24px;
  padding: 13px 30px;
  background: var(--color-cta);
  color: white;
  border-radius: 6px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1em;
  text-decoration: none;
  transition:
    filter 0.2s,
    transform 0.2s;
}

.btn-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.btn-cta:active {
  transform: translateY(1px);
}

/* ─── QR Code WhatsApp ─── */
.whatsapp-qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px auto;
  text-align: center;
}

.whatsapp-qr-block span,
.footer-whatsapp-qr p {
  font-size: 0.88em;
  line-height: 1.4;
}

.whatsapp-qr {
  display: block;
  background: #ffffff;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  max-width: 100%;
  height: auto;
}

.whatsapp-qr-block--cta .whatsapp-qr {
  width: 150px;
}

.whatsapp-qr-block--contact .whatsapp-qr {
  width: 110px;
}

.footer-whatsapp-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px auto 18px;
}

.footer-whatsapp-qr .whatsapp-qr {
  width: 120px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.footer-whatsapp-qr a {
  min-height: 0;
  padding: 0;
  opacity: 1;
}

.footer-whatsapp-qr a:hover {
  opacity: 0.9;
}

/* ─── Footer ─── */
footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 32px 20px;
  margin-top: 50px;
  transition: background 0.3s;
}

footer .footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

footer .footer-brand {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.1em;
  color: white;
}

footer p {
  margin: 6px 0;
  font-size: 0.9em;
  opacity: 1;
}

footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  opacity: 1;
  transition: opacity 0.2s;
}

footer a:hover {
  opacity: 0.75;
}

.footer-badge {
  margin: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-badge img {
  height: 60px;
  width: auto;
  transition: transform 0.2s ease-in-out;
  border-radius: 4px;
}

.footer-badge a:hover img {
  transform: scale(1.05);
}

.legal {
  font-size: 0.8em;
  opacity: 0.6;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.legal a {
  text-decoration: none;
  opacity: 0.85;
  padding: 5px 10px;
}

.legal a:hover {
  text-decoration: underline;
}

/* ─── Certifications & Badges ─── */
.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.badge-card {
  background: var(--bg-card);
  border-radius: 8px;
  border-top: 4px solid var(--color-accent);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.3s;
  box-shadow: var(--shadow);
}

.badge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.badge-card-embed {
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.badge-card-embed iframe {
  border: none;
  border-radius: 8px;
  max-width: 100%;
}

.badge-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  width: 140px;
  height: 140px;
  margin: 0 auto;
}

.badge-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.badge-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  flex-grow: 1;
}

.badge-content h3 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1em;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
}

[data-theme="dark"] .badge-content h3 {
  color: var(--color-primary-light);
}

.badge-issuer {
  font-weight: 600;
  font-size: 0.88em;
  color: var(--color-primary);
}

[data-theme="dark"] .badge-issuer {
  color: var(--color-primary-light);
}

.badge-date {
  font-size: 0.82em;
  color: var(--text-light);
}

.badge-description {
  font-size: 0.9em;
  color: var(--text-muted);
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 12px;
}

.btn-badge-verify {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 6px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9em;
  text-decoration: none;
  transition:
    background-color 0.2s,
    transform 0.2s;
  margin-top: auto;
}

.btn-badge-verify:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
}

.btn-badge-verify:active {
  transform: translateY(1px);
}

/* ─── Sections spéciales ─── */
#equipe {
  background: linear-gradient(
    135deg,
    var(--bg-section) 0%,
    rgba(74, 128, 196, 0.05) 100%
  );
  border-left: 4px solid var(--color-primary-light);
  padding-left: calc(var(--section-padding) - 4px);
}

#contact {
  background: linear-gradient(
    135deg,
    var(--bg-section) 0%,
    rgba(0, 151, 167, 0.05) 100%
  );
  border-left: 4px solid var(--color-accent);
  padding-left: calc(var(--section-padding) - 4px);
}

/* ─── Responsive ─── */
/* Tablet */
@media (max-width: 1024px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 190px;
  }
  header {
    padding: 30px 20px 24px;
  }
  .header-brand h1 {
    font-size: 1.8em;
    text-align: center;
  }
  .header-logo {
    flex-direction: column;
    gap: 20px;
  }
  .header-brand .subtitle {
    text-align: center;
  }
  nav {
    flex-direction: column;
  }
  nav a {
    display: flex;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
  }
  #theme-toggle {
    top: 15px;
    right: 15px;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .expertise-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-info {
    grid-template-columns: 1fr;
  }

  .whatsapp-qr-block--cta .whatsapp-qr {
    width: 132px;
  }

  .footer-whatsapp-qr .whatsapp-qr {
    width: 112px;
  }
}

@media (max-width: 480px) {
  .expertise-list {
    grid-template-columns: 1fr;
  }
}

/* ══════════════ BANDEAU COOKIES ══════════════ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 450px;
  background-color: var(--bg-section);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  padding: 20px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  font-family: "Open Sans", sans-serif;
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.cookie-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: var(--font-title);
  color: var(--text-main);
  font-size: 1.15rem;
}

.cookie-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.cookie-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.btn-cookie {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease;
}

.btn-cookie-primary {
  background-color: var(--color-accent);
  color: #ffffff;
}

.btn-cookie-primary:hover {
  background-color: var(--color-primary);
}

.btn-cookie-secondary {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.btn-cookie-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* Bouton de réinitialisation flottant */
#cookie-settings-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-section);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 9999;
  transition: transform 0.2s ease;
}

#cookie-settings-btn:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }
}
