/* ============================================================
   POWERON — Custom Stylesheet
   Aesthetic: Dark industrial-electric · Lime × Cyan on near-black
   Fonts: Syne (display) + Figtree (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg-void:    #05050F;
  --bg-deep:    #0A0A1C;
  --bg-card:    #10102A;
  --bg-card-hover: #161634;
  --border:     rgba(184, 255, 63, 0.12);
  --border-hover: rgba(184, 255, 63, 0.35);

  --lime:       #B8FF3F;
  --lime-dim:   rgba(184, 255, 63, 0.08);
  --lime-glow:  0 0 40px rgba(184, 255, 63, 0.25);
  --cyan:       #00D4FF;
  --cyan-dim:   rgba(0, 212, 255, 0.07);

  --text:       #EEEEFF;
  --text-muted: #8585A8;
  --text-faint: #444468;

  --ff-display: 'Ubuntu', sans-serif;
  --ff-body:    'Ubuntu', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg-void);
  overflow-x: hidden;
}

/* ── Background grid ────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,255,63,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,255,63,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

.section-label {
  font-family: var(--ff-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lime);
}

/* ── Navbar ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background .4s ease, padding .4s ease, backdrop-filter .4s ease;
}

#navbar.scrolled {
  background: rgba(5, 5, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
}

.navbar-brand {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.navbar-brand .brand-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--lime);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.75); }
}

.nav-link {
  font-family: var(--ff-body);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted) !important;
  transition: color .25s ease;
  padding: .4rem .75rem !important;
}
.nav-link:hover { color: var(--text) !important; }

.btn-nav-cta {
  font-family: var(--ff-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--bg-void) !important;
  background: var(--lime);
  border: none;
  border-radius: 50px;
  padding: .5rem 1.4rem !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-nav-cta:hover {
  background: #d2ff6e;
  transform: translateY(-1px);
  box-shadow: var(--lime-glow);
}

/* ── Hero ───────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

/* Glowing orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: .35;
}
.orb-lime {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--lime) 0%, transparent 70%);
  top: -100px; right: -150px;
  animation: float-orb 12s ease-in-out infinite alternate;
}
.orb-cyan {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  animation: float-orb 9s ease-in-out infinite alternate-reverse;
}
@keyframes float-orb {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 40px) scale(1.08); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--lime-dim);
  border: 1px solid var(--border-hover);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-eyebrow svg { width: 14px; height: 14px; }

.hero-headline {
  font-size: clamp(2rem, 4.5vw, 4rem);
  margin-bottom: 1.5rem;
}
.hero-headline .accent {
  color: var(--lime);
  position: relative;
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.btn-primary-lime {
  font-family: var(--ff-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--bg-void);
  background: var(--lime);
  border: none;
  border-radius: 50px;
  padding: .85rem 2.25rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: transform .25s var(--ease-out-expo), box-shadow .25s ease;
}
.btn-primary-lime:hover {
  color: var(--bg-void);
  transform: translateY(-3px);
  box-shadow: var(--lime-glow);
}
.btn-primary-lime svg { width: 18px; height: 18px; transition: transform .25s ease; }
.btn-primary-lime:hover svg { transform: translateX(4px); }

.btn-outline-ghost {
  font-family: var(--ff-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border-hover);
  border-radius: 50px;
  padding: .85rem 2.25rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .25s ease, border-color .25s ease;
}
.btn-outline-ghost:hover {
  color: var(--text);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.3);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-val {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
}
.stat-lbl {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .25rem;
  font-weight: 400;
}

/* Hero visual — floating card stack */
.hero-visual {
  position: relative;
  height: 520px;
}
.hero-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color .3s ease;
}
.hero-card:hover { border-color: var(--border-hover); }

.card-main {
  width: 340px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), var(--lime-glow);
}
.card-float-1 {
  width: 200px;
  top: 20px;
  right: 0px;
  z-index: 2;
  opacity: .85;
  transform: rotate(4deg);
}
.card-float-2 {
  width: 190px;
  bottom: 40px;
  left: 0;
  z-index: 2;
  opacity: .8;
  transform: rotate(-3deg);
}

.card-tag {
  display: inline-block;
  background: var(--lime-dim);
  color: var(--lime);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: 4px;
  margin-bottom: .75rem;
}
.card-title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--text);
}
.card-body-text {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.progress-row {
  margin-top: 1rem;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--text-muted);
  margin-bottom: .3rem;
}
.progress-bar-track {
  height: 4px;
  background: rgba(255,255,255,.06);
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
  animation: grow-bar 1.8s var(--ease-out-expo) forwards;
  width: 0%;
}
@keyframes grow-bar {
  to { width: var(--target-width); }
}

.sparkline {
  width: 100%;
  height: 48px;
  margin-top: .75rem;
}

/* ── Section shared ─────────────────────────────────────────── */
section {
  position: relative;
  z-index: 1;
}

.section-dark {
  background: var(--bg-deep);
}
.section-void {
  background: var(--bg-void);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── Benefits ───────────────────────────────────────────────── */
#benefits {
  padding: 7rem 0;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
  transition: transform .3s var(--ease-out-expo), border-color .3s ease, box-shadow .3s ease, background .3s ease;
  cursor: default;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(184,255,63,.08);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--lime-dim);
  border: 1px solid rgba(184,255,63,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background .3s ease, border-color .3s ease;
}
.benefit-card:hover .benefit-icon {
  background: rgba(184,255,63,.14);
  border-color: rgba(184,255,63,.4);
}
.benefit-icon svg {
  width: 22px;
  height: 22px;
  color: var(--lime);
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.benefit-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Services / Wat wij doen ────────────────────────────────── */
#services {
  padding: 7rem 0;
  background: var(--bg-void);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-item {
  background: var(--bg-deep);
  padding: 2.5rem;
  transition: background .3s ease;
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--lime);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s var(--ease-out-expo);
}
.service-item:hover { background: var(--bg-card); }
.service-item:hover::before { transform: scaleY(1); }

.service-number {
  font-family: var(--ff-display);
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: .15em;
  margin-bottom: 1rem;
}
.service-item h3 {
  font-size: 1.2rem;
  margin-bottom: .75rem;
}
.service-item p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.service-badge {
  display: inline-flex;
  margin-top: 1.25rem;
  background: var(--lime-dim);
  border: 1px solid var(--border-hover);
  border-radius: 4px;
  padding: .2rem .6rem;
  font-size: .7rem;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: .06em;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── Why Poweron ─────────────────────────────────────────────── */
#why {
  padding: 7rem 0;
  background: var(--bg-deep);
}

.why-headline {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.why-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lime-dim);
  border: 1px solid rgba(184,255,63,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .15rem;
}
.why-check svg {
  width: 10px;
  height: 10px;
  color: var(--lime);
}

.why-big-number {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  white-space: nowrap;
}
.why-big-number + span {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: .5rem;
  display: block;
}

.divider-line {
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

/* ── Testimonial ticker ─────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-deep);
  position: relative;
  z-index: 1;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-deep), transparent);
}
.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-deep), transparent);
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  color: var(--text-muted);
  font-weight: 400;
}
.ticker-item .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

/* ── Contact ─────────────────────────────────────────────────── */
#contact {
  padding: 7rem 0;
  background: var(--bg-void);
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,255,63,.07) 0%, transparent 70%);
  pointer-events: none;
}

.form-control, .form-select {
  background: rgba(255,255,255,.04) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--text) !important;
  font-family: var(--ff-body) !important;
  font-size: .9rem !important;
  padding: .75rem 1rem !important;
  transition: border-color .25s ease, box-shadow .25s ease !important;
}
.form-control:focus, .form-select:focus {
  border-color: var(--lime) !important;
  box-shadow: 0 0 0 3px rgba(184,255,63,.1) !important;
  background: rgba(255,255,255,.06) !important;
  outline: none !important;
}
.form-control::placeholder { color: var(--text-faint) !important; }

/* Select: placeholder-optie grijs, overige opties licht */
.form-select.is-placeholder { color: var(--text-faint) !important; }
.form-select option          { color: var(--text); background: var(--bg-card); }
.form-select option[value=""]{ color: var(--text-faint); }
.form-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .4rem;
}

.btn-submit {
  font-family: var(--ff-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--bg-void);
  background: var(--lime);
  border: none;
  border-radius: 50px;
  padding: .9rem 2.5rem;
  width: 100%;
  transition: transform .25s var(--ease-out-expo), box-shadow .25s ease;
  cursor: pointer;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--lime-glow);
}

.alert-success-custom {
  background: rgba(184,255,63,.08);
  border: 1px solid rgba(184,255,63,.3);
  border-radius: var(--radius-sm);
  color: var(--lime);
  padding: 1rem 1.25rem;
  font-size: .875rem;
  font-weight: 500;
}
.alert-error-custom {
  background: rgba(255,80,80,.07);
  border: 1px solid rgba(255,80,80,.25);
  border-radius: var(--radius-sm);
  color: #ff8080;
  padding: 1rem 1.25rem;
  font-size: .875rem;
  font-weight: 500;
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-brand {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .5rem;
}
.footer-copy {
  font-size: .8rem;
  color: var(--text-faint);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a {
  font-size: .8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--lime); }

/* ── Language dropdown ──────────────────────────────────────── */
.po-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .32rem .7rem .32rem .55rem;
  color: var(--text-muted);
  font-family: var(--ff-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.po-lang-toggle:hover,
.po-lang-toggle[aria-expanded="true"] {
  border-color: var(--border-hover);
  color: var(--text);
  background: rgba(255,255,255,.07);
}
.po-lang-toggle::after { display: none; }  /* verberg Bootstrap-caret */
.po-lang-toggle .fi {
  width: 18px !important;
  height: 13px !important;
  border-radius: 2px;
  flex-shrink: 0;
}
.po-lang-toggle .po-chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.po-lang-toggle[aria-expanded="true"] .po-chevron { transform: rotate(180deg); }

.po-lang-menu.dropdown-menu {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-hover) !important;
  border-radius: var(--radius-sm) !important;
  padding: .35rem !important;
  min-width: 160px;
  box-shadow: 0 12px 40px rgba(0,0,0,.55) !important;
  margin-top: .4rem !important;
}
.po-lang-item.dropdown-item {
  display: flex !important;
  align-items: center !important;
  gap: .65rem !important;
  padding: .5rem .75rem !important;
  border-radius: 4px !important;
  font-family: var(--ff-body) !important;
  font-size: .83rem !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
  background: transparent !important;
  transition: background .15s ease, color .15s ease !important;
}
.po-lang-item.dropdown-item:hover {
  background: rgba(255,255,255,.05) !important;
  color: var(--text) !important;
}
.po-lang-item.dropdown-item.active {
  color: var(--lime) !important;
  background: var(--lime-dim) !important;
}
.po-lang-item .fi {
  width: 20px !important;
  height: 15px !important;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Metrics cascade (Why Poweron) ──────────────────────────── */
.metrics-cascade {
  display: flex;
  gap: 1.25rem;
}
.metrics-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.metrics-col-offset { margin-top: 2.5rem; }
.metric-card {
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100px;
  transition: border-color .3s ease, background .3s ease;
}
.metric-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

/* ── Navbar toggler (mobile) ────────────────────────────────── */
.navbar-toggler {
  border: 1px solid var(--border) !important;
  border-radius: 6px !important;
  padding: .4rem .6rem !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(238,238,255,0.7)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-visual { display: none; }
  .hero-headline { font-size: clamp(2.5rem, 8vw, 4rem); }
  .hero-stats { gap: 1.5rem; }
  .contact-card { padding: 2rem; }
}

@media (max-width: 575px) {
  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
  .stat-val { font-size: 1.6rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
}
