:root {
  --c-bg: #f8f9fa;
  --c-surface: #fff;
  --c-surface-2: #fafbfc;
  --c-ink: #1a1a1a;
  --c-ink2: #0a0a0a;
  --c-muted: #666;
  --c-border: #e0e0e0;
  --c-border-strong: #c8c8c8;
  --c-accent: #8b1538;
  --c-accent2: #6b0f2a;
  --c-ok: #1f7a4a;
  --c-warn: #9a6b1a;
  --c-danger: #a62a2a;
  --radius: 0px;
  --radius-sm: 0px;
  --radius-xs: 0px;
  --container: 1120px;
  --header-h: 70px;
  --shadow: 0 4px 24px rgba(26, 26, 26, 0.08);
  --shadow-sm: 0 2px 12px rgba(26, 26, 26, 0.06);
  --shadow-xs: 0 1px 6px rgba(26, 26, 26, 0.04);
  --focus: 0 0 0 3px rgba(139, 21, 56, 0.2);
  --ff: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --lh: 1.5;
  --btn-h: 48px;
  --btn-pad-x: 24px;
  --badge-bg: rgba(139, 21, 56, 0.06);
  --badge-br: rgba(139, 21, 56, 0.2);
  --badge-ink: var(--c-accent);
}
*,
:after,
:before {
  box-sizing: border-box;
}
body,
html {
  overflow-x: clip;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body {
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--ff);
  line-height: var(--lh);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  height: auto;
  max-width: 100%;
  pointer-events: none;
}
a {
  color: inherit;
}
.container {
  margin-inline: auto;
  padding-inline: 20px;
  width: min(var(--container), 100%);
}
@media (min-width: 768px) {
  .container {
    padding-inline: 28px;
  }
}
.above-fold {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}
.btn {
  --_bg: var(--c-surface);
  --_bd: var(--c-border-strong);
  --_ink: var(--c-ink);
  --_shadow: none;
  align-items: center;
  background: var(--_bg);
  border: 2px solid var(--_bd);
  border-radius: 0;
  color: var(--_ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  gap: 10px;
  height: var(--btn-h);
  justify-content: center;
  letter-spacing: 0.02em;
  padding: 0 var(--btn-pad-x);
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    opacity 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.btn:hover {
  background: var(--c-bg);
  color: var(--c-accent2);
  transition: color 0.3s;
}
.btn:active {
  opacity: 0.8;
}
.btn:focus-visible {
  box-shadow: var(--focus);
  outline: none;
}
.btn[aria-disabled="true"],
.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.4;
}
.btn--primary {
  --_bg: var(--c-accent);
  --_bd: var(--c-accent);
  --_ink: #fff;
}
.btn--primary:hover {
  --_bg: var(--c-accent2);
  --_bd: var(--c-accent2);
  color: var(--c-accent2);
}
.btn--secondary {
  --_bg: transparent;
  --_bd: var(--c-ink);
  --_ink: var(--c-ink);
}
.btn--secondary:hover {
  --_bg: var(--c-ink);
  color: var(--c-accent2);
}
.btn--ghost {
  --_bg: hsla(0, 0%, 100%, 0);
  --_bd: hsla(0, 0%, 100%, 0.6);
  --_ink: #fff;
}
.btn--ghost:hover {
  --_bg: hsla(0, 0%, 100%, 0.12);
  --_bd: #fff;
  color: var(--c-accent2);
}
.btn--block {
  width: 100%;
}
.header {
  background: #fff;
  border-bottom: 3px solid var(--c-accent);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 100;
}
.header__inner {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding-block: 10px;
}
@media (min-width: 768px) {
  .header__inner {
    padding-block: 12px;
  }
}
@media (min-width: 980px) {
  .header__inner {
    padding-block: 16px;
  }
}
.logo {
  align-items: center;
  color: var(--c-ink2);
  display: flex;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.logo:hover {
  opacity: 0.8;
}
.logo-img {
  display: block;
  height: auto;
  width: 136px;
}
@media (min-width: 768px) {
  .logo-img {
    width: 160px;
  }
}
.nav {
  align-items: center;
  display: none;
  gap: 4px;
}
@media (min-width: 980px) {
  .nav {
    display: flex;
  }
}
.nav__link {
  color: var(--c-ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 10px 18px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.nav__link.is-active,
.nav__link:hover {
  color: var(--c-accent);
}
.nav__link.is-active {
  font-weight: 700;
}
.nav__link.is-active:after {
  background: var(--c-accent);
  bottom: -3px;
  content: "";
  height: 3px;
  left: 18px;
  position: absolute;
  right: 18px;
}
.header__actions {
  gap: 12px;
}
.burger,
.header__actions {
  align-items: center;
  display: flex;
}
.burger {
  background: transparent;
  border: 2px solid var(--c-accent);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  height: 42px;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease;
  width: 42px;
}
.burger:hover {
  background: rgba(139, 21, 56, 0.05);
}
.burger:active {
  background: rgba(139, 21, 56, 0.1);
}
.burger span {
  background: var(--c-accent);
  display: block;
  height: 2.4px;
  transition: all 0.3s ease;
  width: 20px;
}
@media (min-width: 980px) {
  .burger {
    display: none;
  }
}
.mnav {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  z-index: 200;
}
.mnav.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.mnav__overlay {
  backdrop-filter: blur(4px);
  background: rgba(11, 18, 32, 0.6);
  cursor: pointer;
  inset: 0;
  position: absolute;
}
.mnav__panel {
  background: var(--c-surface);
  border-bottom: 3px solid var(--c-accent);
  border-left: 3px solid var(--c-accent);
  border-right: 3px solid var(--c-accent);
  box-shadow: var(--shadow);
  left: 0;
  margin: 0 auto;
  max-width: 420px;
  opacity: 0;
  padding: 24px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-12px);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
}
.mnav.is-open .mnav__panel {
  opacity: 1;
  transform: translateY(0);
}
.mnav__top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.mnav__title {
  color: var(--c-ink2);
  font-size: 18px;
  font-weight: 700;
}
.mnav__close {
  background: transparent;
  border: 2px solid var(--c-accent);
  color: var(--c-accent);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px 20px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.mnav__close:hover {
  background: var(--c-accent);
  color: #fff;
}
.mnav__links {
  border-top: 2px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}
.mnav__links a {
  border-bottom: 1px solid var(--c-border);
  color: var(--c-ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 16px 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.mnav__links a:hover {
  color: var(--c-accent);
  padding-left: 8px;
}
.mnav__links a.is-active {
  border-left: 3px solid var(--c-accent);
  color: var(--c-accent);
  font-weight: 700;
  padding-left: 12px;
}
.mnav__cta {
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .burger,
  .burger span,
  .mnav,
  .mnav__panel,
  .nav__link {
    transition: none;
  }
}
.badge,
.pill {
  align-items: center;
  background: var(--badge-bg);
  border: 1px solid var(--badge-br);
  color: var(--badge-ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  gap: 8px;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 6px 14px;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge:before,
.pill:before {
  background: currentColor;
  content: "";
  height: 6px;
  opacity: 0.6;
  width: 6px;
}
.pill--muted {
  background: rgba(11, 18, 32, 0.04);
  border-color: rgba(207, 214, 226, 0.95);
  color: var(--c-ink);
}
.pill--ok {
  background: rgba(31, 122, 74, 0.08);
  border-color: rgba(31, 122, 74, 0.28);
  color: var(--c-ok);
}
.pill--warn {
  background: rgba(154, 107, 26, 0.1);
  border-color: rgba(154, 107, 26, 0.28);
  color: var(--c-warn);
}
.pill--danger {
  background: rgba(166, 42, 42, 0.1);
  border-color: rgba(166, 42, 42, 0.28);
  color: var(--c-danger);
}
.hero-sect {
  align-items: center;
  background: #0a0a0a;
  display: flex;
  min-height: calc(100dvh - var(--header-h));
  overflow: hidden;
  padding: 0;
  position: relative;
}
.hero-sect__bg {
  inset: 0;
  position: absolute;
  z-index: 0;
}
.hero-sect__bg img {
  filter: saturate(0.5) contrast(1.15) grayscale(0.4);
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 65% center;
  object-position: 65% center;
  opacity: 0.45;
  width: 100%;
}
.hero-sect__shade {
  background: linear-gradient(
    125deg,
    hsla(0, 0%, 4%, 0),
    rgba(139, 21, 56, 0.45) 50%,
    hsla(0, 0%, 4%, 0)
  );
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.hero-sect__inner {
  padding-block: 48px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero-sect__inner {
    padding-block: 72px;
  }
}
@media (min-width: 992px) {
  .hero-sect__inner {
    padding-block: 96px;
  }
}
.hero-sect__grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 992px) {
  .hero-sect__grid {
    gap: 40px;
    grid-template-columns: 1fr;
  }
}
.hero-sect__copy {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .hero-sect__copy {
    gap: 24px;
  }
}
.hero-sect__copy .lx-badge {
  align-self: flex-start;
  background: rgba(139, 21, 56, 0.15);
  border: 2px solid rgba(139, 21, 56, 0.6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.hero-sect__copy .lx-badge b {
  font-weight: 900;
}
.hero-sect__title {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
@media (min-width: 768px) {
  .hero-sect__title {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  .hero-sect__title {
    font-size: 56px;
    max-width: 920px;
  }
}
.hero-sect__lead {
  color: hsla(0, 0%, 100%, 0.88);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 640px;
}
@media (min-width: 768px) {
  .hero-sect__lead {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .hero-sect__lead {
    font-size: 19px;
  }
}
.hero-sect__cta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (min-width: 768px) {
  .hero-sect__cta {
    gap: 16px;
  }
}
.hero-sect__cta .btn {
  --_bg: transparent;
  --_bd: hsla(0, 0%, 100%, 0.8);
  --_ink: #fff;
  font-weight: 700;
}
.hero-sect__cta .btn:hover {
  --_bg: hsla(0, 0%, 100%, 0.1);
  --_bd: #fff;
}
.hero-sect__cta .btn--primary {
  --_bg: var(--c-accent);
  --_bd: var(--c-accent);
  --_ink: #fff;
}
.hero-sect__cta .btn--primary:hover {
  --_bg: var(--c-accent2);
  --_bd: var(--c-accent2);
}
.hero-sect__note {
  color: hsla(0, 0%, 100%, 0.62);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  max-width: 560px;
}
@media (min-width: 768px) {
  .hero-sect__note {
    font-size: 14px;
  }
}
.reveal {
  /* opacity: 0; */
  transform: translate3d(0, 16px, 0);
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--d, 0s);
}
.reveal.is-inview {
  opacity: 1;
  transform: translateZ(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.mission-sector {
  background: var(--c-surface);
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}
@media (min-width: 768px) {
  .mission-sector {
    padding: 100px 0;
  }
}
@media (min-width: 992px) {
  .mission-sector {
    padding: 120px 0;
  }
}
.mission-sector:before {
  top: 0;
}
.mission-sector:after,
.mission-sector:before {
  background: var(--c-accent);
  content: "";
  display: none;
  height: 3px;
  left: 50%;
  opacity: 0.2;
  position: absolute;
  transform: translateX(-50%);
  width: 60px;
}
.mission-sector:after {
  bottom: 0;
}
@media (min-width: 992px) {
  .mission-sector:after,
  .mission-sector:before {
    display: block;
  }
}
.mission-sector__inner {
  position: relative;
}
.mission-sector__grid {
  align-items: center;
  display: grid;
  gap: 48px;
}
@media (min-width: 992px) {
  .mission-sector__grid {
    gap: 72px;
    grid-template-columns: 1.1fr 0.9fr;
  }
}
@media (min-width: 1200px) {
  .mission-sector__grid {
    gap: 96px;
  }
}
.mission-sector__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .mission-sector__content {
    gap: 28px;
  }
}
.lx-kicker {
  align-items: center;
  color: var(--c-accent);
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}
.lx-kdot {
  background: var(--c-accent);
  display: block;
  height: 6px;
  width: 6px;
}
.mission-sector__title {
  color: var(--c-ink2);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 768px) {
  .mission-sector__title {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  .mission-sector__title {
    font-size: 42px;
  }
}
.mission-sector__lead {
  color: var(--c-ink);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}
@media (min-width: 768px) {
  .mission-sector__lead {
    font-size: 17px;
  }
}
@media (min-width: 992px) {
  .mission-sector__lead {
    font-size: 18px;
  }
}
.mission-sector__bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}
@media (min-width: 768px) {
  .mission-sector__bullets {
    gap: 20px;
  }
}
.mission-sector__bullet {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  padding-left: 0;
}
.lx-stepico {
  background: var(--c-accent);
  border: 2px solid var(--c-accent);
  display: block;
  height: 6px;
  margin-top: 8px;
  min-width: 6px;
  width: 6px;
}
.mission-sector__bullet span:last-child {
  color: var(--c-ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .mission-sector__bullet span:last-child {
    font-size: 16px;
  }
}
.mission-sector__actions {
  margin-top: 8px;
}
.mission-sector__right {
  position: relative;
}
.lx-media,
.lx-media__img {
  display: block;
  position: relative;
}
.lx-media__img {
  filter: grayscale(0.15) contrast(1.05);
  height: auto;
  width: 100%;
  z-index: 1;
}
.lx-media__overlay {
  background: linear-gradient(
    135deg,
    hsla(0, 0%, 4%, 0.15),
    rgba(139, 21, 56, 0.08)
  );
  z-index: 2;
}
.lx-media__frame,
.lx-media__overlay {
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.lx-media__frame {
  border: 3px solid var(--c-accent);
  z-index: 3;
}
.lx-media__decor {
  background: var(--c-bg);
  border: 2px solid var(--c-border);
  bottom: -12px;
  height: 80px;
  left: -12px;
  position: absolute;
  width: 80px;
  z-index: 0;
}
@media (min-width: 768px) {
  .lx-media__decor {
    bottom: -16px;
    height: 100px;
    left: -16px;
    width: 100px;
  }
}
.lx-float {
  bottom: -24px;
  position: absolute;
  right: 24px;
  z-index: 10;
}
@media (min-width: 768px) {
  .lx-float {
    bottom: -32px;
    right: 32px;
  }
}
.lx-stamp {
  align-items: center;
  background: var(--c-surface);
  border: 3px solid var(--c-accent);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 120px;
  justify-content: center;
  padding: 16px;
  text-align: center;
  width: 120px;
}
@media (min-width: 768px) {
  .lx-stamp {
    height: 140px;
    width: 140px;
  }
}
.lx-stamp__val {
  color: var(--c-accent);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
@media (min-width: 768px) {
  .lx-stamp__val {
    font-size: 42px;
  }
}
.lx-stamp__txt {
  color: var(--c-ink2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-top: 8px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .lx-stamp__txt {
    font-size: 12px;
  }
}
.srv-sextor {
  background: linear-gradient(
    180deg,
    var(--c-bg) 0,
    #fafafa 50%,
    var(--c-bg) 100%
  );
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}
@media (min-width: 768px) {
  .srv-sextor {
    padding: 100px 0;
  }
}
@media (min-width: 992px) {
  .srv-sextor {
    padding: 120px 0;
  }
}
.srv-sextor:before {
  background: radial-gradient(
    circle,
    rgba(139, 21, 56, 0.03) 0,
    transparent 70%
  );
  height: 600px;
  right: -200px;
  top: 10%;
  width: 600px;
}
.srv-sextor:after,
.srv-sextor:before {
  content: "";
  pointer-events: none;
  position: absolute;
}
.srv-sextor:after {
  background: radial-gradient(
    circle,
    rgba(139, 21, 56, 0.025) 0,
    transparent 70%
  );
  bottom: 15%;
  height: 700px;
  left: -250px;
  width: 700px;
}
.srv-sextor__inner {
  position: relative;
  z-index: 1;
}
.srv-sextor .lx-kicker {
  justify-content: center;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .srv-sextor .lx-kicker {
    margin-bottom: 56px;
  }
}
@media (min-width: 992px) {
  .srv-sextor .lx-kicker {
    margin-bottom: 64px;
  }
}
.srv-sextor__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .srv-sextor__grid {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .srv-sextor__grid {
    gap: 48px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.srv-sextor__card {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 40px 32px 36px;
  position: relative;
  transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (min-width: 768px) {
  .srv-sextor__card {
    padding: 48px 40px 44px;
  }
}
.srv-sextor__card:before {
  background: radial-gradient(
    circle at top right,
    rgba(139, 21, 56, 0.14) 0,
    transparent 70%
  );
  height: 140px;
  opacity: 0.4;
  pointer-events: none;
  width: 140px;
}
.srv-sextor__card:after,
.srv-sextor__card:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.38s ease;
}
.srv-sextor__card:after {
  background: linear-gradient(
    90deg,
    transparent 0,
    var(--c-accent) 50%,
    transparent 100%
  );
  height: 3px;
  left: 0;
  opacity: 0;
}
.srv-sextor__card:hover {
  border-color: var(--c-accent);
  box-shadow: 0 12px 32px rgba(139, 21, 56, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px) scale(1.02);
}
.srv-sextor__card:hover:after,
.srv-sextor__card:hover:before {
  opacity: 1;
}
.srv-sextor__card:hover .srv-sextor__num {
  opacity: 0.3;
  transform: scale(1.1);
}
.srv-sextor__card:hover .srv-sextor__title,
.srv-sextor__num {
  color: var(--c-accent);
}
.srv-sextor__num {
  align-items: center;
  display: flex;
  font-size: 64px;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.12;
  position: relative;
  transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (min-width: 768px) {
  .srv-sextor__num {
    font-size: 72px;
    margin-bottom: 28px;
  }
}
.srv-sextor__num:after {
  background: var(--c-accent);
  clip-path: polygon(
    50% 0,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  content: "";
  display: block;
  height: 32px;
  opacity: 0.5;
  width: 32px;
}
.srv-sextor__title {
  color: var(--c-ink2);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0 0 18px;
  position: relative;
  transition: color 0.28s ease;
}
@media (min-width: 768px) {
  .srv-sextor__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .srv-sextor__title {
    font-size: 26px;
    margin-bottom: 22px;
  }
}
.srv-sextor__title:after {
  background: var(--c-accent);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0.2;
  position: absolute;
  width: 40px;
}
.srv-sextor__text {
  color: var(--c-ink);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  padding-top: 12px;
  position: relative;
}
@media (min-width: 768px) {
  .srv-sextor__text {
    font-size: 16px;
    line-height: 1.65;
  }
}
.guard-sector {
  background: linear-gradient(
    135deg,
    #fafafa 0,
    var(--c-surface) 50%,
    #fafafa 100%
  );
  overflow: hidden;
  padding: 100px 0;
  position: relative;
}
@media (min-width: 768px) {
  .guard-sector {
    padding: 120px 0;
  }
}
@media (min-width: 992px) {
  .guard-sector {
    padding: 140px 0;
  }
}
.guard-sector__inner {
  position: relative;
  z-index: 2;
}
.guard-sector__bg {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}
.guard-sector__glow {
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  position: absolute;
}
.guard-sector__glow--a {
  background: radial-gradient(
    circle,
    rgba(139, 21, 56, 0.15) 0,
    rgba(139, 21, 56, 0.05) 50%,
    transparent 100%
  );
  height: 500px;
  left: -10%;
  top: -15%;
  width: 500px;
}
@media (min-width: 992px) {
  .guard-sector__glow--a {
    height: 700px;
    width: 700px;
  }
}
.guard-sector__glow--b {
  background: radial-gradient(
    circle,
    rgba(139, 21, 56, 0.1) 0,
    rgba(139, 21, 56, 0.03) 50%,
    transparent 100%
  );
  bottom: -20%;
  height: 600px;
  right: -15%;
  width: 600px;
}
@media (min-width: 992px) {
  .guard-sector__glow--b {
    height: 800px;
    width: 800px;
  }
}
.guard-sector__grid {
  align-items: start;
  display: grid;
  gap: 48px;
}
@media (min-width: 992px) {
  .guard-sector__grid {
    align-items: center;
    gap: 80px;
    grid-template-columns: 1.15fr 0.85fr;
  }
}
@media (min-width: 1200px) {
  .guard-sector__grid {
    gap: 100px;
  }
}
.guard-sector__left {
  position: relative;
}
.guard-sector__kicker {
  align-items: center;
  display: flex;
  gap: 0.6rem;
  margin-bottom: 24px;
}
.guard-sector__kicker span:last-child {
  font-size: 12px;
}
@media (min-width: 768px) {
  .guard-sector__kicker {
    margin-bottom: 28px;
  }
}
.guard-sector__title {
  color: var(--c-ink2);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .guard-sector__title {
    font-size: 42px;
    margin-bottom: 28px;
  }
}
@media (min-width: 992px) {
  .guard-sector__title {
    font-size: 48px;
    margin-bottom: 32px;
  }
}
.guard-sector__lead {
  color: var(--c-ink);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  margin: 0 0 28px;
}
@media (min-width: 768px) {
  .guard-sector__lead {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
@media (min-width: 992px) {
  .guard-sector__lead {
    font-size: 19px;
    line-height: 1.7;
  }
}
.lx-ttag {
  background: rgba(139, 21, 56, 0.06);
  border: 1px solid rgba(139, 21, 56, 0.15);
  border-radius: 6px;
  color: var(--c-accent);
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 40px;
  padding: 10px 18px;
}
@media (min-width: 768px) {
  .lx-ttag {
    font-size: 14px;
    margin-bottom: 48px;
    padding: 12px 20px;
  }
}
.guard-sector__strip {
  margin-top: 40px;
  position: relative;
}
.lx-strip {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 40px;
  overflow: hidden;
  padding: 48px 32px;
  position: relative;
}
.lx-strip:before {
  background-image: url(../index_files/strip-bg.webp);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  filter: grayscale(0.3);
  inset: 0;
  position: absolute;
  transform: rotateY(180deg);
  z-index: 0;
}
@media (min-width: 768px) {
  .lx-strip:before {
    transform: rotateY(0);
  }
}
.lx-strip:after {
  background: linear-gradient(
    135deg,
    hsla(0, 0%, 100%, 0.85),
    hsla(0, 0%, 100%, 0.75) 50%,
    hsla(0, 0%, 100%, 0.9)
  );
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
@media (min-width: 768px) {
  .lx-strip {
    align-items: center;
    gap: 48px;
    grid-template-columns: 0.35fr auto 1fr;
    padding: 56px 40px;
  }
}
@media (min-width: 992px) {
  .lx-strip {
    gap: 56px;
    padding: 64px 56px;
  }
}
@media (min-width: 1200px) {
  .lx-strip {
    gap: 64px;
    padding: 72px 64px;
  }
}
.lx-strip__col {
  position: relative;
  z-index: 2;
}
.lx-strip__col-visual {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
@media (min-width: 768px) {
  .lx-strip__col-visual {
    gap: 24px;
  }
}
.lx-strip__stamp {
  align-items: center;
  background: var(--c-bg);
  border: 3px solid var(--c-accent);
  box-shadow: 0 8px 20px rgba(139, 21, 56, 0.15);
  display: flex;
  flex-direction: column;
  height: 140px;
  justify-content: center;
  padding: 20px;
  position: relative;
  text-align: center;
  width: 140px;
}
@media (min-width: 992px) {
  .lx-strip__stamp {
    height: 160px;
    width: 160px;
  }
}
.lx-strip__stamp-num {
  color: var(--c-accent);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
@media (min-width: 992px) {
  .lx-strip__stamp-num {
    font-size: 56px;
  }
}
.lx-strip__stamp-txt {
  color: var(--c-ink2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-top: 10px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .lx-strip__stamp-txt {
    font-size: 13px;
  }
}
.lx-strip__decor {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.lx-strip__line {
  background: var(--c-accent);
  display: block;
  height: 2px;
  opacity: 0.2;
}
.lx-strip__line--a {
  margin: 0 auto;
  width: 80%;
}
.lx-strip__line--b {
  margin: 0 auto;
  width: 50%;
}
.lx-strip__divider {
  background: linear-gradient(
    180deg,
    transparent 0,
    var(--c-border) 20%,
    var(--c-border) 80%,
    transparent 100%
  );
  display: none;
  width: 2px;
  z-index: 2;
}
@media (min-width: 768px) {
  .lx-strip__divider {
    display: block;
  }
}
.lx-strip__col-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 992px) {
  .lx-strip__col-content {
    gap: 32px;
  }
}
.lx-strip__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .lx-strip__list {
    gap: 18px;
  }
}
@media (min-width: 992px) {
  .lx-strip__list {
    gap: 20px;
  }
}
.lx-strip__list li {
  color: var(--c-ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  padding-left: 32px;
  position: relative;
}
@media (min-width: 768px) {
  .lx-strip__list li {
    font-size: 16px;
    padding-left: 34px;
  }
}
@media (min-width: 992px) {
  .lx-strip__list li {
    font-size: 17px;
    line-height: 1.7;
  }
}
.lx-strip__list li:before {
  align-items: center;
  background: var(--c-accent);
  border-radius: 50%;
  color: var(--c-surface);
  content: "✓";
  display: flex;
  font-size: 13px;
  font-weight: 900;
  height: 22px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 1px;
  width: 22px;
}
@media (min-width: 768px) {
  .lx-strip__list li:before {
    font-size: 14px;
    height: 24px;
    width: 24px;
  }
}
.lx-strip__cta {
  margin-top: 8px;
}
.guard-sector__right {
  display: none;
  position: relative;
}
@media (min-width: 992px) {
  .guard-sector__right {
    display: block;
  }
}
.lx-panel {
  border: 2px solid var(--c-border);
  height: 500px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.lx-panel__img {
  filter: grayscale(0.2) contrast(1.05);
  height: 100%;
  inset: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.lx-panel__overlay {
  background: linear-gradient(
    135deg,
    hsla(0, 0%, 4%, 0.2),
    rgba(139, 21, 56, 0.15)
  );
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}
.lx-panel .lx-frame {
  height: 200px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  z-index: 5;
}
.lx-panel .lx-frame__bg {
  background: transparent;
  border-color: var(--c-accent);
  opacity: 0.15;
}
.lx-panel .lx-frame__rings {
  inset: 24px;
  opacity: 0.1;
}
.lx-panel .lx-frame__rings:before {
  inset: 24px;
}
.lx-frame {
  position: absolute;
  z-index: 10;
}
.lx-frame__bg {
  background: var(--c-surface);
  border: 3px solid var(--c-accent);
  inset: 0;
  position: absolute;
}
.lx-frame__rings {
  inset: 12px;
  opacity: 0.2;
  pointer-events: none;
}
.lx-frame__rings,
.lx-frame__rings:before {
  border: 1px solid var(--c-accent);
  position: absolute;
}
.lx-frame__rings:before {
  content: "";
  inset: 8px;
  opacity: 0.3;
}
.process-section {
  background: linear-gradient(
    180deg,
    var(--c-bg) 0,
    var(--c-surface) 50%,
    var(--c-bg) 100%
  );
  overflow: hidden;
  padding: 100px 0;
  position: relative;
}
@media (min-width: 768px) {
  .process-section {
    padding: 120px 0;
  }
}
@media (min-width: 992px) {
  .process-section {
    padding: 140px 0;
  }
}
.process-section__inner {
  position: relative;
  z-index: 2;
}
.process-section__head {
  margin-bottom: 64px;
  text-align: center;
}
@media (min-width: 768px) {
  .process-section__head {
    margin-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .process-section__head {
    margin-bottom: 96px;
  }
}
.process-section__kicker {
  align-items: center;
  color: var(--c-accent);
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .process-section__kicker {
    margin-bottom: 28px;
  }
}
.kdot {
  background: var(--c-accent);
  display: block;
  height: 6px;
  width: 6px;
}
.process-section__title {
  color: var(--c-ink2);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 768px) {
  .process-section__title {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .process-section__title {
    font-size: 48px;
  }
}
.title-dot {
  color: var(--c-accent);
}
.process-section__grid {
  display: grid;
  gap: 56px;
  position: relative;
}
@media (min-width: 992px) {
  .process-section__grid {
    align-items: start;
    gap: 80px;
    grid-template-columns: 1.1fr 0.9fr;
  }
}
@media (min-width: 1200px) {
  .process-section__grid {
    gap: 100px;
  }
}
.process-section__left {
  position: relative;
}
.process-section__rail {
  background: var(--c-border);
  bottom: 0;
  left: 11px;
  position: absolute;
  top: 0;
  width: 2px;
  z-index: 0;
}
@media (min-width: 768px) {
  .process-section__rail {
    left: 13px;
    width: 3px;
  }
}
.process-section__railFill {
  background: linear-gradient(
    180deg,
    var(--c-accent) 0,
    rgba(139, 21, 56, 0.5) 100%
  );
  height: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: height 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.lx-pstep {
  margin-bottom: 48px;
  padding-left: 72px;
  position: relative;
}
@media (min-width: 768px) {
  .lx-pstep {
    margin-bottom: 56px;
    padding-left: 88px;
  }
}
@media (min-width: 992px) {
  .lx-pstep {
    margin-bottom: 64px;
    padding-left: 96px;
  }
}
.lx-pstep:last-child {
  margin-bottom: 0;
}
.lx-pstep__badge {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 10;
}
.lx-pstep__num {
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--c-accent) 0,
    rgba(139, 21, 56, 0.85) 100%
  );
  border: 3px solid var(--c-surface);
  box-shadow: 0 0 0 2px var(--c-accent), 0 6px 20px rgba(139, 21, 56, 0.35),
    inset 0 1px 0 hsla(0, 0%, 100%, 0.2);
  color: var(--c-surface);
  display: flex;
  font-size: 18px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  width: 48px;
}
.lx-pstep__num:before {
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0.15), transparent 50%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
@media (min-width: 768px) {
  .lx-pstep__num {
    border-width: 4px;
    font-size: 20px;
    height: 56px;
    width: 56px;
  }
}
@media (min-width: 992px) {
  .lx-pstep__num {
    font-size: 22px;
    height: 64px;
    width: 64px;
  }
}
.lx-pstep__title {
  color: var(--c-ink2);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  .lx-pstep__title {
    font-size: 24px;
    margin-bottom: 14px;
  }
}
@media (min-width: 992px) {
  .lx-pstep__title {
    font-size: 26px;
    margin-bottom: 16px;
  }
}
.lx-pstep__text {
  color: var(--c-ink);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}
@media (min-width: 768px) {
  .lx-pstep__text {
    font-size: 16px;
    line-height: 1.65;
  }
}
.process-section__right {
  display: none;
  position: relative;
}
@media (min-width: 992px) {
  .process-section__right {
    display: block;
    position: sticky;
    top: 120px;
  }
}
.process-sectionMedia,
.process-sectionMedia__img {
  display: block;
  position: relative;
}
.process-sectionMedia__img {
  filter: grayscale(0.15) contrast(1.05);
  height: auto;
  width: 100%;
  z-index: 1;
}
.process-sectionMedia__overlay {
  background: linear-gradient(
    135deg,
    hsla(0, 0%, 4%, 0.15),
    rgba(139, 21, 56, 0.08)
  );
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}
.process-sectionMedia__frame {
  border: 3px solid var(--c-accent);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}
.process-sectionMedia__corner {
  background: var(--c-bg);
  border: 2px solid var(--c-border);
  bottom: -12px;
  height: 80px;
  position: absolute;
  right: -12px;
  width: 80px;
  z-index: 0;
}
@media (min-width: 768px) {
  .process-sectionMedia__corner {
    bottom: -16px;
    height: 100px;
    right: -16px;
    width: 100px;
  }
}
.process-sectionCard--bottom {
  bottom: -32px;
  left: 24px;
  position: absolute;
  right: 24px;
  z-index: 10;
}
@media (min-width: 1200px) {
  .process-sectionCard--bottom {
    bottom: -40px;
    left: 32px;
    right: 32px;
  }
}
.process-sectionFacts {
  background: var(--c-surface);
  border-left: 4px solid var(--c-accent);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 20px;
}
@media (min-width: 768px) {
  .process-sectionFacts {
    gap: 18px;
    padding: 28px 24px;
  }
}
@media (min-width: 1200px) {
  .process-sectionFacts {
    gap: 20px;
    padding: 32px 28px;
  }
}
.process-sectionFacts__item {
  color: var(--c-ink2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.4;
  padding-left: 16px;
  position: relative;
}
.process-sectionFacts__item:before {
  background: var(--c-accent);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
}
@media (min-width: 768px) {
  .process-sectionFacts__item {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .process-sectionFacts__item {
    font-size: 15px;
  }
}
.frame {
  position: absolute;
  z-index: 10;
}
.frame-left {
  bottom: -40px;
  height: 160px;
  right: 40px;
  width: 160px;
}
@media (min-width: 768px) {
  .frame-left {
    bottom: -48px;
    height: 180px;
    right: 48px;
    width: 180px;
  }
}
@media (min-width: 992px) {
  .frame-left {
    bottom: -56px;
    height: 200px;
    right: 56px;
    width: 200px;
  }
}
.frame__bg {
  background: var(--c-surface);
  border: 3px solid var(--c-accent);
  box-shadow: 0 12px 32px rgba(139, 21, 56, 0.25);
  inset: 0;
  position: absolute;
}
.frame__stamp {
  color: var(--c-accent);
  font-size: 20px;
  font-weight: 900;
  left: 50%;
  letter-spacing: 0.15em;
  opacity: 0.2;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  z-index: 1;
}
@media (min-width: 768px) {
  .frame__stamp {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .frame__stamp {
    font-size: 24px;
  }
}
.frame__rings {
  inset: 14px;
  opacity: 0.15;
  pointer-events: none;
}
.frame__rings,
.frame__rings:before {
  border: 1px solid var(--c-accent);
  position: absolute;
}
.frame__rings:before {
  content: "";
  inset: 10px;
  opacity: 0.25;
}
.frame-btn {
  bottom: 20px;
  font-size: 12px;
  left: 50%;
  padding: 10px 16px;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .frame-btn {
    bottom: 22px;
    font-size: 13px;
    padding: 11px 18px;
  }
}
@media (min-width: 992px) {
  .frame-btn {
    bottom: 24px;
    font-size: 14px;
    padding: 12px 20px;
  }
}
.intake-sector {
  background: var(--c-surface);
  overflow: hidden;
  padding: 100px 0;
  position: relative;
}
@media (min-width: 768px) {
  .intake-sector {
    padding: 120px 0;
  }
}
@media (min-width: 992px) {
  .intake-sector {
    padding: 140px 0;
  }
}
.intake-sector:before {
  background-image: url(../index_files/intake-bg.webp);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(0.4);
  opacity: 1;
  z-index: 0;
}
.intake-sector:after,
.intake-sector:before {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.intake-sector:after {
  background: linear-gradient(
    135deg,
    hsla(0, 0%, 100%, 0.95),
    hsla(0, 0%, 100%, 0.85) 50%,
    hsla(0, 0%, 100%, 0.95)
  );
  z-index: 1;
}
.intake-sector__container {
  position: relative;
  z-index: 2;
}
.intake-sector__wrap {
  margin: 0 auto;
  max-width: 900px;
}
.intake-sector__head {
  margin-bottom: 56px;
  text-align: center;
}
@media (min-width: 768px) {
  .intake-sector__head {
    margin-bottom: 64px;
  }
}
@media (min-width: 992px) {
  .intake-sector__head {
    margin-bottom: 72px;
  }
}
.intake-sector__title {
  color: var(--c-ink2);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .intake-sector__title {
    font-size: 40px;
    margin-bottom: 24px;
  }
}
@media (min-width: 992px) {
  .intake-sector__title {
    font-size: 46px;
  }
}
.intake-sector__lead {
  color: var(--c-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 680px;
}
@media (min-width: 768px) {
  .intake-sector__lead {
    font-size: 17px;
  }
}
@media (min-width: 992px) {
  .intake-sector__lead {
    font-size: 18px;
  }
}
.intake-sector__form,
.intake-sector__panel {
  position: relative;
}
.intake-sector__form {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 48px 32px;
}
@media (min-width: 768px) {
  .intake-sector__form {
    padding: 56px 48px;
  }
}
@media (min-width: 992px) {
  .intake-sector__form {
    padding: 64px 56px;
  }
}
.intake-sector__fieldset {
  border: none;
  margin: 0 0 40px;
  padding: 0;
}
@media (min-width: 768px) {
  .intake-sector__fieldset {
    margin-bottom: 48px;
  }
}
.intake-sector__legend {
  border-bottom: 2px solid var(--c-border);
  color: var(--c-ink2);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 32px;
  padding: 0 0 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .intake-sector__legend {
    font-size: 20px;
    margin-bottom: 36px;
    padding-bottom: 18px;
  }
}
@media (min-width: 992px) {
  .intake-sector__legend {
    font-size: 22px;
    margin-bottom: 40px;
    padding-bottom: 20px;
  }
}
.intake-sector__grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 768px) {
  .intake-sector__grid {
    gap: 32px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.lx-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lx-field__label {
  color: var(--c-ink2);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lx-field__label {
    font-size: 15px;
  }
}
.lx-field__input,
.lx-field__select {
  background: var(--c-bg);
  border: 2px solid var(--c-border);
  color: var(--c-ink2);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  outline: none;
  padding: 14px 16px;
  transition: all 0.2s ease;
  width: 100%;
}
@media (min-width: 768px) {
  .lx-field__input,
  .lx-field__select {
    font-size: 16px;
    padding: 16px 18px;
  }
}
.lx-field__input::-moz-placeholder {
  color: var(--c-ink);
  opacity: 0.5;
}
.lx-field__input::placeholder {
  color: var(--c-ink);
  opacity: 0.5;
}
.lx-field__input:focus,
.lx-field__select:focus {
  background: var(--c-surface);
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
}
.lx-field__input:hover:not(:focus),
.lx-field__select:hover:not(:focus) {
  border-color: rgba(139, 21, 56, 0.3);
}
.lx-field__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%23333' stroke-linecap='round' stroke-width='2' d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 12px;
  cursor: pointer;
  padding-right: 44px;
}
@media (min-width: 768px) {
  .lx-field__select {
    background-position: right 18px center;
  }
}
.lx-field__input:invalid:not(:-moz-placeholder) {
  border-color: #c53030;
}
.lx-field__input:invalid:not(:placeholder-shown),
.lx-field__select:invalid {
  border-color: #c53030;
}
.lx-field__error {
  color: #c53030;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}
.lx-field__error[hidden] {
  display: none;
}
.lx-field__hint {
  color: var(--c-ink);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  opacity: 0.7;
}
.intake-sector__footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}
@media (min-width: 768px) {
  .intake-sector__footer {
    gap: 28px;
  }
}
.lx-consent {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lx-consent__row {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  gap: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.lx-consent__check {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--c-bg);
  border: 2px solid var(--c-border);
  cursor: pointer;
  flex-shrink: 0;
  height: 20px;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s ease;
  width: 20px;
}
@media (min-width: 768px) {
  .lx-consent__check {
    height: 22px;
    width: 22px;
  }
}
.lx-consent__check:checked,
.lx-consent__check:hover {
  border-color: var(--c-accent);
}
.lx-consent__check:checked {
  background: var(--c-accent);
}
.lx-consent__check:checked:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' fill='none' viewBox='0 0 12 10'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 5 3.5 3.5 6.5-7'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 12px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
}
.lx-consent__txt {
  color: var(--c-ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .lx-consent__txt {
    font-size: 15px;
  }
}
.lx-consent__error {
  color: #c53030;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}
.lx-consent__error[hidden] {
  display: none;
}
.intake-sector__submit {
  margin-top: 8px;
}
.intake-sector__mini {
  color: var(--c-ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  opacity: 0.7;
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .intake-sector__mini {
    font-size: 14px;
  }
}
.intake-sector__hp {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}
.lx-field__input.is-invalid,
.lx-field__select.is-invalid {
  background-color: rgba(197, 48, 48, 0.03);
  border-color: #c53030;
}
.lx-field__input.is-invalid:focus,
.lx-field__select.is-invalid:focus {
  border-color: #c53030;
  box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.12);
}
.lx-consent__check.is-invalid {
  border-color: #c53030;
}
.lx-consent__error,
.lx-field__error {
  animation: errorFadeIn 0.2s ease;
}
@keyframes errorFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.intake-sector__submit.is-loading {
  opacity: 0.85;
  pointer-events: none;
  position: relative;
}
.btn__spinner {
  animation: btnSpin 0.7s linear infinite;
  border: 2px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  display: inline-block;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  width: 16px;
}
@keyframes btnSpin {
  to {
    transform: rotate(1turn);
  }
}
.insights-sect {
  background: var(--c-bg);
  overflow: hidden;
  padding: 100px 0;
  position: relative;
}
@media (min-width: 768px) {
  .insights-sect {
    padding: 120px 0;
  }
}
@media (min-width: 992px) {
  .insights-sect {
    padding: 140px 0;
  }
}
.insights-Sect__container {
  position: relative;
  z-index: 2;
}
.insights-Sect__head {
  margin-bottom: 56px;
  text-align: center;
}
@media (min-width: 768px) {
  .insights-Sect__head {
    margin-bottom: 64px;
  }
}
@media (min-width: 992px) {
  .insights-Sect__head {
    margin-bottom: 72px;
  }
}
.insights-Sect__title {
  color: var(--c-ink2);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .insights-Sect__title {
    font-size: 40px;
    margin-bottom: 24px;
  }
}
@media (min-width: 992px) {
  .insights-Sect__title {
    font-size: 46px;
  }
}
.insights-Sect__lead {
  color: var(--c-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 680px;
}
@media (min-width: 768px) {
  .insights-Sect__lead {
    font-size: 17px;
  }
}
@media (min-width: 992px) {
  .insights-Sect__lead {
    font-size: 18px;
  }
}
.insights-Sect__grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .insights-Sect__grid {
    gap: 36px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .insights-Sect__grid {
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.insights-Sect__card {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  position: relative;
  transition: all 0.3s ease;
}
.insights-Sect__card:hover {
  border-color: rgba(139, 21, 56, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.insights-Sect__link {
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}
.insights-Sect__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.insights-Sect__img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}
.insights-Sect__card:hover .insights-Sect__img {
  transform: scale(1.05);
}
.insights-Sect__overlay {
  background: linear-gradient(
    180deg,
    transparent,
    transparent 50%,
    rgba(0, 0, 0, 0.4)
  );
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.3s ease;
}
.insights-Sect__card:hover .insights-Sect__overlay {
  opacity: 1;
}
.insights-Sect__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 24px 24px;
}
@media (min-width: 768px) {
  .insights-Sect__body {
    padding: 32px 28px 28px;
  }
}
.insights-Sect__tag {
  align-self: flex-start;
  background: var(--c-accent);
  color: var(--c-surface);
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding: 6px 12px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .insights-Sect__tag {
    font-size: 12px;
    padding: 7px 14px;
  }
}
.insights-Sect__tag--legal {
  background: #1a5f7a;
}
.insights-Sect__tag--recovery {
  background: #2d6a4f;
}
.insights-Sect__cardTitle {
  color: var(--c-ink2);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0 0 14px;
  transition: color 0.2s ease;
}
@media (min-width: 768px) {
  .insights-Sect__cardTitle {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
@media (min-width: 992px) {
  .insights-Sect__cardTitle {
    font-size: 22px;
  }
}
.insights-Sect__card:hover .insights-Sect__cardTitle {
  color: var(--c-accent);
}
.insights-Sect__excerpt {
  color: var(--c-ink);
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .insights-Sect__excerpt {
    font-size: 15px;
    margin-bottom: 24px;
  }
}
.insights-Sect__cta {
  align-items: center;
  color: var(--c-accent);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.01em;
  transition: gap 0.2s ease;
}
@media (min-width: 768px) {
  .insights-Sect__cta {
    font-size: 15px;
  }
}
.insights-Sect__card:hover .insights-Sect__cta {
  gap: 12px;
}
.insights-Sect__arrow {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.insights-Sect__card:hover .insights-Sect__arrow {
  transform: translateX(2px);
}
.insights-Sect__footer {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .insights-Sect__footer {
    margin-top: 64px;
  }
}
@media (min-width: 992px) {
  .insights-Sect__footer {
    margin-top: 72px;
  }
}
.footer-sect {
  background: var(--c-ink2);
  color: hsla(0, 0%, 100%, 0.8);
  overflow: hidden;
  padding: 80px 0 0;
  position: relative;
}
@media (min-width: 768px) {
  .footer-sect {
    padding: 100px 0 0;
  }
}
@media (min-width: 992px) {
  .footer-sect {
    padding: 120px 0 0;
  }
}
.footer-sect__container {
  position: relative;
  z-index: 2;
}
.footer-sect__grid {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  display: grid;
  gap: 48px;
  padding-bottom: 56px;
}
@media (min-width: 768px) {
  .footer-sect__grid {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 64px;
  }
}
@media (min-width: 992px) {
  .footer-sect__grid {
    gap: 48px;
    grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
    padding-bottom: 72px;
  }
}
.footer-sect__col {
  display: flex;
  flex-direction: column;
}
.footer-sect__logo {
  display: inline-block;
  margin-bottom: 24px;
}
.footer-sect__logo img {
  height: 32px;
  width: auto;
}
@media (min-width: 768px) {
  .footer-sect__logo img {
    height: 36px;
  }
}
.footer-sect__desc {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 28px;
}
@media (min-width: 768px) {
  .footer-sect__desc {
    font-size: 15px;
  }
}
.footer-sect__title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .footer-sect__title {
    margin-bottom: 24px;
  }
}
.footer-sect__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.footer-sect__contact li {
  align-items: flex-start;
  display: flex;
  font-size: 14px;
  gap: 12px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .footer-sect__contact li {
    font-size: 15px;
  }
}
.footer-sect__icon {
  color: var(--c-accent);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.9;
}
.footer-sect__contact a {
  color: hsla(0, 0%, 100%, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-sect__contact a:hover {
  color: #fff;
}
.footer-sect__cta {
  margin-top: auto;
}
.footer-sect__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-sect__nav a {
  color: hsla(0, 0%, 100%, 0.7);
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}
@media (min-width: 768px) {
  .footer-sect__nav a {
    font-size: 15px;
  }
}
.footer-sect__nav a:hover {
  color: #fff;
}
.footer-sect__hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.footer-sect__hoursItem {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-sect__hoursItem strong {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.footer-sect__hoursItem span {
  color: hsla(0, 0%, 100%, 0.85);
  font-size: 14px;
}
.footer-sect__disclaimer {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  padding: 32px 0;
}
@media (min-width: 768px) {
  .footer-sect__disclaimer {
    padding: 40px 0;
  }
}
.footer-sect__disclaimer p {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
  max-width: 900px;
}
@media (min-width: 768px) {
  .footer-sect__disclaimer p {
    font-size: 13px;
  }
}
.footer-sect__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
}
@media (min-width: 768px) {
  .footer-sect__bottom {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 28px 0;
  }
}
.footer-sect__copy {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 13px;
  margin: 0;
}
.footer-sect__bottomNav {
  display: flex;
  gap: 24px;
}
.footer-sect__bottomNav a {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-sect__bottomNav a:hover {
  color: hsla(0, 0%, 100%, 0.8);
}
.testi-sector {
  background: var(--c-surface);
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}
@media (min-width: 992px) {
  .testi-sector {
    padding: 120px 0;
  }
}
.testi-sector:before {
  background: linear-gradient(135deg, rgba(139, 21, 56, 0.02), transparent 50%),
    linear-gradient(-135deg, rgba(139, 21, 56, 0.01), transparent 50%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.testi-sector__container {
  position: relative;
  z-index: 1;
}
.testi-sector__head {
  margin: 0 auto 48px;
  max-width: 680px;
  text-align: center;
}
@media (min-width: 992px) {
  .testi-sector__head {
    margin-bottom: 64px;
  }
}
.testi-sector__title {
  color: var(--c-ink2);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}
.testi-sector__lead {
  color: var(--c-muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 768px) {
  .testi-sector__lead {
    font-size: 18px;
  }
}
.testi-sector__slider {
  margin: 0 auto;
  max-width: 900px;
  position: relative;
}
.testi-sector__viewport {
  margin: 0 -20px;
  overflow: hidden;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .testi-sector__viewport {
    margin: 0;
    padding: 0;
  }
}
.testi-sector__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.testi-sector__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 12px;
}
@media (min-width: 768px) {
  .testi-sector__slide {
    padding: 0 16px;
  }
}
.testi-sector__card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .testi-sector__card {
    padding: 40px 36px;
  }
}
.testi-sector__card:before {
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent2));
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.testi-sector__cardTop {
  align-items: center;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
}
.testi-sector__type {
  background: rgba(139, 21, 56, 0.08);
  color: var(--c-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  text-transform: uppercase;
}
.testi-sector__amount {
  color: var(--c-ink2);
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
@media (min-width: 768px) {
  .testi-sector__amount {
    font-size: 22px;
  }
}
.testi-sector__quote {
  color: var(--c-ink);
  flex-grow: 1;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
  padding: 0;
  position: relative;
}
@media (min-width: 768px) {
  .testi-sector__quote {
    font-size: 17px;
  }
}
.testi-sector__quote:before {
  color: rgba(139, 21, 56, 0.1);
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 72px;
  left: -8px;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  top: -20px;
}
.testi-sector__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.testi-sector__flag {
  background: rgba(166, 42, 42, 0.08);
  border-left: 2px solid var(--c-danger);
  color: var(--c-danger);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 10px;
}
.testi-sector__meta {
  align-items: center;
  border-top: 1px solid var(--c-border);
  display: flex;
  gap: 14px;
  padding-top: 20px;
}
.testi-sector__avatar {
  border: 2px solid var(--c-border);
  flex-shrink: 0;
  height: 52px;
  overflow: hidden;
  width: 52px;
}
.testi-sector__avatar img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.testi-sector__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-sector__name {
  color: var(--c-ink2);
  font-size: 15px;
  font-weight: 600;
}
.testi-sector__location {
  color: var(--c-muted);
  font-size: 13px;
}
.testi-sector__nav {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .testi-sector__nav {
    gap: 24px;
    margin-top: 48px;
  }
}
.testi-sector__arrow {
  align-items: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  color: var(--c-ink);
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 48px;
  justify-content: center;
  transition: all 0.2s ease;
  width: 48px;
}
.testi-sector__arrow:hover:not(:disabled) {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
}
.testi-sector__arrow:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.testi-sector__arrow svg {
  height: 20px;
  width: 20px;
}
.testi-sector__dots {
  align-items: center;
  display: flex;
  gap: 10px;
}
.testi-sector__dots button {
  background: var(--c-border);
  border: none;
  cursor: pointer;
  height: 10px;
  padding: 0;
  transition: all 0.3s ease;
  width: 10px;
}
.testi-sector__dots button:hover {
  background: var(--c-border-strong);
}
.testi-sector__dots button.is-active {
  background: var(--c-accent);
  width: 28px;
}
.testi-sector__progress {
  background: var(--c-border);
  height: 3px;
  margin: 24px auto 0;
  max-width: 400px;
  overflow: hidden;
}
.testi-sector__progressBar {
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent2));
  height: 100%;
  transition: width 0.1s linear;
  width: 0;
}
.testi-sector__disclaimer {
  color: var(--c-muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 40px auto 0;
  max-width: 600px;
  text-align: center;
}
@media (min-width: 768px) {
  .testi-sector__disclaimer {
    margin-top: 48px;
  }
}
.testi-sector__slider.is-dragging .testi-sector__track {
  transition: none;
}
.testi-sector__slider.is-dragging {
  cursor: grabbing;
}
.testi-sector__slider:hover .testi-sector__progressBar {
  animation-play-state: paused;
}
.faqSect {
  background: var(--c-bg);
  padding: 80px 0;
  position: relative;
}
@media (min-width: 992px) {
  .faqSect {
    padding: 120px 0;
  }
}
.faqSect__container {
  margin: 0 auto;
  max-width: 900px;
}
.faqSect__head {
  margin-bottom: 48px;
  text-align: center;
}
@media (min-width: 992px) {
  .faqSect__head {
    margin-bottom: 64px;
  }
}
.faqSect__title {
  color: var(--c-ink2);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
.faqSect__accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faqSect__item {
  border-bottom: 1px solid var(--c-border);
}
.faqSect__item:first-child {
  border-top: 1px solid var(--c-border);
}
.faqSect__heading {
  margin: 0;
}
.faqSect__trigger {
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  transition: all 0.2s ease;
  width: 100%;
}
@media (min-width: 768px) {
  .faqSect__trigger {
    gap: 20px;
    padding: 24px 0;
  }
}
.faqSect__trigger:hover .faqSect__question {
  color: var(--c-accent);
}
.faqSect__trigger:focus-visible {
  box-shadow: var(--focus);
  outline: none;
}
.faqSect__num {
  align-items: center;
  background: rgba(139, 21, 56, 0.08);
  color: var(--c-accent);
  display: flex;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  transition: all 0.3s ease;
  width: 40px;
}
@media (min-width: 768px) {
  .faqSect__num {
    font-size: 14px;
    height: 48px;
    width: 48px;
  }
}
.faqSect__item.is-open .faqSect__num {
  background: var(--c-accent);
  color: #fff;
}
.faqSect__question {
  color: var(--c-ink2);
  flex-grow: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s ease;
}
@media (min-width: 768px) {
  .faqSect__question {
    font-size: 18px;
  }
}
.faqSect__icon {
  flex-shrink: 0;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
  width: 24px;
}
.faqSect__icon:after,
.faqSect__icon:before {
  background: var(--c-ink);
  content: "";
  position: absolute;
  transition: transform 0.3s ease, background 0.2s ease;
}
.faqSect__icon:before {
  height: 2px;
  width: 14px;
}
.faqSect__icon:after,
.faqSect__icon:before {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.faqSect__icon:after {
  height: 14px;
  width: 2px;
}
.faqSect__item.is-open .faqSect__icon:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faqSect__trigger:hover .faqSect__icon:after,
.faqSect__trigger:hover .faqSect__icon:before {
  background: var(--c-accent);
}
.faqSect__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faqSect__item.is-open .faqSect__panel {
  max-height: 600px;
}
.faqSect__panel[hidden] {
  display: block;
}
.faqSect__content {
  padding: 0 0 24px 56px;
}
@media (min-width: 768px) {
  .faqSect__content {
    padding: 0 0 28px 68px;
  }
}
.faqSect__content p {
  color: var(--c-ink);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .faqSect__content p {
    font-size: 16px;
  }
}
.faqSect__content p:last-child {
  margin-bottom: 0;
}
.faqSect__content ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0 0 0 20px;
}
.faqSect__content li {
  color: var(--c-ink);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .faqSect__content li {
    font-size: 16px;
  }
}
.faqSect__content li:before {
  background: var(--c-accent);
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 6px;
}
.faqSect__content li:last-child {
  margin-bottom: 0;
}
.faqSect__content strong {
  color: var(--c-ink2);
  font-weight: 600;
}
.lx-inner-hero {
  background: linear-gradient(180deg, #1a1a1a, #252525);
  overflow: hidden;
  padding: 120px 0 56px;
  position: relative;
}
.lx-inner-hero:before {
  background-image: linear-gradient(
      90deg,
      hsla(0, 0%, 100%, 0.03) 1px,
      transparent 0
    ),
    linear-gradient(180deg, hsla(0, 0%, 100%, 0.03) 1px, transparent 0);
  background-size: 40px 40px;
  inset: 0;
}
.lx-inner-hero:after,
.lx-inner-hero:before {
  content: "";
  pointer-events: none;
  position: absolute;
}
.lx-inner-hero:after {
  background: radial-gradient(
    ellipse,
    rgba(139, 21, 56, 0.15) 0,
    transparent 70%
  );
  height: 400px;
  right: -200px;
  top: -100px;
  width: 600px;
}
.lx-inner-hero__container {
  position: relative;
  z-index: 1;
}
.lx-inner-hero__crumbs {
  margin-bottom: 24px;
}
.lx-inner-hero__crumbsList {
  align-items: center;
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lx-inner-hero__crumbItem {
  align-items: center;
  color: hsla(0, 0%, 100%, 0.5);
  display: flex;
  font-size: 13px;
  font-weight: 500;
  gap: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lx-inner-hero__crumbLink {
  color: hsla(0, 0%, 100%, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.lx-inner-hero__crumbLink:hover {
  color: #fff;
}
.lx-inner-hero__crumbCurrent {
  color: var(--c-accent);
}
.lx-inner-hero__crumbItem[aria-hidden="true"] {
  color: hsla(0, 0%, 100%, 0.3);
}
.lx-inner-hero__main {
  max-width: 720px;
}
.lx-inner-hero__kicker {
  align-items: center;
  color: hsla(0, 0%, 100%, 0.6);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.lx-inner-hero__kickerDot {
  background: var(--c-accent);
  height: 8px;
  width: 8px;
}
.lx-inner-hero__title {
  color: #fff;
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 20px;
}
.lx-inner-hero__title .title-dot {
  color: var(--c-accent);
}
.lx-inner-hero__lead {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 560px;
}
.lx-inner-hero__meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.lx-inner-hero__metaDot {
  background: var(--c-accent);
  height: 6px;
  width: 6px;
}
.lx-inner-hero__metaText {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.lx-inner-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.lx-inner-hero__pill {
  align-items: center;
  background: hsla(0, 0%, 100%, 0.08);
  border: 1px solid hsla(0, 0%, 100%, 0.12);
  color: hsla(0, 0%, 100%, 0.8);
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 14px;
}
.lx-inner-hero__accent {
  background: var(--c-accent);
  bottom: 0;
  height: 4px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media (min-width: 768px) {
  .lx-inner-hero {
    padding: 140px 0 64px;
  }
  .lx-inner-hero__crumbs {
    margin-bottom: 32px;
  }
  .lx-inner-hero__crumbItem {
    font-size: 14px;
  }
  .lx-inner-hero__lead {
    font-size: 18px;
  }
  .lx-inner-hero__metaText {
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  .lx-inner-hero {
    padding: 160px 0 72px;
  }
  .lx-inner-hero__main {
    max-width: 800px;
  }
}
.lx-team {
  background: linear-gradient(180deg, #fafafa, #fff);
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}
.lx-team:before {
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.03) 1px,
      transparent 0
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03) 1px, transparent 0);
  background-size: 60px 60px;
  inset: 0;
}
.lx-team:after,
.lx-team:before {
  content: "";
  pointer-events: none;
  position: absolute;
}
.lx-team:after {
  background: radial-gradient(
    circle,
    rgba(139, 21, 56, 0.06) 0,
    transparent 70%
  );
  height: 400px;
  right: 10%;
  top: 0;
  width: 400px;
}
.lx-team__container {
  position: relative;
  z-index: 1;
}
.lx-team__header {
  margin: 0 auto 56px;
  max-width: 680px;
  text-align: center;
}
.lx-team__kicker {
  align-items: center;
  color: var(--c-primary);
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 10px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.lx-team__kickerDot {
  background: var(--c-primary);
  height: 8px;
  width: 8px;
}
.lx-team__title {
  color: var(--c-ink);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}
.lx-team__lead {
  color: rgba(17, 24, 39, 0.7);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}
.lx-team__grid {
  display: grid;
  gap: 24px;
}
.lx-team__card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.lx-team__card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.lx-team__card:before {
  background: var(--c-primary);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.lx-team__card:hover:before {
  transform: scaleX(1);
}
.lx-team__photo {
  aspect-ratio: 4/5;
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
}
.lx-team__img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}
.lx-team__card:hover .lx-team__img {
  transform: scale(1.03);
}
.lx-team__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 24px 32px;
}
.lx-team__name {
  color: var(--c-ink);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.lx-team__role {
  color: var(--c-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.lx-team__desc {
  color: rgba(17, 24, 39, 0.72);
  flex: 1;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.lx-team__footer {
  margin-top: 64px;
  text-align: center;
}
.lx-team__footerText {
  color: rgba(17, 24, 39, 0.7);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.lx-team__footerText strong {
  color: var(--c-ink);
  font-weight: 600;
}
@media (min-width: 576px) {
  .lx-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .lx-team {
    padding: 100px 0;
  }
  .lx-team__header {
    margin-bottom: 64px;
  }
  .lx-team__content {
    padding: 32px 28px 36px;
  }
}
@media (min-width: 992px) {
  .lx-team {
    padding: 120px 0;
  }
  .lx-team__grid {
    gap: 28px;
    grid-template-columns: repeat(4, 1fr);
  }
  .lx-team__name {
    font-size: 21px;
  }
}
.lx-cta {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}
.lx-cta:before {
  background-image: linear-gradient(
      90deg,
      hsla(0, 0%, 100%, 0.02) 1px,
      transparent 0
    ),
    linear-gradient(180deg, hsla(0, 0%, 100%, 0.02) 1px, transparent 0);
  background-size: 40px 40px;
  inset: 0;
}
.lx-cta:after,
.lx-cta:before {
  content: "";
  pointer-events: none;
  position: absolute;
}
.lx-cta:after {
  background: radial-gradient(
    ellipse,
    rgba(139, 21, 56, 0.25) 0,
    transparent 70%
  );
  bottom: -100px;
  height: 300px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
}
.lx-cta__container {
  margin: 0 auto;
  max-width: 700px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.lx-cta__kicker {
  align-items: center;
  color: hsla(0, 0%, 100%, 0.6);
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 10px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.lx-cta__kickerDot {
  background: var(--c-primary);
  height: 8px;
  width: 8px;
}
.lx-cta__title {
  color: #fff;
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 20px;
}
.lx-cta__text {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 32px;
}
.lx-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.lx-cta__actions .btn:not(.btn--primary) {
  --_bd: hsla(0, 0%, 100%, 0.3);
  --_ink: #fff;
  --_bg: transparent;
}
.lx-cta__actions .btn:not(.btn--primary):hover {
  --_bd: hsla(0, 0%, 100%, 0.5);
  --_bg: hsla(0, 0%, 100%, 0.1);
}
.lx-cta__accent {
  background: var(--c-primary);
  bottom: 0;
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
}
@media (min-width: 768px) {
  .lx-cta {
    padding: 100px 0;
  }
}
@media (min-width: 992px) {
  .lx-cta {
    padding: 120px 0;
  }
}
.lx-legal {
  background: var(--c-bg);
  padding: 48px 0 64px;
}
.lx-legal__container {
  max-width: 800px;
}
.lx-legal__article {
  background: #fff;
  border: 1px solid var(--c-stroke);
  padding: 32px 24px 40px;
}
.lx-legal__intro {
  background: rgba(139, 21, 56, 0.04);
  border-left: 3px solid var(--c-primary);
  color: var(--c-ink);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 32px;
  padding: 20px 24px;
}
.lx-legal__article h2 {
  color: var(--c-ink);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 40px 0 16px;
}
.lx-legal__article h2:first-of-type {
  margin-top: 0;
}
.lx-legal__article h3 {
  color: var(--c-ink);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  margin: 28px 0 12px;
}
.lx-legal__article p {
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 16px;
}
.lx-legal__article ol,
.lx-legal__article ul {
  margin: 0 0 20px;
  padding-left: 24px;
}
.lx-legal__article li {
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.lx-legal__article li strong {
  color: var(--c-ink);
}
.lx-legal__article a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.lx-legal__article a:hover {
  color: var(--c-primary-dark, #6a1029);
}
.lx-legal__contact {
  background: var(--c-bg);
  border: 1px solid var(--c-stroke);
  margin: 32px 0 0;
  padding: 24px;
}
.lx-legal__contact h3 {
  color: var(--c-ink);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px;
}
.lx-legal__contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lx-legal__contact li {
  color: var(--c-text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.lx-legal__contact li:last-child {
  margin-bottom: 0;
}
.lx-legal__foot {
  color: var(--c-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 32px 0 0;
}
.lx-legal__back,
.lx-legal__foot {
  border-top: 1px solid var(--c-stroke);
  padding-top: 24px;
}
.lx-legal__back {
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .lx-legal {
    padding: 64px 0 80px;
  }
  .lx-legal__article {
    padding: 48px 56px 56px;
  }
  .lx-legal__intro {
    font-size: 17px;
    padding: 24px 32px;
  }
  .lx-legal__article h2 {
    font-size: 22px;
  }
  .lx-legal__article h3 {
    font-size: 18px;
  }
  .lx-legal__article li,
  .lx-legal__article p {
    font-size: 16px;
  }
  .lx-legal__contact {
    padding: 28px 32px;
  }
}
@media (min-width: 992px) {
  .lx-legal {
    padding: 80px 0 100px;
  }
  .lx-legal__article {
    padding: 56px 72px 64px;
  }
  .lx-legal__article h2 {
    font-size: 24px;
    margin: 48px 0 20px;
  }
  .lx-legal__article h3 {
    margin: 32px 0 14px;
  }
}
.lx-article-hero {
  background: var(--c-ink);
  overflow: hidden;
  padding: 0;
  position: relative;
}
.lx-article-hero__bg {
  inset: 0;
  position: absolute;
  z-index: 1;
}
.lx-article-hero__bg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.35;
  width: 100%;
}
.lx-article-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.3),
    rgba(26, 26, 26, 0.85)
  );
  inset: 0;
  position: absolute;
  z-index: 2;
}
.lx-article-hero__container {
  padding-bottom: 48px;
  padding-top: 100px;
  position: relative;
  z-index: 3;
}
.lx-article-hero__crumbs {
  margin-bottom: 24px;
}
.lx-article-hero__crumbsList {
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lx-article-hero__crumbItem {
  color: hsla(0, 0%, 100%, 0.5);
}
.lx-article-hero__crumbLink {
  color: hsla(0, 0%, 100%, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.lx-article-hero__crumbLink:hover {
  color: #fff;
}
.lx-article-hero__crumbCurrent {
  color: hsla(0, 0%, 100%, 0.5);
}
.lx-article-hero__meta {
  align-items: center;
  color: hsla(0, 0%, 100%, 0.6);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 16px;
  margin-bottom: 20px;
}
.lx-article-hero__category {
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  text-transform: uppercase;
}
.lx-article-hero__date,
.lx-article-hero__readtime {
  align-items: center;
  display: flex;
  gap: 6px;
}
.lx-article-hero__date:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2'/%3E%3C/svg%3E")
    50% / contain no-repeat;
  content: "";
  height: 14px;
  width: 14px;
}
.lx-article-hero__readtime:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 8v4l3 3m6-3a9 9 0 1 1-18 0 9 9 0 0 1 18 0'/%3E%3C/svg%3E")
    50% / contain no-repeat;
  content: "";
  height: 14px;
  width: 14px;
}
.lx-article-hero__title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 768px) {
  .lx-article-hero__container {
    padding-bottom: 64px;
    padding-top: 140px;
  }
  .lx-article-hero__title {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .lx-article-hero__container {
    max-width: 900px;
    padding-bottom: 80px;
    padding-top: 160px;
  }
  .lx-article-hero__title {
    font-size: 46px;
  }
}
.lx-article {
  background: var(--c-bg);
  padding: 48px 0 64px;
}
.lx-article__container {
  display: grid;
  gap: 40px;
}
.lx-article__sidebar {
  order: 2;
}
.lx-article__content {
  order: 1;
}
@media (min-width: 992px) {
  .lx-article {
    padding: 64px 0 100px;
  }
  .lx-article__container {
    gap: 48px;
    grid-template-columns: 280px 1fr;
  }
  .lx-article__sidebar {
    order: 1;
  }
  .lx-article__content {
    order: 2;
  }
}
@media (min-width: 1200px) {
  .lx-article__container {
    gap: 64px;
    grid-template-columns: 300px 1fr;
  }
}
.lx-article-toc {
  background: #fff;
  border: 1px solid var(--c-stroke);
  padding: 24px;
  position: sticky;
  top: 100px;
}
.lx-article-toc__title {
  color: var(--c-muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.lx-article-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lx-article-toc__item {
  margin-bottom: 0;
}
.lx-article-toc__link {
  border-bottom: 1px solid var(--c-stroke);
  color: var(--c-text);
  display: block;
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 0;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.lx-article-toc__link:hover {
  color: var(--c-primary);
}
.lx-article-toc__item:last-child .lx-article-toc__link {
  border-bottom: none;
}
.lx-article-toc__link.is-active {
  color: var(--c-primary);
  font-weight: 500;
}
.lx-article-body {
  background: #fff;
  border: 1px solid var(--c-stroke);
  padding: 32px 24px 40px;
}
@media (min-width: 768px) {
  .lx-article-body {
    padding: 48px 56px 56px;
  }
}
@media (min-width: 992px) {
  .lx-article-body {
    padding: 56px 64px 64px;
  }
}
.lx-article-body h2 {
  border-top: 1px solid var(--c-stroke);
  color: var(--c-ink);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 48px 0 20px;
  padding-top: 24px;
}
.lx-article-body h2:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.lx-article-body h3 {
  color: var(--c-ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 32px 0 14px;
}
.lx-article-body p {
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 18px;
}
.lx-article-body ol,
.lx-article-body ul {
  margin: 0 0 24px;
  padding-left: 24px;
}
.lx-article-body li {
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 12px;
}
.lx-article-body li strong {
  color: var(--c-ink);
}
.lx-article-body a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.lx-article-body a:hover {
  color: var(--c-primary-dark, #6a1029);
}
@media (min-width: 768px) {
  .lx-article-body h2 {
    font-size: 24px;
  }
  .lx-article-body h3 {
    font-size: 20px;
  }
  .lx-article-body li,
  .lx-article-body p {
    font-size: 17px;
  }
}
.lx-article-callout {
  background: rgba(139, 21, 56, 0.04);
  border-left: 4px solid var(--c-primary);
  margin: 32px 0;
  padding: 24px;
}
.lx-article-callout--warning {
  background: rgba(180, 83, 9, 0.06);
  border-left-color: #b45309;
}
.lx-article-callout--success {
  background: rgba(22, 101, 52, 0.06);
  border-left-color: #166534;
}
.lx-article-callout__icon {
  align-items: center;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  font-size: 20px;
  height: 40px;
  justify-content: center;
  margin-bottom: 16px;
  width: 40px;
}
.lx-article-callout--warning .lx-article-callout__icon {
  background: #b45309;
}
.lx-article-callout--success .lx-article-callout__icon {
  background: #166534;
}
.lx-article-callout__title {
  color: var(--c-ink);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
}
.lx-article-callout__text {
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
@media (min-width: 768px) {
  .lx-article-callout {
    padding: 28px 32px;
  }
}
.lx-article-checklist {
  background: #fff;
  border: 1px solid var(--c-stroke);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin: 32px 0;
  padding: 28px 24px;
}
.lx-article-checklist__title {
  border-bottom: 1px solid var(--c-stroke);
  color: var(--c-ink);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 20px;
  padding-bottom: 16px;
}
.lx-article-checklist__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lx-article-checklist__item {
  border-bottom: 1px solid var(--c-stroke);
  color: var(--c-text);
  display: flex;
  font-size: 15px;
  gap: 14px;
  line-height: 1.6;
  padding: 12px 0;
}
.lx-article-checklist__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.lx-article-checklist__check {
  align-items: center;
  background: var(--c-primary);
  display: flex;
  flex-shrink: 0;
  height: 20px;
  justify-content: center;
  margin-top: 2px;
  width: 20px;
}
.lx-article-checklist__check:after {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23fff' stroke-width='3' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m5 13 4 4L19 7'/%3E%3C/svg%3E")
    50% / contain no-repeat;
  content: "";
  height: 10px;
  width: 10px;
}
@media (min-width: 768px) {
  .lx-article-checklist {
    padding: 32px;
  }
  .lx-article-checklist__title {
    font-size: 18px;
  }
  .lx-article-checklist__item {
    font-size: 16px;
  }
}
.lx-article-footer {
  border-top: 1px solid var(--c-stroke);
  margin-top: 48px;
  padding-top: 32px;
}
.lx-article-footer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.lx-article-footer__tag {
  background: var(--c-bg);
  border: 1px solid var(--c-stroke);
  color: var(--c-text);
  display: inline-flex;
  font-size: 13px;
  padding: 6px 14px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.lx-article-footer__tag:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.lx-article-footer__cta {
  background: var(--c-ink);
  padding: 28px 24px;
  text-align: center;
}
.lx-article-footer__ctaTitle {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
}
.lx-article-footer__ctaText {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
}
.lx-article-footer__ctaBtn {
  display: inline-flex;
}
@media (min-width: 768px) {
  .lx-article-footer__cta {
    padding: 36px 40px;
  }
  .lx-article-footer__ctaTitle {
    font-size: 22px;
  }
}
.ss-scrollup {
  align-items: center;
  background-color: #1a1a1a !important;
  border: none;
  border-radius: 50%;
  bottom: 24px;
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 48px;
  justify-content: center;
  opacity: 0;
  padding: 0;
  position: fixed;
  right: 24px;
  transform: translateY(16px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s,
    background-color 0.2s;
  visibility: hidden;
  width: 48px;
  z-index: 900;
}
.ss-scrollup.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.ss-scrollup:hover {
  background-color: #8b1538 !important;
}
.ss-scrollup:active {
  background-color: #6a102b !important;
}
.ss-scrollup:focus {
  background-color: #1a1a1a !important;
  outline: none;
}
.ss-scrollup:focus-visible {
  outline: 2px solid #8b1538;
  outline-offset: 2px;
}
.ss-scrollup__icon {
  flex-shrink: 0;
  height: 20px;
  position: relative;
  transition: transform 0.2s;
  width: 20px;
  z-index: 2;
}
.ss-scrollup:hover .ss-scrollup__icon {
  transform: translateY(-2px);
}
.ss-scrollup__progress {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.ss-scrollup__progress svg {
  height: 100%;
  transform: rotate(-90deg);
  width: 100%;
}
.ss-scrollup__fill,
.ss-scrollup__track {
  fill: none;
  stroke-width: 2;
}
.ss-scrollup__track {
  stroke: hsla(0, 0%, 100%, 0.2);
}
.ss-scrollup__fill {
  stroke: #8b1538;
  stroke-dasharray: 100.53;
  stroke-dashoffset: 100.53;
  transition: stroke-dashoffset 0.1s linear;
}
.ss-scrollup:hover .ss-scrollup__fill {
  stroke: #fff;
}
@media (min-width: 768px) {
  .ss-scrollup {
    bottom: 32px;
    height: 52px;
    right: 32px;
    width: 52px;
  }
  .ss-scrollup__icon {
    height: 22px;
    width: 22px;
  }
}
@media (min-width: 992px) {
  .ss-scrollup {
    bottom: 40px;
    height: 56px;
    right: 40px;
    width: 56px;
  }
  .ss-scrollup__icon {
    height: 24px;
    width: 24px;
  }
}
.cook-banner {
  background: #1a1a1a;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9998;
}
.cook-banner[aria-hidden="false"] {
  transform: translateY(0);
}
.cook-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px 24px;
}
.cook-banner__text {
  flex: 1;
}
.cook-banner__msg {
  color: hsla(0, 0%, 100%, 0.85);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.cook-banner__actions {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 16px;
}
.cook-banner__link {
  background: none;
  border: none;
  color: hsla(0, 0%, 100%, 0.6);
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.cook-banner__link:hover {
  color: #fff;
}
@media (min-width: 768px) {
  .cook-banner__inner {
    align-items: center;
    flex-direction: row;
    padding: 16px 32px;
  }
  .cook-banner__msg {
    font-size: 15px;
  }
}
.cc {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 16px;
  position: fixed;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  z-index: 9999;
}
.cc[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
.sks_backdrop {
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  inset: 0;
  position: absolute;
}
.sks_modal {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  max-height: calc(100vh - 32px);
  max-width: 480px;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  z-index: 1;
}
.cc[aria-hidden="false"] .sks_modal {
  transform: translateY(0);
}
.sks_head {
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 20px 24px;
}
.sks_title {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}
.sks_x {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 4px;
  color: #666;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 32px;
  justify-content: center;
  margin: -4px -8px -4px 0;
  padding: 0;
  transition: color 0.2s, background-color 0.2s;
  width: 32px;
}
.sks_x:hover {
  background: #f5f5f5;
  color: #1a1a1a;
}
.sks_x:focus-visible {
  outline: 2px solid #8b1538;
  outline-offset: -2px;
}
.sks_body {
  padding: 20px 24px 24px;
}
.sks_intro {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 20px;
}
.sks_categories {
  margin-bottom: 24px;
}
.sks_row {
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 14px 0;
}
.sks_row:first-child {
  padding-top: 0;
}
.sks_row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sks_toggleRow {
  cursor: pointer;
}
.sks_toggleRow:hover .sks_rowTitle {
  color: #8b1538;
}
.sks_rowText {
  flex: 1;
  min-width: 0;
}
.sks_rowTitle {
  color: #1a1a1a;
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.2s;
}
.sks_rowSub {
  color: #666;
  display: block;
  font-size: 13px;
  line-height: 1.4;
  margin-top: 2px;
}
.sks_pill {
  align-items: center;
  background: #f5f5f5;
  color: #666;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  text-transform: uppercase;
}
.sks_pill--locked {
  background: rgba(139, 21, 56, 0.1);
  color: #8b1538;
}
.sks_toggle {
  flex-shrink: 0;
  height: 24px;
  position: relative;
  width: 44px;
}
.sks_check {
  cursor: pointer;
  height: 100%;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.sks_switch {
  background: #d1d5db;
  border-radius: 12px;
  inset: 0;
  position: absolute;
  transition: background-color 0.2s;
}
.sks_switch:after {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  content: "";
  height: 20px;
  left: 2px;
  position: absolute;
  top: 2px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  width: 20px;
}
.sks_check:checked + .sks_switch {
  background: #8b1538;
}
.sks_check:checked + .sks_switch:after {
  transform: translateX(20px);
}
.sks_check:focus-visible + .sks_switch {
  outline: 2px solid #8b1538;
  outline-offset: 2px;
}
.sks_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sks_actions .btn {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 140px;
}
