@font-face {
  font-family: 'IRANSansX';
  src: url('../fonts/IRANSansXFaNum-Regular.woff2') format('woff2'),
       url('../fonts/IRANSansXFaNum-Regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'IRANSansX';
  src: url('../fonts/IRANSansXFaNum-Bold.woff2') format('woff2'),
       url('../fonts/IRANSansXFaNum-Bold.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}

:root {
  --blue-50: #E6F1FB;
  --blue-100: #B5D4F4;
  --blue-200: #85B7EB;
  --blue-400: #378ADD;
  --blue-500: #1F6FC4;
  --blue-600: #185FA5;
  --blue-800: #0C447C;
  --blue-900: #042C53;
  --teal-50: #E1F5EE;
  --teal-600: #0F6E56;
  --amber-50: #FAEEDA;
  --amber-600: #BA7517;
  --gray-50: #F7F8FA;
  --gray-100: #EEF1F5;
  --gray-200: #E2E7EE;
  --gray-300: #CBD3DE;
  --gray-400: #94A1B2;
  --gray-500: #64748B;
  --gray-700: #334155;
  --gray-900: #0F1B2D;
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --text: #1A2B42;
  --text-muted: #64748B;
  --text-light: #94A1B2;
  --border: #E2E7EE;
  --primary: #185FA5;
  --primary-hover: #0C447C;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(16,40,80,0.06);
  --shadow: 0 8px 30px rgba(16,40,80,0.08);
  --shadow-lg: 0 20px 60px rgba(16,40,80,0.14);
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'IRANSansX', Tahoma, sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img, svg { display: block; max-width: 100%; }
section { position: relative; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px; font-weight: 700;
  transition: all 0.2s cubic-bezier(.2,.7,.3,1);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 8px 22px rgba(24,95,165,0.28);
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(24,95,165,0.36); }
.btn-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--gray-50); border-color: var(--gray-300); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 17px 36px; font-size: 16px; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 21px; }
.logo-mark {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(24,95,165,0.3);
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-sub { font-size: 11px; color: var(--text-light); font-weight: 400; margin-top: -4px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 14.5px; color: var(--text-muted); font-weight: 700; transition: color 0.15s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.menu-btn { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--text); }
.menu-btn svg { width: 26px; height: 26px; }

/* ===== HERO ===== */
.hero {
  padding: 168px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(55,138,221,0.12) 0%, rgba(55,138,221,0) 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-50); color: var(--blue-600);
  padding: 8px 16px; border-radius: 30px;
  font-size: 13px; font-weight: 700;
  margin-bottom: 24px;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}
.hero h1 .hl { color: var(--primary); position: relative; }
.hero h1 .hl::after {
  content: '';
  position: absolute; bottom: 4px; right: 0; left: 0;
  height: 12px; background: var(--blue-100);
  z-index: -1; opacity: 0.6; border-radius: 4px;
}
.hero p.lead {
  font-size: 18px; color: var(--text-muted);
  margin-bottom: 36px; max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; font-size: 13.5px; color: var(--text-muted); }
.hero-trust .tt { display: flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 17px; height: 17px; color: var(--teal-600); }

/* Hero mockup */
.hero-visual { position: relative; }
.mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1600px) rotateY(-7deg) rotateX(2deg);
  transition: transform 0.5s;
}
.mockup:hover { transform: perspective(1600px) rotateY(-3deg) rotateX(1deg); }
.mockup-bar {
  height: 44px; background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 16px; gap: 7px;
}
.mockup-dot { width: 11px; height: 11px; border-radius: 50%; }
.mockup-body { padding: 22px; }
.mk-row { display: flex; gap: 12px; margin-bottom: 14px; }
.mk-stat {
  flex: 1; background: var(--gray-50);
  border-radius: 12px; padding: 14px;
}
.mk-stat .v { font-size: 22px; font-weight: 700; }
.mk-stat .l { font-size: 11px; color: var(--text-muted); }
.mk-stat.b { background: var(--blue-50); }
.mk-stat.b .v { color: var(--primary); }
.mk-stat.t { background: var(--teal-50); }
.mk-stat.t .v { color: var(--teal-600); }
.mk-line {
  height: 11px; border-radius: 6px;
  background: var(--gray-100); margin-bottom: 10px;
}
.mk-line.s { width: 60%; }
.mk-line.m { width: 80%; }
.mk-chip {
  display: inline-block; padding: 5px 12px;
  background: var(--blue-50); color: var(--blue-600);
  border-radius: 20px; font-size: 11px; font-weight: 700;
  margin: 3px;
}
.float-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  animation: floaty 4s ease-in-out infinite;
}
.float-card svg { width: 22px; height: 22px; }
.float-1 { top: 40px; left: -36px; }
.float-2 { bottom: 50px; right: -30px; animation-delay: 1.5s; }
.fc-ico { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.fc-ico.green { background: var(--teal-50); color: var(--teal-600); }
.fc-ico.blue { background: var(--blue-50); color: var(--blue-600); }
.fc-t { font-size: 13px; font-weight: 700; }
.fc-s { font-size: 11px; color: var(--text-muted); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== LOGOS STRIP ===== */
.strip {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--gray-50);
}
.strip-inner { display: flex; align-items: center; justify-content: center; gap: 50px; flex-wrap: wrap; }
.strip-inner .st-label { font-size: 13px; color: var(--text-light); }
.strip-stat { text-align: center; }
.strip-stat .n { font-size: 26px; font-weight: 700; color: var(--primary); }
.strip-stat .t { font-size: 12.5px; color: var(--text-muted); }

/* ===== SECTION HEADINGS ===== */
.sec { padding: 100px 0; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.sec-tag {
  display: inline-block;
  color: var(--primary); font-weight: 700; font-size: 14px;
  background: var(--blue-50);
  padding: 6px 16px; border-radius: 20px;
  margin-bottom: 16px;
}
.sec-head h2 {
  font-size: 38px; font-weight: 700;
  line-height: 1.4; letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.sec-head p { font-size: 17px; color: var(--text-muted); }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.25s;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--blue-200);
}
.feature-ico {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-ico svg { width: 26px; height: 26px; }
.feature-ico.c1 { background: var(--blue-50); color: var(--blue-600); }
.feature-ico.c2 { background: var(--teal-50); color: var(--teal-600); }
.feature-ico.c3 { background: var(--amber-50); color: var(--amber-600); }
.feature h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.feature p { font-size: 14.5px; color: var(--text-muted); line-height: 1.85; }

/* ===== SHOWCASE (alternating) ===== */
.showcase { display: flex; flex-direction: column; gap: 100px; }
.show-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.show-row.rev .show-text { order: 2; }
.show-text .sec-tag { margin-bottom: 18px; }
.show-text h3 { font-size: 30px; font-weight: 700; line-height: 1.45; margin-bottom: 18px; letter-spacing: -0.3px; }
.show-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 24px; }
.show-list { display: flex; flex-direction: column; gap: 14px; }
.show-li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.show-li .ck {
  width: 24px; height: 24px; border-radius: 7px;
  background: var(--teal-50); color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.show-li .ck svg { width: 15px; height: 15px; }
.show-visual {
  background: linear-gradient(150deg, var(--blue-50) 0%, var(--gray-50) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
}
.show-card {
  background: var(--surface);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 22px;
  width: 100%;
}
.show-card-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.show-card-h .t { font-weight: 700; font-size: 15px; }
.mini-tbl { width: 100%; font-size: 12.5px; }
.mini-tbl td { padding: 9px 6px; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.mini-tbl tr:last-child td { border: none; }
.mini-badge { padding: 2px 9px; border-radius: 12px; font-size: 11px; font-weight: 700; }
.mini-badge.g { background: var(--teal-50); color: var(--teal-600); }
.mini-badge.a { background: var(--amber-50); color: var(--amber-600); }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  display: flex; flex-direction: column;
  transition: all 0.25s;
  position: relative;
}
.plan:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.plan.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow);
}
.plan-pop {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  padding: 6px 18px; border-radius: 20px;
  font-size: 12.5px; font-weight: 700;
  white-space: nowrap;
}
.plan-name { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.plan-desc { font-size: 13.5px; color: var(--text-muted); margin-bottom: 24px; min-height: 42px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan-price .amt { font-size: 30px; font-weight: 700; letter-spacing: -0.5px; }
.plan-price .cur { font-size: 14px; color: var(--text-muted); }
.plan-period { font-size: 13px; color: var(--text-light); margin-bottom: 28px; }
.plan-feats { display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; flex: 1; }
.plan-feat { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.plan-feat .pc {
  width: 20px; height: 20px; border-radius: 6px;
  background: var(--teal-50); color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 3px;
}
.plan-feat .pc svg { width: 13px; height: 13px; }
.plan-feat.off { color: var(--text-light); }
.plan-feat.off .pc { background: var(--gray-100); color: var(--gray-400); }
.plan .btn { width: 100%; justify-content: center; }
.pricing-note {
  text-align: center; margin-top: 36px;
  font-size: 14px; color: var(--text-muted);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--primary) 55%, var(--blue-400) 100%);
  border-radius: 28px;
  padding: 64px 56px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 50%);
}
.cta-band h2 { font-size: 36px; font-weight: 700; margin-bottom: 14px; position: relative; }
.cta-band p { font-size: 17px; opacity: 0.9; margin-bottom: 32px; position: relative; }
.cta-band .btn { position: relative; }

/* ===== CONTACT / DEMO FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { font-size: 34px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.3px; }
.contact-info p { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-method:last-child { border: none; }
.cm-ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-50); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cm-ico svg { width: 22px; height: 22px; }
.cm-t { font-size: 13px; color: var(--text-muted); }
.cm-v { font-size: 16px; font-weight: 700; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 38px;
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 6px; }
.form-card .fsub { font-size: 14px; color: var(--text-muted); margin-bottom: 26px; }
.fld { margin-bottom: 18px; }
.fld label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 8px; }
.fld input, .fld select, .fld textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 11px;
  font-size: 14.5px;
  font-family: inherit;
  background: var(--surface);
  color: var(--text);
  transition: all 0.15s;
}
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--blue-50);
}
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-ok {
  display: none;
  background: var(--teal-50); color: var(--teal-600);
  padding: 16px; border-radius: 12px;
  font-size: 14.5px; font-weight: 700;
  text-align: center;
  align-items: center; justify-content: center; gap: 8px;
}
.form-ok svg { width: 20px; height: 20px; }
.form-ok.show { display: flex; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--blue-200); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-size: 15.5px; font-weight: 700;
  text-align: right;
}
.faq-q .qi {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--blue-50); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s; flex-shrink: 0;
}
.faq-q .qi svg { width: 16px; height: 16px; }
.faq-item.open .qi { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted); font-size: 14.5px; line-height: 1.9;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 22px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: #fff;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer .logo { color: #fff; margin-bottom: 16px; }
.footer-about { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.9; max-width: 280px; }
.footer-col h4 { font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 12px; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bot {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.45);
  flex-wrap: wrap; gap: 12px;
}

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: var(--surface);
  padding: 24px;
  display: none;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.mobile-nav a {
  font-size: 19px; font-weight: 700;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { margin-top: 24px; justify-content: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr; }
  .show-row { grid-template-columns: 1fr; gap: 32px; }
  .show-row.rev .show-text { order: 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: flex; }
  .hero h1 { font-size: 38px; }
  .sec-head h2 { font-size: 30px; }
  .sec { padding: 70px 0; }
  .cta-band { padding: 48px 28px; }
  .cta-band h2 { font-size: 27px; }
  .float-1, .float-2 { display: none; }
}
@media (max-width: 560px) {
  .fld-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .form-card { padding: 26px 22px; }
}

/* ===== آیکون‌های بزرگ‌تر (اصلاح) ===== */
.btn svg { width: 22px; height: 22px; }
.logo-mark svg { width: 26px; height: 26px; }
.feature-ico { width: 60px; height: 60px; }
.feature-ico svg { width: 32px; height: 32px; }
.cm-ico { width: 54px; height: 54px; }
.cm-ico svg { width: 27px; height: 27px; }
.hero-badge svg { width: 19px; height: 19px; }
.hero-trust svg { width: 20px; height: 20px; }
.show-li .ck { width: 27px; height: 27px; }
.show-li .ck svg { width: 18px; height: 18px; }
.plan-feat .pc { width: 22px; height: 22px; }
.plan-feat .pc svg { width: 16px; height: 16px; }
.faq-q .qi { width: 32px; height: 32px; }
.faq-q .qi svg { width: 19px; height: 19px; }
.fc-ico svg { width: 26px; height: 26px; }
.float-card svg { width: 26px; height: 26px; }

/* ===== تصاویر واقعی اپ در بخش نمایش ===== */
.show-visual.img {
  padding: 18px;
  background: linear-gradient(150deg, var(--blue-50) 0%, var(--gray-50) 100%);
}
.show-visual.img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: #fff;
}
