@layer reset, base, layout, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body, h1, h2, h3, p, ul, ol { margin: 0; }
  img, svg { display: block; max-width: 100%; }
  button, input, select { font: inherit; }
  button, a { -webkit-tap-highlight-color: transparent; }
}

@layer base {
  :root {
    color-scheme: light;
    --bg: #f7f8fc;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-solid: #ffffff;
    --surface-soft: #f0f2f8;
    --text: #171927;
    --muted: #666b80;
    --line: rgba(23, 25, 39, 0.10);
    --primary: #6d4aff;
    --primary-strong: #5635ee;
    --secondary: #0bb8a8;
    --accent: #ffb547;
    --success: #0a9c72;
    --danger: #d9465f;
    --shadow-sm: 0 8px 30px rgba(35, 30, 74, 0.08);
    --shadow-lg: 0 24px 70px rgba(43, 35, 90, 0.14);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1180px;
  }

  [data-theme="dark"] {
    color-scheme: dark;
    --bg: #0b0c14;
    --surface: rgba(22, 24, 37, 0.82);
    --surface-solid: #151725;
    --surface-soft: #1d2030;
    --text: #f5f5fb;
    --muted: #a8adbf;
    --line: rgba(255, 255, 255, 0.10);
    --primary: #8a70ff;
    --primary-strong: #9a83ff;
    --secondary: #2ad6c3;
    --accent: #ffc564;
    --success: #37c99a;
    --danger: #ff7188;
    --shadow-sm: 0 8px 30px rgba(0, 0, 0, 0.22);
    --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.34);
  }

  body {
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;
    background:
      radial-gradient(circle at 12% 4%, rgba(109, 74, 255, 0.12), transparent 28rem),
      radial-gradient(circle at 90% 18%, rgba(11, 184, 168, 0.10), transparent 28rem),
      var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
    line-height: 1.7;
  }

  [dir="rtl"] body { font-family: Tahoma, "Segoe UI", Arial, sans-serif; }
  a { color: inherit; text-decoration: none; }
  button { color: inherit; }
  ::selection { background: rgba(109, 74, 255, 0.24); }
  :focus-visible { outline: 3px solid rgba(109, 74, 255, 0.36); outline-offset: 3px; }
}

@layer layout {
  .container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
  .section { padding-block: 88px; }
  .section-sm { padding-block: 58px; }
  .section-heading { max-width: 700px; margin-bottom: 40px; }
  .section-heading.center { margin-inline: auto; text-align: center; }
  .section-heading h2 { margin-top: 12px; font-size: clamp(1.75rem, 4vw, 2.75rem); line-height: 1.2; letter-spacing: -0.04em; }
  [dir="rtl"] .section-heading h2 { letter-spacing: normal; }
  .section-heading p { margin-top: 14px; color: var(--muted); font-size: 1.02rem; }
  .grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
  .grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
}

@layer components {
  .skip-link { position: fixed; inset-inline-start: 16px; top: -80px; z-index: 100; padding: 10px 16px; border-radius: 10px; background: var(--text); color: var(--bg); transition: top .2s; }
  .skip-link:focus { top: 16px; }

  .site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid transparent; background: rgba(247, 248, 252, 0.70); backdrop-filter: blur(18px); transition: border-color .2s, background .2s; }
  [data-theme="dark"] .site-header { background: rgba(11, 12, 20, 0.72); }
  .site-header.is-scrolled { border-color: var(--line); }
  .nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
  .brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 850; font-size: 1.16rem; letter-spacing: -0.03em; }
  .brand-mark { position: relative; width: 37px; height: 37px; flex: 0 0 auto; border-radius: 12px; background: linear-gradient(135deg, var(--primary), #8b68ff 52%, var(--secondary)); box-shadow: 0 9px 24px rgba(109, 74, 255, .26); }
  .brand-mark::before, .brand-mark::after { content: ""; position: absolute; background: #fff; border-radius: 3px; }
  .brand-mark::before { width: 17px; height: 5px; left: 10px; top: 10px; box-shadow: 0 7px 0 rgba(255,255,255,.78); }
  .brand-mark::after { width: 5px; height: 18px; right: 7px; bottom: 5px; opacity: .32; }
  .nav-links { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: .93rem; }
  .nav-links a { transition: color .2s; }
  .nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
  .nav-actions { display: flex; align-items: center; gap: 9px; }
  .icon-button { width: 40px; height: 40px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer; transition: transform .2s, border-color .2s, background .2s; }
  .icon-button:hover { transform: translateY(-2px); border-color: rgba(109, 74, 255, .35); }
  .icon-button svg { width: 19px; height: 19px; }
  .theme-icon-moon { display: none; }
  [data-theme="dark"] .theme-icon-sun { display: none; }
  [data-theme="dark"] .theme-icon-moon { display: block; }
  .menu-button { display: none; }
  .language-link { min-width: 46px; padding-inline: 10px; font-size: .84rem; font-weight: 750; }

  .hero { position: relative; padding-block: 82px 72px; }
  .hero::before { content: ""; position: absolute; z-index: -1; width: 440px; height: 440px; inset-inline-end: -210px; top: 30px; border: 1px solid rgba(109,74,255,.12); border-radius: 50%; box-shadow: inset 0 0 100px rgba(109,74,255,.06); }
  .hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); gap: 64px; align-items: center; }
  .eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 11px; border: 1px solid rgba(109,74,255,.18); border-radius: 999px; background: rgba(109,74,255,.08); color: var(--primary-strong); font-size: .78rem; font-weight: 800; }
  .eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--secondary); box-shadow: 0 0 0 5px rgba(11,184,168,.10); }
  .hero h1 { max-width: 720px; margin-top: 22px; font-size: clamp(2.55rem, 6vw, 5rem); line-height: 1.08; letter-spacing: -0.065em; }
  [dir="rtl"] .hero h1 { letter-spacing: -.025em; line-height: 1.3; }
  .gradient-text { background: linear-gradient(100deg, var(--primary-strong), #8f5cff 46%, var(--secondary)); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .hero-copy { max-width: 650px; margin-top: 22px; color: var(--muted); font-size: clamp(1rem, 2vw, 1.15rem); }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
  .trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 28px; color: var(--muted); font-size: .82rem; }
  .trust-item { display: flex; align-items: center; gap: 7px; }
  .trust-item svg { width: 16px; height: 16px; color: var(--success); }

  .button { min-height: 47px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 10px 18px; border: 1px solid transparent; border-radius: 14px; font-weight: 800; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
  .button:hover { transform: translateY(-2px); }
  .button svg { width: 18px; height: 18px; }
  .button-primary { background: linear-gradient(135deg, var(--primary), var(--primary-strong)); color: #fff; box-shadow: 0 12px 28px rgba(109,74,255,.24); }
  .button-primary:hover { box-shadow: 0 16px 34px rgba(109,74,255,.32); }
  .button-secondary { border-color: var(--line); background: var(--surface); }
  .button-secondary:hover { border-color: rgba(109,74,255,.32); background: var(--surface-solid); }
  .button-ghost { color: var(--primary-strong); background: transparent; padding-inline: 4px; }
  .button:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

  .hero-visual { position: relative; min-height: 450px; display: grid; place-items: center; }
  .visual-orbit { position: absolute; width: 400px; height: 400px; border: 1px dashed rgba(109,74,255,.22); border-radius: 50%; animation: spin 28s linear infinite; }
  .visual-orbit::before, .visual-orbit::after { content: ""; position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--secondary); box-shadow: 0 0 0 7px rgba(11,184,168,.10); }
  .visual-orbit::before { top: 41px; left: 62px; }
  .visual-orbit::after { right: 30px; bottom: 95px; background: var(--primary); box-shadow: 0 0 0 7px rgba(109,74,255,.10); }
  .preview-card { position: relative; width: min(100%, 390px); padding: 22px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); backdrop-filter: blur(18px); box-shadow: var(--shadow-lg); transform: rotate(-2deg); }
  [dir="rtl"] .preview-card { transform: rotate(2deg); }
  .preview-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
  .preview-dots { display: flex; gap: 5px; }
  .preview-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
  .preview-dots i:first-child { background: var(--danger); }
  .preview-dots i:nth-child(2) { background: var(--accent); }
  .preview-dots i:last-child { background: var(--success); }
  .preview-status { color: var(--success); font-size: .72rem; font-weight: 800; }
  .preview-drop { margin-top: 20px; min-height: 190px; display: grid; place-items: center; text-align: center; padding: 30px; border: 1.5px dashed rgba(109,74,255,.32); border-radius: 20px; background: linear-gradient(145deg, rgba(109,74,255,.07), rgba(11,184,168,.05)); }
  .preview-drop-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-inline: auto; border-radius: 18px; background: var(--surface-solid); color: var(--primary); box-shadow: var(--shadow-sm); }
  .preview-drop-icon svg { width: 28px; height: 28px; }
  .preview-drop strong { display: block; margin-top: 15px; font-size: .95rem; }
  .preview-drop span { color: var(--muted); font-size: .75rem; }
  .preview-file { display: grid; grid-template-columns: 43px 1fr auto; align-items: center; gap: 11px; margin-top: 15px; padding: 11px; border-radius: 15px; background: var(--surface-soft); }
  .file-thumb { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 11px; background: linear-gradient(135deg, rgba(109,74,255,.16), rgba(11,184,168,.12)); color: var(--primary); font-size: .7rem; font-weight: 900; }
  .preview-file-info { min-width: 0; }
  .preview-file-info strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .76rem; }
  .progress { height: 5px; margin-top: 7px; overflow: hidden; border-radius: 99px; background: var(--line); }
  .progress span { display: block; width: 72%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--primary), var(--secondary)); }
  .preview-saving { color: var(--success); font-size: .72rem; font-weight: 850; }
  .floating-pill { position: absolute; z-index: 2; display: flex; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-solid); box-shadow: var(--shadow-sm); font-size: .76rem; font-weight: 800; }
  .floating-pill svg { width: 18px; height: 18px; color: var(--primary); }
  .pill-one { inset-inline-start: -28px; top: 72px; animation: float 4s ease-in-out infinite; }
  .pill-two { inset-inline-end: -22px; bottom: 80px; animation: float 4.6s ease-in-out infinite reverse; }

  .metric-strip { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); }
  .metric { padding: 24px; text-align: center; }
  .metric + .metric { border-inline-start: 1px solid var(--line); }
  .metric strong { display: block; font-size: 1.3rem; }
  .metric span { color: var(--muted); font-size: .83rem; }

  .tool-card { position: relative; display: flex; flex-direction: column; min-height: 255px; overflow: hidden; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .25s, border-color .25s, box-shadow .25s; }
  .tool-card::after { content: ""; position: absolute; width: 140px; height: 140px; inset-inline-end: -70px; bottom: -70px; border-radius: 50%; background: var(--card-glow, rgba(109,74,255,.09)); transition: transform .3s; }
  .tool-card:hover { transform: translateY(-7px); border-color: rgba(109,74,255,.28); box-shadow: var(--shadow-lg); }
  .tool-card:hover::after { transform: scale(1.3); }
  .tool-icon { width: 51px; height: 51px; display: grid; place-items: center; border-radius: 16px; background: var(--icon-bg, rgba(109,74,255,.10)); color: var(--icon-color, var(--primary)); }
  .tool-icon svg { width: 25px; height: 25px; }
  .tool-card h3 { margin-top: 20px; font-size: 1.08rem; }
  .tool-card p { margin-top: 8px; color: var(--muted); font-size: .88rem; }
  .tool-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 20px; color: var(--primary-strong); font-size: .83rem; font-weight: 850; }
  .tool-card-footer svg { width: 17px; height: 17px; transition: transform .2s; }
  [dir="rtl"] .tool-card:hover .tool-card-footer svg { transform: translateX(-4px); }
  [dir="ltr"] .tool-card:hover .tool-card-footer svg { transform: translateX(4px); }
  .tool-badge { position: absolute; top: 20px; inset-inline-end: 20px; padding: 3px 8px; border-radius: 99px; background: rgba(10,156,114,.10); color: var(--success); font-size: .65rem; font-weight: 900; }

  .privacy-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 50px; padding: clamp(30px, 6vw, 64px); border: 1px solid rgba(109,74,255,.16); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(109,74,255,.10), rgba(11,184,168,.07)); }
  .privacy-panel::before { content: ""; position: absolute; width: 300px; height: 300px; inset-inline-end: -170px; top: -160px; border-radius: 50%; background: rgba(109,74,255,.13); filter: blur(8px); }
  .privacy-copy { position: relative; }
  .privacy-copy h2 { margin-top: 14px; font-size: clamp(1.7rem, 4vw, 2.65rem); line-height: 1.3; }
  .privacy-copy p { margin-top: 15px; color: var(--muted); }
  .check-list { display: grid; gap: 13px; margin-top: 24px; padding: 0; list-style: none; }
  .check-list li { display: flex; align-items: flex-start; gap: 10px; }
  .check-list svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 3px; color: var(--success); }
  .shield-visual { position: relative; width: min(100%, 300px); aspect-ratio: 1; display: grid; place-items: center; margin-inline: auto; border: 1px dashed rgba(109,74,255,.24); border-radius: 50%; }
  .shield-visual::before, .shield-visual::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(11,184,168,.16); }
  .shield-visual::before { inset: 28px; }
  .shield-visual::after { inset: 58px; }
  .shield-core { width: 112px; height: 112px; display: grid; place-items: center; border-radius: 34px; background: linear-gradient(145deg, var(--primary), var(--secondary)); color: #fff; box-shadow: 0 25px 60px rgba(109,74,255,.26); transform: rotate(8deg); }
  .shield-core svg { width: 52px; height: 52px; transform: rotate(-8deg); }
  .security-chip { position: absolute; padding: 7px 11px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface-solid); box-shadow: var(--shadow-sm); color: var(--muted); font-size: .7rem; font-weight: 800; }
  .chip-a { top: 28px; inset-inline-start: -8px; }
  .chip-b { bottom: 40px; inset-inline-end: -15px; }

  .step { padding: 26px; border-top: 1px solid var(--line); }
  .step-number { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: rgba(109,74,255,.10); color: var(--primary-strong); font-weight: 900; }
  .step h3 { margin-top: 16px; font-size: 1rem; }
  .step p { margin-top: 7px; color: var(--muted); font-size: .86rem; }

  .faq-list { max-width: 830px; margin-inline: auto; border-top: 1px solid var(--line); }
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 4px; cursor: pointer; font-weight: 800; list-style: none; }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after { content: "+"; width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 9px; background: var(--surface-soft); color: var(--primary); font-size: 1.15rem; transition: transform .2s; }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item p { max-width: 740px; padding: 0 4px 22px; color: var(--muted); }

  .cta-panel { position: relative; overflow: hidden; padding: clamp(34px, 6vw, 65px); border-radius: var(--radius-lg); background: #17132c; color: #fff; text-align: center; }
  .cta-panel::before, .cta-panel::after { content: ""; position: absolute; border-radius: 50%; filter: blur(1px); }
  .cta-panel::before { width: 260px; height: 260px; left: -120px; top: -150px; background: rgba(109,74,255,.48); }
  .cta-panel::after { width: 220px; height: 220px; right: -100px; bottom: -150px; background: rgba(11,184,168,.36); }
  .cta-panel > * { position: relative; }
  .cta-panel h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
  .cta-panel p { max-width: 620px; margin: 13px auto 25px; color: rgba(255,255,255,.68); }

  .site-footer { margin-top: 80px; padding-block: 48px 28px; border-top: 1px solid var(--line); }
  .footer-grid { display: grid; grid-template-columns: 1.4fr repeat(2, .65fr); gap: 50px; }
  .footer-about p { max-width: 410px; margin-top: 15px; color: var(--muted); font-size: .88rem; }
  .footer-title { margin-bottom: 14px; font-size: .87rem; }
  .footer-links { display: grid; gap: 9px; color: var(--muted); font-size: .84rem; }
  .footer-links a:hover { color: var(--primary-strong); }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
  .privacy-note { display: inline-flex; align-items: center; gap: 6px; }
  .privacy-note svg { width: 15px; height: 15px; color: var(--success); }

  .redirect-page { min-height: 100vh; display: grid; place-items: center; padding: 20px; }
  .redirect-card { width: min(100%, 540px); padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-lg); text-align: center; }
  .redirect-card .brand { justify-content: center; }
  .redirect-card h1 { margin-top: 25px; font-size: 1.8rem; }
  .redirect-card p { margin: 10px 0 24px; color: var(--muted); }
  .language-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  @keyframes spin { to { transform: rotate(360deg); } }
  @keyframes float { 50% { transform: translateY(-9px); } }
}

@layer utilities {
  .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; }
  .text-muted { color: var(--muted); }
  .text-center { text-align: center; }
  .hide { display: none !important; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy-wrap { text-align: center; }
  .hero h1, .hero-copy { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { min-height: 420px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .privacy-panel { grid-template-columns: 1fr; }
  .shield-visual { order: -1; width: 250px; }
}

@media (max-width: 760px) {
  .section { padding-block: 62px; }
  .site-header { backdrop-filter: blur(12px); }
  .menu-button { display: inline-grid; }
  .nav-links { position: absolute; top: 74px; inset-inline: 16px; display: none; align-items: stretch; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface-solid); box-shadow: var(--shadow-lg); }
  .nav-links.is-open { display: grid; }
  .nav-links a { padding: 11px 13px; border-radius: 10px; }
  .nav-links a:hover { background: var(--surface-soft); }
  .nav-actions .button { display: none; }
  .hero { padding-block: 55px 35px; }
  .hero h1 { font-size: clamp(2.35rem, 12vw, 3.8rem); }
  [dir="rtl"] .hero h1 { font-size: clamp(2.15rem, 11vw, 3.35rem); }
  .hero-visual { min-height: 360px; }
  .visual-orbit { width: 320px; height: 320px; }
  .preview-card { width: min(90%, 360px); }
  .pill-one { inset-inline-start: 0; }
  .pill-two { inset-inline-end: 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .nav { min-height: 66px; }
  .nav-links { top: 66px; }
  .brand { font-size: 1.02rem; }
  .brand-mark { width: 34px; height: 34px; }
  .language-link { min-width: 40px; }
  .hero h1 { margin-top: 18px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .trust-row { gap: 10px 15px; }
  .hero-visual { min-height: 330px; }
  .visual-orbit { width: 270px; height: 270px; }
  .preview-card { padding: 16px; }
  .preview-drop { min-height: 155px; padding: 18px; }
  .floating-pill { display: none; }
  .metric-strip { grid-template-columns: 1fr; }
  .metric + .metric { border-inline-start: 0; border-top: 1px solid var(--line); }
  .privacy-panel { gap: 26px; }
  .shield-visual { width: 210px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-about { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .language-options { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
