@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500;600&family=Montserrat:wght@400;500;600&display=swap');

@font-face {
    font-family: "Open Sans";
    src: url("/local/templates/hiden_partner/assets/fonts/open-sans/OpenSans-Variable.woff2") format("woff2");
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans";
    src: url("/local/templates/hiden_partner/assets/fonts/open-sans/OpenSans-Italic-Variable.woff2") format("woff2");
    font-weight: 300 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Golos Text";
    src: url("../fonts/golos-text/GolosText-VariableFont_wght.woff2") format("woff2");
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}


:root {
  --blue: #2D68CB;
  --blue-dark: #174A9A;
  --blue-deep: #0F3675;
  --sky: #0EA5E9;
  --teal: #14B8A6;
  --coral: #F97316;
  --violet: #7C3AED;
  --lime: #84CC16;
  --ink: #0F172A;
  --text: #243044;
  --muted: #64748B;
  --line: #E2E8F0;
  --soft: #F4F7FB;
  --white: #FFFFFF;
  --radius: 6px;
  --shadow: 0 18px 45px rgba(15, 23, 42, .09);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, .06);
  --container: 1720px;
}

*,
a,
button,
input,
textarea,
select,
label,
[role="button"] {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* base */
* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: 'Fira Sans', Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  font-size: 16px;
  line-height: 1.5;
}


html,
body {
    width: 100vw;
    min-width: 100vw;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow-x: clip;
}

.site-header,
.site-footer,
main {
    width: 100%;
    max-width: none;
}

main {
  flex: 1 0 auto;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
}

/* typography */
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(32px, 3.1vw, 52px);
}

h2 {
  font-size: clamp(25px, 2vw, 36px);
}

h3 {
  font-size: clamp(18px, 1.15vw, 22px);
}

p {
  margin: 0;
}

.lead {
  max-width: 740px;
  font-size: 18px;
  color: #D9E8FF;
}

.eyebrow {
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}

.section {
  padding: 70px 0;
}

.section-tight {
  padding-top: 42px;
}

.section-muted {
  background: var(--soft);   
}

.section.section-muted:not(.section.section-muted.main-p) {
  
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.text-link {
  color: var(--blue);
  font-weight: 500;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--blue-dark);
}

/* buttons */
.button,
.catalog-trigger,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 10px 18px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  transition: .18s ease;
}

.button:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.button-secondary {
  background: #ffffff;
  color: var(--blue);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.button-ghost {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .35);
  color: #ffffff;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 4px 8px;
  font-size: 12px;
  color: var(--blue);
  background: #EAF2FF;
  font-weight: 500;
}

.badge.teal {
  color: #04766B;
  background: #E7FAF7;
}

.badge.coral {
  color: #B54708;
  background: #FFF4E8;
}

.badge.violet {
  color: #5B21B6;
  background: #F2ECFF;
}

.badge.lime {
  color: #4D7C0F;
  background: #F3FBE8;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 34px rgba(21, 65, 133, .22);
}

.header-top {
  height: 82px;
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  text-wrap-mode: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  width: 154px;
}

.logo img {
  width: 154px;
  height: auto;
}

.catalog-area {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 20;
  align-self: center;
}

.catalog-trigger {
  height: 42px;
  padding: 0 19px;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .28);
  color: #ffffff;
}

.catalog-area:hover .catalog-panel,
.catalog-area:focus-within .catalog-panel,
.catalog-panel:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.top-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, .92);
}

.top-links a:hover {
  color: #ffffff;
}

.header-actions {
  display: grid;
  grid-template-columns: minmax(250px, 360px) auto;
  align-items: center;
  gap: 24px;
}

.search {
  position: relative;
}

.search input {
  width: 100%;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .1);
  color: #ffffff;
  padding: 0 44px 0 14px;
  outline: none;
}

.search input::placeholder {
  color: rgba(255, 255, 255, .72);
}

.search .icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .82;
}

.contact-mini {
  font-size: 14px;
  line-height: 1.3;
  text-align: right;
  white-space: nowrap;
}

.contact-mini a {
  display: block;
  color: #ffffff;
}

.contact-mini span {
  display: block;
  color: rgba(255, 255, 255, .76);
}

.header-bottom {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav {
  display: flex;
  align-items: stretch;
  gap: 2px;
  height: 54px;
  width: 100%;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.nav-link {
  display: flex;
  align-items: center;
  height: 54px;
  padding: 0 18px;
  color: #ffffff;
  border-radius: var(--radius);
  font-size: 15px;
  white-space: nowrap;
}

.nav-link::after {
  content: '⌄';
  font-size: 12px;
  margin-left: 7px;
  color: rgba(255, 255, 255, .72);
}

.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link {
  background: rgba(255, 255, 255, .13);
}

.mega-panel,
.catalog-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 310px;
  background: #ffffff;
  color: var(--text);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .16s ease;
  pointer-events: none;
  z-index: 30;
}

.mega-panel::before,
.catalog-panel::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.nav-item:hover > .mega-panel,
.nav-item:focus-within > .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-panel {
  padding: 22px;
  z-index: 10;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr/* 1.1fr 1fr .9fr; */;
  gap: 22px;
}

.mega-title {
  margin-bottom: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
}

.mega-list {
  display: grid;
  gap: 7px;
}

.mega-list a {
  display: block;
  padding: 7px 8px;
  border-radius: var(--radius);
  font-size: 15px;
  color: #334155;
}

.mega-list a:hover {
  background: #F1F5F9;
  color: var(--blue)!important;
}

.mega-list a span {
  display: block;
  color: #000;
  font-weight: 500;
  font-size: 16px;
}

.mega-list a:hover span {
  color: var(--blue)!important;
}


.mega-actions {
  display: grid;
  gap: 10px;
}

.mega-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius);
  background: #F8FAFC;
  color: #334155;
}

.mega-action span {
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: #EAF2FF;
  color: var(--blue);
}

.catalog-panel {
  /* min-width: 760px; */
  left: 0;
  padding: 22px;
  z-index: 11;
  width: min(940px, calc(100vw - 48px));
    max-width: 980px;
    overflow: hidden;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width:100%;
  text-wrap-mode: wrap;
}

.catalog-column h4 {
  font-size: 16px;
  color: var(--blue);
  margin-bottom: 12px;
}

.catalog-column a {
  display: block;
  padding: 7px 0;
  color: #334155;
  font-size: 14px;
  border-radius: calc(var(--radius) - 2px);
  transition: background .16s ease, color .16s ease;
}

.catalog-column a small {
  display: block;
  color: #64748B;
  font-size: 12px;
  margin-top: 2px;
}

.catalog-column a:hover {
  color: var(--blue);
  background: #EAF2FF;
}

.mobile-header {
  display: none;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .09);
  color: #ffffff;
}

.mobile-icons {
  display: flex;
  gap: 8px;
}

.mobile-panel {
  display: none;
  background: #ffffff;
  color: var(--text);
  padding: 18px;
  border-top: 1px solid var(--line);
}

.mobile-panel.open {
  display: block;
}

.mobile-panel .search input {
  background: #F8FAFC;
  border-color: var(--line);
  color: var(--ink);
}

.mobile-panel .search input::placeholder {
  color: #94A3B8;
}

.mobile-menu-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.mobile-menu-list a {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.mobile-menu-list strong {
  font-weight: 500;
  color: var(--blue);
}

/* hero / slider */
.hero {
  position: relative;
  overflow: hidden;
  background: #071C3C;
  min-height: 500px;
  color: #ffffff;
}

.page-hero .section-description {    
    font-size: 21px;
}

.hero-track {
  height: 100%;
}

.hero-slide {
  display: none;
  min-height: 500px;
  align-items: center;
  position: relative;
  background: linear-gradient(120deg, var(--slide-a), var(--slide-b) 58%, var(--slide-c));
  isolation: isolate;
}

.hero-slide.active {
  display: flex;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, .16), transparent 24%),
    linear-gradient(90deg, rgba(7, 23, 55, .38), rgba(7, 23, 55, .08));
  z-index: -1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: .2;
  z-index: -1;
}

.hero-inner {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 800px) 1fr;
  align-items: center;
  gap: 30px;
  padding: 50px 0;
}

.hero-copy h2 {
  color: #ffffff;
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 400;
  margin: 10px 0 14px;
}

.hero-copy p {
  font-size: 19px;
  color: rgba(255, 255, 255, .88);
  max-width: 580px;
}

.hero-points {
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, .88);
}

.hero-points li::before {
  content: '•';
  margin-right: 10px;
  color: #ffffff;
}

.hero-media {
  min-height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: min(680px, 100%);
  filter: drop-shadow(0 32px 42px rgba(0, 0, 0, .28));
}

.hero-badge {
  display: inline-flex;
  border-radius: var(--radius);
  padding: 5px 9px;
  background: rgba(255, 255, 255, .13);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .1);
  color: #ffffff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

.slider-prev {
  left: 36px;
}

.slider-next {
  right: 36px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .42);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.slider-dot.active {
  width: 24px;
  background: #ffffff;
}

/* home cards */
.top-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.top-category-card {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 18px;
  align-items: center;
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #F8FAFC);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.top-category-card h3 {
  color: var(--blue);
  margin-bottom: 8px;
}

.top-category-card p {
  color: var(--muted);
  font-size: 15px;
}

.top-category-card .text-link {
  display: inline-flex;
  margin-top: 15px;
}

.top-category-card img {
  max-height: 150px;
  margin: auto;
  object-fit: contain;
}

.top-category-card:nth-child(2) {
  background: linear-gradient(135deg, #ffffff, #F6F1FF);
}

.top-category-card:nth-child(3) {
  background: linear-gradient(135deg, #ffffff, #EFFBF9);
}

/* product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  background: #fafdff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .03);
   transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);  
  box-shadow: 0 12px 28px rgba(15, 23, 42, .10);
  border-color: rgba(45, 104, 203, .22);
  background: #fff;
}

.product-image {
  display: block;
  height: 280px;
  padding: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-body {
  position: relative;
  z-index: 2;
  padding: 20px;  
}

.product-body h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.product-card:hover h3 a {
  color: var(--blue);
}


.product-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  min-height: 42px;
}

.product-card__article {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.35;
    color: #7a1515;
    /* color: var(--muted); */
}

.product-card__article strong {
    color: var(--ink);    
    font-weight: 600;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.product-actions a {
  font-weight: 500;
  color: var(--blue);
  font-size: 14px;
}

/* news */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.news-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-body {
  padding: 18px;
}

.news-date {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.news-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.news-body p {
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-body a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 500;
}

/* catalog root / section tiles */

.category-list-grid {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
  padding: 50px 0 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.section-muted .category-list-grid {
  padding:0;
}

.category-list-grid p {
  font-size: 1.07em;
}

.category-tile {
  display: grid;
  gap: 14px;
  background: #F8FAFC;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  will-change: transform, scale;  
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.category-tile:hover {
   transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .10);
    border-color: rgba(45, 104, 203, .22);
  /* scale:1.025; */
}

.category-tile h2 {
  font-size: 1.7em;
  color: var(--blue);
}

.category-tile img {
  height: 340px;
  width: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  background: #ffffff;
}

.category-series {
  display: grid;
  gap: 8px;
}

.category-series a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius);
  background: #ffffff;
  color: #334155;
}

.category-series a:hover {
  background: #EAF2FF;
  color: var(--blue);
}

.category-series__text {
  display: block;
  min-width: 0;
  font-size: 1rem;
}

.category-series__name {
  display: block;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.3;
}

.category-series__description {
  display: block;
  margin-top: 3px;
  font-size: .98em;
  line-height: 1.35;
  color: #6B7280;
  font-weight: 400;
}

.category-series a small {
  flex: 0 0 auto;
}

/* breadcrumbs */
.breadcrumbs,
.bx-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(15, 23, 42, .62);
}

.breadcrumbs a,
.bx-breadcrumb a {
  color: rgba(15, 23, 42, .78);
  text-decoration: none;
}

.breadcrumbs a:hover,
.bx-breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumbs span,
.bx-breadcrumb span {
  color: rgba(15, 23, 42, .56);
}

.page-hero .breadcrumbs,
.page-hero .bx-breadcrumb {
  color: rgba(255, 255, 255, .78);
}

.page-hero .breadcrumbs a,
.page-hero .bx-breadcrumb a {
  color: rgba(255, 255, 255, .9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero .breadcrumbs span,
.page-hero .bx-breadcrumb span {
  color: rgba(255, 255, 255, .65);
}

/* pages */
.page-main {
  background: #ffffff;
}

.page-hero {
  padding: 30px 0 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #ffffff;
}

.page-hero h1,
.page-hero h2 {
  color: #ffffff;
}

.page-hero .eyebrow {
  color: #BFD7FF;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.category-hero .lead {
  color: #DDEBFF;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items: start;
}

.catalog-filter {
  position: sticky;
  top: 160px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.catalog-filter h3 {
  font-size: 18px;
  margin-bottom: 14px;
}

.filter-list {
  display: grid;
  gap: 8px;
}

.filter-list a {
  padding: 10px;
  border-radius: var(--radius);
  background: #F8FAFC;
  color: #334155;
}

.filter-list a.active,
.filter-list a:hover {
  background: #EAF2FF;
  color: var(--blue);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--muted);
}

.sort-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

select,
input,
textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 10px 12px;
  color: var(--text);
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* product detail */
.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 620px) 1fr;
  gap: 48px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.product-info {
  display: block;
  min-width: 0;
}

.product-summary h1 {
  font-size: clamp(30px, 2.5vw, 46px);
  margin-bottom: 14px;
}

.product-summary .lead-dark {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 18px;
}

.product-summary .lead-dark  a, .product-description a, .product-card .product-body p a {
    color: var(--blue);
    text-decoration: none;
}

.product-summary .lead-dark  a:hover, .product-description a:hover, .product-card .product-body p a:hover {
    text-decoration: underline;
}

.product-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 18px;
}

.product-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(45, 104, 203, .08);
  color: var(--blue);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}

.product-tabs {
  margin-top: 28px;
}

.tabs {
  margin-top: 34px;
}

.tab-buttons {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

.tab-buttons button {
  background: #ffffff;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 11px 16px;
  cursor: pointer;
}

.tab-buttons button.active {
  color: var(--blue);
  background: #F8FAFC;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.product-description {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
}

.product-description ul {
  margin: 14px 0 18px;
  padding-left: 22px;
}

.product-description li {
  margin-bottom: 6px;
}

.product-spec-group h3{
  margin: 14px 12px 8px;
  font-size: 14px;
  font-weight: 800;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
}

.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-table td:first-child {
  color: var(--muted);
  width: 42%;
  background: #F8FAFC;
}

.product-docs {
  display: grid;
  gap: 12px;
}

.product-doc {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.product-doc span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
}

.product-doc strong {
  color: var(--text);
  font-weight: 500;
}

/* product gallery / lightbox */
.product-main-img {
  position: relative;
  width: 100%;
  height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
  cursor: zoom-in;
}

.product-main-img img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 28px;
  object-fit: contain;
  background: #ffffff;
}

.product-main-img__zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(15, 23, 42, .72);
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}

.product-main-img:hover .product-main-img__zoom {
  opacity: 1;
}

.product-thumbs {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.product-thumbs button {
  height: 82px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  cursor: pointer;
  overflow: hidden;
}

.product-thumbs button.active,
.product-thumbs button:hover {
  border-color: var(--blue);
}

.product-thumbs img {
  display: block !important;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1 !important;
  visibility: visible !important;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  background: rgba(15, 23, 42, .88);
  padding: 64px 86px;
}

.product-lightbox.active {
  display: block;
}

.product-lightbox__stage {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  background: rgba(255, 255, 255, .04);
  border-radius: var(--radius);
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.product-lightbox__img {
  display: block;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: #ffffff;
  scroll-snap-align: center;
}

.product-lightbox__close,
.product-lightbox__arrow {
  position: fixed;
  z-index: 10001;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .64);
  color: #0F172A;
  cursor: pointer;
}

.product-lightbox__close {
  top: 22px;
  right: 28px;
  width: 42px;
  height: 42px;
  font-size: 30px;
  line-height: 1;
}

.product-lightbox__arrow {
  top: 50%;
  width: 48px;
  height: 64px;
  margin-top: -32px;
  font-size: 46px;
  line-height: 1;
}

.product-lightbox__prev {
  left: 24px;
}

.product-lightbox__next {
  right: 24px;
}

.product-lightbox__counter {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  padding: 7px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  color: #0F172A;
  font-size: 13px;
}

body.product-lightbox-open {
  overflow: hidden;
}

/* docs / service / contacts */
.docs-grid,
.service-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.doc-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.info-card h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.doc-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
}

.doc-card span {
  font-size: 12px;
  color: #ffffff;
  background: var(--blue);
  border-radius: var(--radius);
  padding: 5px 9px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

/* footer */
.site-footer {
  margin-top: auto;
  flex-shrink: 0;
  background: var(--blue);
  color: #ffffff;
}

.footer-inner {
  padding: 46px 0 30px;
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 34px;
}

.footer-brand h3,
.footer-column h3 {
  color: #ffffff;
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 13px;
}

.footer-brand p,
.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.footer-column {
  display: grid;
  gap: 8px;
  align-content: start;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.socials a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* responsive */
@media (max-width: 1280px) {
  .header-top {
    grid-template-columns: auto auto 1fr auto;
    gap: 18px;
  }

  .top-links {
    display: none;
  }

  .header-actions {
    grid-template-columns: minmax(220px, 1fr) auto;
  }

  .top-category-grid,
  .category-list-grid {
    grid-template-columns: 1fr;
  }

  .top-category-card {
    grid-template-columns: 1fr 180px;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1.2fr repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(100% - 40px, 920px);
  }

  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .site-header {
    position: sticky;
  }

  .hero,
  .hero-slide {
    min-height: 420px;
  }

  .hero-inner {
    width: min(100% - 40px, 920px);
    grid-template-columns: 1fr 320px;
    padding: 44px 0;
  }

  .hero-copy h2 {
    font-size: 34px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-points {
    display: none;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .slider-prev {
    left: 14px;
  }

  .slider-next {
    right: 14px;
  }

  .section {
    padding: 50px 0;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    display: grid;
    grid-template-columns: 210px 1fr;
  }

  .news-card img {
    height: 100%;
    min-height: 150px;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-filter {
    position: static;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap:15px;
  }

    .product-gallery {
    order:2;
  }

  .product-info {
    order:1;
  }
  .product-main-img {
    height: 380px;
  }

  .docs-grid,
  .contact-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-panel,
  .mega-panel {
    display: none;
  }

  .product-lightbox {
    padding: 58px 58px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .logo,
  .logo img {
    width: 124px;
  }

  .mobile-header {
    height: 58px;
  }

  .hero,
  .hero-slide {
    min-height: 470px;
  }

  .hero-inner {
    width: calc(100% - 28px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 30px 0 52px;
  }

  .hero-copy h2 {
    font-size: 27px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-media {
    min-height: 190px;
    width: 100%;
    justify-content: flex-end;
  }

  .hero-media img {
    width: 88%;
    max-height: 220px;
    object-fit: contain;
  }

  .slider-arrow {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .slider-dots {
    bottom: 18px;
  }

  .section {
    padding: 38px 0;   
  }

  .section.section-tight {
    padding: 10px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }

  .top-category-card {
    grid-template-columns: 1fr 88px;
    padding: 15px;
    min-height: auto;
    gap: 10px;
  }

  .top-category-card img {
    max-height: 86px;
  }

  .top-category-card p {
    font-size: 13px;
  }

  .product-grid,
  .product-grid-home {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .product-card {
    min-width: 78%;
    scroll-snap-align: start;
  }

  .product-image {
    height: 170px;
  }

  .news-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    min-height: 112px;
  }

  .news-card img {
    height: 112px;
    min-height: 0;
  }

  .news-body {
    padding: 12px;
  }

  .news-body h3 {
    font-size: 15px;
  }

  .news-body p {
    display: none;
  }

  .news-body a {
    margin-top: 8px;
  }

  .page-hero {
    padding: 1px 0 10px;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .lead {
    font-size: 16px;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-main-img {
    height: 300px;
  }

  .product-main-img img {
    padding: 18px;
  }

  .product-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .tab-buttons {
    overflow: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 0 18px;
  }

  .footer-column {
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding-top: 14px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .category-list-grid {
    grid-template-columns: 1fr;
  }

  .category-tile {
    padding: 16px;
  }

  .category-tile img {
    height: 130px;
  }
  
    .product-lightbox {
    padding: 52px 0 54px;
  }

  .product-lightbox.active {
    display: block;
  }

  .product-lightbox__stage {
    width: 100vw;
    height: calc(100dvh - 106px);
    padding: 0;
    border-radius: 0;
    background: #ffffff;
    overflow-x: auto;
    overflow-y: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y pinch-zoom;
  }

  .product-lightbox__img {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    object-fit: contain;
  }

  .product-lightbox__prev {
    left: 8px;
  }

  .product-lightbox__next {
    right: 8px;
  }

    .page-hero .section-description {
      font-size: 17px;
    }
}

.page-hero .section-description {
  color: rgba(255, 255, 255, .75);;
}

.section-description {
    max-width: 780px;
    margin-top: 15px;    
    line-height: 1.6;
    color: var(--muted);
}

@media (max-width: 700px) {
    .section-description {
        font-size: 15px;
         margin-top: 5px;
    }
}

.section-description p {
    margin-bottom: 12px;
}

.section-description ul {
    margin: 12px 0 0;
    padding-left: 22px;
}

.section-description li {
    margin-bottom: 6px;
}

.seo-article-section {
    margin-top: 56px;
}

.seo-article {
    max-width: 100%;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.seo-article h2 {
    margin-bottom: 18px;
    font-size: clamp(24px, 2vw, 34px);
}

.seo-article__content {
    color: var(--text);
    font-size: 17px;
    line-height: 1.7;
}

.seo-article__content p {
    margin-bottom: 14px;
}

.seo-article__content ul,
.seo-article__content ol {
    margin: 14px 0 18px;
    padding-left: 24px;
}

.seo-article__content li {
    margin-bottom: 7px;
}

.seo-article__content h3 {
    margin: 26px 0 12px;
}

@media (max-width: 700px) {
    .seo-article {
        padding: 22px;
    }

    .seo-article-section {
        margin-top: 36px;
    }
}

/* SEO articles */

.seo-article-section {
    margin-top: 56px;
}

.seo-article {
    max-width: 100%;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.seo-article h2,
.seo-article h3,
.seo-article h4,
.seo-article h5 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.seo-article h2 {
    margin: 0 0 22px;
    font-size: clamp(26px, 2vw, 36px);
}

.seo-article h3 {
    margin: 34px 0 14px;
    font-size: clamp(22px, 1.5vw, 28px);
}

.seo-article h4 {
    margin: 28px 0 12px;
    font-size: 21px;
}

.seo-article h5 {
    margin: 24px 0 10px;
    font-size: 18px;
    font-weight: 500;
}

.seo-article p {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.72;
    color: var(--text);
}

.seo-article p:last-child {
    margin-bottom: 0;
}

.seo-article ul,
.seo-article ol {
    margin: 18px 0 24px;
    padding-left: 0;
    list-style: none;
}

.seo-article li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 28px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--text);
}

.seo-article ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

.seo-article ol {
    counter-reset: seo-counter;
}

.seo-article ol li {
    counter-increment: seo-counter;
}

.seo-article ol li::before {
    content: counter(seo-counter);
    position: absolute;
    left: 0;
    top: 0.14em;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(45, 104, 203, 0.1);
    color: var(--blue);
    font-size: 12px;
    font-weight: 500;
}

.seo-article a {
    color: var(--blue);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.seo-article a:hover {
    color: var(--blue-dark);
}

.seo-article strong,
.seo-article b {
    color: var(--ink);
    font-weight: 500;
}

.seo-article em,
.seo-article i {
    color: var(--muted);
}

.seo-article blockquote {
    margin: 26px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--blue);
    border-radius: var(--radius);
    background: #F8FAFC;
    color: var(--text);
}

.seo-article blockquote p {
    margin-bottom: 0;
}

.seo-article hr {
    margin: 34px 0;
    border: 0;
    border-top: 1px solid var(--line);
}

@media (max-width: 700px) {
    .seo-article-section {
        margin-top: 36px;
    }

    .seo-article {
        padding: 24px;
    }

    .seo-article p,
    .seo-article li {
        font-size: 16px;
    }

    .seo-article h2 {
        font-size: 25px;
    }

    .seo-article h3 {
        font-size: 21px;
    }
}

/* SEO article tables */

.seo-article table {
    width: 100%;
    margin: 26px 0 30px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    overflow: hidden;
}

.seo-article table th,
.seo-article table td {
    padding: 14px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    vertical-align: top;
    color: var(--text);
}

.seo-article table th:last-child,
.seo-article table td:last-child {
    border-right: 0;
}

.seo-article table tr:last-child th,
.seo-article table tr:last-child td {
    border-bottom: 0;
}

.seo-article table th {
    background: #F8FAFC;
    color: var(--ink);
    font-weight: 500;
}

.seo-article table thead th {
    background: rgba(45, 104, 203, 0.08);
    color: var(--blue);
}

.seo-article table tbody tr:nth-child(even) td {
    background: #F8FAFC;
}

.seo-article table caption {
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
}

.seo-article .table-wrap {
    width: 100%;
    overflow-x: auto;
    margin: 26px 0 30px;
}

.seo-article .table-wrap table {
    margin: 0;
}

@media (max-width: 700px) {
    .seo-article table {
        min-width: 640px;
    }

    .seo-article table th,
    .seo-article table td {
        padding: 12px 14px;
        font-size: 15px;
    }
}

/* Mobile breadcrumbs */
@media (max-width: 700px) {
  .breadcrumbs,
  .bx-breadcrumb {
    width: 100%;
    max-width: 100%;
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap !important;
    gap: 7px;
    margin: 0 0 16px;
    padding: 0 0 8px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .breadcrumbs::-webkit-scrollbar,
  .bx-breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .breadcrumbs a,
  .breadcrumbs span,
  .bx-breadcrumb a,
  .bx-breadcrumb span,
  .bx-breadcrumb-item {
    flex: 0 0 auto;
    white-space: nowrap !important;
    font-size: 12px;
    line-height: 1.3;
  }

  .bx-breadcrumb-item {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    max-width: none;
  }

  .breadcrumbs a,
  .bx-breadcrumb a {
    color: rgba(15, 23, 42, .72);
  }

  .breadcrumbs span,
  .bx-breadcrumb span {
    color: rgba(15, 23, 42, .54);
  }

  .breadcrumbs > *:last-child,
  .bx-breadcrumb .bx-breadcrumb-item:last-child {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .breadcrumbs > *:last-child span,
  .bx-breadcrumb .bx-breadcrumb-item:last-child span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-page .breadcrumbs,
  .product-page .bx-breadcrumb {
    margin-bottom: 18px;
  }

  .section-tight .breadcrumbs,
  .section-tight .bx-breadcrumb {
    margin-bottom: 14px;
    margin-top: 20px;
  }
}

.product-modx-characteristics table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #ffffff;
}

.product-modx-characteristics table td,
.product-modx-characteristics table th {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    line-height: 1.45;
    text-align: left;
    vertical-align: top;
    color: var(--text);
}

.product-modx-characteristics table tr:last-child td,
.product-modx-characteristics table tr:last-child th {
    border-bottom: 0;
}

.product-modx-characteristics table td:first-child,
.product-modx-characteristics table th:first-child {
    width: 42%;
    background: #F8FAFC;
    color: var(--muted);
}

.product-modx-characteristics table p {
    margin: 0;
}

@media (max-width: 700px) {
    .product-modx-characteristics {
        overflow-x: auto;
    }

    .product-modx-characteristics table {
        min-width: 640px;
    }

    .product-modx-characteristics table td,
    .product-modx-characteristics table th {
        padding: 10px 12px;
        font-size: 14px;
    }
}


/* SEO content аккуратная версия */

.category-description {
    width: 100%;
}

.about-category {
    max-width: 980px;
    margin: 0 0 28px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(26px, 2.2vw, 36px);
    line-height: 1.22;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.seo-content {
    width: 100%;
    color: var(--text);
}

.seo-content *,
.seo-content *::before,
.seo-content *::after {
    box-sizing: border-box;
}

.seo-block {
    margin-top: 34px;
}

.seo-block--light {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #F8FAFC;
}

.seo-block--applications {
    margin-top: 18px;
}

.seo-container {
    width: 100%;
}

.seo-container > p {
    max-width: 100%;
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
}

.seo-container > p:last-child {
    margin-bottom: 0;
}

.seo-content h2 {
    max-width: 880px;
    margin: 0 0 18px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(23px, 1.7vw, 30px);
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.seo-content h3 {
    margin: 0 0 9px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
    color: var(--ink);
}

.seo-content p {
    font-size: 16px;
    line-height: 1.65;
}



.seo-grid {
    display: grid;
    gap: 16px;
}

.seo-grid--applications {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-grid--benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-grid--objects {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-card {
    min-height: 100%;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.seo-card--application {
    position: relative;
    overflow: hidden;
}

.seo-card--application::after {
    content: '';
    position: absolute;
    right: -34px;
    top: -34px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: rgba(45, 104, 203, 0.07);
}

.seo-card p {
    margin: 0;
    color: var(--muted);
}

.seo-card .seo-list {
    margin-top: 10px;
}

.seo-card__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 12px;
    background: rgba(45, 104, 203, 0.08);
    color: var(--blue);
}

.seo-card__icon::before {
    font-size: 20px;
    line-height: 1;
}

.seo-card__icon--router::before { content: '⌁'; }
.seo-card__icon--computer::before { content: '▣'; }
.seo-card__icon--camera::before { content: '◉'; }
.seo-card__icon--security::before { content: '◇'; }
.seo-card__icon--compact::before { content: '▦'; }
.seo-card__icon--power::before { content: '↯'; }
.seo-card__icon--price::before { content: '₽'; }
.seo-card__icon--delivery::before { content: '↗'; }
.seo-card__icon--warranty::before { content: '✓'; }
.seo-card__icon--selection::before { content: '◎'; }

.seo-list {
    display: grid;
    gap: 8px;
    margin: 14px 0 18px;
    padding: 0;
    list-style: none;
}

.seo-list li {
    position: relative;
    padding-left: 22px;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
}

.seo-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
}

/* Карточки с реальными фото */

.seo-image-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.seo-image-card img {
    display: block;
    width: 100%;
    height: 170px;
    object-fit: cover;
    background: #F8FAFC;
}

.seo-image-card h3 {
    margin: 18px 18px 8px;
}

.seo-image-card p {
    margin: 0 18px 20px;
    color: var(--muted);
}

/* Ссылка */

.seo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    color: var(--blue);
    font-weight: 500;
    text-decoration: none;
}

.seo-link::after {
    content: '→';
}

.seo-link:hover {
    color: var(--blue-dark);
}

/* Таблица */

.seo-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.seo-table {
    width: 100%;
    min-width: 680px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #ffffff;
}

.seo-table th,
.seo-table td {
    padding: 14px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
    vertical-align: top;
}

.seo-table th:last-child,
.seo-table td:last-child {
    border-right: 0;
}

.seo-table tr:last-child td {
    border-bottom: 0;
}

.seo-table th {
    background: rgba(45, 104, 203, 0.08);
    color: var(--blue);
    font-weight: 500;
}

.seo-table td:first-child {
    background: #F8FAFC;
    color: var(--ink);
    font-weight: 500;
}

/* Шаги */

.seo-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.seo-step {
    position: relative;
    padding: 22px 22px 22px 76px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.seo-step__number {
    position: absolute;
    left: 22px;
    top: 22px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.seo-step p {
    margin: 0;
    color: var(--muted);
}

/* CTA */

.seo-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 30px;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.22), transparent 34%),
        var(--blue);
    color: #ffffff;
}

.seo-cta h2 {
    margin-bottom: 10px;
    color: #ffffff;
}

.seo-cta p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
}

.seo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 22px;
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--blue);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.seo-btn:hover {
    color: var(--blue-dark);
}

/* FAQ */

.seo-block--faq {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.seo-faq {
    display: grid;
    gap: 12px;
}

.seo-faq__item {
    padding: 18px 20px;
    border-radius: var(--radius);
    background: #F8FAFC;
}

.seo-faq__item p {
    margin: 0;
    color: var(--muted);
}

/* Адаптив */

@media (max-width: 1100px) {
    .seo-grid--applications,
    .seo-grid--objects {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .seo-grid--benefits,
    .seo-steps {
        grid-template-columns: 1fr;
    }

    .seo-cta {
        grid-template-columns: 1fr;
    }

    .seo-btn {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .about-category {
        font-size: 25px;
    }

    .seo-block {
        margin-top: 28px;
    }

    .seo-block--light,
    .seo-block--faq,
    .seo-cta {
        padding: 22px;
    }

    .seo-grid--applications,
    .seo-grid--objects {
        grid-template-columns: 1fr;
    }

    .seo-card,
    .seo-step {
        padding: 20px;
    }

    .seo-step {
        padding-left: 68px;
    }

    .seo-step__number {
        left: 20px;
        top: 20px;
    }

    .seo-image-card img {
        height: 190px;
    }

    .seo-content h2 {
        font-size: 23px;
    }

    .seo-content h3 {
        font-size: 17px;
    }

    .seo-container > p,
    .seo-content p,
    .seo-list li {
        font-size: 16px;
    }
}

.seo-header {
    max-width: 100%;
    margin: 0 0 30px;
}

.seo-kicker {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.seo-lead {
    max-width: 100%;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

@media (max-width: 700px) {
    .seo-header {
        margin-bottom: 24px;
    }

    .seo-lead {
        font-size: 16px;
    }
}

/* Series products intro */

.series-products-intro {
    max-width: 100%;
    margin: 0 0 28px;
    padding: 28px 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.series-products-intro h2 {
    max-width: 100%;
    margin: 0 0 14px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(24px, 1.8vw, 32px);
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.series-products-intro__text {
    max-width: 100%;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.series-products-intro__text p {
    margin: 0 0 12px;
}

.series-products-intro__text p:last-child {
    margin-bottom: 0;
}

.series-products-intro__text ul {
    margin: 14px 0 0;
    padding-left: 22px;
}

.series-products-intro__text li {
    margin-bottom: 6px;
}

@media (max-width: 700px) {
    .series-products-intro {
        margin-bottom: 22px;
        padding: 22px;
    }

    .series-products-intro h2 {
        font-size: 23px;
    }

    .series-products-intro__text {
        font-size: 16px;
    }
}

/* Mega menu title link */

.mega-title--link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--blue);
}

.mega-title--link::after {
    content: '→';
    font-size: 13px;
    line-height: 1;
    opacity: .7;
    transition: transform .18s ease, opacity .18s ease;
}

.mega-title--link:hover {
    color: var(--blue-dark);
}

.mega-title--link:hover::after {
    transform: translateX(3px);
    opacity: 1;
}

/* Clickable section title */

.section-title-link {
    color: inherit;
    text-decoration: none;
}

.section-title-link:hover {
    color: var(--blue);
}

/* Fix unicode arrows mojibake in menu */

/* Стрелка вниз у главных пунктов нижнего меню */
.nav-link::after,
.nav-item > .nav-link::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    opacity: .75;
    vertical-align: middle;
}

/* Стрелка вправо у кликабельных заголовков в выпадающем меню */
.mega-title--link::after {
    content: '\2192';
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    margin-left: 6px;
    opacity: .7;
    transition: transform .18s ease, opacity .18s ease;
}

/* Стрелка вправо у надписи "Популярные решения" на главной */
.section-kicker__link::after {
    content: '\2192';
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    margin-left: 6px;
    opacity: .7;
    transition: transform .18s ease, opacity .18s ease;
}

.mega-title--link:hover::after,
.section-kicker__link:hover::after {
    transform: translateX(3px);
    opacity: 1;
}

/* Product new badge */

.product-new-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 11px;
    border-radius: 999px;
    background: #C94D42;
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
    position: absolute;
    /* box-shadow: 0 8px 18px rgba(201, 77, 66, .2); */
}

.product-badges .product-new-label,
.product-new-label--detail {
    background: #C94D42;
    color: #ffffff;
    border-color: #C94D42;
    position: relative;
}

.badge.orange {
    background: rgba(245, 132, 32, .12);
    color: #B45309;
    border-color: rgba(245, 132, 32, .28);
}

.badge.orange:hover {
    background: rgba(245, 132, 32, .18);
    color: #92400E;
    border-color: rgba(245, 132, 32, .42);
}

.product-status-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 16px;
}

.product-status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 10px;
    border-radius: 7px;
    background: #eef4ff;
    color: var(--blue);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
}

.product-status-badge--article {
    background: #f3f6fb;
    color: var(--muted);
}

.product-status-badge--in-stock {
    background: #eef4ff;
    color: var(--blue);
}

.product-status-badge--out-of-stock {
    background: #edf0f4;
    color: #6b7280;
}

.product-status-badge--expected {
    background: #e8f7ef;
    color: #1f8a4c;
}

.product-status-badge--archive {
    background: #fff3e6;
    color: #c05a00;
}

.features-list {
    margin: 18px 0 18px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    /* box-shadow: var(--shadow-sm); */
}

.features-list__title {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
}

.features-list__items {
    display: grid;
    gap: 9px;
}

.features-list__item {
    display: grid;
    grid-template-columns: auto minmax(24px, 1fr) auto;
    gap: 10px;
    align-items: baseline;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.35;
}

.features-list__name {
    min-width: 0;
    color: var(--muted);
}

.features-list__line {
    min-width: 24px;
    height: 1px;
    border-bottom: 1px dotted rgba(91, 111, 139, .55);
    transform: translateY(-3px);
}

.features-list__value {
    max-width: 260px;
    color: var(--ink);
    font-weight: 600;
    text-align: right;
}

@media (max-width: 700px) {
    .features-list {
        padding: 16px;
    }

    .features-list__item {
        grid-template-columns: 1fr;
        gap: 4px;
        padding-bottom: 9px;
        border-bottom: 1px solid var(--line);
    }

    .features-list__item:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .features-list__line {
        display: none;
    }

    .features-list__value {
        max-width: none;
        text-align: left;
    }
}

/* Новости */

.news-page-hero .section-description {
    max-width: 760px;
}

/* News list */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.news-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    border-color: rgba(45, 104, 203, .28);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .1);
}

.news-card__image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(45, 104, 203, .95), rgba(45, 104, 203, .72));
    text-decoration: none;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}

.news-card:hover .news-card__image img {
    transform: scale(1.035);
}

.news-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 32px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .92);
}

.news-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 22px 20px;
}

.news-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.news-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid rgba(45, 104, 203, .12);
    border-radius: 999px;
    background: rgba(45, 104, 203, .055);
    color: #38547D;
}

.news-card h2 {
    margin: 0 0 10px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 19px;
    line-height: 1.32;
    font-weight: 600;
    letter-spacing: -.02em;
}

.news-card h2 a {
    color: var(--ink);
    text-decoration: none;
}

.news-card h2 a:hover {
    color: var(--blue);
}

.news-card p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.news-card__link {
    margin-top: auto;
    color: var(--blue);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
}

.news-card__link:hover {
    text-decoration: underline;
}

/* News detail */

.news-detail-hero .section-head {
    max-width: 980px;
}

.news-detail-hero .eyebrow {
    color: rgba(255, 255, 255, .72);
}

.news-detail-hero h1 {
    color: #fff;
}

.news-detail-date {
    margin-top: 18px;
    color: rgba(255, 255, 255, .76);
    font-size: 15px;
    line-height: 1.5;
}

.news-detail {
    width: 100%;
    max-width: none;
    margin: 0;
}

/*
   Картинка на детальной странице:
   фиксированная высота, чтобы не занимала весь экран.
   object-fit: contain — чтобы не обрезать баннеры/плакаты с текстом.
*/

.news-detail__image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 420px;
    margin: 0 0 34px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .08);
}

.news-detail__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.news-detail__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 360px;
    margin: 0 0 34px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(45, 104, 203, .95), rgba(45, 104, 203, .72));
    box-shadow: 0 16px 42px rgba(15, 23, 42, .08);
}

.news-detail__placeholder span {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: .1em;
    color: #fff;
}

/*
   Текст статьи — на всю ширину контейнера.
*/

.news-detail__content {
    width: 100%;
    max-width: none;
    padding: 42px 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.75;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .045);
}

.news-detail__content p {
    margin: 0 0 18px;
}

.news-detail__content p:last-child {
    margin-bottom: 0;
}

.news-detail__content h2,
.news-detail__content h3 {
    margin: 30px 0 14px;
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.3;
    letter-spacing: -.02em;
}

.news-detail__content img {
    max-width: 100%;
    height: auto;
    margin: 18px 0;
    border-radius: var(--radius);
}

.news-detail__content a {
    color: var(--blue);
}

.news-detail__back {
    width: 100%;
    margin-top: 28px;
}

/* Responsive */

@media (max-width: 1100px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-detail__image {
        height: 360px;
    }

    .news-detail__content {
        padding: 34px 32px;
    }
}

@media (max-width: 700px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card__body {
        padding: 20px;
    }

    .news-detail__image {
        height: 270px;
    }

    .news-detail__placeholder {
        height: 260px;
    }

    .news-detail__content {
        padding: 24px 20px;
        font-size: 16px;
    }
}

.news-detail-hero .section-head {
    max-width: 980px;
}

.news-detail-hero .eyebrow {
    color: rgba(255, 255, 255, .72);
}

.news-detail-hero h1 {
    color: #fff;
}

.news-detail-date {
    margin-top: 18px;
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    line-height: 1.5;
}

/* Детальная новость: картинка слева, текст справа */

.news-detail {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    width: 100%;
    max-width: none;
    margin: 0;
}

.news-detail__image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    min-height: 360px;
    max-height: 520px;
    margin: 0;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .08);
}

.news-detail__image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    object-position: center;
}

.news-detail__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 360px;
    margin: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(45, 104, 203, .95), rgba(45, 104, 203, .72));
    box-shadow: 0 16px 42px rgba(15, 23, 42, .08);
}

.news-detail__placeholder span {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 46px;
    font-weight: 800;
    letter-spacing: .1em;
    color: #fff;
}

.news-detail__content {
    width: 100%;
    max-width: none;
    min-height: 360px;
    padding: 42px 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.75;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .045);
}

.news-detail__content p {
    margin: 0 0 18px;
}

.news-detail__content p:last-child {
    margin-bottom: 0;
}

.news-detail__content h2,
.news-detail__content h3 {
    margin: 30px 0 14px;
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.3;
    letter-spacing: -.02em;
}

.news-detail__content img {
    max-width: 100%;
    height: auto;
    margin: 18px 0;
    border-radius: var(--radius);
}

.news-detail__content a {
    color: var(--blue);
}

.news-detail__back {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 4px;
}

/* Адаптив */

@media (max-width: 1100px) {
    .news-detail {
        grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
        gap: 22px;
    }

    .news-detail__content {
        padding: 34px 32px;
    }

    .news-detail__image,
    .news-detail__placeholder {
        min-height: 320px;
    }
}

@media (max-width: 820px) {
    .news-detail {
        grid-template-columns: 1fr;
    }

    .news-detail__image,
    .news-detail__placeholder {
        min-height: 0;
        max-height: none;
    }

    .news-detail__image img {
        max-height: none;
    }

    .news-detail__content {
        min-height: 0;
    }
}

@media (max-width: 700px) {
    .news-detail__content {
        padding: 24px 20px;
        font-size: 16px;
    }

    .news-detail__placeholder {
        min-height: 240px;
    }
}

.catalog-products-layout {
    width: 100%;
}

.catalog-products-layout--with-filter {
    display: grid;
    grid-template-columns: 282px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.catalog-products-layout__filter {
    min-width: 0;
}

.catalog-products-layout__content {
    min-width: 0;
}

.catalog-filter {
    position: sticky;
    top: 112px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .055);
}

.catalog-filter__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 20px;
    padding: 0 0 16px;
    border-bottom: 1px solid var(--line);
}

.catalog-filter__title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--ink);
}

.catalog-filter__active {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.catalog-filter__reset {
    color: var(--blue);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    text-decoration: none;
}

.catalog-filter__reset:hover {
    text-decoration: underline;
}

.catalog-filter__group {
    margin: 0 0 22px;
}

.catalog-filter__group:last-of-type {
    margin-bottom: 0;
}

.catalog-filter__label {
    margin: 0 0 10px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--ink);
}

.catalog-filter__range {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.catalog-filter__range input,
.catalog-filter__range select {
    width: 100%;
    min-width: 0;
    height: 38px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #F8FAFC;
    color: var(--ink);
    font-size: 13px;
    outline: none;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.catalog-filter__range select {
    cursor: pointer;
}

.catalog-filter__range input:focus,
.catalog-filter__range select:focus {
    border-color: rgba(45, 104, 203, .55);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(45, 104, 203, .1);
}

.catalog-filter__hint {
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.catalog-filter__checks {
    display: grid;
    gap: 7px;
}

.catalog-filter__check {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.catalog-filter__check input {
    width: 15px;
    height: 15px;
    margin: 2px 0 0;
    accent-color: var(--blue);
    flex: 0 0 auto;
}

.catalog-filter__check span {
    min-width: 0;
}

.catalog-filter__check:hover span {
    color: var(--ink);
}

.catalog-filter__actions {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.catalog-filter__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 6px;
    background: var(--blue);
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.catalog-filter__submit:hover {
    background: #2459AF;
    box-shadow: 0 12px 24px rgba(45, 104, 203, .22);
    transform: translateY(-1px);
}

@media (max-width: 1100px) {
    .catalog-products-layout--with-filter {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 20px;
    }

    .catalog-filter {
        padding: 18px;
    }
}

@media (max-width: 820px) {
    .catalog-products-layout--with-filter {
        grid-template-columns: 1fr;
    }

    .catalog-filter {
        position: static;
    }
}


/* Фильтр Подбор ИБП */

.home-ups-picker-section {
    background: #f4f7fb;
}

.ups-picker {
    width: 100%;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 100% 0, rgba(45, 104, 203, .12), transparent 34%),
        #fff;
    box-shadow: 0 14px 42px rgba(15, 23, 42, .055);
}


.ups-picker__range-selects {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.ups-picker__range-select {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    min-width: 0;
    margin: 0;
}

.ups-picker__range-select select {
    width: 100%;
    min-width: 0;
}

.ups-picker__range-prefix {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    color: var(--muted);
    white-space: nowrap;
}

@media (max-width: 560px) {
    .ups-picker__range-selects {
        grid-template-columns: 1fr;
    }
}

.ups-picker--compact {
    margin-bottom: 34px;
}

.ups-picker__head {
    margin-bottom: 24px;
}

.ups-picker__head h2 {
    margin: 0;
}

.ups-picker__subtitle {
    max-width: 100%;
    margin-top: 10px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.ups-picker__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.5fr) minmax(220px, 0.2fr) auto;
    gap: 16px;
    align-items: end;
}

.ups-picker__field {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.ups-picker__field > span {
    color: var(--ink);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.ups-picker__field select {
    width: 100%;
    height: 46px;
    padding: 0 38px 0 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #F8FAFC;
    color: var(--ink);
    font-size: 14px;
    outline: none;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.ups-picker__field select:focus {
    border-color: rgba(45, 104, 203, .55);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(45, 104, 203, .1);
}

.ups-picker__field--checks {
    align-self: end;
}

.ups-picker__checks {
    display: flex;
    align-items: center;
    min-height: 46px;
    gap: 14px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #F8FAFC;
}

.ups-picker__checks label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.3;
}

.ups-picker__checks input {
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: var(--blue);
}

.ups-picker__checks label:hover {
    color: var(--ink);
}

.ups-picker__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 46px;
}

.ups-picker__actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 142px;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 6px;
    background: var(--blue);
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ups-picker__actions button:hover {
    background: #2459AF;
    box-shadow: 0 12px 24px rgba(45, 104, 203, .22);
    transform: translateY(-1px);
}

.ups-picker__actions a {
    color: var(--blue);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.ups-picker__actions a:hover {
    text-decoration: underline;
}

.ups-picker-results {
    margin-top: 8px;
}

.ups-picker-results__head {
    margin-bottom: 24px;
}

.ups-picker-results__count {
    margin-top: 8px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

.ups-picker-empty {
    padding: 28px 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    box-shadow: 0 8px 28px rgba(15, 23, 42, .04);
}

@media (max-width: 1100px) {
    .ups-picker__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ups-picker__actions {
        align-items: end;
    }
}

@media (max-width: 700px) {
    .ups-picker {
        padding: 24px 20px;
    }

    .ups-picker__grid {
        grid-template-columns: 1fr;
    }

    .ups-picker__checks {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .ups-picker__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ups-picker__actions button {
        width: 100%;
    }
}

.partner-order-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
}

.partner-order-modal.is-open {
    display: block;
}

.partner-order-modal-open {
    overflow: hidden;
}

.partner-order-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .58);
    backdrop-filter: blur(6px);
}

.partner-order-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 520px);
    max-height: calc(100vh - 32px);
    margin: 16px auto;
    top: 50%;
    transform: translateY(-50%);
    overflow: auto;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .22);
}

.partner-order-modal__content {
    padding: 34px;
}

.partner-order-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 23, 42, .06);
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.partner-order-modal__close:hover {
    background: var(--blue);
    color: #fff;
}

.partner-order-modal__kicker {
    margin: 0 0 8px;
    color: var(--blue);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.partner-order-modal h2 {
    margin: 0 42px 20px 0;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--ink);
}

.partner-order-modal__model {
    margin: 0 0 22px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #F8FAFC;
}

.partner-order-modal__model span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.partner-order-modal__model strong {
    display: block;
    color: var(--ink);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.partner-order-form {
    display: grid;
    gap: 15px;
}

.partner-order-form__field {
    display: grid;
    gap: 7px;
}

.partner-order-form__field span {
    color: var(--ink);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.partner-order-form__field em {
    color: #C94D42;
    font-style: normal;
}

.partner-order-form__field input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #F8FAFC;
    color: var(--ink);
    font-size: 15px;
    outline: none;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.partner-order-form__field input:focus {
    border-color: rgba(45, 104, 203, .55);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(45, 104, 203, .1);
}

.partner-order-form__error {
    display: none;
    padding: 12px 14px;
    border-radius: 6px;
    background: rgba(201, 77, 66, .09);
    color: #9F2F27;
    font-size: 14px;
    line-height: 1.45;
}

.partner-order-form__error.is-visible {
    display: block;
}

.partner-order-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 4px;
    padding: 0 22px;
    border: 0;
    border-radius: 6px;
    background: var(--blue);
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.partner-order-form__submit:hover {
    background: #2459AF;
    box-shadow: 0 12px 24px rgba(45, 104, 203, .22);
    transform: translateY(-1px);
}

.partner-order-form__submit:disabled {
    opacity: .7;
    cursor: wait;
    transform: none;
    box-shadow: none;
}

.partner-order-success {
    padding: 22px 24px;
    border-radius: var(--radius);
    background: rgba(45, 104, 203, .08);
    color: var(--ink);
    font-size: 17px;
    line-height: 1.65;
}

@media (max-width: 600px) {
    .partner-order-modal__content {
        padding: 28px 22px;
    }

    .partner-order-modal h2 {
        font-size: 24px;
    }
}


/* SEARCH PAGE */

/* ==========================================================================
   Catalog search page
   ========================================================================== */

.catalog-search-page {
    background: #fff;
}

.catalog-search-page .container {
    /* max-width: 1320px; */
}

/* Сбрасываем влияние общего .page-hero */
.catalog-search-page .catalog-search-hero {
    width: 100%;
    max-width: 100%;
    margin: 0 0 46px;
    padding: 38px 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 92% 0, rgba(45, 104, 203, .12), transparent 34%),
        linear-gradient(135deg, #FFFFFF 0%, #F7FAFF 100%);
    color: var(--ink);
    box-shadow: 0 16px 42px rgba(15, 23, 42, .07);
}

.catalog-search-page .catalog-search-hero .eyebrow {
    margin: 0 0 12px;
    color: var(--blue);
}

.catalog-search-page .catalog-search-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--ink);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(34px, 3vw, 54px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.catalog-search-page .catalog-search-hero p {
    max-width: 720px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

.catalog-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    max-width: 780px;
    margin-top: 30px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.catalog-search-form input {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 7px;
    background: #F7FAFF;
    color: var(--ink);
    font-family: 'Fira Sans', Arial, sans-serif;
    font-size: 16px;
    outline: none;
}

.catalog-search-form input:focus {
    border-color: rgba(45, 104, 203, .42);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(45, 104, 203, .12);
}

.catalog-search-form button {
    min-height: 50px;
    padding: 0 26px;
    border: 0;
    border-radius: 7px;
    background: var(--blue);
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.catalog-search-form button:hover {
    background: #2459AF;
    box-shadow: 0 12px 24px rgba(45, 104, 203, .22);
    transform: translateY(-1px);
}

.catalog-search-summary {
    margin-top: 18px;
    color: var(--muted);
    font-size: 15px;
}

.catalog-search-summary strong {
    color: var(--ink);
}

.catalog-search-empty {
    max-width: 820px;
    padding: 30px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 96% 0, rgba(45, 104, 203, .08), transparent 34%),
        #fff;
    color: var(--muted);
    box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

.catalog-search-empty h2 {
    margin: 0 0 10px;
    color: var(--ink);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
}

.catalog-search-block {
    margin-top: 48px;
}

.catalog-search-block:first-of-type {
    margin-top: 0;
}

.catalog-search-page .section-head {
    margin-bottom: 22px;
}

.catalog-search-page .section-head h2 {
    margin: 0;
    color: var(--ink);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(28px, 2.1vw, 38px);
    line-height: 1.16;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.catalog-search-section-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.catalog-search-section-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 136px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 90% 0, rgba(45, 104, 203, .08), transparent 34%),
        #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.catalog-search-section-card:hover {
    border-color: rgba(45, 104, 203, .32);
    box-shadow: 0 16px 34px rgba(15, 23, 42, .1);
    transform: translateY(-2px);
}

.catalog-search-section-card strong {
    color: var(--ink);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
}

.catalog-search-section-card span {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

/* Чтобы карточки товаров на странице поиска не ломались */
.catalog-search-page .product-grid {
    margin-top: 0;
}

.catalog-search-page .product-card {
    min-width: 0;
}

@media (max-width: 1000px) {
    .catalog-search-section-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .catalog-search-page .catalog-search-hero {
        padding: 28px 22px;
        margin-bottom: 34px;
    }

    .catalog-search-page .catalog-search-hero h1 {
        font-size: 32px;
    }

    .catalog-search-page .catalog-search-hero p {
        font-size: 15px;
    }

    .catalog-search-form {
        grid-template-columns: 1fr;
        margin-top: 24px;
        padding: 8px;
    }

    .catalog-search-form button {
        width: 100%;
    }

    .catalog-search-section-grid {
        grid-template-columns: 1fr;
    }

    .catalog-search-empty {
        padding: 24px 22px;
    }
}

/* ==========================================================================
   Catalog search mobile product scroll
   ========================================================================== */

@media (max-width: 640px) {
    .catalog-search-page .product-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        grid-template-columns: none !important;

        gap: 14px !important;
        width: 100%;
        max-width: 100%;

        overflow-x: auto !important;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;

        padding-bottom: 14px;
        margin-top: 0;

        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .catalog-search-page .product-grid::-webkit-scrollbar {
        display: none;
    }

    .catalog-search-page .product-grid .product-card {
        flex: 0 0 min(84vw, 340px) !important;
        width: min(84vw, 340px) !important;
        min-width: min(84vw, 340px) !important;
        max-width: min(84vw, 340px) !important;

        scroll-snap-align: start;
    }

    .catalog-search-page .product-grid .product-card h3 {
        font-size: 22px;
        line-height: 1.18;
    }
}

/* ==========================================================================
   About brand page
   ========================================================================== */

.about-brand-page {
    background: #fff;
}

.section-tight.about-brand-page {
  padding-top: 0; 
}

.about-brand-hero {
    margin-top: -1px;
    padding: 54px 0 70px;
    background:
        radial-gradient(circle at 82% 18%, rgba(255,255,255,.18), transparent 32%),
        linear-gradient(135deg, #2D68CB 0%, #173B78 100%);
    color: #fff;
}

.about-brand-hero .breadcrumb,
.about-brand-hero .breadcrumb a,
.about-brand-hero .breadcrumb-item {
    color: rgba(255,255,255,.72);
}

.about-brand-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 56px;
    align-items: center;
}

.about-brand-hero__content h1 {
    max-width: 820px;
    margin: 0;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(42px, 4.4vw, 72px);
    line-height: .98;
    font-weight: 400;
    letter-spacing: -0.055em;
}

.about-brand-hero__lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 20px;
    line-height: 1.6;
}

.about-brand-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.about-brand-hero__visual {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-brand-logo-card {
    position: relative;
    z-index: 2;
    width: min(420px, 100%);
    min-height: 230px;
    padding: 42px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
    box-shadow: 0 34px 80px rgba(0,0,0,.18);
    backdrop-filter: blur(10px);
}

.about-brand-logo-card span {
    display: block;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(48px, 4.6vw, 74px);
    line-height: .9;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.about-brand-logo-card small {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.9);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-brand-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.about-brand-hero__orb--one {
    width: 240px;
    height: 240px;
    right: 18px;
    top: 16px;
    background: rgba(255,255,255,.12);
}

.about-brand-hero__orb--two {
    width: 150px;
    height: 150px;
    left: 32px;
    bottom: 28px;
    background: rgba(255,255,255,.08);
}

.about-brand-section {
    margin-top: 72px;
}

.about-brand-intro {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: start;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 92% 0, rgba(45,104,203,.08), transparent 34%),
        #fff;
    box-shadow: 0 14px 38px rgba(15,23,42,.06);
}

.about-brand-intro h2 {
    margin: 0;
    color: var(--ink);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(30px, 2.5vw, 44px);
    line-height: 1.14;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.about-brand-text {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.about-brand-text p {
    margin: 0;
}

.about-brand-text p + p {
    margin-top: 18px;
}

.about-brand-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-brand-value {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 30px rgba(15,23,42,.05);
}

.about-brand-value__number {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--blue);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 35px;
    font-weight: 800;
    letter-spacing: .14em;
    opacity: .3;
}

.about-brand-value h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
}

.about-brand-value p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.about-brand-section--blue {
    padding: 46px;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 92% 0, rgba(255,255,255,.18), transparent 32%),
        linear-gradient(135deg, #2D68CB 0%, #173B78 100%);
    color: #fff;
}

.about-brand-directions {
    display: grid;
    grid-template-columns: minmax(260px, .48fr) minmax(0, 1fr);
    gap: 38px;
    align-items: start;
}

.about-brand-directions h2 {
    margin: 0;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(30px, 2.5vw, 42px);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.about-brand-direction-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.about-brand-direction {
    min-height: 190px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius);
    background: rgba(255,255,255,.08);
    color: #fff;
    text-decoration: none;
    transition: background .18s ease, transform .18s ease, border-color .18s ease;
}

.about-brand-direction:hover {
    background: rgba(255,255,255,.13);
    border-color: rgba(255,255,255,.32);
    transform: translateY(-2px);
}

.about-brand-direction span {
    display: block;
    margin-bottom: 14px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.about-brand-direction p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 15px;
    line-height: 1.55;
}

.about-brand-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 38px 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, #fff 0%, #F7FAFF 100%);
    box-shadow: 0 14px 38px rgba(15,23,42,.06);
}

.about-brand-cta h2 {
    margin: 0;
    color: var(--ink);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(30px, 2.4vw, 42px);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.about-brand-cta p {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

.about-brand-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn.btn-light {
    background: #fff;
    color: var(--blue);
}

.btn.btn-light:hover {
    background: rgba(255,255,255,.92);
    color: var(--blue);
}

.btn.btn-outline {
    border: 1px solid rgba(45,104,203,.32);
    background: #fff;
    color: var(--blue);
}

.btn.btn-outline:hover {
    border-color: var(--blue);
    background: rgba(45,104,203,.06);
    color: var(--blue);
}

@media (max-width: 960px) {
    .about-brand-hero__grid,
    .about-brand-intro,
    .about-brand-directions,
    .about-brand-cta {
        grid-template-columns: 1fr;
    }

    .about-brand-hero__visual {
        min-height: 260px;
    }

    .about-brand-values,
    .about-brand-direction-grid {
        grid-template-columns: 1fr;
    }

    .about-brand-cta__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .about-brand-hero {
        padding: 34px 0 48px;
    }

    .about-brand-hero__content h1 {
        font-size: 42px;
    }

    .about-brand-hero__lead {
        font-size: 17px;
    }

    .about-brand-intro,
    .about-brand-section--blue,
    .about-brand-cta {
        padding: 28px 22px;
    }

    .about-brand-section {
        margin-top: 46px;
    }

    .about-brand-logo-card {
        padding: 30px;
        min-height: 190px;
    }

    .about-brand-hero__actions,
    .about-brand-cta__actions {
        flex-direction: column;
    }

    .about-brand-hero__actions .btn,
    .about-brand-cta__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   About brand fixes
   ========================================================================== */

.about-brand-hero {
    position: relative;
    overflow: hidden;
}

.about-brand-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .45;
    pointer-events: none;
}

.about-brand-hero .container {
    position: relative;
    z-index: 2;
}

/* Светлые хлебные крошки на синем фоне */
.about-brand-hero .breadcrumb,
.about-brand-hero ol.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 42px;
    padding: 0;
    background: transparent !important;
    color: rgba(255,255,255,.72) !important;
}

.about-brand-hero .breadcrumb li,
.about-brand-hero .breadcrumb-item {
    color: rgba(255,255,255,.72) !important;
}

.about-brand-hero .breadcrumb a,
.about-brand-hero .breadcrumb-item a {
    color: rgba(255,255,255,.82) !important;
    text-decoration: none;
}

.about-brand-hero .breadcrumb a:hover,
.about-brand-hero .breadcrumb-item a:hover {
    color: #fff !important;
}

/* Если разделитель в крошках тёмный */
.about-brand-hero .breadcrumb li::after,
.about-brand-hero .breadcrumb-item::after,
.about-brand-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,.46) !important;
}

/* Нормальные кнопки, не зависят от глобальных .btn */
.about-brand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 6px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.about-brand-btn--primary {
    border: 1px solid #fff;
    background: #fff;
    color: var(--blue);
}

.about-brand-btn--primary:hover {
    background: rgba(255,255,255,.92);
    color: var(--blue);
    box-shadow: 0 14px 28px rgba(0,0,0,.16);
    transform: translateY(-1px);
}

.about-brand-btn--light {
    border: 1px solid rgba(255,255,255,.42);
    background: rgba(255,255,255,.1);
    color: #fff;
}

.about-brand-btn--light:hover {
    border-color: rgba(255,255,255,.72);
    background: rgba(255,255,255,.18);
    color: #fff;
    transform: translateY(-1px);
}

.about-brand-btn--outline {
    border: 1px solid rgba(45,104,203,.34);
    background: #fff;
    color: var(--blue);
}

.about-brand-btn--outline:hover {
    border-color: var(--blue);
    background: rgba(45,104,203,.06);
    color: var(--blue);
    transform: translateY(-1px);
}

/* Карточка с настоящим логотипом */
.about-brand-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 230px;
    padding: 48px;
}

.about-brand-logo-card__img {
    display: block;
    width: min(320px, 82%);
    height: auto;
    filter: drop-shadow(0 18px 34px rgba(0,0,0,.18));
}

/* Убираем старую текстовую стилизацию, если где-то осталась */
.about-brand-logo-card span,
.about-brand-logo-card small {
    display: none !important;
}

.about-brand-hero__actions,
.about-brand-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-brand-cta .about-brand-btn--primary {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.about-brand-cta .about-brand-btn--primary:hover {
    background: #2459AF;
    border-color: #2459AF;
    color: #fff;
}

@media (max-width: 640px) {
    .about-brand-hero .breadcrumb,
    .about-brand-hero ol.breadcrumb {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        scrollbar-width: none;
        margin-bottom: 30px;
    }

    .about-brand-hero .breadcrumb::-webkit-scrollbar,
    .about-brand-hero ol.breadcrumb::-webkit-scrollbar {
        display: none;
    }

    .about-brand-btn {
        width: 100%;
    }

    .about-brand-logo-card {
        min-height: 180px;
        padding: 34px;
    }

    .about-brand-logo-card__img {
        width: min(260px, 86%);
    }
}

/* ==========================================================================
   Mobile catalog accordion menu
   ========================================================================== */

.mobile-menu-list {
    gap: 9px;
}

.mobile-menu-link,
.mobile-menu-group {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.mobile-menu-link {
    display: block;
    padding: 13px 14px !important;
    color: var(--text);
}

.mobile-menu-link strong {
    display: block;
    color: var(--blue);
    font-weight: 600;
    line-height: 1.3;
}

.mobile-menu-link small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.mobile-menu-link--simple {
    color: var(--blue);
    font-weight: 600;
}

.mobile-menu-group {
    overflow: hidden;
}

.mobile-menu-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: stretch;
}

.mobile-menu-main-link {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 14px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.mobile-menu-main-link strong {
    display: block;
    min-width: 0;
    color: var(--blue);
    font-weight: 600;
    line-height: 1.3;
}

.mobile-submenu-toggle {
    position: relative;
    width: 48px;
    min-height: 48px;
    border: 0;
    border-left: 1px solid var(--line);
    background: #F8FAFC;
    cursor: pointer;
}

.mobile-submenu-toggle::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    transform: translate(-50%, -62%) rotate(45deg);
    transition: transform .18s ease;
}

.mobile-menu-group.open .mobile-submenu-toggle::before {
    transform: translate(-50%, -38%) rotate(225deg);
}

.mobile-submenu {
    display: grid;
    gap: 0;
    padding: 4px 0 8px;
    border-top: 1px solid var(--line);
    background: #F8FAFC;
}

.mobile-submenu[hidden] {
    display: none !important;
}

.mobile-submenu-link {
    display: block;
    margin: 0 8px;
    padding: 11px 12px !important;
    border: 0 !important;
    border-radius: var(--radius) !important;
    background: transparent !important;
    color: var(--text);
}

.mobile-submenu-link:hover {
    background: #ffffff !important;
}

.mobile-submenu-link span {
    display: block;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.28;
    font-weight: 600;
}

.mobile-submenu-link small {
    display: -webkit-box;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 1024px) {
    .mobile-panel {
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 700px) {
    .mobile-panel {
        max-height: calc(100vh - 58px);
    }

    .mobile-menu-main-link {
        padding: 13px 12px !important;
    }

    .mobile-submenu-toggle {
        width: 46px;
        min-height: 46px;
    }
}

/* ==========================================================================
   Mobile hidden scrollbars
   ========================================================================== */

.mobile-panel,
.mobile-menu-list,
.mobile-submenu,
.product-grid,
.tab-buttons {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mobile-panel::-webkit-scrollbar,
.mobile-menu-list::-webkit-scrollbar,
.mobile-submenu::-webkit-scrollbar, 
.product-grid::-webkit-scrollbar,
.tab-buttons::-webkit-scrollbar,
.tab-buttons::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}


/* ==========================================================================
   Promo pages
   ========================================================================== */

.promo-page {
    background: #ffffff;
}

.promo-hero {
    position: relative;
    overflow: hidden;
    padding: 58px 0 72px;
    background:
        radial-gradient(circle at 82% 18%, rgba(255,255,255,.18), transparent 34%),
        linear-gradient(135deg, #2D68CB 0%, #173B78 100%);
    color: #ffffff;
}

.promo-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .38;
    pointer-events: none;
}

.promo-hero .container {
    position: relative;
    z-index: 2;
}

.promo-hero .breadcrumbs,
.promo-hero .bx-breadcrumb {
    color: rgba(255,255,255,.72);
}

.promo-hero .breadcrumbs a,
.promo-hero .bx-breadcrumb a {
    color: rgba(255,255,255,.86);
}

.promo-hero .breadcrumbs span,
.promo-hero .bx-breadcrumb span {
    color: rgba(255,255,255,.62);
}

.promo-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
    gap: 56px;
    align-items: center;
}

.promo-hero h1 {
    max-width: 820px;
    color: #ffffff;
    font-size: clamp(40px, 4vw, 68px);
    line-height: 1;
    letter-spacing: -.055em;
}

.promo-hero__lead {
    max-width: 760px;
    margin-top: 24px;
    color: rgba(255,255,255,.84);
    font-size: 20px;
    line-height: 1.62;
}

.promo-hero__lead p + p {
    margin-top: 12px;
}

.promo-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.promo-hero__visual {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: var(--radius);
    background: rgba(255,255,255,.08);
    box-shadow: 0 34px 80px rgba(0,0,0,.18);
}

.promo-hero__visual img {
    display: block;
    width: 100%;
    height: auto;
}

.promo-hero__placeholder {
    min-height: 260px;
    display: grid;
    place-items: center;
    text-align: center;
}

.promo-hero__placeholder strong {
    display: block;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 64px;
    line-height: 1;
    font-style: italic;
}

.promo-hero__placeholder span {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.78);
    letter-spacing: .12em;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.promo-btn--primary {
    background: var(--blue);
    border-color: var(--blue);
    color: #ffffff;
}

.promo-btn--primary:hover {
    background: #2459AF;
    border-color: #2459AF;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(45,104,203,.22);
    transform: translateY(-1px);
}

.promo-btn--light {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--blue);
}

.promo-btn--light:hover {
    background: rgba(255,255,255,.92);
    color: var(--blue);
    transform: translateY(-1px);
}

.promo-content-section {
    background: var(--soft);
}

.promo-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.promo-main {
    display: grid;
    gap: 28px;
    min-width: 0;
}

.promo-article,
.promo-faq-section,
.promo-legal,
.promo-info-card,
.promo-certificate,
.promo-cta-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15,23,42,.05);
}

.promo-article {
    padding: 38px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.72;
}

.promo-article h2,
.promo-article h3 {
    margin: 30px 0 14px;
    color: var(--ink);
}

.promo-article h2:first-child,
.promo-article h3:first-child {
    margin-top: 0;
}

.promo-article p {
    margin: 0 0 16px;
}

.promo-article p:last-child {
    margin-bottom: 0;
}

.promo-article ul,
.promo-article ol {
    margin: 18px 0 22px;
    padding-left: 24px;
}

.promo-article li {
    margin-bottom: 8px;
}

.promo-faq-section {
    padding: 34px;
}

.promo-faq {
    display: grid;
    gap: 10px;
}

.promo-faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    overflow: hidden;
}

.promo-faq-question {
    position: relative;
    width: 100%;
    min-height: 62px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border: 0;
    background: #ffffff;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
}

.promo-faq-question span {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 500;
}

.promo-faq-question i {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: var(--radius);
    background: #EAF2FF;
}

.promo-faq-question i::before,
.promo-faq-question i::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    background: var(--blue);
    transform: translate(-50%, -50%);
}

.promo-faq-question i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.promo-faq-item.open .promo-faq-question i::after {
    opacity: 0;
}

.promo-faq-answer {
    padding: 0 18px 18px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.promo-faq-answer p + p {
    margin-top: 12px;
}

.promo-legal {
    padding: 24px 28px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.promo-legal p + p {
    margin-top: 12px;
}

.promo-sidebar {
    position: sticky;
    top: 160px;
    display: grid;
    gap: 16px;
}

.promo-info-card,
.promo-cta-card {
    padding: 24px;
}

.promo-info-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.promo-info-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 500;
}

.promo-info-card p,
.promo-cta-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.promo-info-card--accent {
    background:
        radial-gradient(circle at 92% 0, rgba(45,104,203,.12), transparent 34%),
        #ffffff;
}

.promo-certificate {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 18px;
    color: inherit;
    text-decoration: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.promo-certificate:hover {
    border-color: rgba(45,104,203,.34);
    box-shadow: 0 16px 34px rgba(15,23,42,.1);
    transform: translateY(-2px);
}

.promo-certificate span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--blue);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.promo-certificate strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
}

.promo-certificate small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
}

.promo-cta-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.promo-cta-card .promo-btn {
    width: 100%;
    margin-top: 18px;
}

@media (max-width: 1024px) {
    .promo-hero__grid,
    .promo-content-layout {
        grid-template-columns: 1fr;
    }

    .promo-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promo-cta-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .promo-hero {
        padding: 36px 0 48px;
    }

    .promo-hero h1 {
        font-size: 36px;
    }

    .promo-hero__lead {
        font-size: 16px;
    }

    .promo-hero__actions {
        flex-direction: column;
    }

    .promo-btn {
        width: 100%;
    }

    .promo-article,
    .promo-faq-section {
        padding: 24px 20px;
    }

    .promo-sidebar {
        grid-template-columns: 1fr;
    }

    .promo-info-card strong {
        font-size: 24px;
    }
}

/* ==========================================================================
   Home promo banner
   ========================================================================== */

.home-promo-banner-section {
    padding: 0 0 64px;
    background: var(--soft);
}

.home-promo-banner {
    display: block;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
    transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}

.home-promo-banner:hover {
    border-color: rgba(45, 104, 203, .28);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .1);
    transform: translateY(-2px);
}

.home-promo-banner--editable {
    position: relative;
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 28px 44px;
    background-image:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .92) 0%,
            rgba(255, 255, 255, .88) 42%,
            rgba(255, 255, 255, .42) 68%,
            rgba(255, 255, 255, .08) 100%
        ),
        var(--home-promo-banner-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-promo-banner__content {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.home-promo-banner__title {
    display: block;
    color: #5F6673;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(24px, 2.5vw, 24px);
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.home-promo-banner__accent {
    color: var(--blue);
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .home-promo-banner--editable {
        min-height: 118px;
        padding: 24px 30px;
        background-image:
            linear-gradient(
                90deg,
                rgba(255, 255, 255, .94) 0%,
                rgba(255, 255, 255, .86) 58%,
                rgba(255, 255, 255, .24) 100%
            ),
            var(--home-promo-banner-bg);
            background-position: 96% center;
    }

    .home-promo-banner__title {
        max-width: 80%;
        font-size: 23px;
    }
}

@media (max-width: 700px) {
    .home-promo-banner-section {
        padding: 0 0 42px;
    }

    .home-promo-banner--editable {
        min-height: 104px;
        padding: 20px 22px;
        background-position: 94% center;
    }

    .home-promo-banner__title {
        max-width: 70%;
        font-size: 19px;
        line-height: 1.16;
    }

    .home-promo-banner__accent {
        display: block;
        margin-top: 2px;
    }
}

@media (max-width: 420px) {
    .home-promo-banner--editable {
        min-height: 98px;
        padding: 18px 18px;
        background-position: 96% center;
    }

    .home-promo-banner__title {
        font-size: 17px;
    }
}

/* ==========================================================================
   Footer socials
   ========================================================================== */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.footer-socials__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    opacity: .9;
    transition:
        background .18s ease,
        border-color .18s ease,
        opacity .18s ease,
        transform .18s ease;
}

.footer-socials__link:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
    opacity: 1;
    transform: translateY(-1px);
}

.footer-socials__link svg {
    display: block;
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.footer-socials__link--max span {
    font-size: 10px;
    letter-spacing: .03em;
}

.footer-socials__link--vk span {
    font-size: 11px;
}

.footer-socials__link--rutube span {
    font-size: 12px;
}

/* ==========================================================================
   Category list grid - direction compact
   ========================================================================== */

.category-list-grid--direction-compact {
    gap: 22px;
}

@media (min-width: 1180px) {
    .category-list-grid--direction-compact {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.category-list-grid--direction-compact .category-tile {
    padding: 18px;
}

.category-list-grid--direction-compact .category-tile img {
    max-height: 230px;
    object-fit: contain;
}

.category-list-grid--direction-compact .category-series__name {
    font-size: 21px;
    line-height: 1.25;
}

.category-list-grid--direction-compact .category-series__description {
    font-size: 15px;
    line-height: 1.45;
}

@media (max-width: 1179px) and (min-width: 900px) {
    .category-list-grid--direction-compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 899px) and (min-width: 620px) {
    .category-list-grid--direction-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 619px) {
    .category-list-grid--direction-compact {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Contacts page
   ========================================================================== */

.contacts-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
    margin-top: 28px;
}

.contacts-info-card {
    margin-top: 0 !important;
}

.contacts-info-card h2 {
    margin: 0 0 20px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 500;
    color: var(--ink);
}

.contacts-info-card p {
    margin: 0 0 18px;
}

.contacts-info-card p:last-child {
    margin-bottom: 0;
}

.contacts-info-card a {
    color: var(--blue);
    text-decoration: none;
}

.contacts-info-card a:hover {
    text-decoration: underline;
}

.contacts-map-card {
    overflow: hidden;
    min-height: 440px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #eef3f8;
    box-shadow: 0 4px 18px rgba(15, 23, 42, .04);
}

.contacts-map-card iframe {
    display: block;
    width: 100%;
    height: 440px;
    border: 0;
}

@media (max-width: 900px) {
    .contacts-layout {
        grid-template-columns: 1fr;
    }

    .contacts-map-card,
    .contacts-map-card iframe {
        min-height: 360px;
        height: 360px;
    }
}

@media (max-width: 560px) {
    .contacts-map-card,
    .contacts-map-card iframe {
        min-height: 320px;
        height: 320px;
    }
}


/* ==========================================================================
   Services page
   ========================================================================== */

.service-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: stretch;
    margin-top: 28px;
}

.service-hero-card__content,
.service-hero-card__contacts,
.service-card,
.service-benefit,
.service-cta {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, .04);
}

.service-hero-card__content {
    padding: 28px;
}

.service-hero-card__content h2,
.service-hero-card__contacts h3,
.service-card h3,
.service-benefit h3,
.service-cta h2 {
    margin: 0 0 14px;
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.25;
    color: var(--ink);
}

.service-hero-card__content h2,
.service-cta h2 {
    font-size: clamp(26px, 2vw, 34px);
    font-weight: 400;
    letter-spacing: -.02em;
}

.service-hero-card__content p,
.service-hero-card__contacts p,
.service-card p,
.service-benefit p,
.service-cta p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.62;
}

.service-hero-card__contacts {
    padding: 28px;
}

.service-hero-card__contacts h3 {
    font-size: 22px;
    font-weight: 500;
}

.service-hero-card__contacts p {
    margin-bottom: 16px;
}

.service-hero-card__contacts p:last-child {
    margin-bottom: 0;
}

.service-image {
    margin: 25px 0 8px;
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.service-image img {
    display: block;
    width: 100%;
    height: auto;
}

.service-hero-card__contacts a {
    color: var(--blue);
    text-decoration: none;
}

.service-hero-card__contacts a:hover {
    text-decoration: underline;
}

.service-section {
    padding-top: 56px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    padding: 26px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 500;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-benefit {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    padding: 24px;
}

.service-benefit__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: rgba(45, 104, 203, .1);
    color: var(--blue);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.service-benefit h3 {
    font-size: 20px;
    font-weight: 500;
}

.service-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: 34px;
    padding: 30px 34px;
    background: linear-gradient(135deg, rgba(45, 104, 203, .08), #fff);
}

.service-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(45, 104, 203, .26);
    border-radius: 6px;
    background: #fff;
    color: var(--blue);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    transition:
        background .18s ease,
        color .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.btn-secondary:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 12px 24px rgba(45, 104, 203, .18);
    transform: translateY(-1px);
}

@media (max-width: 1040px) {
    .service-hero-card,
    .service-cta {
        grid-template-columns: 1fr;
    }

    .service-cta__actions {
        justify-content: flex-start;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .service-hero-card__content,
    .service-hero-card__contacts,
    .service-card,
    .service-benefit,
    .service-cta {
        padding: 22px;
    }

    .service-grid,
    .service-benefits {
        grid-template-columns: 1fr;
    }

    .service-benefit {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 14px;
    }

    .service-benefit__number {
        width: 38px;
        height: 38px;
    }

    .service-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .service-cta__actions .btn,
    .service-cta__actions .btn-secondary {
        width: 100%;
    }
}


/* ==========================================================================
   Auth pages
   ========================================================================== */


.auth-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 42px;
    align-items: start;
}

.auth-content h1 {
    margin: 0 0 18px;
}

.auth-note,
.auth-card,
.personal-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, .04);
}

.auth-note {
    margin-top: 30px;
    padding: 26px;
}

.auth-note h3,
.personal-card h2 {
    margin: 0 0 12px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 500;
    color: var(--ink);
}

.auth-note p,
.personal-card p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.auth-note p:last-child,
.personal-card p:last-child {
    margin-bottom: 0;
}

.auth-card {
    padding: 30px;
}

.auth-form {
    display: grid;
    gap: 18px;
}

.auth-field {
    display: grid;
    gap: 8px;
}

.auth-field span,
.auth-checkbox span {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.4;
}

.auth-field input {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font-size: 16px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.auth-field input:focus {
    border-color: rgba(45, 104, 203, .65);
    box-shadow: 0 0 0 3px rgba(45, 104, 203, .12);
}

.auth-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.auth-checkbox input {
    margin-top: 4px;
}

.auth-submit {
    width: 100%;
    margin-top: 4px;
}

.auth-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    font-size: 15px;
}

.auth-links a,
.personal-card a:not(.btn) {
    color: var(--blue);
    text-decoration: none;
}

.auth-links a:hover,
.personal-card a:not(.btn):hover {
    text-decoration: underline;
}

.auth-message {
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.5;
}

.auth-message p {
    margin: 0;
}

.auth-message p + p {
    margin-top: 8px;
}

.auth-message--error {
    border: 1px solid rgba(220, 38, 38, .25);
    background: rgba(220, 38, 38, .06);
    color: #991b1b;
}

.auth-message--success {
    margin-top: 24px;
    border: 1px solid rgba(22, 163, 74, .25);
    background: rgba(22, 163, 74, .07);
    color: #166534;
}

.personal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.personal-card {
    padding: 28px;
}

.personal-card--main {
    grid-column: span 2;
}

@media (max-width: 900px) {
    .auth-layout {
        grid-template-columns: 1fr;
    }

    .personal-grid {
        grid-template-columns: 1fr;
    }

    .personal-card--main {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    .auth-card,
    .auth-note,
    .personal-card {
        padding: 22px;
    }
}


.header-auth {
    display: flex;
    align-items: center;
    gap: 12px;
    width:var(--container);
    justify-content: flex-end; 
    min-height: 20px;
}

.header-auth-bg {
    background: var(--blue-deep);
}

.header-auth__link {
    color: var(--soft);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    transition: color .18s ease;
}

.header-auth__link:hover {
    color: var(--line);
}

.header-auth__link--accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 6px;
    background: var(--blue);
    color: #fff;
}

.header-auth__link--accent:hover {
    color: #fff;
    background: #2459af;
}

@media (max-width: 760px) {
    .header-auth {
        display: none;
    }
}



.header-user {
    position: relative;
    display: flex;
    align-items: center;
    /* margin-left: 14px; */
    z-index: 80;
}

.header-user__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    background: rgba(255, 255, 255, .32);
    color: #fff;
    cursor: pointer;
    transition:
        background .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.header-user__trigger:hover,
.header-user.is-open .header-user__trigger {
    background: rgba(255, 255, 255, .22);
    border-color: rgba(255, 255, 255, .72);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
    transform: translateY(-1px);
}

.header-user__trigger--authorized {
    background: #fff;
    color: var(--blue);
    border-color: #fff;
}

.header-user__trigger--authorized:hover,
.header-user.is-open .header-user__trigger--authorized {
    background: #fff;
    color: var(--blue);
}

.header-user__icon {
    display: block;
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.header-user__dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 318px;
    padding: 18px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition:
        opacity .18s ease,
        visibility .18s ease,
        transform .18s ease;
}

.header-user__dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 13px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-left: 1px solid rgba(15, 23, 42, .08);
    border-top: 1px solid rgba(15, 23, 42, .08);
    transform: rotate(45deg);
}

.header-user.is-open .header-user__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.header-login-form {
    display: grid;
    gap: 12px;
}

.header-login-form__title {
    margin-bottom: 2px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--ink);
}

.header-login-form__field {
    display: grid;
    gap: 6px;
}

.header-login-form__field span,
.header-login-form__remember,
.header-login-form__bottom {
    font-size: 13px;
    line-height: 1.35;
    color: var(--muted);
}

.header-login-form__field input {
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    outline: none;
    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.header-login-form__field input:focus {
    border-color: rgba(45, 104, 203, .65);
    box-shadow: 0 0 0 3px rgba(45, 104, 203, .12);
}

.header-login-form__remember {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.header-login-form__remember input {
    margin-top: 2px;
}

.header-login-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    width: 100%;
    padding: 0 16px;
    border: 0;
    border-radius: 6px;
    background: var(--blue);
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition:
        background .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.header-login-form__submit:hover {
    background: #2459af;
    box-shadow: 0 10px 22px rgba(45, 104, 203, .2);
    transform: translateY(-1px);
}

.header-login-form__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    padding-top: 4px;
}

.header-login-form__bottom a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
}

.header-login-form__bottom a:hover {
    text-decoration: underline;
}

.header-user-profile {
    display: grid;
    gap: 14px;
}

.header-user-profile__top {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.header-user-profile__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(45, 104, 203, .1);
    color: var(--blue);
}

.header-user-profile__avatar svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.header-user-profile__name {
    overflow: hidden;
    color: var(--ink);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.header-user-profile__status {
    margin-top: 3px;
    color: var(--blue);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
}

.header-user-profile__email {
    overflow: hidden;
    padding: 10px 12px;
    border-radius: 6px;
    background: #f4f7fb;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.header-user-profile__actions {
    display: grid;
    grid-template-columns: 1fr 88px;
    gap: 10px;
}

.header-user-profile__link,
.header-user-profile__logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 6px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
}

.header-user-profile__link {
    background: var(--blue);
    color: #fff;
}

.header-user-profile__link:hover {
    background: #2459af;
    color: #fff;
}

.header-user-profile__logout {
    border: 1px solid rgba(45, 104, 203, .22);
    background: #fff;
    color: var(--blue);
}

.header-user-profile__logout:hover {
    background: rgba(45, 104, 203, .06);
    color: var(--blue);
}

/* Чтобы выпадающее окно не обрезалось шапкой */
.site-header,
.header,
.header-main,
.header-inner,
.header-top,
.header-actions {
    overflow: visible;
}

@media (max-width: 760px) {
    .header-user {
        margin-left: 10px;
    }

    .header-user__trigger {
        width: 36px;
        height: 36px;
    }

    .header-user__dropdown {
        position: fixed;
        top: 76px;
        right: 16px;
        width: calc(100vw - 32px);
        max-width: 340px;
    }

    .header-user__dropdown::before {
        display: none;
    }
}

.header-user__initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .02em;
    color: currentColor;
    text-transform: uppercase;
}

.header-user::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    width: 340px;
    height: 18px;
}

.header-user.is-open::after {
    display: block;
}

.header-user__dropdown {
    padding-top: 22px;
}

.header-user__close {
    position: absolute;
    top: 8px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #7b8794;
    font-family: Arial, sans-serif;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition:
        background .18s ease,
        color .18s ease;
}

.header-user__close:hover {
    background: #f1f4f8;
    color: var(--ink);
}

.mobile-header__user {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-header__user-icon {
    display: block;
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-header__user-initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.auth-phone-vk {
    position: relative;
}

.auth-phone-vk .iti {
    width: 100%;
}

.auth-phone-vk .iti__tel-input {
    width: 100%;
    height: 42px;
    border: 1px solid #dfe7f3;
    border-radius: 6px;
    background: #fff;
    color: #17213c;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
}

.auth-phone-vk .iti__tel-input:focus {
    border-color: #2D68CB;
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 104, 203, .12);
}

.auth-phone-vk .iti__selected-country {
    border-right: 1px solid #e3e9f4;
    background: #f8fafd;
    border-radius: 6px 0 0 6px;
}

.auth-phone-vk .iti__country-container {
    border-radius: 6px 0 0 6px;
}

.auth-phone-vk .iti__dropdown-content {
    border-radius: 8px;
    border-color: #dfe7f3;
    box-shadow: 0 16px 36px rgba(26, 47, 84, .16);
}

.auth-phone-vk .iti__search-input {
    border-radius: 6px;
    border: 1px solid #dfe7f3;
    font-family: inherit;
    font-size: 14px;
}

.auth-phone-vk__error {
    margin-top: 6px;
    color: #c93333;
    font-size: 13px;
    line-height: 1.35;
}

.auth-input--error {
    border-color: #e06464 !important;
    box-shadow: 0 0 0 3px rgba(224, 100, 100, .12) !important;
}


/* ==========================================================================
   Widget button
   ========================================================================== */

   @media (max-width: 700px) {
    .b24-widget-button-position-bottom-right {
        right: 14px !important;
        bottom: 14px !important;
    }

    .b24-widget-button-wrapper {
        width: 46px !important;
        height: 46px !important;
    }

    .b24-widget-button-inner-container,
    .b24-widget-button-social,
    .b24-widget-button-inner-mask,
    .b24-widget-button-pulse,
    .b24-widget-button-pulse-animate {
        width: 46px !important;
        height: 46px !important;
    }

    .b24-widget-button-icon-container {
        width: 46px !important;
        height: 46px !important;
    }

    .b24-widget-button-icon-container svg,
    .b24-widget-button-icon-container img {
        max-width: 22px !important;
        max-height: 22px !important;
    }

    .b24-widget-button-pulse,
    .b24-widget-button-pulse-animate {
        opacity: .35 !important;
    }
}


/* html,
body,
button,
input,
textarea,
select,
* {
    font-family: Arial, Helvetica, sans-serif !important;
}
*/
/* .desktop-header {
     letter-spacing: 0.03em;
} 

.desktop-header, .hero-copy h2 {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight:bold;
}

.top-links {
    font-size: 15px;
} */





html,
body,
button, 
input,
textarea,
select, *:not(.fa) {
    font-family:  "Golos Text", sans-serif!important;    
}

.slider-arrow {
    font-family: "Fira Sans", sans-serif!important;    
    /* font-weight: 900 !important; */
}

h2, h2 * {       
    font-weight:500!important;
}



 /* h2, h2 * {   
    font-family: "Oswald", sans-serif!important;
    font-weight:800!important;
}

.desktop-header {   
    font-weight:600;
}

.catalog-trigger, .hero-slide-button {
      font-family: "Oswald", sans-serif!important;
      font-weight:500;
       text-transform: uppercase;
       letter-spacing: 0.05em;
} */





.new-slider {
    width: 100%;    
    height: 350px;
    background-image: url("/upload/new_slider/desktop.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    /* background-color: ; */
}



p.p {
    padding-bottom:15px;
}

p.p + ul {
    margin-top:0;
}


/* Bitrix24 widget — mobile and desktop */
@media (max-width: 700px) {

    /* Положение */
    .b24-widget-button-wrapper.b24-widget-button-position-bottom-right {
        right: 12px !important;
        bottom: 12px !important;
    }

    /*
     * Не уменьшаем весь виджет через scale(),
     * иначе вместе с кнопкой уменьшается и иконка.
     */
    .b24-widget-button-inner-container,
    .bx-touch .b24-widget-button-inner-container {
        transform: none !important;
        -webkit-transform: none !important;
    }

    /* Основная область кнопки */
    .b24-widget-button-block {
        width: 52px !important;
        height: 52px !important;        
    }

    .b24-widget-button-inner-block {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        border-radius: 50% !important;
    }

    /* Убираем полупрозрачный ореол Bitrix */
    .b24-widget-button-inner-mask {
        display: none !important;
    }

    /* Убираем пульсирующее внешнее кольцо */
    .b24-widget-button-pulse {
        display: none !important;
    }

    /*
     * Иконка внутри кнопки.
     * В Bitrix по умолчанию background-size: 43%.
     * На маленькой кнопке делаем её визуально крупнее.
     */
    .b24-widget-button-inner-item {
        background-size: 55% !important;
        top: 3px !important;  
        /* border:  1px solid white!important; */
        /* outline: 1px solid white!important; */
    }

    /* Если конкретная иконка вставлена отдельным элементом */
    .b24-widget-button-icon {
        transform: scale(1.15);
        -webkit-transform: scale(1.15);
    }
}

@media (min-width: 701px) {
    .b24-widget-button-pulse {
        border-color: rgba(255, 255, 255, .75) !important;
    }
}


    .b24-widget-button-inner-block,
    .b24-widget-button-inner-mask,
    .b24-widget-button-callback,
    .b24-widget-button-whatsapp,
    .b24-widget-button-crmform,
    .b24-widget-button-openline_livechat {
        background-color: #3f7ddd !important;
    }

    /* Фон экрана подтверждения */
#partnerOrderB24 .b24-form-state-container .b24-form-success {
    background-color: #2D68CB !important;
}

/* Текст подтверждения */
#partnerOrderB24 .b24-form-success .b24-form-state-text,
#partnerOrderB24 .b24-form-success .b24-form-state-text p {
    color: #FFFFFF !important;
}

/* Белый круг и синяя галочка */
#partnerOrderB24 .b24-form-success-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 169 169'%3E%3Ccircle cx='84.5' cy='84.5' r='84.5' fill='%23000' fill-opacity='.08'/%3E%3Ccircle cx='84.5' cy='84.5' r='65.5' fill='%23fff'/%3E%3Cpath d='M61 85l16 16 32-33' fill='none' stroke='%232D68CB' stroke-width='9'/%3E%3C/svg%3E") !important;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.bubble__ROz2b.__own__xLVGh .wrapper__WxcLb {
    background: linear-gradient(to bottom,transparent -300%,var(--jv-blue-60) 100%)!important;
}