@charset "UTF-8";
/* line 2, theme.scss */
:root {
  --bg:#111720;
  --surface:#1a2230;
  --paper:#e9e6de;
  --ink:#111822;
  --text:#f2f3f2;
  --muted:#9ca7b5;
  --accent:#5274a8;
  --line:rgba(187,199,214,.20);
  --max:1320px; }

/* line 3, theme.scss */
* {
  box-sizing: border-box; }

/* line 3, theme.scss */
html {
  scroll-behavior: smooth; }

/* line 3, theme.scss */
body.cs-body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial,Helvetica,sans-serif;
  -webkit-font-smoothing: antialiased; }

/* line 3, theme.scss */
a {
  color: inherit; }

/* line 3, theme.scss */
img {
  max-width: 100%;
  height: auto;
  display: block; }

/* line 3, theme.scss */
button, input, select, textarea {
  font: inherit; }

/* line 3, theme.scss */
.cs-main {
  min-height: 55vh; }

/* line 3, theme.scss */
.cs-topline {
  padding: 8px 24px;
  background: var(--accent);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase; }

/* line 3, theme.scss */
.cs-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 12, 14, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line); }

/* line 3, theme.scss */
.cs-header__inner {
  width: min(var(--max), calc(100% - 40px));
  height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 30px; }

/* line 3, theme.scss */
.cs-logo {
  text-decoration: none;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -.06em;
  line-height: .8; }

/* line 3, theme.scss */
.cs-logo span {
  display: block;
  margin-top: 8px;
  font-size: 8px;
  letter-spacing: .2em;
  color: #9097a0;
  text-transform: uppercase; }

/* line 3, theme.scss */
.cs-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto; }

/* line 3, theme.scss */
.cs-nav a {
  text-decoration: none;
  font-size: 13px;
  color: #d9dde2; }

/* line 3, theme.scss */
.cs-nav a:hover {
  color: var(--accent); }

/* line 3, theme.scss */
.cs-header__actions {
  display: flex;
  align-items: center;
  gap: 14px; }

/* line 3, theme.scss */
.cs-phone {
  font-size: 13px;
  text-decoration: none;
  font-weight: 700; }

/* line 3, theme.scss */
.cs-cart-link {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-size: 12px; }

/* line 3, theme.scss */
.cs-cart-link span {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 900; }

/* line 3, theme.scss */
.cs-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: #fff;
  padding: 10px 12px; }

/* line 3, theme.scss */
.cs-mobile-nav {
  display: none;
  padding: 0 20px 18px; }

/* line 3, theme.scss */
.cs-mobile-nav.is-open {
  display: grid; }

/* line 3, theme.scss */
.cs-mobile-nav a {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  text-decoration: none; }

/* line 3, theme.scss */
.cs-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase; }

/* line 3, theme.scss */
.cs-eyebrow:before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent); }

/* line 3, theme.scss */
.cs-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 66px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  gap: 46px;
  min-height: 690px; }

/* line 3, theme.scss */
.cs-hero__content {
  align-self: center; }

/* line 3, theme.scss */
.cs-hero h1 {
  max-width: 760px;
  margin: 24px 0 22px;
  font-size: clamp(44px, 5.8vw, 82px);
  line-height: .97;
  letter-spacing: -.065em; }

/* line 3, theme.scss */
.cs-hero__content > p {
  max-width: 630px;
  margin: 0;
  color: #b5bac1;
  font-size: 18px;
  line-height: 1.65; }

/* line 3, theme.scss */
.cs-hero__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px; }

/* line 3, theme.scss */
.cs-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: inherit;
  text-decoration: none;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer; }

/* line 3, theme.scss */
.cs-btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink); }

/* line 3, theme.scss */
.cs-btn--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff; }

/* line 3, theme.scss */
.cs-hero__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 34px; }

/* line 3, theme.scss */
.cs-hero__facts span {
  padding: 16px;
  border: 1px solid var(--line);
  color: #9ea5ae;
  font-size: 12px;
  line-height: 1.45; }

/* line 3, theme.scss */
.cs-hero__facts b {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  font-size: 14px; }

/* line 3, theme.scss */
.cs-hero__visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--line); }

/* line 3, theme.scss */
.cs-hero__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; }

/* line 3, theme.scss */
.cs-hero__visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(11, 12, 14, 0.72)); }

/* line 3, theme.scss */
.cs-hero__badge {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 12, 14, 0.6);
  backdrop-filter: blur(12px); }

/* line 3, theme.scss */
.cs-hero__badge small {
  letter-spacing: .14em;
  color: #c5cbd3; }

/* line 3, theme.scss */
.cs-hero__badge strong {
  display: block;
  margin-top: 9px;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -.04em; }

/* line 3, theme.scss */
.cs-section {
  padding: 78px max(20px, calc((100vw - var(--max))/2)); }

/* line 3, theme.scss */
.cs-section--light {
  background: var(--paper);
  color: var(--ink); }

/* line 3, theme.scss */
.cs-section--dark {
  background: var(--surface);
  color: var(--text); }

/* line 3, theme.scss */
.cs-section--accent {
  background: var(--accent);
  color: var(--ink); }

/* line 3, theme.scss */
.cs-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 50px;
  align-items: end;
  margin-bottom: 38px; }

/* line 3, theme.scss */
.cs-section-head h2, .cs-trust h2, .cs-faq h2, .cs-cta h2 {
  margin: 14px 0 0;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: .98;
  letter-spacing: -.06em; }

/* line 3, theme.scss */
.cs-section-head > p {
  margin: 0;
  line-height: 1.6;
  opacity: .65; }

/* line 3, theme.scss */
.cs-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(17, 18, 20, 0.2); }

/* line 3, theme.scss */
.cs-category {
  display: grid;
  grid-template-columns: 38px 1fr;
  padding: 18px;
  border-right: 1px solid rgba(17, 18, 20, 0.14);
  border-bottom: 1px solid rgba(17, 18, 20, 0.2);
  text-decoration: none;
  min-width: 0; }

/* line 3, theme.scss */
.cs-category:nth-child(3n) {
  border-right: 0; }

/* line 3, theme.scss */
.cs-category img {
  grid-column: 1/-1;
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 16px; }

/* line 3, theme.scss */
.cs-category > span {
  font-size: 10px;
  color: #777; }

/* line 3, theme.scss */
.cs-category h3 {
  margin: 0 0 8px;
  font-size: 25px;
  letter-spacing: -.04em; }

/* line 3, theme.scss */
.cs-category p {
  grid-column: 2;
  margin: 0;
  color: #666;
  line-height: 1.5;
  font-size: 13px; }

/* line 3, theme.scss */
.cs-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px; }

/* line 3, theme.scss */
.cs-product-card, .cs-demo-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  overflow: hidden; }

/* line 3, theme.scss */
.cs-product-card__media, .cs-demo-card img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #181b20; }

/* line 3, theme.scss */
.cs-product-card__media img, .cs-demo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

/* line 3, theme.scss */
.cs-product-card__placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: .15em; }

/* line 3, theme.scss */
.cs-product-card__body, .cs-demo-card {
  padding-bottom: 16px; }

/* line 3, theme.scss */
.cs-product-card__body {
  padding: 15px; }

/* line 3, theme.scss */
.cs-product-card h3, .cs-demo-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: -.03em; }

/* line 3, theme.scss */
.cs-product-card__price, .cs-demo-card strong {
  font-size: 20px;
  font-weight: 900; }

/* line 3, theme.scss */
.cs-demo-card img {
  margin-bottom: 15px; }

/* line 3, theme.scss */
.cs-demo-card small, .cs-demo-card h3, .cs-demo-card strong {
  display: block;
  margin-left: 15px;
  margin-right: 15px; }

/* line 3, theme.scss */
.cs-demo-card small {
  margin-bottom: 8px;
  color: #8d949e; }

/* line 3, theme.scss */
.cs-center {
  text-align: center;
  margin-top: 28px; }

/* line 3, theme.scss */
.cs-kits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px; }

/* line 3, theme.scss */
.cs-kits > a {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  padding-bottom: 18px;
  text-decoration: none;
  min-height: 480px; }

/* line 3, theme.scss */
.cs-kits img {
  height: 190px;
  width: 100%;
  object-fit: cover; }

/* line 3, theme.scss */
.cs-kits small, .cs-kits h3, .cs-kits p, .cs-kits b {
  margin-left: 18px;
  margin-right: 18px; }

/* line 3, theme.scss */
.cs-kits small {
  margin-top: 16px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .1em; }

/* line 3, theme.scss */
.cs-kits h3 {
  font-size: 36px;
  letter-spacing: -.055em;
  margin-top: 28px;
  margin-bottom: 12px; }

/* line 3, theme.scss */
.cs-kits p {
  line-height: 1.55;
  opacity: .7; }

/* line 3, theme.scss */
.cs-kits b {
  margin-top: auto;
  font-size: 12px; }

/* line 3, theme.scss */
.cs-trust {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px; }

/* line 3, theme.scss */
.cs-trust__intro p {
  color: #666;
  line-height: 1.65; }

/* line 3, theme.scss */
.cs-trust__intro img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  margin-top: 24px; }

/* line 3, theme.scss */
.cs-trust__items {
  border-top: 1px solid rgba(17, 18, 20, 0.2); }

/* line 3, theme.scss */
.cs-trust__items article {
  display: grid;
  grid-template-columns: 55px 1fr;
  padding: 25px 0;
  border-bottom: 1px solid rgba(17, 18, 20, 0.2); }

/* line 3, theme.scss */
.cs-trust__items span {
  font-size: 10px;
  color: #777; }

/* line 3, theme.scss */
.cs-trust__items h3 {
  margin: 0 0 8px;
  font-size: 21px; }

/* line 3, theme.scss */
.cs-trust__items p {
  margin: 0;
  color: #666;
  line-height: 1.55; }

/* line 3, theme.scss */
.cs-faq {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px; }

/* line 3, theme.scss */
.cs-faq__head p {
  color: #9aa1aa;
  line-height: 1.6; }

/* line 3, theme.scss */
.cs-faq__list {
  border-top: 1px solid var(--line); }

/* line 3, theme.scss */
.cs-faq details {
  border-bottom: 1px solid var(--line); }

/* line 3, theme.scss */
.cs-faq summary {
  padding: 22px 0;
  cursor: pointer;
  font-weight: 800; }

/* line 3, theme.scss */
.cs-faq details p {
  margin: 0;
  padding: 0 0 22px;
  color: #aeb5bd;
  line-height: 1.6; }

/* line 3, theme.scss */
.cs-cta {
  padding: 70px max(20px, calc((100vw - var(--max))/2));
  background: var(--accent);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: end; }

/* line 3, theme.scss */
.cs-cta > div > p {
  max-width: 680px;
  line-height: 1.6;
  opacity: .7; }

/* line 3, theme.scss */
.cs-cta__phone {
  border-top: 2px solid var(--ink);
  padding-top: 16px; }

/* line 3, theme.scss */
.cs-cta__phone small {
  display: block;
  letter-spacing: .15em; }

/* line 3, theme.scss */
.cs-cta__phone > a:not(.cs-btn) {
  display: block;
  margin: 12px 0 18px;
  font-size: clamp(28px, 3.7vw, 50px);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -.05em; }

/* line 3, theme.scss */
.cs-footer {
  padding: 58px max(20px, calc((100vw - var(--max))/2)) 28px;
  background: #07080a;
  border-top: 1px solid var(--line); }

/* line 3, theme.scss */
.cs-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr 1fr;
  gap: 45px; }

/* line 3, theme.scss */
.cs-footer__brand {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -.06em; }

/* line 3, theme.scss */
.cs-footer p {
  color: #8f969f;
  line-height: 1.55; }

/* line 3, theme.scss */
.cs-footer__grid > div {
  display: flex;
  flex-direction: column;
  gap: 10px; }

/* line 3, theme.scss */
.cs-footer a {
  text-decoration: none;
  color: #cdd1d6;
  font-size: 13px; }

/* line 3, theme.scss */
.cs-footer strong {
  margin-bottom: 6px; }

/* line 3, theme.scss */
.cs-footer__phone {
  font-size: 22px!important;
  font-weight: 900;
  color: var(--accent) !important; }

/* line 3, theme.scss */
.cs-footer__bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: #777e87; }

/* line 3, theme.scss */
.cs-page {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 86px; }

/* line 3, theme.scss */
.cs-page h1 {
  margin: 14px 0 34px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.06em; }

/* line 3, theme.scss */
.cs-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #8f969f;
  font-size: 12px; }

/* line 3, theme.scss */
.cs-breadcrumbs a {
  text-decoration: none; }

/* line 3, theme.scss */
.cs-page-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 40px; }

/* line 3, theme.scss */
.cs-page-head h1 {
  margin-bottom: 0; }

/* line 3, theme.scss */
.cs-page-head__text {
  color: #aab0b7;
  line-height: 1.6; }

/* line 3, theme.scss */
.cs-content-page {
  max-width: 960px; }

/* line 3, theme.scss */
.cs-richtext {
  font-size: 16px;
  line-height: 1.75;
  color: #d4d7d1; }

/* line 3, theme.scss */
.cs-richtext h2, .cs-richtext h3 {
  color: #fff;
  letter-spacing: -.03em; }

/* line 3, theme.scss */
.cs-richtext a {
  color: var(--accent); }

/* line 3, theme.scss */
.cs-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: 54px; }

/* line 3, theme.scss */
.cs-product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px; }

/* line 3, theme.scss */
.cs-product-gallery img {
  width: 100%;
  height: 430px;
  object-fit: contain;
  background: #f4f4f0; }

/* line 3, theme.scss */
.cs-product-gallery img:first-child {
  grid-column: 1/-1;
  height: 600px; }

/* line 3, theme.scss */
.cs-product-info {
  position: sticky;
  top: 125px;
  align-self: start; }

/* line 3, theme.scss */
.cs-product-info h1 {
  font-size: clamp(38px, 4vw, 58px);
  margin-bottom: 16px; }

/* line 3, theme.scss */
.cs-product-short {
  color: #aeb4bc;
  line-height: 1.6; }

/* line 3, theme.scss */
.cs-product-price {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin: 24px 0; }

/* line 3, theme.scss */
.cs-product-price strong {
  font-size: 36px; }

/* line 3, theme.scss */
.cs-product-price s {
  color: #7e858e; }

/* line 3, theme.scss */
.cs-label {
  display: grid;
  gap: 7px;
  margin: 14px 0;
  font-size: 12px;
  color: #9da4ad; }

/* line 3, theme.scss */
.cs-label select, .cs-label input, .cs-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #333a43;
  background: #0d0f12;
  color: #fff;
  padding: 0 13px; }

/* line 3, theme.scss */
.cs-buy {
  width: 100%;
  min-height: 54px;
  border: 0;
  background: var(--accent);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  margin-top: 8px; }

/* line 3, theme.scss */
.cs-product-trust {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line); }

/* line 3, theme.scss */
.cs-product-trust span {
  display: block;
  font-size: 10px;
  letter-spacing: .12em;
  color: #8e959e; }

/* line 3, theme.scss */
.cs-product-trust a {
  display: block;
  margin-top: 7px;
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
  text-decoration: none; }

/* line 3, theme.scss */
.cs-product-trust p {
  color: #959ca5;
  line-height: 1.5; }

/* line 3, theme.scss */
.cs-product-description {
  margin-top: 58px;
  max-width: 900px;
  line-height: 1.75; }

/* line 3, theme.scss */
.cs-product-noimage {
  min-height: 500px;
  display: grid;
  place-items: center;
  background: #181b20;
  font-size: 36px;
  font-weight: 900; }

/* line 3, theme.scss */
.cs-cart-page {
  max-width: 1050px; }

/* line 3, theme.scss */
.cs-cart-list {
  border-top: 1px solid var(--line); }

/* line 3, theme.scss */
.cs-cart-item {
  display: grid;
  grid-template-columns: 90px 1fr 120px 150px;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line); }

/* line 3, theme.scss */
.cs-cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  background: #fff; }

/* line 3, theme.scss */
.cs-cart-item a {
  text-decoration: none; }

/* line 3, theme.scss */
.cs-cart-item small {
  display: block;
  color: #9299a2;
  margin-top: 6px; }

/* line 3, theme.scss */
.cs-cart-item input {
  width: 86px;
  height: 42px;
  background: #11141a;
  border: 1px solid #333;
  color: #fff;
  padding: 0 10px; }

/* line 3, theme.scss */
.cs-cart-total {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 18px;
  padding: 24px 0; }

/* line 3, theme.scss */
.cs-cart-total strong {
  font-size: 32px; }

/* line 3, theme.scss */
.cs-cart-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px; }

/* line 3, theme.scss */
.cs-cart-actions .cs-buy {
  width: auto;
  padding: 0 24px;
  margin: 0; }

/* line 3, theme.scss */
.cs-empty {
  grid-column: 1/-1;
  padding: 34px;
  border: 1px dashed var(--line); }

/* line 3, theme.scss */
.cs-search {
  display: flex;
  gap: 10px;
  margin-bottom: 34px; }

/* line 3, theme.scss */
.cs-search input {
  flex: 1; }

/* line 3, theme.scss */
.cs-article-grid {
  display: grid;
  gap: 20px; }

/* line 3, theme.scss */
.cs-article-grid article {
  padding: 24px 0;
  border-top: 1px solid var(--line); }

/* line 3, theme.scss */
.cs-article-grid a {
  text-decoration: none; }

/* line 3, theme.scss */
.cs-404 {
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }

/* line 3, theme.scss */
.cs-404 .cs-eyebrow {
  justify-content: center; }

@media (max-width: 1050px) {
  /* line 4, theme.scss */
  .cs-nav, .cs-phone {
    display: none; }

  /* line 4, theme.scss */
  .cs-menu-btn {
    display: block; }

  /* line 4, theme.scss */
  .cs-hero {
    grid-template-columns: 1fr;
    min-height: 0; }

  /* line 4, theme.scss */
  .cs-hero__visual {
    min-height: 480px; }

  /* line 4, theme.scss */
  .cs-products-grid {
    grid-template-columns: repeat(2, 1fr); }

  /* line 4, theme.scss */
  .cs-category-grid {
    grid-template-columns: repeat(2, 1fr); }

  /* line 4, theme.scss */
  .cs-category:nth-child(3n) {
    border-right: 1px solid rgba(17, 18, 20, 0.14); }

  /* line 4, theme.scss */
  .cs-category:nth-child(2n) {
    border-right: 0; }

  /* line 4, theme.scss */
  .cs-kits {
    grid-template-columns: 1fr; }

  /* line 4, theme.scss */
  .cs-trust, .cs-faq, .cs-cta {
    grid-template-columns: 1fr; }

  /* line 4, theme.scss */
  .cs-footer__grid {
    grid-template-columns: 1fr 1fr; }

  /* line 4, theme.scss */
  .cs-product-layout {
    grid-template-columns: 1fr; }

  /* line 4, theme.scss */
  .cs-product-info {
    position: static; }

  /* line 4, theme.scss */
  .cs-page-head {
    grid-template-columns: 1fr; } }
@media (max-width: 620px) {
  /* line 5, theme.scss */
  .cs-topline {
    font-size: 9px; }

  /* line 5, theme.scss */
  .cs-header__inner {
    width: calc(100% - 24px);
    height: 66px; }

  /* line 5, theme.scss */
  .cs-logo {
    font-size: 23px; }

  /* line 5, theme.scss */
  .cs-hero {
    width: calc(100% - 28px);
    padding: 28px 0 42px;
    gap: 24px; }

  /* line 5, theme.scss */
  .cs-hero h1 {
    font-size: 42px; }

  /* line 5, theme.scss */
  .cs-hero__content > p {
    font-size: 15px; }

  /* line 5, theme.scss */
  .cs-hero__facts {
    grid-template-columns: 1fr; }

  /* line 5, theme.scss */
  .cs-hero__visual {
    min-height: 350px; }

  /* line 5, theme.scss */
  .cs-section {
    padding: 54px 14px; }

  /* line 5, theme.scss */
  .cs-section-head {
    grid-template-columns: 1fr;
    gap: 14px; }

  /* line 5, theme.scss */
  .cs-section-head h2, .cs-trust h2, .cs-faq h2, .cs-cta h2 {
    font-size: 40px; }

  /* line 5, theme.scss */
  .cs-category-grid, .cs-products-grid {
    grid-template-columns: 1fr; }

  /* line 5, theme.scss */
  .cs-category {
    border-right: 0!important; }

  /* line 5, theme.scss */
  .cs-category img {
    height: 150px; }

  /* line 5, theme.scss */
  .cs-kits > a {
    min-height: 430px; }

  /* line 5, theme.scss */
  .cs-trust__intro img {
    height: 220px; }

  /* line 5, theme.scss */
  .cs-cta {
    padding: 54px 14px; }

  /* line 5, theme.scss */
  .cs-footer {
    padding-left: 14px;
    padding-right: 14px; }

  /* line 5, theme.scss */
  .cs-footer__grid {
    grid-template-columns: 1fr; }

  /* line 5, theme.scss */
  .cs-page {
    width: calc(100% - 28px);
    padding-top: 32px; }

  /* line 5, theme.scss */
  .cs-page h1 {
    font-size: 42px; }

  /* line 5, theme.scss */
  .cs-product-gallery {
    grid-template-columns: 1fr; }

  /* line 5, theme.scss */
  .cs-product-gallery img, .cs-product-gallery img:first-child {
    grid-column: auto;
    height: 360px; }

  /* line 5, theme.scss */
  .cs-cart-item {
    grid-template-columns: 70px 1fr; }

  /* line 5, theme.scss */
  .cs-cart-item > div:nth-child(3), .cs-cart-item > div:nth-child(4) {
    grid-column: 2; }

  /* line 5, theme.scss */
  .cs-cart-actions {
    flex-direction: column; }

  /* line 5, theme.scss */
  .cs-cart-actions .cs-buy {
    width: 100%; }

  /* line 5, theme.scss */
  .cs-search {
    flex-direction: column; } }
@media (prefers-reduced-motion: reduce) {
  /* line 6, theme.scss */
  html {
    scroll-behavior: auto; }

  /* line 6, theme.scss */
  * {
    transition: none!important;
    animation: none!important; } }
/* Rich information pages */
/* line 9, theme.scss */
.cs-info-page {
  max-width: 1220px; }

/* line 9, theme.scss */
.cs-info-page > h1 {
  max-width: 980px; }

/* line 9, theme.scss */
.cs-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 48px;
  align-items: center;
  margin: 0 0 54px; }

/* line 9, theme.scss */
.cs-info-grid--hero {
  align-items: stretch; }

/* line 9, theme.scss */
.cs-info-copy h2, .cs-info-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.04;
  letter-spacing: -.05em; }

/* line 9, theme.scss */
.cs-info-copy p, .cs-info-intro p {
  margin: 0 0 18px;
  color: #b7bdc5;
  line-height: 1.72; }

/* line 9, theme.scss */
.cs-info-copy .cs-btn {
  margin-top: 10px; }

/* line 9, theme.scss */
.cs-info-media {
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #17191d; }

/* line 9, theme.scss */
.cs-info-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover; }

/* line 9, theme.scss */
.cs-info-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin: 0 0 54px; }

/* line 9, theme.scss */
.cs-info-features article {
  padding: 24px 24px 28px 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line); }

/* line 9, theme.scss */
.cs-info-features article:nth-child(2), .cs-info-features article:nth-child(3) {
  padding-left: 24px; }

/* line 9, theme.scss */
.cs-info-features article:last-child {
  border-right: 0; }

/* line 9, theme.scss */
.cs-info-features span, .cs-step-list > article > span {
  display: block;
  margin-bottom: 28px;
  font-size: 10px;
  letter-spacing: .14em;
  color: #858c95; }

/* line 9, theme.scss */
.cs-info-features h3, .cs-step-list h3 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: -.035em; }

/* line 9, theme.scss */
.cs-info-features p, .cs-step-list p {
  margin: 0;
  color: #9ea5ae;
  line-height: 1.62; }

/* line 9, theme.scss */
.cs-info-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 30px;
  background: var(--accent);
  color: var(--ink);
  margin-top: 46px; }

/* line 9, theme.scss */
.cs-info-callout small {
  display: block;
  font-size: 10px;
  letter-spacing: .14em;
  font-weight: 900; }

/* line 9, theme.scss */
.cs-info-callout strong {
  display: block;
  margin: 12px 0 8px;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.04;
  letter-spacing: -.05em; }

/* line 9, theme.scss */
.cs-info-callout p {
  margin: 0;
  opacity: .7; }

/* line 9, theme.scss */
.cs-info-callout > a {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -.04em; }

/* line 9, theme.scss */
.cs-contact-big {
  margin: 28px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); }

/* line 9, theme.scss */
.cs-contact-big small {
  display: block;
  margin-bottom: 8px;
  color: #8f969f;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px; }

/* line 9, theme.scss */
.cs-contact-big a {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  text-decoration: none;
  color: var(--accent);
  letter-spacing: -.05em; }

/* line 9, theme.scss */
.cs-step-list {
  border-top: 1px solid var(--line);
  margin: 42px 0; }

/* line 9, theme.scss */
.cs-step-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line); }

/* line 9, theme.scss */
.cs-step-list > article > span {
  margin: 3px 0 0; }

/* line 9, theme.scss */
.cs-step-list a {
  color: var(--accent); }

/* line 9, theme.scss */
.cs-info-note {
  padding: 24px;
  border: 1px solid rgba(217, 255, 69, 0.35);
  background: rgba(217, 255, 69, 0.05); }

/* line 9, theme.scss */
.cs-info-note strong {
  display: block;
  margin-bottom: 9px;
  font-size: 19px; }

/* line 9, theme.scss */
.cs-info-note p {
  margin: 0;
  color: #a8afb7;
  line-height: 1.62; }

/* line 9, theme.scss */
.cs-info-intro {
  max-width: 800px;
  margin-bottom: 34px; }

/* line 9, theme.scss */
.cs-page-faq {
  border-top: 1px solid var(--line); }

/* line 9, theme.scss */
.cs-page-faq details {
  border-bottom: 1px solid var(--line); }

/* line 9, theme.scss */
.cs-page-faq summary {
  padding: 24px 42px 24px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  position: relative;
  list-style: none; }

/* line 9, theme.scss */
.cs-page-faq summary::-webkit-details-marker {
  display: none; }

/* line 9, theme.scss */
.cs-page-faq summary:after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 20px;
  color: var(--accent);
  font-size: 28px;
  font-weight: 400; }

/* line 9, theme.scss */
.cs-page-faq details[open] summary:after {
  content: '×'; }

/* line 9, theme.scss */
.cs-page-faq details p {
  max-width: 860px;
  margin: 0;
  padding: 0 42px 25px 0;
  color: #a9b0b8;
  line-height: 1.7; }

/* line 9, theme.scss */
.cs-legal {
  max-width: 900px; }

/* line 9, theme.scss */
.cs-legal-lead {
  font-size: 19px!important;
  color: #e1e4df!important; }

/* line 9, theme.scss */
.cs-legal h2 {
  margin: 40px 0 14px;
  font-size: 27px;
  letter-spacing: -.04em; }

/* line 9, theme.scss */
.cs-legal p, .cs-legal li {
  color: #b7bdc5;
  line-height: 1.75; }

/* line 9, theme.scss */
.cs-legal ul {
  padding-left: 22px; }

/* line 9, theme.scss */
.cs-legal a {
  color: var(--accent); }

@media (max-width: 820px) {
  /* line 10, theme.scss */
  .cs-info-grid {
    grid-template-columns: 1fr;
    gap: 26px; }

  /* line 10, theme.scss */
  .cs-info-media {
    min-height: 260px; }

  /* line 10, theme.scss */
  .cs-info-media img {
    min-height: 260px; }

  /* line 10, theme.scss */
  .cs-info-features {
    grid-template-columns: 1fr; }

  /* line 10, theme.scss */
  .cs-info-features article, .cs-info-features article:nth-child(2), .cs-info-features article:nth-child(3) {
    padding: 22px 0;
    border-right: 0; }

  /* line 10, theme.scss */
  .cs-info-callout {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start; } }
@media (max-width: 620px) {
  /* line 11, theme.scss */
  .cs-info-grid {
    margin-bottom: 38px; }

  /* line 11, theme.scss */
  .cs-info-media, .cs-info-media img {
    min-height: 220px; }

  /* line 11, theme.scss */
  .cs-step-list article {
    grid-template-columns: 42px 1fr; }

  /* line 11, theme.scss */
  .cs-info-callout {
    padding: 22px; }

  /* line 11, theme.scss */
  .cs-page-faq summary {
    font-size: 16px; }

  /* line 11, theme.scss */
  .cs-legal h2 {
    font-size: 23px; }

  /* line 11, theme.scss */
  .cs-legal-lead {
    font-size: 17px!important; } }
/* TSK Concert extended content */
/* line 14, theme.scss */
.cs-category-grid--nine .cs-category {
  min-height: 330px; }

/* line 14, theme.scss */
.cs-coverage .cs-section-head > p {
  color: #aeb4bc;
  opacity: 1; }

/* line 14, theme.scss */
.cs-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line); }

/* line 14, theme.scss */
.cs-metrics article {
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

/* line 14, theme.scss */
.cs-metrics strong {
  font-size: clamp(54px, 6vw, 88px);
  line-height: .9;
  letter-spacing: -.07em;
  color: var(--accent); }

/* line 14, theme.scss */
.cs-metrics span {
  max-width: 210px;
  color: #abb2bb;
  line-height: 1.45;
  font-size: 13px; }

/* line 14, theme.scss */
.cs-brand-cloud {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(17, 18, 20, 0.2);
  border-left: 1px solid rgba(17, 18, 20, 0.2);
  margin-bottom: 38px; }

/* line 14, theme.scss */
.cs-brand-cloud span {
  padding: 13px 16px;
  border-right: 1px solid rgba(17, 18, 20, 0.2);
  border-bottom: 1px solid rgba(17, 18, 20, 0.2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .035em; }

/* line 14, theme.scss */
.cs-russian-brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px; }

/* line 14, theme.scss */
.cs-russian-brands article {
  padding: 22px;
  border: 1px solid rgba(17, 18, 20, 0.22);
  min-height: 170px; }

/* line 14, theme.scss */
.cs-russian-brands small {
  font-size: 9px;
  letter-spacing: .12em;
  color: #70757a; }

/* line 14, theme.scss */
.cs-russian-brands h3 {
  margin: 26px 0 8px;
  font-size: 22px;
  letter-spacing: -.04em; }

/* line 14, theme.scss */
.cs-russian-brands p {
  margin: 0;
  color: #666b70;
  line-height: 1.5; }

/* line 14, theme.scss */
.cs-contact-lines p {
  margin-bottom: 10px!important; }

/* line 14, theme.scss */
.cs-contact-lines a {
  color: var(--accent); }

/* line 14, theme.scss */
.cs-info-features--four {
  grid-template-columns: repeat(4, 1fr); }

/* line 14, theme.scss */
.cs-info-features--four article:nth-child(4) {
  padding-left: 24px;
  border-right: 0; }

/* line 14, theme.scss */
.cs-info-features--four article:nth-child(3) {
  border-right: 1px solid var(--line); }

@media (max-width: 1050px) {
  /* line 15, theme.scss */
  .cs-metrics {
    grid-template-columns: repeat(2, 1fr); }

  /* line 15, theme.scss */
  .cs-russian-brands {
    grid-template-columns: repeat(2, 1fr); }

  /* line 15, theme.scss */
  .cs-info-features--four {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  /* line 16, theme.scss */
  .cs-metrics {
    grid-template-columns: 1fr; }

  /* line 16, theme.scss */
  .cs-metrics article {
    min-height: 145px; }

  /* line 16, theme.scss */
  .cs-russian-brands {
    grid-template-columns: 1fr; }

  /* line 16, theme.scss */
  .cs-info-features--four {
    grid-template-columns: 1fr; }

  /* line 16, theme.scss */
  .cs-info-features--four article, .cs-info-features--four article:nth-child(4), .cs-info-features--four article:nth-child(3) {
    padding: 22px 0;
    border-right: 0; } }
/* 2026-09-15 refinement: matte editorial palette, stronger catalog contrast */
/* line 20, theme.scss */
body.cs-body {
  background: #111720;
  color: #f2f3f2; }

/* line 21, theme.scss */
.cs-topline {
  background: #36577f;
  color: #f7f5ef;
  letter-spacing: .11em; }

/* line 22, theme.scss */
.cs-header {
  background: #111720;
  backdrop-filter: none;
  border-bottom-color: #2a3545; }

/* line 23, theme.scss */
.cs-nav a {
  color: #d7dde6; }

/* line 23, theme.scss */
.cs-nav a:hover {
  color: #91acd3; }

/* line 24, theme.scss */
.cs-logo span {
  color: #8997a9; }

/* line 24, theme.scss */
.cs-cart-link span {
  background: #5274a8;
  color: #fff; }

/* line 25, theme.scss */
.cs-eyebrow:before {
  background: #5274a8; }

/* line 26, theme.scss */
.cs-btn--accent {
  background: #5274a8;
  border-color: #5274a8;
  color: #fff; }

/* line 27, theme.scss */
.cs-btn--accent:hover {
  background: #436693;
  border-color: #436693; }

/* line 28, theme.scss */
.cs-hero__visual:after {
  background: linear-gradient(180deg, rgba(17, 23, 32, 0.02) 32%, rgba(17, 23, 32, 0.82)); }

/* line 29, theme.scss */
.cs-hero__badge {
  background: #18202b;
  border-color: #3b4759;
  backdrop-filter: none; }

/* line 30, theme.scss */
.cs-hero__facts span {
  background: #151c26;
  border-color: #2d394a;
  color: #aab5c4; }

/* line 31, theme.scss */
.cs-section--light {
  background: #e9e6de;
  color: #111822; }

/* line 32, theme.scss */
.cs-section--dark {
  background: #1a2230;
  color: #f2f3f2; }

/* line 33, theme.scss */
.cs-section--accent, .cs-cta {
  background: #5274a8;
  color: #fff; }

/* line 34, theme.scss */
.cs-section--accent .cs-section-head > p, .cs-section--accent .cs-kits p, .cs-cta > div > p {
  color: #e4eaf2;
  opacity: 1; }

/* line 35, theme.scss */
.cs-section--accent .cs-eyebrow:before, .cs-cta .cs-eyebrow:before {
  background: #dfe7f2; }

/* line 36, theme.scss */
.cs-section--accent .cs-kits > a {
  border-color: #dbe4f0;
  background: #496a9a; }

/* line 37, theme.scss */
.cs-section--accent .cs-kits > a:hover {
  background: #3f608e; }

/* line 38, theme.scss */
.cs-section--accent .cs-kits p {
  opacity: 1; }

/* line 38, theme.scss */
.cs-section--accent .cs-kits b {
  color: #fff; }

/* line 39, theme.scss */
.cs-cta__phone {
  border-top-color: #dbe4f0; }

/* line 39, theme.scss */
.cs-cta .cs-btn--dark {
  background: #111822;
  border-color: #111822;
  color: #fff; }

/* line 40, theme.scss */
.cs-products-section {
  background: #18202b; }

/* line 41, theme.scss */
.cs-product-card, .cs-demo-card {
  background: #eeeae2;
  color: #111822;
  border: 1px solid #c8c5bd;
  box-shadow: none; }

/* line 42, theme.scss */
.cs-product-card__media, .cs-demo-card img {
  background: #fff; }

/* line 43, theme.scss */
.cs-product-card__media img, .cs-demo-card img {
  object-fit: contain; }

/* line 44, theme.scss */
.cs-product-card__body {
  border-top: 1px solid #d7d3ca; }

/* line 45, theme.scss */
.cs-product-card h3, .cs-demo-card h3 {
  color: #111822;
  line-height: 1.25; }

/* line 46, theme.scss */
.cs-product-card__price, .cs-demo-card strong {
  color: #2d527f; }

/* line 47, theme.scss */
.cs-demo-card {
  display: flex;
  flex-direction: column;
  padding-bottom: 18px; }

/* line 48, theme.scss */
.cs-demo-card h3 {
  padding: 0 16px;
  margin: 16px 0 8px; }

/* line 49, theme.scss */
.cs-demo-card span {
  padding: 0 16px;
  color: #456991;
  font-size: 12px;
  font-weight: 800; }

/* line 50, theme.scss */
.cs-demo-card img {
  margin: 0; }

/* line 51, theme.scss */
.cs-product-card:hover, .cs-demo-card:hover {
  border-color: #8094af;
  transform: translateY(-2px);
  transition: transform .22s ease,border-color .22s ease; }

/* line 52, theme.scss */
.cs-catalog-page .cs-products-grid {
  gap: 22px; }

/* line 53, theme.scss */
.cs-catalog-page .cs-product-card {
  background: #f0ede6;
  color: #111822;
  border-color: #c7c4bc; }

/* line 54, theme.scss */
.cs-catalog-page .cs-product-card__media {
  background: #fff;
  border-bottom: 1px solid #d4d0c7; }

/* line 55, theme.scss */
.cs-catalog-page .cs-product-card h3 {
  color: #111822;
  font-size: 17px; }

/* line 56, theme.scss */
.cs-catalog-page .cs-product-card__price {
  color: #274e7c;
  font-size: 21px; }

/* line 57, theme.scss */
.cs-category {
  background: #ebe8e0; }

/* line 57, theme.scss */
.cs-category:nth-child(even) {
  background: #e2dfd7; }

/* line 58, theme.scss */
.cs-category:hover {
  background: #d9dde3;
  transition: background .22s ease; }

/* line 59, theme.scss */
.cs-metrics strong {
  color: #87a2c7; }

/* line 60, theme.scss */
.cs-contact-big a, .cs-step-list a, .cs-legal a, .cs-richtext a, .cs-contact-lines a, .cs-footer__phone {
  color: #91acd3!important; }

/* line 61, theme.scss */
.cs-info-note {
  border-color: #5576a4;
  background: #182436; }

/* line 62, theme.scss */
.cs-info-callout {
  background: #5274a8;
  color: #fff; }

/* line 62, theme.scss */
.cs-info-callout p {
  color: #e2e8f0;
  opacity: 1; }

/* line 63, theme.scss */
.cs-footer {
  background: #0c1118;
  border-top-color: #293444; }

/* line 63, theme.scss */
.cs-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap; }

/* line 64, theme.scss */
.cs-requisites {
  margin: 58px 0 10px;
  padding-top: 34px;
  border-top: 1px solid var(--line); }

/* line 65, theme.scss */
.cs-requisites__head {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 26px; }

/* line 66, theme.scss */
.cs-requisites__head h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 48px);
  letter-spacing: -.045em; }

/* line 67, theme.scss */
.cs-requisites__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line); }

/* line 68, theme.scss */
.cs-requisites__grid > div {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #151c26; }

/* line 69, theme.scss */
.cs-requisites__grid span {
  display: block;
  margin-bottom: 9px;
  color: #8f9caf;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase; }

/* line 70, theme.scss */
.cs-requisites__grid strong {
  display: block;
  color: #edf0f4;
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere; }

@media (max-width: 700px) {
  /* line 71, theme.scss */
  .cs-requisites__head {
    grid-template-columns: 1fr;
    gap: 10px; }

  /* line 71, theme.scss */
  .cs-requisites__grid {
    grid-template-columns: 1fr; }

  /* line 71, theme.scss */
  .cs-footer__bottom {
    display: grid;
    gap: 8px; } }
