/* ============================================================
   AdaPay — design tokens
   Palette: white-dominant, navy structure, AdaPay red accent,
   sky-blue used sparingly. No greens.
   ============================================================ */
:root {
  --navy:       #0E2F68;
  --navy-900:   #0A2148;
  --navy-700:   #18386f;
  --red:        #E22400;
  --red-600:    #c11f00;
  --blue:       #04A4E3;
  --ink:        #16223d;
  --muted:      #5b6b85;
  --bg:         #ffffff;
  --bg-soft:    #f5f8fc;
  --border:     #e6ecf5;
  --shadow-sm:  0 1px 2px rgba(14,47,104,.06), 0 4px 16px rgba(14,47,104,.06);
  --shadow-md:  0 10px 40px rgba(14,47,104,.10);
  --shadow-lg:  0 30px 70px rgba(14,47,104,.16);
  --radius:     16px;
  --radius-sm:  10px;
  --maxw:       1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 700; cursor: pointer; border: 2px solid transparent;
  border-radius: 999px; padding: 11px 22px; transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 14px 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(226,36,0,.25); }
.btn-primary:hover { background: var(--red-600); box-shadow: 0 12px 26px rgba(226,36,0,.32); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--navy); background: #fff; transform: translateY(-1px); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-900); transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: flex; align-items: center; }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a { color: var(--navy); font-weight: 600; font-size: .96rem; position: relative; padding: 4px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--red); transition: width .2s; }
.nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(1100px 520px at 78% -8%, #eaf4fc 0%, rgba(234,244,252,0) 60%),
  linear-gradient(180deg, #fbfdff 0%, #ffffff 70%); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .25; z-index: 0; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 72px 24px 84px; }
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .14em; color: var(--red); margin-bottom: 14px; }
.eyebrow.light { color: #ffd9d0; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); line-height: 1.02; font-weight: 800; color: var(--navy); margin: 0 0 18px; letter-spacing: -.02em; overflow-wrap: break-word; }
.hero h1 span { display: inline-block; margin-left: .35em; }
.hero h1 .accent { color: var(--red); margin-left: .35em; }
.hero-lede { font-size: 1.18rem; color: var(--muted); max-width: 30em; margin: 0 0 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust { list-style: none; display: flex; gap: 26px; flex-wrap: wrap; padding: 0; margin: 0; color: var(--muted); font-size: .96rem; }
.hero-trust strong { color: var(--navy); }
.hero-trust li { position: relative; padding-left: 18px; }
.hero-trust li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }

.hero-visual { display: flex; justify-content: center; }
.device-stage { position: relative; }
.device-stage .glow { position: absolute; inset: -10% -6% -4% -6%; background: radial-gradient(closest-side, rgba(4,164,227,.22), rgba(4,164,227,0) 72%); filter: blur(6px); }
.device { position: relative; width: 280px; filter: drop-shadow(0 30px 50px rgba(14,47,104,.22)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Card types strip ---------- */
.cards-strip { padding: 30px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.strip-title { text-align: center; color: var(--muted); font-weight: 600; font-size: .95rem; margin: 0 0 18px; }
.strip-title.muted { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.card-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 22px; }
.card-logos svg { height: 30px; width: auto; filter: saturate(1); }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: var(--navy); margin: 0 0 14px; letter-spacing: -.02em; line-height: 1.12; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }

.grid { display: grid; gap: 22px; }
.products { grid-template-columns: repeat(3, 1fr); }
.why { grid-template-columns: repeat(4, 1fr); }
.serve { grid-template-columns: repeat(3, 1fr); }

/* ---------- Product cards ---------- */
.product-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d6e0ee; }
.p-icon { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg, #fff1ee, #ffe5df); margin-bottom: 18px; }
.p-icon svg { width: 26px; height: 26px; stroke: var(--red); fill: none; stroke-width: 1.9; }
.product-card h3 { margin: 0 0 8px; font-size: 1.2rem; color: var(--navy); }
.product-card p { margin: 0 0 16px; color: var(--muted); font-size: .98rem; }
.p-link { color: var(--red); font-weight: 700; font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; }
.p-link::after { content: "→"; transition: transform .2s; }
.product-card:hover .p-link::after { transform: translateX(4px); }

/* ---------- Why cards ---------- */
.why-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm); }
.why-card .w-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--navy); display: grid; place-items: center; margin-bottom: 16px; }
.why-card .w-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; }
.why-card h3 { margin: 0 0 6px; font-size: 1.08rem; color: var(--navy); }
.why-card p { margin: 0; color: var(--muted); font-size: .94rem; }

/* ---------- Who we serve ---------- */
.serve-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: #fff; padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.serve-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.serve-card .s-icon { width: 44px; height: 44px; border-radius: 11px; background: #eaf4fc; display: grid; place-items: center; margin-bottom: 14px; }
.serve-card .s-icon svg { width: 23px; height: 23px; stroke: var(--blue); fill: none; stroke-width: 1.9; }
.serve-card h3 { margin: 0 0 6px; color: var(--navy); font-size: 1.1rem; }
.serve-card p { margin: 0; color: var(--muted); font-size: .94rem; }

/* ---------- About (navy band) ---------- */
.section-navy { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 100%); color: #fff; }
.about-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.about-copy h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 0 0 18px; letter-spacing: -.02em; }
.about-lede { font-size: 1.22rem; color: #eaf0fb; margin: 0 0 14px; }
.about-sub { color: #b8c6e2; margin: 0; font-size: 1.02rem; }
.principles { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.principles li { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm); padding: 18px; }
.principles h4 { margin: 0 0 4px; font-size: 1.02rem; color: #fff; }
.principles span { color: #b8c6e2; font-size: .9rem; }
.principles .pi { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; background: var(--red); margin-bottom: 10px; }
.principles .pi svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2.2; }

/* ---------- Partners strip ---------- */
.partners-strip { padding: 40px 0; background: #fff; }
.partner-logos { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.partner-logos img { height: 34px; width: auto; opacity: .7; filter: grayscale(1); transition: .2s; }
.partner-logos img:hover { opacity: 1; filter: grayscale(0); }

/* ---------- Split (forms) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.split-copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); color: var(--navy); margin: 0 0 14px; letter-spacing: -.02em; }
.split-copy > p { color: var(--muted); font-size: 1.06rem; }
.ticklist { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 12px; }
.ticklist li { padding-left: 32px; position: relative; color: var(--ink); font-weight: 500; }
.ticklist li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: var(--red); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 800; }
.contact-card { margin-top: 26px; padding: 20px 22px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.contact-card p { margin: 0 0 8px; color: var(--muted); }
.contact-card a { color: var(--red); font-weight: 700; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-md); }
.partnership .form-card { box-shadow: var(--shadow-lg); }
.form-card h3 { margin: 0 0 20px; color: var(--navy); font-size: 1.3rem; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink); padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: #fcfdff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(4,164,227,.15); }
.field textarea { resize: vertical; }
.form-status { margin: 14px 0 0; font-size: .92rem; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: #0a7d3a; }
.form-status.err { color: var(--red); }

/* ---------- Partnership section bg ---------- */
.partnership { background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #c6d2ea; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { background: #fff; padding: 8px 12px; border-radius: 10px; margin-bottom: 14px; }
.footer-brand p { margin: 0 0 16px; color: #9fb0d2; max-width: 24em; }
.socials { display: flex; gap: 16px; }
.socials a { color: #c6d2ea; font-weight: 600; font-size: .9rem; }
.socials a:hover { color: #fff; }
.footer-col h4 { color: #fff; font-size: .95rem; margin: 0 0 14px; }
.footer-col a { display: block; color: #9fb0d2; margin-bottom: 9px; font-size: .93rem; }
.footer-col a:hover { color: #fff; }
.footer-address { color: #9fb0d2; margin: 0 0 10px; font-size: .93rem; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; color: #8194ba; font-size: .86rem; }
.legal { display: flex; gap: 22px; flex-wrap: wrap; }
.legal a { color: #8194ba; font-size: .86rem; }
.legal a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Active nav link ---------- */
.nav a.is-active { color: var(--red); }
.nav a.is-active::after { width: 100%; }

/* ---------- Section CTA link ---------- */
.section-cta { text-align: center; margin-top: 36px; }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  padding: 56px 0 48px;
  background:
    radial-gradient(900px 380px at 85% -20%, #eaf4fc 0%, rgba(234,244,252,0) 60%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}
.crumbs { display: flex; gap: 10px; align-items: center; font-size: .86rem; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--red); font-weight: 600; }
.crumbs span { color: #aab6cc; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.06; color: var(--navy); margin: 0 0 18px; letter-spacing: -.02em; }
.page-hero h1 .accent { color: var(--red); }
.page-lede { font-size: 1.18rem; color: var(--muted); max-width: 50em; margin: 0; }

/* ---------- Prose blocks ---------- */
.container.narrow { max-width: 820px; }
.container.center { text-align: center; }
.prose { font-size: 1.08rem; color: var(--muted); margin: 0 0 18px; }
.prose.light { color: #c6d2ea; }
.section .narrow .eyebrow { margin-top: 0; }
.grow-line { font-size: 1.4rem; font-weight: 800; color: var(--red); margin: 8px 0 0; }

/* ---------- Value cards (about) ---------- */
.values { grid-template-columns: repeat(2, 1fr); }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.value-card .p-icon { margin-bottom: 18px; }
.value-card h3 { margin: 0 0 10px; font-size: 1.3rem; color: var(--navy); }
.value-card p { margin: 0; color: var(--muted); }

/* ---------- Industry cards (who we serve) ---------- */
.industries { grid-template-columns: repeat(3, 1fr); }
.industry-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.industry-card .s-icon { width: 52px; height: 52px; border-radius: 13px; background: #eaf4fc; display: grid; place-items: center; margin-bottom: 16px; }
.industry-card .s-icon svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; stroke-width: 1.9; }
.industry-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.2rem; }
.industry-card p { margin: 0; color: var(--muted); font-size: .98rem; }

/* ---------- Product blocks (products page) ---------- */
.product-list { display: grid; gap: 24px; }
.product-block { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 36px; box-shadow: var(--shadow-sm); scroll-margin-top: 90px; }
.product-block:hover { box-shadow: var(--shadow-md); }
.pb-head { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; }
.p-icon.lg { width: 64px; height: 64px; border-radius: 16px; flex: none; }
.p-icon.lg svg { width: 30px; height: 30px; }
.pb-index { display: block; font-size: .8rem; font-weight: 800; letter-spacing: .12em; color: var(--red); }
.pb-head h2 { margin: 2px 0 0; font-size: 1.7rem; color: var(--navy); letter-spacing: -.01em; }
.pb-lede { font-size: 1.08rem; color: var(--muted); margin: 0 0 18px; max-width: 60em; }
.feature-list { list-style: none; padding: 0; margin: 0 0 8px; display: grid; gap: 10px; }
.feature-list li { position: relative; padding-left: 30px; color: var(--ink); font-weight: 500; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; background: var(--red); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .68rem; font-weight: 800; }
.feature-list.compact li { font-weight: 400; font-size: .96rem; color: var(--muted); }
.device-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 8px 0 18px; }
.device-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.device-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.2rem; }
.device-card p { margin: 0 0 14px; color: var(--muted); font-size: .96rem; }
.pb-note { font-size: .96rem; color: var(--muted); font-style: italic; border-left: 3px solid var(--red); padding-left: 14px; margin: 0 0 18px; }
.product-block .p-link { font-size: .98rem; }

/* ---------- CTA band ---------- */
.cta-band { padding: 64px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0 0 8px; letter-spacing: -.02em; }
.cta-inner p { color: #c6d2ea; margin: 0; max-width: 44em; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-1px); }

/* ---------- Legal / policy pages ---------- */
.legal-body { max-width: 820px; }
.legal-meta { color: var(--muted); font-size: .9rem; margin: 0 0 28px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.legal-body h2 { font-size: 1.3rem; color: var(--navy); margin: 36px 0 10px; letter-spacing: -.01em; }
.legal-body h3 { font-size: 1.04rem; color: var(--navy); margin: 22px 0 8px; }
.legal-body p { color: var(--ink); margin: 0 0 14px; line-height: 1.75; }
.legal-body ul, .legal-body ol { color: var(--ink); margin: 0 0 16px; padding-left: 22px; line-height: 1.75; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--red); font-weight: 600; }
.legal-callout { margin-top: 34px; padding: 22px 24px; background: var(--bg-soft); border: 1px solid var(--border); border-left: 3px solid var(--red); border-radius: var(--radius); }
.legal-callout h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.05rem; }
.legal-callout p { margin: 0 0 4px; color: var(--muted); }
.legal-callout a { color: var(--red); font-weight: 700; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .products, .serve { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: repeat(2, 1fr); }
  .industries { grid-template-columns: repeat(2, 1fr); }
  .product-block { padding: 28px; }
  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-visual { order: -1; }
  .device { width: 220px; }
  .about-inner, .split { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); padding: 8px 24px 16px;
  }
  .site-header.open .nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .site-header.open .header-actions { display: flex; position: absolute; top: 72px; left: 0; right: 0; margin-top: 0; padding: 12px 24px 18px; background: #fff; transform: translateY(100%); }
  .section { padding: 60px 0; }
  .hero-inner { padding: 48px 24px 60px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .principles { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .values, .industries { grid-template-columns: 1fr; }
  .device-grid { grid-template-columns: 1fr; }
  .pb-head { gap: 14px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .products, .serve, .why { grid-template-columns: 1fr; }
  .hero h1 span { margin-left: .25em; }
  .product-block { padding: 22px; }
  .pb-head h2 { font-size: 1.4rem; }
}
