
:root {
  --bg: #f3f6fb;
  --surface: rgba(255,255,255,.88);
  --surface-solid: #ffffff;
  --surface-muted: #edf3fb;
  --line: rgba(18, 44, 76, 0.12);
  --text: #172534;
  --text-soft: #556476;
  --text-muted: #748396;
  --brand: #0b72b9;
  --brand-dark: #085b93;
  --accent: #0fa38a;
  --shadow-sm: 0 12px 32px rgba(16, 42, 67, 0.08);
  --shadow-md: 0 20px 60px rgba(14, 34, 60, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --container: 1240px;
}
html,
body {
  min-height: 100%;
  font-optical-sizing: auto;
  font: 20px/1.55 "Roboto Condensed", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(11,114,185,.14), transparent 30%),
    radial-gradient(circle at top right, rgba(15,163,138,.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body { overflow-x: hidden; }
img { max-width: 100%; }
a, .link {
  color: var(--brand);
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.14em;
  transition: color .2s ease, opacity .2s ease;
}
a:hover, .link:hover { color: var(--brand-dark); }
.nobr { white-space: nowrap; }

@keyframes fade-in-bottom { from { transform: translateY(56px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fade-in-left { from { transform: translateX(-56px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fade-in-right { from { transform: translateX(56px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fade-in-zoom { from { transform: scale(1.06); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.anim-fib, .anim-fil, .anim-fir, .anim-fiz { opacity: 0; }
.anim-fib.anim--shown { animation: fade-in-bottom 800ms ease forwards; }
.anim-fil.anim--shown { animation: fade-in-left 800ms ease forwards; }
.anim-fir.anim--shown { animation: fade-in-right 800ms ease forwards; }
.anim-fiz.anim--shown { animation: fade-in-zoom 800ms ease forwards; }

.mxw { max-width: 860px; margin-left: auto; margin-right: auto; }
.bg {
  background: linear-gradient(180deg, rgba(232,241,250,.92), rgba(241,246,252,.92));
  border-bottom: 1px solid rgba(18, 44, 76, 0.06);
}
.pt1 { padding-top: .5rem; }
.pt2 { padding-top: 1rem; }
.pt3 { padding-top: 1.5rem; }
.pt4 { padding-top: 2rem; }
.pb1 { padding-bottom: .5rem; }
.pb2 { padding-bottom: 1rem; }
.pb3 { padding-bottom: 1.5rem; }
.pb4 { padding-bottom: 2rem; }
.mt1 { margin-top: .5rem; }
.mb1 { margin-bottom: .5rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  box-sizing: border-box;
  margin: 0;
  padding: .9rem 1.35rem;
  min-height: 50px;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #1390d2);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(11,114,185,.18);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 16px 30px rgba(11,114,185,.22);
}
.btn--outline {
  color: var(--brand);
  background: rgba(255,255,255,.86);
  border-color: rgba(11,114,185,.22);
  box-shadow: none;
}
.btn--outline:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #1390d2);
}
.btn--size--big { font-size: 1.05rem; padding-inline: 1.6rem; }
.section { padding-top: 110px; }
.section__title {
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 800;
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.container {
  box-sizing: border-box;
  max-width: var(--container);
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
  gap: 1.5rem 0;
}
.col { box-sizing: border-box; padding-left: 1rem; padding-right: 1rem; }
.col-1 { width: 8.333%; }
.col-2 { width: 16.667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.333%; }
.col-5 { width: 41.667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.333%; }
.col-8 { width: 66.667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.333%; }
.col-11 { width: 91.667%; }
.col-12 { width: 100%; }

.page-layout { display: flex; flex-direction: column; min-height: 100%; }
.page-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18,44,76,.08);
  box-shadow: 0 10px 30px rgba(17,36,64,.06);
}
.page-header__row { display: flex; justify-content: space-between; align-items: center; gap: 1rem 2rem; }
.page-content { flex: 1; padding-bottom: 110px; }
.page-footer {
  margin-top: auto;
  padding: 28px 0;
  color: rgba(255,255,255,.82);
  background: linear-gradient(180deg, #16304d, #0f2237);
}
.page-footer .link { color: rgba(255,255,255,.95); }
.page-footer__row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.logo { display: inline-flex; align-items: center; gap: .85rem; text-decoration: none; }
.logo__img {
  display: block;
  width: 52px;
  max-width: 52px;
  max-height: 52px;
  padding: 10px;
  object-fit: contain;
  background: linear-gradient(135deg, rgba(11,114,185,.10), rgba(15,163,138,.12));
  border-radius: 18px;
}
.logo__text {
  font-weight: 900;
  font-size: clamp(1.5rem, 2vw, 1.95rem);
  letter-spacing: .08em;
  color: var(--brand-dark);
}
.main-menu { margin-left: auto; font-weight: 600; }
.main-menu .menu__items { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .6rem .8rem; }
.main-menu .menu__item { display: block; }
.main-menu .menu__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 .95rem;
  white-space: nowrap;
  color: var(--text);
  text-decoration: none;
  border-radius: 999px;
}
.main-menu .menu__link:hover { background: rgba(11,114,185,.08); color: var(--brand-dark); }
.main-menu .menu__item--active .menu__link {
  color: var(--brand-dark);
  background: rgba(11,114,185,.11);
  box-shadow: inset 0 0 0 1px rgba(11,114,185,.12);
}
.breadcrumbs__link { font-size: .9rem; color: var(--text-muted); }
.breadcrumbs__item { display: block; }
.breadcrumbs__item::after {
  content: "/";
  display: inline-block;
  margin-left: .5em;
  color: rgba(23,37,52,.35);
  vertical-align: middle;
}
.breadcrumbs__item:last-child::after { display: none; }
.breadcrumbs__items { display: flex; flex-wrap: wrap; gap: .25rem .5rem; }
.page-title {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.filters { display: flex; flex-wrap: wrap; gap: .8rem .6rem; }
.filter {
  box-sizing: border-box;
  padding: .72rem 1rem;
  font-size: .95rem;
  white-space: nowrap;
  line-height: 1;
  color: var(--brand);
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(11,114,185,.16);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.filter:hover { color: #fff; background-color: var(--brand); border-color: var(--brand); }

.news-item {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  line-height: 1.45;
  background: var(--surface);
  border: 1px solid rgba(18,44,76,.06);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.news-item + .news-item { margin-top: 2rem; }
.news-item__pic {
  display: block;
  align-self: stretch;
  width: 48%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(135deg, #dce8f6, #edf4fb);
}
.news-item__body {
  box-sizing: border-box;
  width: 52%;
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
}
.news-item__date {
  margin-bottom: .45rem;
  color: var(--brand);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.news-item__title {
  margin-bottom: .5rem;
  font-weight: 700;
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  line-height: 1.15;
}
.news-item__title .link { text-decoration: none; color: var(--text); }
.news-item__title .link:hover { color: var(--brand); }
.news-item__abstract { margin-bottom: .75rem; font-size: .98rem; color: var(--text-soft); }
.news-item__more { margin-top: auto; padding-top: .5rem; }
.news-item__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.news-item__tags .tag {
  padding: .22rem .6rem;
  font-size: .8rem;
  color: var(--text-soft);
  background: rgba(11,114,185,.08);
  border-radius: 999px;
}
.news-item__tags .tag::before { content: "#"; }
.news .news-item:nth-of-type(even) { flex-direction: row-reverse; }
.news .news-item:nth-of-type(odd) { flex-direction: row; }

.company {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0;
}
.company + .company { margin-top: 2rem; }
.company__cover {
  position: relative;
  z-index: 1;
  width: 32%;
  margin-left: -9%;
  padding-top: 24px;
  padding-bottom: 24px;
}
.company__cover img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 22px 48px rgba(16, 42, 67, 0.18);
}
.company__desc {
  --padding: 42px;
  box-sizing: border-box;
  width: 77%;
  padding: var(--padding);
  padding-right: calc(10% + var(--padding));
  background: var(--surface);
  border: 1px solid rgba(18,44,76,.06);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}
.company__trademark { font-weight: 800; font-size: clamp(1.3rem, 2vw, 1.8rem); line-height: 1.15; }
.company__name { margin-top: .35rem; font-size: 1rem; color: var(--text-muted); }
.company__about { margin-top: 1rem; color: var(--text-soft); }
.company__about p + p { margin-top: .65em; }
.company__contacts { margin-top: 1.2rem; line-height: 1.5; }
.company__contacts .contacts__item {
  position: relative;
  margin-top: .45rem;
  padding-left: 1.7em;
}
.company__contacts .contacts__item .icon {
  position: absolute;
  left: 0;
  top: .1em;
  width: 1rem;
  text-align: center;
  color: var(--brand);
}
.company__contacts .link { color: var(--brand); }
.company__more { margin-top: 1.5rem; }
.company__more .icon { margin-right: .25em; opacity: .75; }
.company--reverse { flex-direction: row; }
.company--reverse .company__cover { margin-left: 0; margin-right: -9%; }
.company--reverse .company__desc { padding-right: var(--padding); padding-left: calc(10% + var(--padding)); }

.offers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.offers-grid__item { width: calc(50% - 1rem); }
.offer {
  height: 100%;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(18,44,76,.06);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.offer__pic {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
}
.offer__desc { padding: 1.5rem; }
.offer__name {
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.2;
}
.offer__price {
  margin-top: .65rem;
  font-size: 1.05rem;
  color: var(--brand-dark);
  font-weight: 700;
}
.offer__more { margin-top: 1rem; }

.feedback-lead {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.45;
}
.feedback-lead p + p { margin-top: 1em; }
.feedback-contacts {
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  line-height: 1.2;
}
.feedback-contacts p + p { margin-top: .45em; }
.feedback-contacts .link { color: var(--brand); }
.feedback-form {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid rgba(18,44,76,.06);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.form__row + .form__row { margin-top: 1rem; }
.form__label {
  margin-bottom: .4rem;
  font-weight: 700;
  font-size: .92rem;
  color: var(--text-soft);
}
.input__ctrl {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: .9rem 1rem;
  font: inherit;
  line-height: 1.25;
  color: var(--text);
  border: 1px solid rgba(18,44,76,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.95);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.input__ctrl:focus {
  border-color: rgba(11,114,185,.45);
  box-shadow: 0 0 0 4px rgba(11,114,185,.12);
}
textarea.input__ctrl {
  min-height: calc(1.25 * 4em + 2 * .9rem + 2px);
  resize: vertical;
}
.text { max-width: 1000px; line-height: 1.65; }
.text .date { font-size: .85em; color: var(--text-muted); }
.text a, .text .link { color: var(--brand); }
.text > * + * { margin-top: 1em; }
.text li + li { margin-top: .45em; }
.text ul li { position: relative; padding-left: 1.5em; }
.text ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: .68em;
  width: .7em;
  height: 2px;
  background: var(--brand);
  border-radius: 999px;
}
.text b, .text strong { font-weight: 700; }
.text--align--center { text-align: center; }
.lead { font-weight: 400; font-size: clamp(1.2rem, 2vw, 1.55rem); color: var(--text-soft); }

.homepage-banner {
  padding: 84px 0 68px;
  background:
    radial-gradient(circle at 0% 0%, rgba(11,114,185,.18), transparent 35%),
    radial-gradient(circle at 100% 0%, rgba(15,163,138,.16), transparent 28%),
    linear-gradient(180deg, #eef5fc, #f7fbff 62%, transparent 100%);
}
.homepage-banner__flex { display: flex; align-items: center; gap: 6%; }
.homepage-banner__pic {
  align-self: flex-start;
  width: 34%;
  filter: drop-shadow(0 22px 50px rgba(11,114,185,.18));
}
.homepage-banner__body { flex: 1; }
.homepage-banner__title {
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.9rem);
  line-height: .95;
  color: var(--text);
  letter-spacing: -.04em;
}
.homepage-banner__title > div + div { margin-top: .08em; }
.homepage-banner__subtitle {
  margin-top: 1.25rem;
  font-size: 1.2rem;
  color: var(--text-soft);
}
.carousel__items { display: flex; }
.carousel__item { display: none; width: 100%; }
.carousel__item--active { display: block; }
.carousel__indicators {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.35rem;
  justify-content: center;
}
.carousel__indicator {
  box-sizing: border-box;
  width: .95rem;
  height: .95rem;
  background: rgba(11,114,185,.10);
  border: 2px solid rgba(11,114,185,.55);
  border-radius: 999px;
  cursor: pointer;
}
.carousel__indicator--active { background: var(--brand); }
.dotted-border {
  max-width: 900px;
  min-height: 100%;
  box-sizing: border-box;
  margin: auto;
  padding: 72px 56px;
  background: rgba(255,255,255,.78);
  border: 2px dashed rgba(15,163,138,.45);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.dotted-border .section__title { margin-bottom: 2.2rem; text-shadow: none; }
.dotted-border .list { font-size: 1.1rem; line-height: 1.45; }
.dotted-border .list__item {
  position: relative;
  min-height: 2.5rem;
  padding-left: 3.3rem;
  padding-top: .2rem;
}
.dotted-border .list__item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: .15rem;
  width: 2.1rem;
  height: 2.1rem;
  background: linear-gradient(135deg, rgba(15,163,138,.15), rgba(11,114,185,.12));
  border-radius: 999px;
}
.dotted-border .list__item::after {
  content: "";
  display: block;
  position: absolute;
  left: .78rem;
  top: .53rem;
  width: .48rem;
  height: .92rem;
  color: var(--accent);
  border-right: 4px solid;
  border-bottom: 4px solid;
  transform: rotate(45deg);
}
.dotted-border .list__item + .list__item { margin-top: 1rem; }
.brands-grid {
  --gap-x: 1.5rem;
  --gap-y: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: var(--gap-y) var(--gap-x);
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
.brands-grid .link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 1.25rem;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(18,44,76,.06);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.brands-grid img {
  display: block;
  width: 100%;
  max-width: 240px;
  max-height: 90px;
  margin: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .74;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}
.brands-grid img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.02);
}
.brands-grid__cell { width: calc((100% - 3 * var(--gap-x)) / 4); }
.homepage-invitation {
  margin-top: 110px;
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, rgba(232,241,250,.65), rgba(243,246,251,0));
}

@media (max-width: 1100px) {
  html, body { font-size: 18px; }
  .company__cover { width: 36%; margin-left: -7%; }
  .company__desc { width: 74%; }
  .brands-grid__cell { width: calc((100% - 1 * var(--gap-x)) / 2); }
}
@media (max-width: 860px) {
  .section { padding-top: 78px; }
  .page-header { position: relative; }
  .page-header__row, .page-footer__row { flex-direction: column; align-items: flex-start; }
  .main-menu { width: 100%; margin-left: 0; }
  .main-menu .menu__items { justify-content: flex-start; }
  .homepage-banner { padding-top: 56px; padding-bottom: 42px; }
  .homepage-banner__flex,
  .news-item,
  .company,
  .company--reverse,
  .row { flex-direction: column; }
  .homepage-banner__pic { width: min(320px, 72vw); margin-inline: auto; }
  .news-item__pic,
  .news-item__body,
  .company__cover,
  .company__desc,
  .offer__desc,
  .col-4,
  .col-8,
  .col-6,
  .col-12 { width: 100%; }
  .news .news-item:nth-of-type(even) { flex-direction: column; }
  .company__cover,
  .company--reverse .company__cover { margin: 0 0 -28px 0; padding-bottom: 0; width: 100%; max-width: 360px; }
  .company__desc,
  .company--reverse .company__desc { padding: 1.6rem; width: 100%; }
  .offers-grid__item,
  .brands-grid__cell { width: 100%; }
  .feedback-form,
  .dotted-border { padding: 1.5rem; }
  .lead { font-size: 1.12rem; }
}
@media (max-width: 560px) {
  html, body { font-size: 17px; }
  .container { padding-left: 16px; padding-right: 16px; }
  .page-content { padding-bottom: 70px; }
  .logo__img { width: 46px; max-width: 46px; max-height: 46px; }
  .logo__text { font-size: 1.45rem; }
  .main-menu .menu__items { gap: .5rem; }
  .main-menu .menu__link { min-height: 40px; padding-inline: .8rem; font-size: .95rem; }
  .news-item,
  .offer,
  .company__desc,
  .brands-grid .link,
  .feedback-form,
  .dotted-border { border-radius: 22px; }
  .news-item__body,
  .offer__desc { padding: 1.15rem; }
  .news-item__title { font-size: 1.15rem; }
  .feedback-contacts { font-size: 1.5rem; }
}

/* Marketplace offers */



body.body--drawer-open{overflow:hidden}
.news-item__pic--empty{background:linear-gradient(135deg,#eef4fb,#f7fbff);min-height:260px}
.market-toolbar{display:flex;justify-content:space-between;align-items:center;gap:1rem;margin-bottom:1.25rem;padding:1rem 1.1rem;border:1px solid rgba(20,37,63,.08);border-radius:1.25rem;background:rgba(255,255,255,.92);box-shadow:0 12px 30px rgba(15,23,42,.05)}
.market-toolbar__summary{font-weight:700;color:#475569}
.market-filter-toggle__count{display:inline-flex;align-items:center;justify-content:center;min-width:1.45rem;height:1.45rem;padding:0 .35rem;margin-left:.35rem;border-radius:999px;background:#1f6feb;color:#fff;font-size:.82rem;font-weight:800}
.market-filter-drawer[hidden]{display:none !important}
.market-filter-drawer{position:fixed;inset:0;z-index:9999}
.market-filter-drawer__backdrop{position:absolute;inset:0;background:rgba(15,23,42,.45);opacity:0;transition:opacity .22s ease}
.market-filter-drawer__panel{position:absolute;top:0;right:0;width:min(560px,100%);height:100%;padding:1.1rem;background:#f8fbff;box-shadow:-12px 0 42px rgba(15,23,42,.18);transform:translateX(100%);transition:transform .24s ease;overflow:auto}
.market-filter-drawer--open .market-filter-drawer__backdrop{opacity:1}
.market-filter-drawer--open .market-filter-drawer__panel{transform:translateX(0)}
.market-filter-drawer__head{display:flex;justify-content:space-between;align-items:center;gap:1rem;margin-bottom:1rem}
.market-filter-drawer__title{font-size:1.35rem;font-weight:800;color:#0f172a}
.market-filter-drawer__close{display:inline-flex;align-items:center;justify-content:center;width:2.5rem;height:2.5rem;padding:0;border:0;border-radius:999px;background:#e9f1ff;color:#1f6feb;font-size:1.65rem;line-height:1;cursor:pointer}
.market-filter{padding:1.1rem;border:1px solid rgba(20,37,63,.08);border-radius:1.25rem;background:#fff;box-shadow:0 18px 38px rgba(15,23,42,.05)}
.market-filter__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.85rem}
.market-filter__actions{display:flex;gap:.75rem;flex-wrap:wrap;margin-top:1rem;position:sticky;bottom:0;padding-top:.9rem;background:linear-gradient(180deg,rgba(255,255,255,0),#fff 26%)}
.offer-hero{display:flex;justify-content:space-between;gap:1.5rem;align-items:flex-start}
.offer-hero__actions{display:flex;gap:.75rem;flex-wrap:wrap;align-items:center}
.offers-grid--market{margin-top:1.5rem}
.offer--market{height:100%;display:flex;flex-direction:column;background:#fff;border:1px solid rgba(20,37,63,.08);border-radius:1.25rem;overflow:hidden;box-shadow:0 18px 36px rgba(15,23,42,.06)}
.offer__pic-wrap{display:block}
.offer__pic--empty{display:flex;align-items:center;justify-content:center;background:#f6f8fc;color:#64748b;min-height:220px}
.offer__chips{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:.8rem}
.offer-chip{display:inline-flex;align-items:center;min-height:30px;padding:0 .75rem;border-radius:999px;background:#f3f7ff;color:#2357a7;font-size:.875rem;font-weight:700}
.offer__meta{display:grid;gap:.35rem;margin-top:.9rem;color:#5d6a7b}
.market-empty,.auth-card{padding:1.25rem;border:1px solid rgba(20,37,63,.08);border-radius:1.5rem;background:#fff;box-shadow:0 18px 38px rgba(15,23,42,.05)}
.auth-card--wide{max-width:none}.form-grid{display:grid;grid-template-columns:1fr;gap:1rem}.form-grid--2{grid-template-columns:repeat(2,minmax(0,1fr))}.form-field label{display:block;font-weight:700;margin-bottom:.45rem}.form-field--full{grid-column:1 / -1}.error-box,.success-box{padding:.9rem 1rem;border-radius:1rem;font-weight:700;margin-bottom:1rem}.error-box{background:#fff2f2;color:#b91c1c}.success-box{background:#ecfeff;color:#0f766e}.offer-detail{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);gap:1.5rem}.offer-detail__main img{display:block;width:100%;border-radius:1.25rem}.offer-detail__thumbs{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.75rem;margin-top:.75rem}.offer-detail__thumbs img{display:block;width:100%;height:100px;object-fit:cover;border-radius:.9rem}.offer-detail__info{padding:1.25rem;border:1px solid rgba(20,37,63,.08);border-radius:1.5rem;background:#fff;box-shadow:0 18px 38px rgba(15,23,42,.05)}.offer-detail__price{font-size:2rem;font-weight:800;line-height:1.1}.offer-detail__specs{display:grid;gap:.75rem;margin-top:1rem}.spec-row{display:flex;justify-content:space-between;gap:1rem;padding-bottom:.75rem;border-bottom:1px solid #edf1f6}.spec-row span{color:#64748b}.offer-seller{margin-top:1.25rem;padding-top:1rem;border-top:1px solid #edf1f6}.offer-seller__title{font-weight:800;margin-bottom:.5rem}.market-description{margin-top:1.5rem;padding:1.25rem;border:1px solid rgba(20,37,63,.08);border-radius:1.5rem;background:#fff}.cabinet-list{display:grid;gap:1rem}.cabinet-card{display:flex;justify-content:space-between;gap:1rem;align-items:center;padding:1.1rem 1.2rem;border:1px solid rgba(20,37,63,.08);border-radius:1.25rem;background:#fff;box-shadow:0 18px 38px rgba(15,23,42,.05)}.cabinet-card__title{font-size:1.2rem;font-weight:800}.cabinet-card__meta{display:flex;flex-wrap:wrap;gap:.85rem;color:#64748b;margin-top:.45rem}.cabinet-card__actions{display:flex;gap:.75rem;flex-wrap:wrap;justify-content:flex-end}.preview-thumb{margin-top:.75rem}.preview-thumb img{display:block;max-width:220px;border-radius:1rem}.gallery-admin{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.75rem}.gallery-admin__item img{display:block;width:100%;height:140px;object-fit:cover;border-radius:.9rem;margin-bottom:.4rem}.check-line{display:flex;gap:.65rem;align-items:center}.menu__item--account{margin-left:auto}
@media (max-width:980px){.offer-detail{grid-template-columns:1fr}}
@media (max-width:760px){.offer-hero,.cabinet-card,.market-toolbar{flex-direction:column;align-items:flex-start}.market-filter__grid,.form-grid--2,.gallery-admin,.offer-detail__thumbs{grid-template-columns:1fr}.menu__item--account{margin-left:0}.market-filter-drawer__panel{width:100%}}

/* --------------------------------------------------------------------------
   Public UI refresh — patch 03
   -------------------------------------------------------------------------- */

:focus-visible {
  outline: 3px solid rgba(11,114,185,.28);
  outline-offset: 3px;
}

.container--wide { max-width: 1400px; }
.content-section { padding: 72px 0; }
.content-section--compact { padding-top: 48px; }
.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.section__title--left { text-align: left; }

.page-hero {
  padding: 38px 0 34px;
  background:
    radial-gradient(circle at 4% 0%, rgba(11,114,185,.14), transparent 34%),
    radial-gradient(circle at 95% 10%, rgba(15,163,138,.10), transparent 28%),
    linear-gradient(180deg, rgba(235,244,252,.92), rgba(246,250,254,.94));
  border-bottom: 1px solid rgba(18,44,76,.08);
}
.page-hero__subtitle {
  max-width: 780px;
  margin-top: .7rem;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.5;
}

.btn--ghost {
  color: var(--brand-dark);
  background: rgba(255,255,255,.90);
  border-color: rgba(11,114,185,.18);
  box-shadow: none;
}
.btn--ghost:hover {
  color: var(--brand-dark);
  background: rgba(11,114,185,.08);
  border-color: rgba(11,114,185,.28);
  box-shadow: none;
}
.btn--danger {
  color: #b42318;
  background: #fff;
  border-color: rgba(180,35,24,.22);
  box-shadow: none;
}
.btn--danger:hover {
  color: #fff;
  background: #b42318;
  border-color: #b42318;
  box-shadow: 0 10px 24px rgba(180,35,24,.16);
}
.btn--compact { min-height: 42px; padding: .72rem 1rem; font-size: .92rem; }
.inline-form { display: inline-flex; margin: 0; }

.page-header .container { position: relative; }
.page-header__row { min-height: 58px; }
.site-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 44px;
  padding: 0 .9rem;
  color: var(--text);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(18,44,76,.12);
  border-radius: 999px;
  font: inherit;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
}
.site-nav-toggle__icon { display: grid; width: 20px; gap: 4px; }
.site-nav-toggle__icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform .18s ease, opacity .18s ease;
}
.main-menu .menu__link--account {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #138fcf);
  box-shadow: 0 9px 22px rgba(11,114,185,.16);
}
.main-menu .menu__link--account:hover,
.main-menu .menu__item--active .menu__link--account {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 11px 26px rgba(11,114,185,.20);
}
.main-menu .menu__item--account { margin-left: .35rem; }

.page-footer__brand {
  margin-bottom: .18rem;
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: .08em;
}
.page-footer__copyright { font-size: .88rem; color: rgba(255,255,255,.68); }
.page-footer__actions { display: flex; flex-wrap: wrap; gap: .7rem 1.2rem; font-size: .9rem; }

input.input,
select.input,
textarea.input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: .82rem .95rem;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(18,44,76,.14);
  border-radius: 14px;
  font: inherit;
  font-size: .96rem;
  line-height: 1.25;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
textarea.input { min-height: 150px; resize: vertical; }
input.input:focus,
select.input:focus,
textarea.input:focus {
  border-color: rgba(11,114,185,.48);
  box-shadow: 0 0 0 4px rgba(11,114,185,.10);
}
input.input--file { padding: .68rem; background: rgba(248,251,255,.92); }
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-top: 1.25rem;
}
.form-actions--sticky {
  position: sticky;
  bottom: 12px;
  z-index: 4;
  padding: .85rem;
  margin: 1.5rem -.85rem -.85rem;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(18,44,76,.08);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(16,42,67,.10);
}
.form-hint { margin-top: .35rem; color: var(--text-muted); font-size: .82rem; line-height: 1.35; }
.publish-switch {
  display: flex !important;
  align-items: flex-start;
  gap: .8rem;
  padding: 1rem;
  background: rgba(11,114,185,.05);
  border: 1px solid rgba(11,114,185,.10);
  border-radius: 16px;
  cursor: pointer;
}
.publish-switch input { margin-top: .22rem; transform: scale(1.12); }
.publish-switch span { display: grid; gap: .18rem; }
.publish-switch small { color: var(--text-muted); font-weight: 400; }

/* Homepage */
.homepage-banner { padding: 88px 0 74px; }
.homepage-banner__eyebrow {
  display: inline-flex;
  margin-bottom: .9rem;
  padding: .38rem .72rem;
  color: var(--brand-dark);
  background: rgba(11,114,185,.09);
  border: 1px solid rgba(11,114,185,.10);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.homepage-banner__subtitle { max-width: 650px; font-size: clamp(1.08rem, 1.8vw, 1.3rem); line-height: 1.5; }
.homepage-banner__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
.homepage-invitation__row { align-items: center; }
.homepage-invitation__actions { margin-top: 2rem; }
.homepage-invitation__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}
.homepage-xxx .dotted-border { padding: 48px 38px; }

/* About */
#membership { scroll-margin-top: 110px; }
.about-intro { max-width: 980px; margin: 0 auto; text-align: center; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.72fr);
  gap: 2rem;
  align-items: start;
}
.leader-card {
  position: sticky;
  top: 110px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18,44,76,.08);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.leader-card__photo { background: linear-gradient(135deg, #eaf3fb, #eef8f6); }
.leader-card__photo img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.leader-card__placeholder { display: grid; place-items: center; aspect-ratio: 4 / 5; color: rgba(11,114,185,.40); font-size: 4rem; }
.leader-card__body { padding: 1.35rem 1.4rem 1.55rem; }
.leader-card__eyebrow,
.content-card__label,
.membership-callout__eyebrow {
  color: var(--brand);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.leader-card__name { margin-top: .48rem; font-size: 1.35rem; font-weight: 850; line-height: 1.12; }
.leader-card__title { margin-top: .5rem; color: var(--text-soft); font-size: .95rem; line-height: 1.4; }
.about-copy { display: grid; gap: 1rem; }
.content-card {
  padding: 1.55rem 1.7rem;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(18,44,76,.07);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}
.content-card__label { margin-bottom: .75rem; }
.content-card .text { color: var(--text-soft); }
.membership-callout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem 2.5rem;
  padding: 2rem 2.2rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(15,163,138,.14), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(238,246,253,.96));
  border: 1px solid rgba(11,114,185,.10);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  scroll-margin-top: 110px;
}
.membership-callout__body { max-width: 680px; }
.membership-callout__title { margin-top: .4rem; font-size: clamp(1.5rem, 2.6vw, 2.15rem); font-weight: 850; line-height: 1.12; }
.membership-callout__text { margin-top: .65rem; color: var(--text-soft); }
.membership-callout__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .75rem; }

/* News article */
.article-shell { max-width: 960px; margin: 0 auto; }
.article-meta { display: flex; align-items: center; gap: .45rem; margin-bottom: 1rem; color: var(--text-muted); font-size: .92rem; font-weight: 700; }
.article-cover { display: block; width: 100%; max-height: 620px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow-sm); }
.article-content { margin-top: 1.5rem; padding: 1.5rem 1.65rem; background: rgba(255,255,255,.9); border: 1px solid rgba(18,44,76,.06); border-radius: 24px; box-shadow: var(--shadow-sm); }
.article-video { position: relative; padding-top: 56.25%; margin-top: 1.5rem; overflow: hidden; background: #000; border-radius: 24px; box-shadow: var(--shadow-sm); }
.article-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.article-back { margin-top: 1.5rem; }

/* Innovation center */
.innovation-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(18,44,76,.07);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.innovation-card__icon { display: grid; place-items: center; width: 92px; height: 92px; color: var(--brand); background: rgba(11,114,185,.08); border-radius: 24px; font-size: 2.2rem; }
.innovation-card__title { margin-bottom: .75rem; font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 850; }
.innovation-card__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.35rem; }
.innovation-card__note { margin-top: 1.25rem; padding-top: 1rem; color: var(--text-muted); border-top: 1px solid rgba(18,44,76,.08); font-size: .88rem; line-height: 1.5; }

/* Marketplace / cabinet cleanup */
.auth-card { max-width: 820px; margin: 0 auto; padding: 1.5rem; }
.auth-card--login { max-width: 620px; }
.auth-card__note { display: flex; gap: .65rem; margin-top: 1.25rem; padding: .85rem 1rem; color: var(--text-soft); background: rgba(11,114,185,.06); border-radius: 14px; font-size: .9rem; line-height: 1.45; }
.auth-card__note i { margin-top: .18rem; color: var(--brand); }
.status-pill { display: inline-flex; align-items: center; min-height: 28px; padding: .18rem .62rem; border-radius: 999px; font-size: .78rem; font-weight: 800; }
.status-pill--success { color: #087f5b; background: rgba(8,127,91,.10); }
.status-pill--muted { color: #667085; background: rgba(102,112,133,.10); }
.market-empty--center { display: grid; justify-items: center; gap: .65rem; max-width: 720px; margin: 0 auto; padding: 2.2rem; text-align: center; }
.market-empty__icon { margin-bottom: .2rem; color: rgba(11,114,185,.48); font-size: 2.4rem; }
.gallery-admin__item { padding: .55rem; background: rgba(248,251,255,.94); border: 1px solid rgba(18,44,76,.08); border-radius: 14px; }
.gallery-admin__item .check-line { padding: .15rem .2rem .1rem; font-size: .86rem; }
.offer-detail__info { position: sticky; top: 108px; }

@media (max-width: 1100px) {
  .main-menu .menu__items { gap: .45rem; }
  .main-menu .menu__link { padding-inline: .72rem; font-size: .94rem; }
  .main-menu .menu__item--account { margin-left: 0; }
}

@media (max-width: 960px) {
  body.body--menu-open { overflow: hidden; }
  .page-header { position: sticky; top: 0; padding: 10px 0; }
  .page-header__row { flex-direction: row; align-items: center; justify-content: space-between; gap: 1rem; }
  .site-nav-toggle { display: inline-flex; margin-left: auto; }
  .main-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    width: auto;
    max-height: calc(100vh - 105px);
    margin: 0;
    padding: .6rem;
    overflow: auto;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(18,44,76,.10);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
  }
  .page-header--menu-open .main-menu { display: block; }
  .page-header--menu-open .site-nav-toggle__icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .page-header--menu-open .site-nav-toggle__icon span:nth-child(2) { opacity: 0; }
  .page-header--menu-open .site-nav-toggle__icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-menu .menu__items { display: grid; gap: .2rem; }
  .main-menu .menu__link { display: flex; width: 100%; min-height: 46px; box-sizing: border-box; padding: 0 .9rem; font-size: 1rem; }
  .main-menu .menu__item--account { margin: .35rem 0 0; padding-top: .45rem; border-top: 1px solid rgba(18,44,76,.08); }
  .page-footer__row { flex-direction: row; align-items: center; }
  .about-grid { grid-template-columns: 1fr; }
  .leader-card { position: static; display: grid; grid-template-columns: minmax(200px, .55fr) minmax(0, 1fr); align-items: stretch; }
  .leader-card__photo img, .leader-card__placeholder { height: 100%; min-height: 320px; aspect-ratio: auto; }
  .leader-card__body { align-self: center; }
  .membership-callout { align-items: flex-start; flex-direction: column; }
  .membership-callout__actions { justify-content: flex-start; }
  .offer-detail__info { position: static; }
}

@media (max-width: 760px) {
  .content-section { padding: 52px 0; }
  .content-section--compact { padding-top: 36px; }
  .page-hero { padding: 28px 0 26px; }
  .page-footer__row { flex-direction: column; align-items: flex-start; }
  .homepage-banner { padding-top: 54px; }
  .homepage-banner__actions .btn { flex: 1 1 220px; }
  .homepage-invitation__row { gap: 2rem; }
  .about-intro { text-align: left; }
  .leader-card { display: block; }
  .leader-card__photo img, .leader-card__placeholder { min-height: 0; aspect-ratio: 4 / 5; }
  .membership-callout { padding: 1.5rem; }
  .membership-callout__actions { width: 100%; }
  .membership-callout__actions .btn { width: 100%; }
  .innovation-card { grid-template-columns: 1fr; padding: 1.5rem; }
  .innovation-card__icon { width: 70px; height: 70px; font-size: 1.8rem; }
  .innovation-card__actions .btn { width: 100%; }
  .content-card { padding: 1.3rem; }
  .cabinet-card__actions { width: 100%; justify-content: flex-start; }
  .cabinet-card__actions .btn, .cabinet-card__actions .inline-form { flex: 1 1 180px; }
  .cabinet-card__actions .inline-form .btn { width: 100%; }
  .form-actions--sticky { position: static; margin-inline: 0; padding: 0; background: none; backdrop-filter: none; border: 0; box-shadow: none; }
}

@media (max-width: 560px) {
  .main-menu { left: 0; right: 0; border-radius: 0 0 22px 22px; border-left: 0; border-right: 0; }
  .site-nav-toggle__label { display: none; }
  .site-nav-toggle { width: 46px; padding: 0; }
  .page-footer { padding-block: 24px; }
  .section-actions .btn { width: 100%; }
  .homepage-banner__actions { display: grid; }
  .homepage-banner__actions .btn { width: 100%; }
  .homepage-xxx .dotted-border { padding: 1.35rem; }
  .article-content { padding: 1.15rem; }
  .article-cover, .article-video { border-radius: 20px; }
}

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

/* PATCH 04 — public request forms */
.request-page-grid{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(280px,.65fr);gap:1.4rem;align-items:start}.request-form-card{padding:1.6rem;background:rgba(255,255,255,.94);border:1px solid rgba(18,44,76,.08);border-radius:28px;box-shadow:var(--shadow-md);scroll-margin-top:110px}.request-form-card--wide{max-width:980px;margin:1.4rem auto 0}.request-form-card__head{display:flex;align-items:center;gap:1rem;margin-bottom:1.3rem}.request-form-card__icon{display:grid;place-items:center;flex:0 0 auto;width:62px;height:62px;border-radius:18px;background:rgba(11,114,185,.08);color:var(--brand);font-size:1.45rem}.request-form-card__title{font-size:clamp(1.4rem,2.4vw,1.9rem);font-weight:850;line-height:1.15}.request-form-card__subtitle{margin-top:.3rem;color:var(--text-soft);font-size:.92rem;line-height:1.45}.public-form__section{padding-top:1.15rem;margin-top:1.15rem;border-top:1px solid rgba(18,44,76,.08)}.public-form__section:first-of-type{padding-top:0;margin-top:0;border-top:0}.public-form__section-title{margin-bottom:.8rem;color:#0f172a;font-size:1rem;font-weight:850}.public-form__grid{display:grid;gap:.9rem}.public-form__grid--2{grid-template-columns:repeat(2,minmax(0,1fr))}.public-field{display:block}.public-field--wide{grid-column:1/-1}.public-field>span{display:block;margin-bottom:.42rem;color:#334155;font-size:.9rem;font-weight:800}.public-field em{color:#b42318;font-style:normal}.public-field small{display:block;margin-top:.4rem;color:var(--text-muted);font-size:.82rem}.public-form .input,.public-form .textarea{box-sizing:border-box;width:100%;border:1px solid rgba(18,44,76,.14);border-radius:14px;background:#fff;color:var(--text);transition:border-color .18s ease,box-shadow .18s ease}.public-form .input{min-height:48px;padding:.7rem .85rem}.public-form .textarea{padding:.8rem .9rem;resize:vertical}.public-form .input:focus,.public-form .textarea:focus{outline:0;border-color:rgba(11,114,185,.55);box-shadow:0 0 0 4px rgba(11,114,185,.08)}.public-consent{display:flex;align-items:flex-start;gap:.7rem;margin-top:1.1rem;color:var(--text-soft);font-size:.86rem;line-height:1.45}.public-consent input{flex:0 0 auto;width:18px;height:18px;margin-top:.1rem}.public-form__actions{display:flex;justify-content:flex-start;margin-top:1.15rem}.form-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}.form-success,.form-error{display:flex;align-items:flex-start;gap:.7rem;margin:0 0 1.15rem;padding:.9rem 1rem;border-radius:14px;font-weight:700}.form-success{color:#047857;background:#ecfdf5;border:1px solid rgba(4,120,87,.12)}.form-error{color:#b42318;background:#fff1f2;border:1px solid rgba(180,35,24,.12)}.form-success i,.form-error i{margin-top:.15rem}.form-success strong,.form-success span{display:block}.form-success span{margin-top:.18rem;font-size:.88rem;font-weight:500}.request-side-card{position:sticky;top:108px;padding:1.5rem;background:linear-gradient(145deg,rgba(238,246,253,.96),rgba(255,255,255,.96));border:1px solid rgba(11,114,185,.10);border-radius:24px;box-shadow:var(--shadow-sm)}.request-side-card__eyebrow{color:var(--brand);font-size:.78rem;font-weight:850;letter-spacing:.06em;text-transform:uppercase}.request-steps{display:grid;gap:1.1rem;margin:1rem 0 0;padding:0;list-style:none;counter-reset:requestStep}.request-steps li{position:relative;padding-left:2.35rem;counter-increment:requestStep}.request-steps li:before{content:counter(requestStep);position:absolute;left:0;top:0;display:grid;place-items:center;width:1.65rem;height:1.65rem;border-radius:999px;background:var(--brand);color:#fff;font-size:.78rem;font-weight:850}.request-steps strong,.request-steps span{display:block}.request-steps span{margin-top:.22rem;color:var(--text-soft);font-size:.88rem;line-height:1.4}.request-side-card__contacts{margin-top:1.35rem;padding-top:1.2rem;border-top:1px solid rgba(18,44,76,.09)}.request-contact{display:flex;align-items:center;gap:.65rem;margin-top:.75rem;color:var(--text);font-weight:800;text-decoration:none}.request-contact i{width:1.15rem;color:var(--brand);text-align:center}.innovation-card--form{max-width:980px}.policy-card{max-width:920px;margin:0 auto;padding:1.6rem 1.8rem;background:rgba(255,255,255,.94);border:1px solid rgba(18,44,76,.07);border-radius:26px;box-shadow:var(--shadow-sm)}.policy-card h2{margin:1.4rem 0 .5rem;font-size:1.2rem}.policy-card h2:first-child{margin-top:0}.policy-contacts{display:flex;flex-wrap:wrap;gap:.65rem;margin:1rem 0}.policy-note{margin-top:1.3rem;padding:1rem;color:var(--text-muted);background:rgba(11,114,185,.05);border-radius:14px;font-size:.86rem}
@media(max-width:900px){.request-page-grid{grid-template-columns:1fr}.request-side-card{position:static}.public-form__grid--2{grid-template-columns:1fr}.public-field--wide{grid-column:auto}}
@media(max-width:560px){.request-form-card,.policy-card{padding:1.2rem;border-radius:20px}.request-form-card__head{align-items:flex-start}.request-form-card__icon{width:50px;height:50px;border-radius:15px}.public-form__actions .btn{width:100%}}

/* PATCH 06 — offer limits */
.btn--disabled{cursor:not-allowed;pointer-events:none;opacity:.58;filter:saturate(.6)}
.offer-limit-card{display:flex;align-items:flex-start;gap:1rem;margin:0 0 1.25rem;padding:1.15rem 1.25rem;background:linear-gradient(145deg,rgba(238,246,253,.96),rgba(255,255,255,.98));border:1px solid rgba(11,114,185,.12);border-radius:22px;box-shadow:var(--shadow-sm)}
.offer-limit-card--reached{background:linear-gradient(145deg,rgba(255,247,237,.98),rgba(255,255,255,.98));border-color:rgba(180,83,9,.18)}
.offer-limit-card__icon{display:grid;place-items:center;flex:0 0 auto;width:48px;height:48px;border-radius:15px;background:rgba(11,114,185,.09);color:var(--brand);font-size:1.1rem}
.offer-limit-card--reached .offer-limit-card__icon{background:rgba(180,83,9,.09);color:#b45309}
.offer-limit-card__body{flex:1;min-width:0}.offer-limit-card__top{display:flex;align-items:center;justify-content:space-between;gap:1rem}.offer-limit-card__top>strong{font-size:1.02rem}.offer-limit-card__value{white-space:nowrap;font-size:1.05rem;font-weight:850;color:var(--brand)}
.offer-limit-card--reached .offer-limit-card__value{color:#b45309}.offer-limit-progress{height:8px;margin:.8rem 0 .6rem;overflow:hidden;background:rgba(18,44,76,.08);border-radius:999px}.offer-limit-progress>span{display:block;height:100%;background:var(--brand);border-radius:inherit}.offer-limit-card--reached .offer-limit-progress>span{background:#b45309}.offer-limit-card__note{color:var(--text-muted);font-size:.88rem;line-height:1.45}
@media(max-width:560px){.offer-limit-card{padding:1rem}.offer-limit-card__icon{width:42px;height:42px}.offer-limit-card__top{align-items:flex-start;flex-direction:column;gap:.25rem}.offer-limit-card__value{font-size:1rem}}
