:root {
  --ink: #0b2f39;
  --ink-2: #123f4b;
  --green: #48b956;
  --green-dark: #278d3b;
  --sky: #dcecf3;
  --mist: #f3f7f8;
  --white: #ffffff;
  --text: #15343c;
  --muted: #5f747a;
  --line: #d7e3e6;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(4, 40, 50, 0.12);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #81d98a; outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 12px 18px; background: var(--green); color: #06250d; border-radius: 10px; font-weight: 800; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(215,227,230,.9); backdrop-filter: blur(14px); }
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 190px; }
.brand-mark { width: 43px; height: 43px; color: var(--green); flex: none; }
.brand-name { display: block; color: var(--ink); font-weight: 850; letter-spacing: -.03em; font-size: 18px; line-height: 1.05; }
.brand-sub { display: block; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link { padding: 12px 11px; border-radius: 10px; color: #27464e; font-size: 14px; font-weight: 700; }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--green-dark); background: #eef8ef; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-link { padding: 10px 8px; color: var(--muted); font-weight: 800; font-size: 13px; }
.menu-button { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.menu-button span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .2s, opacity .2s; }
.menu-open .menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-button span:nth-child(2) { opacity: 0; }
.menu-open .menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 22px; border: 1px solid transparent; border-radius: 999px; background: var(--green); color: #092d11; font-weight: 850; cursor: pointer; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); background: #61c96c; }
.button--dark { background: var(--ink); color: var(--white); }
.button--dark:hover { background: var(--ink-2); }
.button--outline { background: transparent; color: var(--ink); border-color: #9bb0b5; }
.button--outline:hover { background: var(--mist); border-color: var(--ink); }
.button--light { background: var(--white); color: var(--ink); }
.button svg, .text-link svg { width: 18px; height: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 850; color: var(--ink); }
.text-link:hover { color: var(--green-dark); }

.hero { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.hero--home { min-height: 690px; display: grid; align-items: center; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,37,46,.97) 0%, rgba(4,37,46,.91) 40%, rgba(4,37,46,.35) 76%, rgba(4,37,46,.28) 100%); }
.hero-content { position: relative; z-index: 2; padding: 120px 0 150px; max-width: 720px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; color: #7bd982; font-size: 13px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(44px, 6vw, 76px); line-height: 1.04; letter-spacing: -.045em; }
.hero-lead { max-width: 650px; margin-bottom: 32px; color: #d7e6e9; font-size: clamp(17px, 2vw, 21px); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-proof { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; }
.proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); color: var(--text); border-radius: 24px 24px 0 0; box-shadow: var(--shadow); overflow: hidden; }
.proof-item { padding: 26px 24px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; font-size: 17px; color: var(--ink); }
.proof-item span { color: var(--muted); font-size: 13px; }

.page-hero { padding: 94px 0 88px; background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -8%; top: -60%; width: 560px; height: 560px; border-radius: 50%; border: 110px solid rgba(72,185,86,.13); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 900px; font-size: clamp(42px, 5.5vw, 68px); }
.page-hero p { max-width: 720px; color: #cee0e4; font-size: 19px; }
.breadcrumbs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; color: #a9c2c8; font-size: 13px; }
.breadcrumbs a:hover { color: var(--white); }

.section { padding: 104px 0; }
.section--soft { background: var(--mist); }
.section--sky { background: var(--sky); }
.section--dark { background: var(--ink); color: var(--white); }
.section-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: end; margin-bottom: 50px; }
.section-heading h2 { margin: 0; color: var(--ink); font-size: clamp(34px, 4vw, 54px); line-height: 1.08; letter-spacing: -.035em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 17px; }
.section--dark .section-heading h2 { color: var(--white); }
.section--dark .section-heading p { color: #bed2d6; }
.kicker { margin-bottom: 14px; color: var(--green-dark); font-weight: 850; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 290px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; border-radius: var(--radius); background: var(--sky); border: 1px solid rgba(168,199,210,.6); }
.feature-card--photo { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.feature-card--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .58; }
.feature-card--photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,40,49,.92), rgba(5,40,49,.12)); }
.feature-card > * { position: relative; z-index: 2; }
.card-number { color: var(--green-dark); font-size: 13px; font-weight: 900; }
.feature-card h3 { margin: 50px 0 12px; font-size: 25px; line-height: 1.18; letter-spacing: -.025em; }
.feature-card p { color: #49656b; }
.feature-card--photo p { color: #d6e7ea; }

.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 80px 1fr 1fr auto; gap: 28px; align-items: center; padding: 32px 0; border-bottom: 1px solid var(--line); }
.service-index { color: var(--green-dark); font-weight: 900; }
.service-row h3 { margin: 0; font-size: 24px; color: var(--ink); }
.service-row p { margin: 0; color: var(--muted); }

.product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.product-card { min-height: 260px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 18px; color: var(--white); background: linear-gradient(145deg, #0e4451, #071f27); border: 1px solid rgba(255,255,255,.08); transition: transform .2s, border-color .2s; }
.product-card:hover { transform: translateY(-5px); border-color: var(--green); }
.product-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 16px; background: rgba(72,185,86,.16); color: #78d981; }
.product-icon svg { width: 30px; height: 30px; }
.product-card h3 { margin: 44px 0 10px; font-size: 20px; line-height: 1.2; }
.product-card p { margin: 0; color: #bdd0d5; font-size: 13px; }

.product-browser { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: 0 22px 60px rgba(4,40,50,.09); }
.catalog-tabs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; padding: 10px; background: var(--ink); }
.catalog-tab { min-height: 76px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 12px; border: 1px solid transparent; border-radius: 16px; background: transparent; color: #c7dadd; font-weight: 800; line-height: 1.25; cursor: pointer; transition: background .2s, color .2s, transform .2s; }
.catalog-tab svg { width: 27px; height: 27px; flex: none; }
.catalog-tab:hover { color: var(--white); background: rgba(255,255,255,.08); }
.catalog-tab[aria-selected="true"] { color: #092d11; background: var(--green); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.catalog-tab[aria-selected="true"]:hover { background: #61c96c; }
.catalog-panel { padding: 44px; }
.catalog-panel[hidden] { display: none; }
.catalog-panel-heading { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: end; margin-bottom: 28px; }
.catalog-panel-heading h3 { margin-bottom: 9px; color: var(--ink); font-size: clamp(28px, 3vw, 40px); line-height: 1.12; letter-spacing: -.03em; }
.catalog-panel-heading p { max-width: 720px; margin: 0; color: var(--muted); }
.catalog-table-wrap { overflow-x: auto; margin-bottom: 42px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.catalog-table { width: 100%; min-width: 850px; border-collapse: collapse; font-size: 14px; }
.catalog-table th, .catalog-table td { padding: 18px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.catalog-table thead th { color: #d7e8eb; background: var(--ink-2); font-size: 11px; letter-spacing: .065em; text-transform: uppercase; }
.catalog-table thead th:first-child { border-radius: 17px 0 0; }
.catalog-table thead th:last-child { border-radius: 0 17px 0 0; }
.catalog-table tbody th { min-width: 210px; color: var(--ink); background: #f8fbfb; font-weight: 850; }
.catalog-table tbody td { min-width: 150px; color: #486168; }
.catalog-table tbody tr:last-child th, .catalog-table tbody tr:last-child td { border-bottom: 0; }
.catalog-products-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 22px; }
.catalog-products-heading h3 { margin: 0; color: var(--ink); font-size: 27px; letter-spacing: -.025em; }
.catalog-products-heading span { max-width: 640px; color: var(--muted); font-size: 12px; text-align: right; }
.catalog-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.catalog-product-card { overflow: hidden; display: grid; grid-template-rows: 310px 1fr; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: 0 14px 38px rgba(5,42,51,.07); }
.catalog-product-image { position: relative; display: grid; place-items: center; padding: 28px; overflow: hidden; background: #fff; border-bottom: 1px solid var(--line); }
.catalog-product-image::after { content: ""; position: absolute; inset: auto 12% 18px; height: 18px; border-radius: 50%; background: rgba(8,43,52,.1); filter: blur(13px); }
.catalog-product-image img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; }
.catalog-product-body { display: flex; flex-direction: column; padding: 30px; }
.catalog-brand { align-self: flex-start; margin-bottom: 12px; padding: 5px 10px; border-radius: 999px; color: #216f31; background: #e6f6e8; font-size: 11px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.catalog-product-body h3 { margin-bottom: 10px; color: var(--ink); font-size: 25px; line-height: 1.18; letter-spacing: -.025em; }
.catalog-product-body > p { color: var(--muted); font-size: 14px; }
.catalog-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 16px 0 26px; }
.catalog-specs div { min-height: 76px; padding: 13px 14px; border-radius: 13px; background: var(--mist); }
.catalog-specs dt { margin-bottom: 4px; color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: .055em; text-transform: uppercase; }
.catalog-specs dd { margin: 0; color: var(--ink); font-size: 13px; font-weight: 800; line-height: 1.35; }
.catalog-product-body .text-link { margin-top: auto; align-self: flex-start; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-media { min-height: 500px; border-radius: 26px; overflow: hidden; background: var(--ink); }
.split-media img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }
.split-copy h2 { color: var(--ink); font-size: clamp(36px, 4vw, 54px); line-height: 1.08; letter-spacing: -.035em; }
.split-copy > p { color: var(--muted); font-size: 17px; }
.check-list { display: grid; gap: 16px; margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 15px; height: 15px; border-radius: 50%; background: var(--green); box-shadow: inset 0 0 0 4px #dff3e1; }

.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: 22px; overflow: hidden; }
.metric { padding: 34px 26px; background: var(--ink); }
.metric strong { display: block; color: var(--green); font-size: 30px; }
.metric span { color: #c2d5d9; font-size: 14px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step { padding: 28px; border-top: 3px solid var(--green); background: var(--white); border-radius: 0 0 18px 18px; }
.process-step span { color: var(--green-dark); font-weight: 900; }
.process-step h3 { margin: 30px 0 10px; color: var(--ink); font-size: 20px; }
.process-step p { color: var(--muted); font-size: 14px; }

.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.content-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.content-card h2, .content-card h3 { color: var(--ink); }
.content-card p { color: var(--muted); }
.content-card ul { margin: 20px 0 0; padding-left: 20px; color: var(--muted); }
.content-card li + li { margin-top: 9px; }

.product-detail-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.product-visual { position: sticky; top: 120px; min-height: 470px; padding: 50px; display: grid; place-items: center; border-radius: 28px; background: radial-gradient(circle at 65% 30%, #296577, #0a303b 60%, #061f27); color: #72d97d; }
.product-visual svg { width: min(70%, 310px); height: auto; filter: drop-shadow(0 24px 40px rgba(0,0,0,.25)); }
.spec-list { display: grid; gap: 0; border-top: 1px solid var(--line); margin: 32px 0; }
.spec-row { display: grid; grid-template-columns: 180px 1fr; gap: 22px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.spec-row strong { color: var(--ink); }
.spec-row span { color: var(--muted); }

.cta-band { padding: 70px; border-radius: 30px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; background: var(--ink); color: var(--white); }
.cta-band h2 { margin-bottom: 14px; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; }
.cta-band p { margin: 0; color: #c8dade; }
.cta-actions { display: flex; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }

.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 38px; align-items: start; }
.contact-panel { padding: 36px; border-radius: 24px; background: var(--ink); color: var(--white); }
.contact-panel h2 { font-size: 34px; }
.contact-panel p { color: #c5dadd; }
.contact-fact { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.14); }
.contact-fact strong { display: block; color: #80dd88; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.contact-fact span, .contact-fact a { display: block; margin-top: 6px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 38px; border: 1px solid var(--line); border-radius: 24px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-weight: 800; font-size: 13px; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #bfcfd3; border-radius: 12px; padding: 13px 14px; background: #fbfdfd; color: var(--text); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { color: var(--muted); font-size: 12px; }
.form-status { min-height: 24px; color: var(--green-dark); font-weight: 700; }

.quote-rail { position: fixed; right: 0; top: 46%; z-index: 60; writing-mode: vertical-rl; transform: rotate(180deg); padding: 18px 12px; border-radius: 14px 0 0 14px; background: var(--green); color: #08260e; font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; box-shadow: var(--shadow); }

.site-footer { background: #061f27; color: var(--white); }
.site-footer .brand-name { color: var(--white); }
.site-footer .brand-sub { color: #7ed987; }
.footer-main { padding: 72px 0 44px; display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 44px; }
.footer-brand p { max-width: 370px; color: #a9c0c5; }
.footer-column h2 { font-size: 13px; text-transform: uppercase; letter-spacing: .09em; color: #7ed987; }
.footer-column a { display: block; padding: 6px 0; color: #c4d6da; font-size: 14px; }
.footer-column a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); color: #8eaab0; font-size: 12px; }

@media (max-width: 1050px) {
  .main-nav { position: fixed; inset: 87px 0 auto; max-height: 0; overflow: hidden; display: grid; gap: 4px; padding: 0 20px; background: var(--white); transition: max-height .3s, padding .3s; box-shadow: 0 18px 30px rgba(5,35,43,.12); }
  .menu-open .main-nav { max-height: calc(100vh - 87px); padding: 20px; overflow-y: auto; }
  .nav-link { padding: 14px; font-size: 16px; }
  .menu-button { display: block; }
  .header-actions .button { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .catalog-tabs { grid-template-columns: repeat(3, 1fr); }
  .catalog-product-card { grid-template-rows: 270px 1fr; }
  .service-row { grid-template-columns: 55px 1fr auto; }
  .service-row p { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 74px; }
  .main-nav { inset: 75px 0 auto; }
  .brand-sub { display: none; }
  .hero--home { min-height: 760px; }
  .hero-content { padding: 88px 0 230px; }
  h1 { font-size: 44px; }
  .hero-media::after { background: linear-gradient(180deg, rgba(4,37,46,.88), rgba(4,37,46,.78) 55%, rgba(4,37,46,.96)); }
  .proof-strip { grid-template-columns: 1fr 1fr; border-radius: 20px 20px 0 0; }
  .proof-item { padding: 18px; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 72px 0; }
  .section-heading, .split, .product-detail-grid, .contact-grid, .cta-band { grid-template-columns: 1fr; gap: 28px; }
  .section-heading { margin-bottom: 34px; }
  .feature-grid, .content-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-browser { margin-inline: -2px; border-radius: 22px; }
  .catalog-tabs { display: flex; overflow-x: auto; justify-content: flex-start; padding: 8px; scroll-snap-type: x proximity; }
  .catalog-tab { min-width: 180px; min-height: 68px; scroll-snap-align: start; }
  .catalog-panel { padding: 28px 20px; }
  .catalog-panel-heading { grid-template-columns: 1fr; gap: 20px; }
  .catalog-panel-heading .button { justify-self: start; }
  .catalog-products-heading { display: block; }
  .catalog-products-heading span { display: block; margin-top: 10px; text-align: left; }
  .catalog-product-grid { grid-template-columns: 1fr; }
  .catalog-product-card { grid-template-rows: 300px 1fr; }
  .process-grid, .metric-grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 42px 1fr; gap: 16px; }
  .service-row .text-link { grid-column: 2; }
  .split-media, .split-media img { min-height: 350px; }
  .product-visual { position: static; min-height: 330px; }
  .cta-band { padding: 38px 26px; }
  .cta-actions { justify-content: flex-start; }
  .contact-form { grid-template-columns: 1fr; padding: 26px; }
  .field--full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .quote-rail { display: none; }
}

@media (max-width: 480px) {
  .brand { min-width: 0; }
  .brand-name { font-size: 16px; }
  .lang-link { padding-inline: 4px; }
  .page-hero { padding: 72px 0; }
  .product-grid, .process-grid, .metric-grid { grid-template-columns: 1fr; }
  .catalog-panel { padding: 24px 14px; }
  .catalog-table-wrap { margin-inline: -2px; }
  .catalog-product-card { grid-template-rows: 240px 1fr; }
  .catalog-product-image { padding: 20px; }
  .catalog-product-body { padding: 23px; }
  .catalog-specs { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; }
}

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