/* ==============================================
   ru.repair — Main Stylesheet
   ============================================== */

/* ---- VARIABLES ---- */
:root {
    --bg:          #080e1c;
    --bg2:         #0b1527;
    --bg3:         #101e38;
    --bg-light:    #f5f7fa;
    --accent:      #1456FF;
    --accent-hover:#0e44d4;
    --text:        #ffffff;
    --text-muted:  #a8bdd4;
    --border:      rgba(255, 255, 255, 0.1);
    --font-head:   "Space Grotesk", "Arial", "Helvetica Neue", sans-serif;
    --font-body:   "Inter", "Arial", sans-serif;
    --container:   1280px;
    --radius:      6px;
    --tr:          0.25s ease;
    --accent-glow: 0 0 20px rgba(20, 86, 255, 0.35);
    --tr-scale:    0.4s ease;
    --tr-lift:     0.3s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- FOCUS-VISIBLE ---- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ---- SKIP-TO-CONTENT ---- */
.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    border-radius: 0 0 var(--radius) var(--radius);
}
.skip-to-content:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

/* ---- TOUCH-ACTION ---- */
a, button, input, textarea, select, [role="button"] {
    touch-action: manipulation;
}

.form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ---- CONTAINER ---- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 40px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: background var(--tr), color var(--tr), border-color var(--tr), transform var(--tr), box-shadow var(--tr);
    white-space: nowrap;
}
.btn--primary {
    background: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
}
.btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
}
.btn--primary:active {
    transform: translateY(0);
    transition: background 0.1s, color 0.1s, border-color 0.1s, transform 0.1s, box-shadow 0.1s;
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
    border-color: #ffffff;
    transform: translateY(-2px);
}
.btn--outline:active {
    transform: translateY(0);
    transition: background 0.1s, color 0.1s, border-color 0.1s, transform 0.1s, box-shadow 0.1s;
}

.btn--filled {
    background: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
}
.btn--filled:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
}
.btn--filled:active {
    transform: translateY(0);
    transition: background 0.1s, color 0.1s, border-color 0.1s, transform 0.1s, box-shadow 0.1s;
}

.btn--light {
    background: #fff;
    color: #0d1526;
    border: 2px solid #fff;
}
.btn--light:hover {
    background: rgba(255,255,255,0.92);
    border-color: rgba(255,255,255,0.92);
    transform: translateY(-2px);
}
.btn--light:active {
    transform: translateY(0);
    transition: background 0.1s, color 0.1s, border-color 0.1s, transform 0.1s, box-shadow 0.1s;
}

.btn--dark {
    background: #091327;
    color: #fff;
    border: 2px solid #091327;
}
.btn--dark:hover {
    background: #0f1d38;
    border-color: #0f1d38;
    transform: translateY(-2px);
}
.btn--dark:active {
    transform: translateY(0);
    transition: background 0.1s, color 0.1s, border-color 0.1s, transform 0.1s, box-shadow 0.1s;
}

.btn--lg { padding: 16px 36px; font-size: 15px; }
.btn--hero { padding: 16px 40px; font-size: 15px; margin-top: 8px; }

/* ---- SECTION TITLE ---- */
.section-title {
    font-family: var(--font-head);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

/* ---- FORM ELEMENTS ---- */
.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color var(--tr);
    outline: none;
    resize: vertical;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { border-color: rgba(255,255,255,0.4); }
.form-input--textarea { min-height: 90px; }

.form-agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.4;
}
.form-agree input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; }
.form-agree a { color: var(--text-muted); text-decoration: underline; }
.form-agree a:hover { color: var(--text); }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transition: background var(--tr), box-shadow var(--tr);
}
.header.scrolled {
    background: rgba(8, 14, 28, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.header.scrolled .header__inner {
    height: 54px;
}
.header.scrolled .logo__img {
    height: 42px;
}
.header__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: height 0.3s ease;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo__img { height: 56px; width: auto; display: block; transition: height 0.3s ease; }

.header__center {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding-left: 20px;
}
.header__equip-btn {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: border-color var(--tr), background var(--tr), transform var(--tr);
}
.header__equip-btn:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    transform: translateY(-1px);
}
.header__mobile-contacts { display: none; }

.header__right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}
.header__email {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    transition: color var(--tr);
}
.header__email:hover { color: #fff; }
.header__phones {
    display: flex;
    align-items: center;
    font-size: 18px;
}
.header__max {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity var(--tr);
}
.header__max:hover { opacity: 0.8; }
.header__max img { display: block; width: 28px; height: 28px; border-radius: 6px; }

/* Бургер-кнопка */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.burger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr);
  transform-origin: center;
}
/* Трансформация в крестик */
.burger--open .burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger--open .burger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger--open .burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Выпадающая панель */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 12px;
  right: 12px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 0;
  z-index: 999;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Пункты меню */
.mobile-menu__nav { list-style: none; padding: 0; margin: 0; }
.mobile-menu__item {
  opacity: 0;
  transform: translateY(-6px);
  animation: none;
}
.mobile-menu.open .mobile-menu__item {
  animation: menuItemIn 0.3s ease forwards;
}
.mobile-menu.open .mobile-menu__item:nth-child(1) { animation-delay: 0ms; }
.mobile-menu.open .mobile-menu__item:nth-child(2) { animation-delay: 50ms; }
.mobile-menu.open .mobile-menu__item:nth-child(3) { animation-delay: 100ms; }
.mobile-menu.open .mobile-menu__item:nth-child(4) { animation-delay: 150ms; }
.mobile-menu.open .mobile-menu__item:nth-child(5) { animation-delay: 200ms; }
.mobile-menu.open .mobile-menu__item:nth-child(6) { animation-delay: 250ms; }
.mobile-menu.open .mobile-menu__item:nth-child(7) { animation-delay: 300ms; }
.mobile-menu.open .mobile-menu__item:nth-child(8) { animation-delay: 350ms; }
@keyframes menuItemIn {
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu__link {
  display: block;
  padding: 12px 20px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--tr), background var(--tr);
}
.mobile-menu__link:hover { color: var(--accent); background: rgba(255,255,255,0.04); }
.mobile-menu__link[aria-current="page"] {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

/* CTA кнопка в меню */
.mobile-menu__cta {
  padding: 12px 20px 4px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* body.menu-open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    overflow: hidden;
}
.hero__media {
    position: absolute;
    inset: 0;
}
.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(8, 14, 28, 0.70) 0%,
        rgba(8, 14, 28, 0.40) 40%,
        rgba(8, 14, 28, 0.05) 70%,
        rgba(8, 14, 28, 0.00) 100%
    );
}
.hero .container { position: relative; z-index: 1; width: 100%; }
.hero__content {
    max-width: 600px;
    padding: 80px 0;
}
.hero__title {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}
.hero__desc {
    font-size: 15px;
    color: rgba(255,255,255,0.92);
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 460px;
}
.hero__badges {
    margin-bottom: 28px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}
.hero__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.92);
    line-height: 1.4;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 40px;
    padding: 7px 14px 7px 8px;
}
.hero__badge svg { flex-shrink: 0; }

/* ============================================
   HERO LOAD ANIMATION
   ============================================ */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: none; }
}

/* Скрываем hero-элементы до загрузки */
.hero__title,
.hero__desc,
.hero__badges,
.btn--hero { opacity: 0; }

body.loaded .hero__title  { animation: heroFadeUp 0.6s ease forwards; }
body.loaded .hero__desc   { animation: heroFadeUp 0.6s ease 0.15s forwards; }
body.loaded .hero__badges { animation: heroFadeUp 0.6s ease 0.3s forwards; }
body.loaded .btn--hero    { animation: heroFadeUp 0.6s ease 0.45s forwards; }

/* ============================================
   EQUIPMENT
   ============================================ */
.equipment {
    background: var(--bg2);
    padding: 70px 0 60px;
}
.equipment .section-title { margin-bottom: 36px; }

.equip-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.equip-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    transition: border-color var(--tr), transform var(--tr-lift), box-shadow var(--tr-lift);
    text-decoration: none;
    color: var(--text);
    height: 360px;
    position: relative;
    background: var(--bg3);
}
.equip-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

/* Фото — абсолютный фон на всю карточку */
.equip-card__img {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.equip-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform var(--tr-scale);
}
.equip-card:hover .equip-card__img img {
    transform: scale(1.07);
}

/* Градиент поверх фото */
.equip-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 14, 28, 0.7) 0%,
        rgba(8, 14, 28, 0.05) 45%,
        rgba(8, 14, 28, 0.75) 100%
    );
    z-index: 1;
    transition: opacity var(--tr-lift);
}
.equip-card:hover::after {
    background: linear-gradient(
        180deg,
        rgba(8, 14, 28, 0.82) 0%,
        rgba(8, 14, 28, 0.15) 45%,
        rgba(8, 14, 28, 0.9) 100%
    );
}

.equip-card__top {
    padding: 16px;
    position: relative;
    z-index: 2;
}
.equip-card__title {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    display: block;
}

.equip-card__arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 16px 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.equip-card:hover .equip-card__arrow {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--accent);
}

/* Последняя карточка — "Посмотреть все" */
.equip-card--all {
    background: #ffffff;
    border-color: #e0e5ef;
}
.equip-card--all::after { display: none; }
.equip-card--all:hover {
    border-color: #c0c8d8;
    transform: translateY(-2px);
}
.equip-card__all-text {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    color: #0d1526;
    line-height: 1.4;
    padding: 16px;
    position: relative;
    z-index: 2;
}
.equip-card__arrow--accent {
    background: var(--accent);
    border-color: var(--accent);
}

/* ============================================
   MINI CTA FORM
   ============================================ */
.cta-form {
    background: var(--bg-light);
    padding: 40px 0;
}
.cta-form__wrap {
    display: flex;
    align-items: center;
    gap: 40px;
}
.cta-form__text { flex-shrink: 0; }
.cta-form__title {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 800;
    color: #0d1526;
    line-height: 1.2;
}
.cta-form__sub {
    font-size: 14px;
    color: #5a6880;
    margin-top: 4px;
}
.cta-form__form { flex: 1; }
.cta-form__fields {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.cta-form .form-input {
    background: #fff;
    border-color: #dde3ed;
    color: #0d1526;
}
.cta-form .form-input::placeholder { color: #8a97aa; }
.cta-form .form-input:focus { border-color: var(--accent); }
.cta-form__bottom {
    display: flex;
    align-items: center;
    gap: 16px;
}
.cta-form .form-agree { color: #7a8898; }
.cta-form .form-agree a { color: #7a8898; }

/* ============================================
   FEATURES
   ============================================ */
.features {
    background: var(--bg);
    padding: 70px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feat-card {
    display: flex;
    flex-direction: row;
    background: var(--bg2);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: border-color var(--tr), transform var(--tr-lift), box-shadow var(--tr-lift);
    min-height: 180px;
}
.feat-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.feat-card__img {
    width: 220px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}
.feat-card__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--tr-scale);
}
.feat-card:hover .feat-card__img img { transform: scale(1.04); }

.feat-card__body {
    padding: 28px 28px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feat-card__title {
    font-family: var(--font-head);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
}
.feat-card__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 320px;
}

/* ============================================
   MANUFACTURERS / BRANDS
   ============================================ */
.manufacturers {
    background: var(--bg2);
    padding: 70px 0 60px;
}
.manufacturers__head { margin-bottom: 40px; }
.manufacturers .section-title { font-size: clamp(22px, 2.5vw, 32px); }

.brands-slider { overflow: hidden; position: relative; }
.brands-track {
    display: flex;
    align-items: center;
    will-change: transform;
    animation: brandsScroll 30s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes brandsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
a.brand-item {
    text-decoration: none;
    color: inherit;
}
.brand-item {
    flex-shrink: 0;
    width: 160px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: #fff;
    border-radius: var(--radius);
    margin-right: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.brand-item img {
    max-height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}
/* ============================================
   WORKS
   ============================================ */
.works {
    background: var(--bg);
    padding: 70px 0;
}
.works__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}
.works__all-link {
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: color var(--tr), border-color var(--tr);
}
.works__all-link:hover { color: #fff; border-color: #fff; }

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.work-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #e5e8ef;
    transition: border-color var(--tr), box-shadow var(--tr-lift), transform var(--tr-lift);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.work-card:hover { border-color: #c8cdd8; box-shadow: 0 8px 32px rgba(0,0,0,0.12); transform: translateY(-4px); }
.work-card__img-wrap {
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}
.work-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--tr-scale);
}
.work-card:hover .work-card__img-wrap img { transform: scale(1.04); }
.work-card__info { padding: 20px; flex: 1; }
.work-card__title {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: #0d1526;
    margin-bottom: 14px;
    line-height: 1.4;
}
.work-card__table { width: 100%; border-collapse: collapse; }
.work-card__table tr { border-top: 1px solid #e5e8ef; }
.work-card__table td {
    padding: 6px 0;
    font-size: 12px;
    color: #7a8499;
    vertical-align: top;
}
.work-card__table td:first-child { width: 45%; padding-right: 8px; }
.work-card__table td:last-child { color: #0d1526; font-weight: 600; overflow-wrap: break-word; }

/* ============================================
   STAGES
   ============================================ */
.stages {
    background: var(--bg2);
    padding: 70px 0;
}
.stages .section-title { margin-bottom: 48px; }
.stages-list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    position: relative;
}
/* Сплошная линия через все этапы */
.stages-list::before {
    content: '';
    position: absolute;
    top: 19px; /* центр значка (38px / 2) */
    left: 19px;
    right: 19px;
    height: 2px;
    background: rgba(46, 98, 255, 0.7);
    z-index: 0;
}
.stage {
    padding: 0 12px 0 0;
    position: relative;
}
/* Значок с номером */
.stage__badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: border-color var(--tr), background var(--tr), color var(--tr);
    flex-shrink: 0;
}
/* Последний этап — заполненный акцентом */
.stage--last .stage__badge {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.stage__line {
    display: none;
}
.stage__title {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}
.stage__text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    position: relative;
    background: transparent;
    padding: 80px 0 120px;
    overflow: hidden;
    min-height: 520px;
}
.faq__bg {
    position: absolute;
    inset: 0;
}
.faq__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.6) contrast(1.1);
}
.faq__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(8, 14, 28, 0.92) 0%,
        rgba(8, 14, 28, 0.75) 35%,
        rgba(8, 14, 28, 0.30) 65%,
        rgba(8, 14, 28, 0.05) 100%
    );
}
.faq .container { position: relative; z-index: 1; }
.faq__wrap {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: start;
}
.faq__left .section-title { margin-bottom: 32px; }

.accordion { display: flex; flex-direction: column; }
.accordion__item { border-bottom: 1px solid var(--border); position: relative; }
.accordion__head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text);
    text-align: left;
    gap: 16px;
    transition: color var(--tr);
}
.accordion__head:hover { color: rgba(255,255,255,0.8); }
.accordion__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.4);
    position: relative;
    transition: background var(--tr), border-color var(--tr), transform var(--tr);
}
.accordion__icon::before,
.accordion__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(255,255,255,0.7);
    transition: transform var(--tr);
}
.accordion__icon::before {
    width: 8px; height: 1.5px;
    transform: translate(-50%, -50%);
}
.accordion__icon::after {
    width: 1.5px; height: 8px;
    transform: translate(-50%, -50%);
}
.accordion__item.active .accordion__icon {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(45deg);
}
.accordion__item.active .accordion__head { color: var(--accent); }
.accordion__body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}
.accordion__item.active .accordion__body {
    max-height: 800px;
}
.accordion__body p {
    padding-bottom: 18px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq__right { padding-top: 80px; }
.faq__ask-box {
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}
.faq__ask-box p {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.4;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
    background: var(--bg2);
    padding: 70px 0;
}
.reviews__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}
.reviews__all-link {
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: color var(--tr), border-color var(--tr);
}
.reviews__all-link:hover { color: #fff; border-color: #fff; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color var(--tr);
}
.review-card:hover { border-color: rgba(255,255,255,0.25); }
.review-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.review-card__stars { display: flex; gap: 2px; margin-bottom: 4px; }
.review-card__name {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}
.review-card__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
}
.review-card__source {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    display: inline-block;
    padding-bottom: 2px;
    transition: color var(--tr);
}
.review-card__source:hover { color: rgba(255,255,255,0.7); }

/* ============================================
   CONTACTS
   ============================================ */
.contacts { background: var(--bg); }
.contacts__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    max-width: var(--container);
    margin: 0 auto;
}
.contacts__info {
    padding: 70px 60px 70px 40px;
}
.contacts__info .section-title { margin-bottom: 36px; }
.contacts__blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
}
.contacts__block h4 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.contacts__block a,
.contacts__block p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    display: block;
    transition: color var(--tr);
}
.contacts__block a:hover { color: var(--text); }

.contacts__map {
    position: relative;
    overflow: hidden;
    background: #0f1e3a;
    min-height: 480px;
}
.contacts__map iframe,
.contacts__map .map-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.map-placeholder {
    background:
        radial-gradient(ellipse at 40% 50%, rgba(20,86,255,0.12) 0%, transparent 60%),
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.025) 60px, rgba(255,255,255,0.025) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.025) 60px, rgba(255,255,255,0.025) 61px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-pin { opacity: 0.8; }

/* ============================================
   BIG FORM
   ============================================ */
.big-form {
    background: var(--bg-light);
    padding: 70px 0;
}
.big-form__title {
    font-family: var(--font-head);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #0d1526;
    margin-bottom: 36px;
}
.big-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}
.big-form .form-input--textarea { grid-column: 1 / -1; }
.big-form .form-input {
    background: #fff;
    border-color: #dde3ed;
    color: #0d1526;
}
.big-form .form-input::placeholder { color: #8a97aa; }
.big-form .form-input:focus { border-color: var(--accent); }
.big-form__footer {
    display: flex;
    align-items: center;
    gap: 20px;
}
.form-agree--dark { color: #6a7a8e; }
.form-agree--dark a { color: #6a7a8e; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #040810;
    padding: 60px 0 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border);
}
.footer__logo { align-self: start; }
.footer__logo .logo__img { height: 40px; }
.footer__cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 32px;
}
.footer__col-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}
.footer__col-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.footer__item-list { display: flex; flex-direction: column; gap: 8px; }
.footer__item-link,
.footer__item-text {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}
.footer__item-link { transition: color var(--tr); }
.footer__item-link:hover { color: var(--text); }
.footer__item-text { cursor: default; }
.footer__phone {
    display: block;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.footer__write-title {
    font-size: 13px;
    color: var(--text-muted);
    margin: 14px 0 6px;
}
.footer__col:last-child p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
}
.footer__col:last-child a { color: var(--text-muted); transition: color var(--tr); }
.footer__col:last-child a:hover { color: var(--text); }
.footer__btn { margin-top: 20px; width: 100%; text-align: center; }

.footer__bottom {
    padding: 20px 0;
}
.footer__bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    line-height: 1.6;
}

/* ============================================
   COMPANY PAGE
   ============================================ */
.company-hero {
    position: relative;
    min-height: 640px;
    padding-top: 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.company-hero__media {
    position: absolute;
    inset: 0;
}
.company-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.company-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 14, 28, 0.84) 0%, rgba(8, 14, 28, 0.48) 42%, rgba(8, 14, 28, 0.12) 75%, rgba(8, 14, 28, 0.04) 100%),
        radial-gradient(circle at left top, rgba(255,255,255,0.18) 0%, transparent 28%);
}
.company-hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}
.company-hero__content {
    max-width: 430px;
    padding: 72px 0 96px;
}
.company-hero__title,
.company-hero__text,
.btn--company-hero {
    opacity: 0;
}
.company-hero__title {
    font-family: var(--font-head);
    font-size: clamp(28px, 7vw, 60px);
    font-weight: 800;
    line-height: 1.03;
    margin-bottom: 18px;
}
.company-hero__text {
    max-width: 340px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    margin-bottom: 28px;
}
.btn--company-hero {
    min-width: 178px;
}
body.loaded .company-hero__title { animation: heroFadeUp 0.6s ease forwards; }
body.loaded .company-hero__text { animation: heroFadeUp 0.6s ease 0.12s forwards; }
body.loaded .btn--company-hero { animation: heroFadeUp 0.6s ease 0.24s forwards; }

.company-intro,
.company-advantages,
.company-stages {
    background: linear-gradient(180deg, #071126 0%, #08132a 100%);
}
.company-intro {
    padding: 96px 0 72px;
}
.company-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 80px;
    align-items: center;
}
.company-intro__copy {
    max-width: 520px;
}
.company-intro__copy .section-title {
    margin-bottom: 28px;
}
.company-intro__copy p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.84);
}
.company-intro__copy p + p {
    margin-top: 28px;
}
.company-intro__media {
    display: flex;
    justify-content: flex-end;
}
.company-intro__media-frame {
    width: min(100%, 360px);
    min-height: 470px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.company-intro__media-frame img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
}

.company-advantages {
    padding: 24px 0 96px;
}
.company-advantages .section-title {
    max-width: 420px;
    margin-bottom: 36px;
}
.company-advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.company-adv-card {
    min-height: 222px;
    background: #f5f6f8;
    border-radius: 12px;
    padding: 22px 20px 24px;
    color: #0d1526;
    box-shadow: 0 24px 48px rgba(4, 9, 18, 0.18);
}
.company-adv-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #091327;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
}
.company-adv-card__title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}
.company-adv-card__text {
    font-size: 14px;
    line-height: 1.65;
    color: #47536a;
}

.company-breakdown {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    padding: 90px 0 88px;
}
.company-breakdown__bg {
    position: absolute;
    inset: 0;
}
.company-breakdown__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.company-breakdown__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 14, 28, 0.82) 0%, rgba(8, 14, 28, 0.58) 48%, rgba(8, 14, 28, 0.44) 100%),
        linear-gradient(180deg, rgba(8, 14, 28, 0.06) 0%, rgba(8, 14, 28, 0.2) 100%);
}
.company-breakdown .container {
    position: relative;
    z-index: 1;
}
.company-breakdown__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 80px;
    align-items: center;
}
.company-breakdown__content {
    max-width: 560px;
}
.company-breakdown__title {
    margin-bottom: 16px;
}
.company-breakdown__lead,
.company-breakdown__text {
    color: rgba(255,255,255,0.88);
    line-height: 1.8;
}
.company-breakdown__lead {
    max-width: 480px;
    margin-bottom: 36px;
}
.company-breakdown__subtitle {
    font-family: var(--font-head);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 16px;
}
.company-breakdown__text {
    max-width: 540px;
    margin-bottom: 28px;
}
.company-breakdown__aside {
    background: rgba(245, 246, 248, 0.98);
    color: #0d1526;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 30px 60px rgba(4, 9, 18, 0.24);
}
.company-breakdown__aside-title {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
}
.company-breakdown__aside-text {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6880;
    margin-bottom: 18px;
}

.company-stages {
    padding-top: 86px;
}

.big-form--company {
    padding: 76px 0 86px;
}
.big-form--company .big-form__title {
    text-align: center;
    margin-bottom: 34px;
}
.big-form__company-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(260px, 1.15fr);
    gap: 14px;
    align-items: start;
    margin-bottom: 18px;
}
.big-form--company .big-form__message {
    grid-column: 3;
    grid-row: 1 / span 3;
    min-height: 170px;
}
.file-field {
    grid-column: 2;
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: var(--radius);
    border: 1px dashed #b4bfd0;
    background: #fff;
    color: #5a6880;
    font-size: 14px;
    cursor: pointer;
    transition: border-color var(--tr), color var(--tr), background var(--tr);
}
.file-field:hover {
    border-color: var(--accent);
    color: #0d1526;
}
.file-field input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.big-form__footer--company {
    justify-content: center;
}

/* ============================================
   EQUIPMENT PAGE
   ============================================ */
.page-equipment {
    background: linear-gradient(180deg, #071126 0%, #071126 58%, #050b17 100%);
}
.page-equipment .container {
    max-width: 1364px;
}

.equipment-page {
    padding: 146px 0 120px;
}
.equipment-page__head {
    margin-bottom: 44px;
}
.equipment-page__title {
    max-width: 980px;
    font-family: var(--font-head);
    font-size: clamp(28px, 7vw, 72px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.04;
    color: #fff;
    margin-bottom: 34px;
}
.equipment-page__filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.equipment-page__filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 26px;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,0.7);
    background: transparent;
    color: #fff;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 400;
    transition: background var(--tr), color var(--tr), border-color var(--tr), transform var(--tr);
}
.equipment-page__filter:hover {
    transform: translateY(-2px);
}
.equipment-page__filter--light {
    background: #fff;
    border-color: #fff;
    color: #091327;
}
.equipment-page__filter--active {
    background: transparent;
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}
.equipment-page__filter--active.equipment-page__filter--light {
    background: #fff;
    border-color: #fff;
    color: #091327;
}

/* === SEARCH === */

.search-bar {
    position: relative;
    margin-bottom: 24px;
}

.search-bar__wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar__icon {
    position: absolute;
    left: 14px;
    color: #8a96b0;
    pointer-events: none;
    flex-shrink: 0;
}

.search-bar__input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    border: 1px solid #d0d5e0;
    border-radius: var(--radius);
    color: #0d1526;
    outline: none;
    transition: border-color var(--tr), box-shadow var(--tr);
}

.search-bar__input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(20, 86, 255, 0.1);
}

.search-bar__input::-webkit-search-cancel-button {
    cursor: pointer;
}

.search-bar__input--loading {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='6' fill='none' stroke='%238a96b0' stroke-width='2' stroke-dasharray='20' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 8 8' to='360 8 8' dur='0.7s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.search-bar__dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e8ef;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 200;
    overflow: hidden;
}

.search-bar__dropdown[hidden] {
    display: none;
}

.search-group__label {
    padding: 8px 14px 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8a96b0;
}

.search-result {
    display: flex;
    flex-direction: column;
    padding: 8px 14px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: background var(--tr);
}

.search-result:hover,
.search-result:focus {
    background: #f5f7fa;
    outline: none;
}

.search-result__name {
    font-size: 14px;
    font-weight: 600;
    color: #0d1526;
}

.search-result__hint {
    font-size: 12px;
    color: #8a96b0;
    margin-top: 1px;
}

.search-empty {
    padding: 16px 14px;
    font-size: 14px;
    color: #8a96b0;
    text-align: center;
}

/* === PAGE TRANSITIONS === */
#page-transition {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 99999;
    transform: translateX(100%);
    pointer-events: none;
    will-change: transform;
}

@media (max-width: 560px) {
    .search-bar__input {
        font-size: 14px;
        padding: 10px 14px 10px 38px;
    }
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.catalog-card {
    position: relative;
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 18px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    color: #091327;
    isolation: isolate;
    transition: transform var(--tr-lift), box-shadow var(--tr-lift);
}
.catalog-card--frame {
    padding: 0;
    background: #fff;
    border-radius: 8px;
}
.catalog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}
.catalog-card--frame .catalog-card__title {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    max-width: 64%;
    font-family: var(--font-head);
    font-size: clamp(13px, 1.02vw, 18px);
    line-height: 1.28;
    font-weight: 400;
    letter-spacing: 0;
    color: #0f1626;
}
.catalog-card__visual--art {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: stretch;
    border-radius: inherit;
}
.catalog-card__visual--art::before,
.catalog-card__visual--art::after {
    content: none !important;
}
.catalog-card__art {
    display: block;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    position: static !important;
    inset: auto !important;
    filter: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    z-index: auto !important;
}
.catalog-card__title {
    position: relative;
    z-index: 2;
    max-width: 74%;
    font-family: var(--font-head);
    font-size: clamp(16px, 1.15vw, 18px);
    font-weight: 500;
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: #11192b;
}
.catalog-card__visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.catalog-card__visual::after {
    content: '';
    position: absolute;
    inset: auto 14% 10% 14%;
    height: 52%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0) 72%);
    filter: blur(10px);
    z-index: 0;
}
.catalog-card__visual::before {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 64%;
    background: linear-gradient(180deg, rgba(236,236,239,0) 0%, rgba(236,236,239,0.68) 30%, rgba(236,236,239,0.94) 76%, #ececef 100%);
    z-index: 1;
}
.catalog-card__visual img {
    position: absolute;
    right: var(--card-image-right, -12%);
    bottom: var(--card-image-bottom, -2%);
    width: var(--card-image-width, 76%);
    height: var(--card-image-height, 74%);
    object-fit: var(--card-image-fit, cover);
    object-position: var(--card-image-position, center bottom);
    mix-blend-mode: var(--card-image-blend, normal);
    opacity: var(--card-image-opacity, 1);
    filter: saturate(0.92) contrast(1.02);
    z-index: 1;
}
.catalog-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}
.catalog-pagination__link {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.38);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    transition: background var(--tr), color var(--tr), border-color var(--tr), transform var(--tr);
}
.catalog-pagination__link:hover {
    transform: translateY(-2px);
}
.catalog-pagination__link--active {
    background: #fff;
    color: #091327;
    border-color: #fff;
}

/* ============================================
   EQUIPMENT DETAIL PAGE
   ============================================ */
.page-equipment-detail {
    background: linear-gradient(180deg, #071126 0%, #071126 56%, #050b17 100%);
}
.page-equipment-detail .container {
    max-width: 1364px;
}
.equipment-detail {
    padding: 146px 0 0;
}
.equipment-detail__hero {
    padding-bottom: 60px;
}
.equipment-detail__title {
    max-width: 980px;
    margin-bottom: 34px;
    font-family: var(--font-head);
    font-size: clamp(28px, 7vw, 72px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.04;
    color: #fff;
}
.equipment-detail__brands {
    max-width: 100%;
    margin-bottom: 48px;
}
.equipment-detail__brands-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}
.equipment-detail__subtitle {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.14;
    color: #fff;
    margin: 0;
}
.equipment-detail__more-link {
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: color var(--tr), border-color var(--tr);
}
.equipment-detail__more-link:hover {
    color: #fff;
    border-color: #fff;
}
.equipment-detail__brands-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}
.equipment-detail__brand-card {
    border-radius: 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(13,21,38,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    min-height: 76px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
a.equipment-detail__brand-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.equipment-detail__brand-card img {
    max-width: 120px;
    max-height: 34px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.equipment-detail__brand-card--text span {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: #0d1526;
    line-height: 1.25;
    text-align: center;
}
.equipment-detail__brand-card--text {
    background: rgba(240,243,248,0.95);
    border: 1px solid rgba(13,21,38,0.10);
}
.equipment-detail__intro-grid {
    display: grid;
    justify-content: space-between;
    align-items: start;
    grid-template-columns: minmax(0, 1.15fr) 360px;
    gap: 48px;
}
.equipment-detail__lead {
    margin: 2px 0 44px;
    max-width: 720px;
    font-size: 24px;
    line-height: 1.58;
    color: #fff;
}
.equipment-detail__problem {
    max-width: 680px;
}
.equipment-detail__section-title {
    font-family: var(--font-head);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 20px;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.1;
}
.equipment-detail__section-title--wide {
    max-width: 900px;
}
.equipment-detail__section-title--compact {
    max-width: 560px;
}
.equipment-detail__problem-intro {
    font-size: 18px;
    line-height: 1.58;
    color: rgba(255,255,255,0.84);
    margin-bottom: 18px;
}
.equipment-detail__problem-list {
    display: grid;
    gap: 14px;
}
.equipment-detail__problem-item {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
}
.equipment-detail__problem-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(20,86,255,0.12);
}
.equipment-detail__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    justify-self: end;
    max-width: 360px;
    min-height: 470px;
    padding: 24px;
    border-radius: 28px;
    background: radial-gradient(circle at top, rgba(255,255,255,0.26) 0%, rgba(255,255,255,0.08) 28%, rgba(11,21,39,0.96) 84%),
        linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(7,17,38,0.32) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}
.equipment-detail__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    border-radius: 16px;
}
.equipment-detail__section {
    padding: 52px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.detail-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    padding-top: 8px;
    counter-reset: step-counter;
}
.detail-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 19px;
    right: 19px;
    height: 2px;
    background: linear-gradient(90deg, rgba(20,86,255,0.7) 0%, rgba(255,255,255,0.10) 100%);
    border-radius: 1px;
}
.detail-step {
    position: relative;
    padding-top: 68px;
}
.detail-step__badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1b5eff 0%, #608eff 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 24px rgba(20,86,255,0.35);
    border: 3px solid var(--bg);
    z-index: 1;
}
.detail-step__title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.28;
    color: #fff;
    margin-bottom: 10px;
}
.detail-step__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}
.equipment-detail__guarantee {
    display: grid;
    grid-template-columns: minmax(0, 560px) minmax(0, 588px);
    justify-content: space-between;
    gap: 92px;
    align-items: stretch;
    padding: 52px 0 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.equipment-detail__guarantee-copy {
    padding-right: 0;
}
.equipment-detail__guarantee-text {
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.62;
    margin-top: 16px;
}
.equipment-detail__guarantee-card {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(229,232,239,0.9);
    display: flex;
    flex-direction: column;
}
.equipment-detail__guarantee-badge {
    padding: 24px;
    max-width: 300px;
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.02;
    text-transform: uppercase;
    color: #0d1526;
}
.equipment-detail__guarantee-image-wrap {
    flex: 1;
    min-height: 260px;
}
.equipment-detail__guarantee-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.equipment-detail__section--guarantees {
    padding-bottom: 78px;
    padding-top: 28px;
    border-top: 0;
}
.equipment-detail__guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.equipment-detail__guarantee-item {
    min-height: 188px;
    padding: 24px 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e5e8ef;
}
.equipment-detail__guarantee-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #3f7bff 0%, #1456ff 72%);
    box-shadow: 0 0 0 6px rgba(20,86,255,0.12);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.equipment-detail__guarantee-item-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.28;
    color: #0d1526;
    margin-bottom: 12px;
}
.equipment-detail__guarantee-item-text {
    font-size: 14px;
    line-height: 1.62;
    color: #5e6b7c;
}
.equipment-detail__works {
    padding: 24px 0 88px;
}
.equipment-detail__works .works__head {
    max-width: 1517px;
    margin-bottom: 18px;
    align-items: flex-end;
}
.equipment-detail__works .section-title {
    margin-bottom: 0;
    font-size: clamp(34px, 3vw, 50px);
    line-height: 1.08;
}
.equipment-detail__works .work-card__title {
    min-height: 56px;
}
.equipment-detail__works .work-card__table td:first-child {
    width: 38%;
}
.equipment-detail--missing {
    min-height: calc(100vh - 176px);
    padding: 168px 0 120px;
    display: flex;
    align-items: center;
}
.equipment-detail__missing {
    max-width: 640px;
    padding: 48px;
    border-radius: 28px;
    background: rgba(8,14,28,0.7);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 72px rgba(0,0,0,0.22);
}
.equipment-detail__missing-status {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.52);
    margin-bottom: 18px;
}
.equipment-detail__missing-title {
    font-family: var(--font-head);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.04;
    color: #fff;
    margin-bottom: 18px;
}
.equipment-detail__missing-text {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.equipment-detail__guarantee-text:last-child {
    margin-bottom: 0;
}
.equipment-detail__works .works__all-link {
    font-size: 13px;
    color: rgba(255,255,255,0.74);
}
.detail-form {
    background: #fff;
    padding: 52px 0 60px;
}
.detail-form__inner {
    max-width: 1517px;
}
.detail-form__title {
    margin-bottom: 24px;
    font-family: var(--font-head);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    line-height: 1.15;
    color: #141b29;
}
.detail-form__form {
    max-width: 780px;
}
.detail-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
}
.detail-form__field {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-height: 48px;
    padding: 8px 16px 9px;
    border: 1px solid #e3e5eb;
    border-radius: 2px;
    background: #ececef;
}
.detail-form__field-label {
    font-size: 12px;
    line-height: 1.2;
    color: #70798b;
}
.detail-form__control {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: #182133;
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
}
.detail-form__control::placeholder {
    color: #2a3448;
    opacity: 0.96;
}
.detail-form__control--textarea {
    min-height: 80px;
    resize: none;
}
.detail-form__field--name {
    grid-column: 1;
    grid-row: 1;
}
.detail-form__field--phone {
    grid-column: 2;
    grid-row: 1;
}
.detail-form__field--problem {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 100px;
    padding-top: 12px;
}
.detail-form__field--email {
    grid-column: 1;
    grid-row: 3;
}
.detail-form__field--city {
    grid-column: 2;
    grid-row: 3;
}
.detail-form__field--org {
    grid-column: 1;
    grid-row: 4;
}
.detail-form__upload {
    position: relative;
    grid-column: 2;
    grid-row: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 16px;
    border: 1px dashed #a7afbd;
    border-radius: 2px;
    background: #fff;
    color: #5d687d;
    font-size: 14px;
    transition: border-color var(--tr), color var(--tr);
    cursor: pointer;
}
.detail-form__upload:hover {
    border-color: var(--accent);
    color: #182133;
}
.detail-form__upload input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.detail-form__actions {
    grid-column: 1 / -1;
    grid-row: 5;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 48px;
    padding-top: 4px;
}
.detail-form__submit {
    min-width: 148px;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 999px;
}
.detail-form__agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 320px;
    color: #5d687d;
    font-size: 12px;
    line-height: 1.45;
}
.detail-form__agree input {
    margin-top: 3px;
    accent-color: #171f31;
}
.detail-form__agree a {
    color: inherit;
    text-decoration: underline;
}
.detail-form__agree a:hover {
    color: #171f31;
}
.equipment-detail__brand-card--cta {
    background: #33456a;
    border-color: #33456a;
    color: #fff;
    justify-content: flex-start;
    transition: background var(--tr), transform var(--tr);
}
.equipment-detail__brand-card--cta:hover {
    background: #405581;
    transform: translateY(-2px);
}
.equipment-detail__brand-cta-label {
    max-width: 118px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}
.equipment-detail__guarantee-icon svg {
    width: 20px;
    height: 20px;
}
.equipment-detail__work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.equipment-detail__work-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #e5e8ef;
    display: flex;
    flex-direction: column;
    transition: border-color var(--tr), box-shadow var(--tr-lift), transform var(--tr-lift);
}
.equipment-detail__work-card:hover {
    border-color: #c8cdd8;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.equipment-detail__work-info {
    padding: 18px 18px 14px;
}
.equipment-detail__work-brand {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f0f3f8;
    color: #1b2434;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.equipment-detail__work-title {
    min-height: 54px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: #0d1526;
    line-height: 1.38;
    margin-bottom: 12px;
}
.equipment-detail__work-table {
    width: 100%;
    border-collapse: collapse;
}
.equipment-detail__work-table tr {
    border-top: 1px solid #e5e8ef;
}
.equipment-detail__work-table td {
    padding: 6px 0;
    font-size: 12px;
    color: #7a8499;
    vertical-align: top;
}
.equipment-detail__work-table td:first-child {
    width: 42%;
    padding-right: 10px;
}
.equipment-detail__work-table td:last-child {
    color: #0d1526;
    font-weight: 600;
}
.equipment-detail__work-image-wrap {
    height: 188px;
    overflow: hidden;
}
.equipment-detail__work-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--tr-scale);
}
.equipment-detail__work-card:hover .equipment-detail__work-image-wrap img {
    transform: scale(1.03);
}

@media (max-width: 1200px) {
    .page-equipment-detail .container {
        max-width: 1380px;
    }

    .equipment-detail__intro-grid {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 44px;
    }

    .equipment-detail__guarantee {
        grid-template-columns: minmax(0, 1fr) 420px;
        gap: 52px;
    }

    .detail-form__field--problem {
        min-height: 110px;
    }

}

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

    .equipment-detail__work-grid {
        grid-template-columns: 1fr 1fr;
    }

    .equipment-detail__intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .equipment-detail__visual {
        max-width: 420px;
        min-height: 380px;
    }

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

    .detail-steps::before {
        display: none;
    }

    .equipment-detail__guarantee {
        grid-template-columns: 1fr;
    }

    .equipment-detail__guarantee-copy {
        padding-right: 0;
    }

    .equipment-detail__guarantee-card {
        max-width: 420px;
    }

    .equipment-detail__guarantee-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 900px) {
    .page-equipment-detail .container {
        max-width: 100%;
    }

    .equipment-detail {
        padding-top: 132px;
    }

    .equipment-detail__hero {
        padding-bottom: 48px;
    }

    .equipment-detail__title {
        margin-bottom: 34px;
        font-size: clamp(38px, 6vw, 52px);
        max-width: 760px;
    }

    .equipment-detail__brands {
        margin-bottom: 36px;
    }

    .equipment-detail__lead {
        max-width: 100%;
        font-size: 21px;
        margin-bottom: 36px;
    }

    .equipment-detail__visual {
        justify-self: start;
    }

    .equipment-detail__visual-placeholder {
        max-width: 420px;
        min-height: 300px;
    }

    .equipment-detail__section,
    .equipment-detail__section--guarantees,
    .equipment-detail__works {
        padding-bottom: 44px;
    }

    .equipment-detail__guarantee {
        gap: 30px;
        padding-bottom: 48px;
    }

    .equipment-detail__works .works__head {
        align-items: flex-start;
        gap: 10px;
    }

    .detail-form {
        padding: 40px 0 48px;
    }

    .detail-form__form {
        max-width: 100%;
    }

    .detail-form__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .detail-form__field,
    .detail-form__upload,
    .detail-form__actions {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .detail-form__field--problem {
        min-height: 110px;
    }

    .detail-form__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .detail-form__submit {
        width: 100%;
        max-width: 240px;
    }

    .detail-form__agree {
        max-width: 100%;
    }

    .detail-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .equipment-detail__guarantee-badge {
        font-size: 28px;
    }

    .equipment-detail__works {
        padding-bottom: 72px;
    }

}

@media (max-width: 700px) {
    .equipment-detail {
        padding-top: 110px;
    }

    .equipment-detail__title {
        max-width: 100%;
        margin-bottom: 28px;
        font-size: clamp(24px, 7vw, 46px);
        line-height: 1.04;
    }

    .equipment-detail__lead {
        font-size: 18px;
        line-height: 1.56;
        margin-bottom: 28px;
    }

    .equipment-detail__section--guarantees {
        padding-bottom: 34px;
    }

    .equipment-detail__guarantee-text {
        font-size: 15px;
        line-height: 1.56;
    }

    .detail-form {
        padding: 32px 0 38px;
    }

    .detail-form__title {
        margin-bottom: 18px;
        font-size: clamp(24px, 8vw, 32px);
    }

    .detail-form__field {
        padding: 8px 14px;
    }

    .detail-form__upload {
        min-height: 44px;
        padding: 0 14px;
        text-align: center;
    }

    .detail-form__submit {
        max-width: none;
    }

    .detail-form__agree {
        font-size: 11px;
    }

    .equipment-detail__brands {
        margin-bottom: 32px;
    }

    .equipment-detail__subtitle {
        font-size: 24px;
    }

    .equipment-detail__brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .equipment-detail__brand-card {
        min-height: 62px;
        border-radius: 14px;
    }

    .equipment-detail__brand-card--text span,
    .equipment-detail__brand-cta-label {
        font-size: 14px;
    }

    .equipment-detail__section,
    .equipment-detail__guarantee {
        padding: 38px 0;
    }

    .equipment-detail__visual {
        min-height: 320px;
        padding: 18px;
        border-radius: 20px;
    }

    .equipment-detail__visual-placeholder {
        max-width: 100%;
        min-height: 260px;
        border-radius: 20px;
    }

    .equipment-detail__work-grid {
        grid-template-columns: 1fr;
    }

    .equipment-detail__work-title {
        min-height: 0;
    }

    .equipment-detail__hero {
        padding-bottom: 36px;
    }

    .equipment-detail__brands-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 16px;
    }

    .equipment-detail__section-title {
        margin-bottom: 18px;
        font-size: clamp(28px, 8vw, 34px);
    }

    .equipment-detail__problem-intro {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .equipment-detail__problem-item {
        font-size: 15px;
        line-height: 1.56;
    }

    .detail-steps {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .detail-step {
        padding-top: 0;
        padding-left: 68px;
        min-height: 54px;
    }

    .detail-step__badge {
        left: 0;
        top: 0;
        width: 48px;
        height: 48px;
        font-size: 14px;
    }

    .detail-step__title {
        margin-bottom: 8px;
        font-size: 17px;
    }

    .equipment-detail__guarantee-card {
        max-width: 100%;
        border-radius: 20px;
    }

    .equipment-detail__guarantee-badge {
        max-width: 100%;
        padding: 20px;
        font-size: 24px;
    }

    .equipment-detail__guarantee-image-wrap {
        min-height: 220px;
    }

    .equipment-detail__guarantee-grid {
        grid-template-columns: 1fr;
    }

    .equipment-detail__guarantee-item {
        min-height: 0;
        padding: 20px 18px;
    }

    .equipment-detail__works {
        padding: 12px 0 64px;
    }

    .equipment-detail__works .works__head {
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 22px;
    }

    .equipment-detail__works .work-card__title {
        min-height: 0;
    }

    .equipment-detail--missing {
        min-height: auto;
        padding: 120px 0 84px;
    }

    .equipment-detail__missing {
        padding: 32px 24px;
        border-radius: 20px;
    }

}

@media (max-width: 560px) {
    .equipment-detail__field--problem,
    .detail-form__field--problem {
        min-height: 100px;
    }

    .equipment-detail__brands-grid {
        grid-template-columns: 1fr;
    }

    .equipment-detail__visual {
        min-height: 280px;
    }

    .equipment-detail__visual-placeholder {
        min-height: 220px;
    }

    .equipment-detail__guarantee-badge {
        font-size: 21px;
    }

    .equipment-detail__missing-title {
        font-size: clamp(30px, 10vw, 38px);
    }

}

/* ============================================
   CONTACTS PAGE
   ============================================ */

/* Hero */
.contacts-hero {
    padding: 140px 0 60px;
    background: var(--bg);
}
.contacts-hero__title {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
}

/* Как нас найти */
.contacts-find__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    max-width: var(--container);
    margin: 0 auto;
}
.contacts-find__info {
    background: var(--bg2);
    padding: 60px 60px 60px 40px;
}
.contacts-find__heading {
    font-family: var(--font-head);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 36px;
}
.contacts-find__blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
}
.contacts-find__block h4 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.contacts-find__block a,
.contacts-find__block p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.9;
    display: block;
    transition: color var(--tr);
}
.contacts-find__block a:hover { color: var(--text); }
.contacts-find__block p a { display: inline; }

/* Карта */
.contacts-find__map {
    position: relative;
    overflow: hidden;
    background: var(--bg3);
    min-height: 520px;
}
.contacts-find__map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.contacts-find__route-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    font-size: 13px;
    padding: 10px 20px;
    background: rgba(8, 14, 28, 0.7);
    backdrop-filter: blur(6px);
}
.contacts-find__route-btn:hover {
    background: rgba(8, 14, 28, 0.9);
}
.contacts-find__map-actions {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.contacts-find__map-label {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.contacts-find__scheme-btn {
    font-size: 13px;
    padding: 10px 20px;
    background: rgba(8, 14, 28, 0.7);
    backdrop-filter: blur(6px);
}
.contacts-find__scheme-btn:hover {
    background: rgba(8, 14, 28, 0.9);
}

/* Форма на странице контактов */
.big-form--contacts {
    background: var(--bg-light);
}

/* ============================================
   LEGAL PAGE
   ============================================ */
.page-legal {
    background: linear-gradient(180deg, #071126 0%, #071126 42%, #050b17 100%);
}
/* === 404 === */
.not-found {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--bg);
}
.not-found__inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}
.not-found__code {
    font-family: var(--font-head);
    font-size: clamp(120px, 20vw, 200px);
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.12);
    background: linear-gradient(135deg, var(--accent) 0%, rgba(20,86,255,0.3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    user-select: none;
}
.not-found__title {
    font-family: var(--font-head);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.not-found__text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.not-found__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 140px 0 96px;
}
.legal-page__inner {
    max-width: 820px;
    padding: 42px 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.legal-page__eyebrow {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}
.legal-page__title {
    font-family: var(--font-head);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.06;
    color: #fff;
    margin-bottom: 28px;
}
.legal-page__content {
    display: grid;
    gap: 16px;
}
.legal-page__content p {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.82);
}
.legal-page__content a {
    color: #fff;
    text-decoration: underline;
}
.legal-page__content a:hover {
    color: rgba(255,255,255,0.78);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in {
    opacity: 0;
    transition: opacity 0.55s ease;
}
.fade-up.visible,
.fade-in.visible {
    opacity: 1;
    transform: none;
}



/* ============================================
   MOBILE MENU CONTACTS
   ============================================ */
.mobile-menu__contacts {
    padding: 12px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mobile-menu__phone,
.mobile-menu__email {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--tr);
}
.mobile-menu__phone:hover,
.mobile-menu__email:hover { color: var(--text); }

/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal.open {
    opacity: 1;
    pointer-events: auto;
}
.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
}
.modal__box {
    position: relative;
    z-index: 1;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    transform: translateY(16px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    opacity: 0;
}
.modal.open .modal__box {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    color: var(--text-muted);
    transition: background var(--tr), color var(--tr);
}
.modal__close:hover { background: rgba(255,255,255,0.14); color: var(--text); }
.modal__title {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}
.modal__sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}
.modal__form { display: flex; flex-direction: column; gap: 12px; }
.modal__form .form-agree { margin-top: 4px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .stages-list { grid-template-columns: repeat(4, 1fr); gap: 32px; }
    .footer__cols { grid-template-columns: 1fr 1fr; gap: 28px; }
    .equip-grid { grid-template-columns: repeat(3, 1fr); }
    .company-advantages__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .company-breakdown__layout { grid-template-columns: 1fr; gap: 32px; }
    .big-form__company-grid { grid-template-columns: 1fr 1fr; }
    .big-form__message { grid-column: 1 / -1; grid-row: auto; }
    .big-form--company .big-form__message { grid-column: 1 / -1; grid-row: auto; }
    .file-field { grid-column: auto; }
    .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
    .contacts-find__blocks { gap: 28px 20px; }
}

@media (max-width: 900px) {
    .header__center { display: flex; }
    .works-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .faq__wrap { grid-template-columns: 1fr; }
    .faq__right { padding-top: 0; }
    .contacts__wrap { grid-template-columns: 1fr; }
    .contacts__info { padding: 50px 40px; }
    .contacts-find__wrap { grid-template-columns: 1fr; }
    .contacts-find__info { padding: 50px 40px; }
    .contacts-find__map { min-height: 400px; }
    .equip-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .big-form__grid { grid-template-columns: 1fr; }
    .cta-form__wrap { flex-direction: column; gap: 24px; }
    .cta-form__fields { flex-direction: column; }
    .company-intro__grid { grid-template-columns: 1fr; gap: 36px; }
    .company-intro__media { justify-content: flex-start; }
    .company-hero { min-height: 560px; }
    .equipment-page { padding: 132px 0 104px; }
    .equipment-page__title { max-width: 760px; }
    .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}

@media (max-width: 700px) {
    .container { padding: 0 20px; }
    .header__inner { padding: 0 20px; }
    .header__email { display: none !important; }
    .header__phones { display: none !important; }
    .header__equip-btn { display: none !important; }
    .header__center { flex: 1; justify-content: flex-end; }
    .header__right { display: none; }
    .burger { margin-left: 0; }
    .header__mobile-contacts {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-right: 16px;
    }
    .header__mob-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.8;
        transition: opacity 0.2s;
    }
    .header__mob-icon:hover { opacity: 1; }
    .header__mob-icon img { display: block; }
    .hero__overlay {
        background: linear-gradient(
            180deg,
            rgba(8, 14, 28, 0.55) 0%,
            rgba(8, 14, 28, 0.75) 50%,
            rgba(8, 14, 28, 0.85) 100%
        );
    }
    .hero__content { padding: 60px 0; }
    .features-grid { grid-template-columns: 1fr; }
    .feat-card { flex-direction: column; }
    .feat-card__img { width: 100%; height: 200px; position: relative; }
    .feat-card__img img { position: absolute; }
    .works-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .stages-list { grid-template-columns: 1fr; gap: 0; padding-left: 0; position: relative; }
    .stages-list::before {
        content: '';
        position: absolute;
        top: 19px;
        bottom: 19px;
        left: 19px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, var(--accent) 0%, rgba(255,255,255,0.12) 100%);
        z-index: 0;
    }
    .stage { position: relative; padding: 0 0 32px 58px; display: flex; flex-direction: column; }
    .stage__badge { position: absolute; left: 0; top: 0; margin-bottom: 0; z-index: 1; }
    .footer__cols { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 32px; }
    .contacts__blocks { grid-template-columns: 1fr; }
    .contacts-hero { padding: 110px 0 40px; }
    .contacts-find__wrap { grid-template-columns: 1fr; }
    .contacts-find__info { padding: 40px 20px; }
    .contacts-find__blocks { grid-template-columns: 1fr; }
    .contacts-find__map { min-height: 350px; }
    .contacts-find__route-btn { top: 12px; right: 12px; }
    .contacts-find__map-actions { bottom: 12px; left: 12px; right: 12px; }
    .legal-page { padding: 112px 0 72px; }
    .legal-page__inner { padding: 32px 24px; }
    .equip-grid { grid-template-columns: repeat(2, 1fr); }
    .equip-card { height: 260px; }
    .big-form__footer { flex-direction: column; align-items: flex-start; }
    .company-hero { min-height: 500px; }
    .company-hero__content { padding: 40px 0 64px; }
    .company-hero__text { max-width: 300px; font-size: 15px; }
    .company-intro { padding: 72px 0 48px; }
    .company-intro__media-frame,
    .company-intro__media-frame img { min-height: 360px; }
    .company-advantages { padding: 8px 0 72px; }
    .company-advantages__grid { grid-template-columns: 1fr; }
    .company-adv-card { min-height: 0; }
    .company-breakdown { padding: 72px 0; }
    .company-breakdown__subtitle { font-size: 34px; }
    .company-breakdown__aside { padding: 24px 20px; }
    .big-form__company-grid { grid-template-columns: 1fr; }
    .big-form--company .big-form__message { grid-column: auto; grid-row: auto; min-height: 140px; }
    .file-field { grid-column: auto; }
    .big-form--company .big-form__title { text-align: left; }
    .equipment-page { padding: 110px 0 84px; }
    .equipment-page__head { margin-bottom: 30px; }
    .equipment-page__title { max-width: 100%; margin-bottom: 24px; font-size: clamp(24px, 7vw, 46px); line-height: 1.04; }
    .equipment-page__filters { gap: 10px; }
    .equipment-page__filter { min-height: 44px; padding: 0 22px; font-size: 13px; }
    .catalog-grid { gap: 14px; }
    .catalog-card { padding: 16px; border-radius: 8px; }
    .catalog-card--frame { padding: 0; border-radius: 12px; }
    .catalog-card--frame .catalog-card__title { top: 14px; left: 14px; max-width: 64%; font-size: 14px; line-height: 1.28; }
    .catalog-card__title { max-width: 80%; font-size: 15px; }
    .catalog-pagination { margin-top: 44px; }
    .catalog-pagination__link { width: 32px; height: 32px; font-size: 13px; }
}

@media (max-width: 560px) {
    .catalog-grid { grid-template-columns: 1fr; }
    .catalog-card { aspect-ratio: auto; min-height: 310px; }
    .catalog-card--frame { min-height: 310px; }
    .catalog-card--frame .catalog-card__title { top: 16px; left: 16px; max-width: 62%; font-size: 15px; line-height: 1.28; }
    .catalog-card__title { max-width: 70%; font-size: 16px; }
}

/* ============================================
   PIXEL MATCH — DESKTOP PASS
   ============================================ */
.burger__label {
    display: none;
}

.contacts__map-image,
.contacts-find__map-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contacts__route-btn {
    position: absolute;
    z-index: 2;
    top: 30px;
    left: 44px;
}

.contacts__scheme-btn {
    position: relative;
    z-index: 2;
    min-height: 42px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}

.contacts__map-actions {
    position: absolute;
    left: 44px;
    right: auto;
    bottom: 44px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.contacts__map-label {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

@media (min-width: 901px) {
    .header {
        background: #0a1221;
        border-bottom-color: rgba(255, 255, 255, 0.08);
    }

    .header__inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        max-width: 1927px;
        height: 74px;
        padding: 0 58px;
        gap: 0;
    }

    .logo__img {
        height: 40px;
    }

    .header.scrolled .logo__img {
        height: 28px;
    }

    .header__center {
        justify-self: center;
        flex: 0 0 auto;
        gap: 45px;
        padding-left: 0;
    }

    .burger {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        width: 135px;
        height: 48px;
        padding: 0 28px;
        border: 2px solid rgba(255, 255, 255, 0.9);
        border-radius: 24px;
        background: transparent;
    }

    .burger__icon {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
    }

    .burger__line {
        width: 14px;
        height: 1.5px;
    }

    .burger__label {
        display: inline-block;
        font-family: var(--font-head);
        font-size: 12px;
        font-weight: 600;
        line-height: 1;
        color: #fff;
    }

    .burger--open .burger__line:nth-child(1) {
        transform: translateY(5.5px) rotate(45deg);
    }

    .burger--open .burger__line:nth-child(3) {
        transform: translateY(-5.5px) rotate(-45deg);
    }

    .header__equip-btn {
        width: 303px;
        min-height: 50px;
        padding: 0;
        border-color: #f6f7f9;
        background: #f6f7f9;
        color: #131c2d;
        font-size: 14px;
        font-weight: 600;
        border-width: 1px;
    }

    .header__equip-btn:hover {
        background: #fff;
        border-color: #fff;
        color: #131c2d;
        transform: none;
    }

    .header__right {
        justify-self: end;
        gap: 33px;
        margin-left: 0;
    }

    .header__email,
    .header__phones {
        font-size: 18px;
        font-weight: 400;
        line-height: 1;
        color: rgba(255, 255, 255, 0.95);
    }

    .header__phones span {
        white-space: nowrap;
    }

    .header__cta {
        width: 235px;
        min-height: 42px;
        padding: 0;
        border-radius: 21px;
        color: #131c2d;
        font-size: 13px;
        font-weight: 600;
    }

    .header__cta:hover {
        transform: none;
    }

    .footer {
        background: #11192b;
        padding: 76px 0 0;
        border-top: none;
    }

    .footer > .container {
        max-width: 1920px;
        padding: 0 68px;
    }

    .footer__top {
        gap: 42px;
        padding-bottom: 68px;
    }

    .footer__logo .logo__img {
        height: 57px;
    }

    .footer__cols {
        grid-template-columns: minmax(0, 2.35fr) minmax(0, 0.9fr) minmax(0, 0.8fr) minmax(0, 1fr);
        gap: 72px;
    }

    .footer__col-title {
        margin-bottom: 26px;
        font-size: 20px;
        font-weight: 500;
        line-height: 1.2;
        color: #f6f7f9;
    }

    .footer__col-double {
        gap: 0 38px;
        align-items: start;
    }

    .footer__item-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .footer__item-link,
    .footer__item-text {
        display: block;
        font-size: 16px;
        line-height: 1.45;
        color: rgba(246, 247, 249, 0.78);
    }

    .footer__item-link {
        transition: color var(--tr);
    }

    .footer__item-link:hover {
        color: #fff;
    }

    .footer__item-text {
        cursor: default;
    }

    .footer__phone {
        margin-bottom: 8px;
        font-size: 17px;
        font-weight: 500;
        color: #f6f7f9;
    }

    .footer__write-title {
        margin: 34px 0 18px;
        font-size: 20px;
        color: #f6f7f9;
    }

    .footer__col:last-child p,
    .footer__col:last-child a {
        font-size: 16px;
        line-height: 1.55;
        color: rgba(246, 247, 249, 0.78);
    }

    .footer__btn {
        display: block;
        width: auto;
        min-height: 50px;
        margin-top: 28px;
        margin-inline: auto;
        padding: 0 34px;
        font-size: 15px;
    }

    .footer__bottom {
        padding: 0 0 24px;
    }

    .footer__bottom p {
        font-size: 13px;
        color: rgba(246, 247, 249, 0.72);
    }

    .page-home .container {
        max-width: 1920px;
        padding: 0 68px;
    }

    .page-home .hero {
        min-height: 980px;
        padding-top: 74px;
    }

    .page-home .hero__overlay {
        background: linear-gradient(90deg, rgba(8, 14, 28, 0.84) 0%, rgba(8, 14, 28, 0.52) 36%, rgba(8, 14, 28, 0.12) 72%, rgba(8, 14, 28, 0) 100%);
    }

    .page-home .hero__content {
        max-width: 600px;
        padding: 110px 0 136px 32px;
    }

    .page-home .hero__title {
        margin-bottom: 26px;
        font-size: clamp(74px, 5.2vw, 86px);
        line-height: 0.96;
        letter-spacing: -0.05em;
    }

    .page-home .hero__desc {
        max-width: 520px;
        margin-bottom: 22px;
        font-size: 19px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.74);
    }

    .page-home .hero__badges {
        max-width: 540px;
        gap: 12px;
        margin-bottom: 28px;
    }

    .page-home .hero__badge {
        padding: 11px 16px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(8px);
        font-size: 14px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.74);
    }

    .page-home .btn--hero {
        min-height: 54px;
        padding: 0 38px;
        font-size: 15px;
    }

    .page-home .cta-form {
        padding: 36px 0;
    }

    .page-home .cta-form__wrap {
        gap: 54px;
    }

    .page-home .cta-form__title {
        font-size: 30px;
    }

    .page-home .cta-form .form-input,
    .page-home .big-form .form-input,
    .page-contacts .big-form .form-input {
        min-height: 48px;
        border-radius: 2px;
    }

    .page-home .contacts {
        padding-top: 18px;
    }

    .page-home .contacts__wrap {
        max-width: 1920px;
        grid-template-columns: 1fr 1.02fr;
        min-height: 610px;
        padding: 0 0 0 68px;
    }

    .page-home .contacts__info {
        padding: 82px 92px 74px 0;
    }

    .page-home .contacts__info .section-title {
        margin-bottom: 50px;
        font-size: 56px;
        line-height: 1.04;
    }

    .page-home .contacts__blocks {
        gap: 42px 46px;
    }

    .page-home .contacts__block h4 {
        margin-bottom: 12px;
        font-size: 18px;
    }

    .page-home .contacts__block a,
    .page-home .contacts__block p {
        font-size: 16px;
        line-height: 1.65;
    }

    .page-home .contacts__map {
        min-height: 610px;
        background: #0d1525;
    }

    .page-home .contacts__route-btn,
    .page-contacts .contacts-find__route-btn,
    .page-home .contacts__scheme-btn,
    .page-contacts .contacts-find__scheme-btn {
        min-height: 44px;
        padding: 0 24px;
        font-size: 14px;
        color: #11192b;
        border-width: 1px;
    }

    .page-home .big-form {
        padding: 58px 0 68px;
    }

    .page-home .big-form__title,
    .page-contacts .big-form__title {
        margin-bottom: 34px;
        font-size: 44px;
        line-height: 1.06;
        letter-spacing: -0.04em;
    }

    .page-home .big-form__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .page-home .big-form .form-input--textarea {
        grid-column: 3;
        grid-row: 1 / span 2;
        min-height: 108px;
    }

    .page-home .big-form__footer {
        gap: 18px;
    }

    .page-equipment {
        background: #0c1425;
    }

    .page-equipment .equipment-page > .container,
    .page-contacts .contacts-hero > .container,
    .page-contacts .big-form > .container,
    .page-legal .legal-page > .container {
        max-width: 1920px;
        padding: 0 248px;
    }

    .page-equipment .equipment-page {
        padding: 152px 0 116px;
    }

    .page-equipment .equipment-page__head {
        margin-bottom: 34px;
    }

    .page-equipment .equipment-page__title {
        max-width: 920px;
        margin-bottom: 34px;
        font-size: clamp(64px, 4.5vw, 76px);
        line-height: 1.02;
    }

    .page-equipment .equipment-page__filters {
        gap: 12px;
    }

    .page-equipment .equipment-page__filter {
        min-height: 40px;
        padding: 0 18px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 500;
    }

    .page-equipment .catalog-grid {
        gap: 12px;
    }

    .page-equipment .catalog-card {
        border-radius: 4px;
    }

    .page-equipment .catalog-pagination {
        margin-top: 26px;
    }

    .page-contacts .contacts-hero {
        padding: 138px 0 46px;
    }

    .page-contacts .contacts-hero__title {
        font-size: clamp(62px, 4.4vw, 72px);
        line-height: 1.03;
        letter-spacing: -0.04em;
    }

    .page-contacts .contacts-find__wrap {
        max-width: 1920px;
        min-height: 748px;
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
        padding: 0 248px;
    }

    .page-contacts .contacts-find__info {
        padding: 96px 92px 86px 0;
        background: transparent;
    }

    .page-contacts .contacts-find__heading {
        margin-bottom: 54px;
        font-size: 54px;
        line-height: 1.04;
    }

    .page-contacts .contacts-find__blocks {
        gap: 42px 42px;
    }

    .page-contacts .contacts-find__block h4 {
        margin-bottom: 12px;
        font-size: 18px;
    }

    .page-contacts .contacts-find__block a,
    .page-contacts .contacts-find__block p {
        font-size: 16px;
        line-height: 1.66;
    }

    .page-contacts .contacts-find__map {
        min-height: 748px;
        background: #0d1525;
    }

    .page-contacts .contacts-find__map-actions {
        left: 118px;
        right: auto;
        bottom: 116px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 18px;
    }

    .page-contacts .contacts-find__route-btn {
        top: 132px;
        left: 122px;
        right: auto;
    }

    .page-contacts .contacts-find__map-label {
        font-size: 16px;
        font-weight: 600;
    }

    .page-contacts .big-form--contacts {
        padding: 58px 0 70px;
    }

    .page-contacts .big-form__company-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin-bottom: 18px;
    }

    .page-contacts .big-form__message {
        grid-column: 3;
        grid-row: 1 / span 2;
        min-height: 108px;
    }

    .page-contacts .file-field {
        min-height: 48px;
    }

    .page-contacts .big-form__footer {
        gap: 18px;
    }

    .page-equipment-detail {
        background: #0c1425;
    }

    .page-equipment-detail .equipment-detail {
        padding-top: 146px;
    }

    .page-equipment-detail .equipment-detail__title {
        max-width: 840px;
        margin-bottom: 28px;
        font-size: clamp(62px, 4.4vw, 74px);
        line-height: 1.02;
        letter-spacing: -0.04em;
    }

    .page-equipment-detail .equipment-detail__brands {
        margin-bottom: 44px;
    }

    .page-equipment-detail .equipment-detail__subtitle {
        font-size: 38px;
        line-height: 1.1;
    }

    .page-equipment-detail .equipment-detail__brands-grid {
        gap: 12px;
    }

    .page-equipment-detail .equipment-detail__brand-card {
        min-height: 64px;
        border-radius: 4px;
    }

    .page-equipment-detail .equipment-detail__lead {
        max-width: 760px;
        font-size: 17px;
        line-height: 1.65;
    }

    .page-equipment-detail .equipment-detail__problem-item {
        font-size: 15px;
        line-height: 1.7;
    }

    .page-equipment-detail .equipment-detail__visual {
        min-height: 446px;
        border-radius: 4px;
    }

    .page-equipment-detail .equipment-detail__section {
        padding: 42px 0;
    }

    .page-equipment-detail .detail-step {
        padding-top: 58px;
    }

    .page-equipment-detail .equipment-detail__guarantee {
        padding: 46px 0;
        gap: 48px;
    }

    .page-equipment-detail .equipment-detail__guarantee-card {
        border-radius: 4px;
    }

    .page-equipment-detail .equipment-detail__works {
        padding-bottom: 68px;
    }

    .page-equipment-detail .equipment-detail__work-grid {
        gap: 18px;
    }

    .page-equipment-detail .detail-form {
        padding: 52px 0 62px;
    }

    .page-equipment-detail .detail-form__inner {
        max-width: 1424px;
        padding: 0;
    }

    .page-equipment-detail .detail-form__title {
        margin-bottom: 28px;
        font-size: 40px;
        line-height: 1.06;
        letter-spacing: -0.04em;
    }

    .page-equipment-detail .detail-form__control,
    .page-equipment-detail .detail-form__upload {
        min-height: 48px;
        border-radius: 2px;
    }

    .page-legal .legal-page {
        padding: 150px 0 92px;
    }
}

/* === FORM FEEDBACK === */
.form-field-error {
    border-color: #e53e3e !important;
}
.form-error-message {
    display: block;
    color: #e53e3e;
    font-size: 12px;
    margin-top: 4px;
}
.form-notification {
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-top: 16px;
}
.form-notification--success {
    background: rgba(56, 161, 105, 0.15);
    color: #38a169;
    border: 1px solid rgba(56, 161, 105, 0.3);
}
.form-notification--error {
    background: rgba(229, 62, 62, 0.15);
    color: #e53e3e;
    border: 1px solid rgba(229, 62, 62, 0.3);
}
button[type="submit"]:disabled,
input[type="submit"]:disabled,
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .brands-track {
        animation: none;
    }
    body.loaded .hero__title,
    body.loaded .hero__desc,
    body.loaded .hero__badges,
    body.loaded .btn--hero,
    body.loaded .company-hero__title,
    body.loaded .company-hero__text,
    body.loaded .btn--company-hero {
        animation: none;
        opacity: 1;
    }
    .fade-up {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* === ARTICLES === */

/* Hero */
.articles-hero {
    background: var(--bg2);
    padding: 110px 0 60px;
    text-align: center;
}
.articles-hero__title {
    font-family: var(--font-head);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}
.articles-hero__sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* Articles section */
.articles-section {
    background: var(--bg);
    padding: 60px 0 80px;
}

/* Filter pills */
.articles-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.articles-filter {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.articles-filter:hover,
.articles-filter--active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Featured article */
.article-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg3);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    text-decoration: none;
    transition: transform var(--tr-lift), box-shadow var(--tr-lift);
}
.article-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.article-featured__img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg3);
}
.article-featured__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--tr-scale);
    backface-visibility: hidden;
    transform: scale(1.005);
}
.article-featured:hover .article-featured__img img {
    transform: scale(1.04);
}
.article-featured__body {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}
.article-featured__title {
    font-family: var(--font-head);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}
.article-featured__excerpt {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Article card */
.article-card {
    display: flex;
    flex-direction: column;
    background: var(--bg3);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: transform var(--tr-lift), box-shadow var(--tr-lift);
}
.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.35);
}
.article-card__img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg3);
}
.article-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--tr-scale);
    backface-visibility: hidden;
    transform: scale(1.005);
}
.article-card:hover .article-card__img img {
    transform: scale(1.04);
}
.article-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg2);
}
.article-card__img.no-img,
.article-featured__img.no-img {
    display: none;
}
.article-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.article-card__cat {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
}
.article-card__title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
}
.article-card__excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
    flex: 1;
}
.article-card__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}
.article-card__meta svg {
    flex-shrink: 0;
    color: var(--text-muted);
}
.article-card__read {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 4px;
}
.article-card--hidden {
    display: none;
}

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

.articles-more {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.articles-more__btn {
    min-height: 34px;
    padding: 0 18px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    background: rgba(18, 25, 44, 0.82);
    color: rgba(255,255,255,0.82);
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    transition: border-color var(--tr), color var(--tr), background var(--tr), transform var(--tr);
}

.articles-more__btn:hover {
    border-color: rgba(255,255,255,0.45);
    color: #fff;
    background: rgba(18, 25, 44, 0.95);
    transform: translateY(-1px);
}

.articles-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}
.articles-pagination__btn {
    padding: 10px 22px;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-muted);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.articles-pagination__btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.articles-pagination__info {
    color: var(--text-muted);
    font-family: var(--font-head);
    font-size: 13px;
}

/* Error / empty */
.articles-error,
.articles-empty {
    color: var(--text-muted);
    font-size: 16px;
    text-align: center;
    padding: 60px 0;
}

/* === ARTICLES HOME SECTION (index.php) === */
.articles-home {
    background: var(--bg2);
    padding: 80px 0;
}
.articles-home__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}
.articles-home__all {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: color var(--tr);
}
.articles-home__all:hover {
    color: var(--accent-hover);
}
.articles-home__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* === ARTICLE PAGE === */
.article-page {
    background: var(--bg);
    padding: 100px 0 80px;
}
.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.article-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--tr);
}
.article-breadcrumb a:hover {
    color: var(--accent);
}
.article-page__header {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.article-page__title {
    font-family: var(--font-head);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.25;
}
.article-page__cover {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    max-height: 480px;
}
.article-page__cover img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}
.article-page__body {
    max-width: 800px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-muted);
}
.article-page__body h2,
.article-page__body h3 {
    font-family: var(--font-head);
    color: var(--text);
    margin: 32px 0 12px;
}
.article-page__body p {
    margin-bottom: 16px;
}
.article-page__body ul,
.article-page__body ol {
    padding-left: 24px;
    margin-bottom: 16px;
}
.article-page__body li {
    margin-bottom: 6px;
}
.article-page__body a:not(.btn) {
    color: var(--accent);
}
.article-page__body img {
    max-width: 100%;
    border-radius: 8px;
    margin: 16px 0;
}
.article-page__back {
    margin-top: 48px;
}

/* === RESPONSIVE ARTICLES === */
@media (max-width: 1024px) {
    .articles-grid,
    .articles-home__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .article-featured {
        grid-template-columns: 1fr;
    }
    .article-featured__body {
        padding: 24px;
    }
    .article-featured__img {
        aspect-ratio: 16/7;
    }
}

@media (max-width: 768px) {
    .articles-hero {
        padding: 60px 0 40px;
    }
    .articles-grid,
    .articles-home__grid {
        grid-template-columns: 1fr;
    }
    .articles-home__head {
        flex-direction: column;
        align-items: flex-start;
    }
    .article-page__body {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .articles-filters {
        gap: 8px;
    }
    .articles-filter {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* ============================================
   DESIGN PASS 2026-03-23
   Non-home pages only
   ============================================ */
@media (min-width: 901px) {
    .page-company {
        background: #0c1425;
    }

    .page-company .company-hero > .container,
    .page-company .company-intro > .container,
    .page-company .company-advantages > .container,
    .page-company .company-breakdown > .container,
    .page-company .company-stages > .container,
    .page-company .big-form > .container,
    .page-articles .articles-hero > .container,
    .page-articles .articles-section > .container {
        max-width: 1920px;
        padding: 0 248px;
    }

    .page-company .company-hero {
        min-height: 560px;
        padding-top: 74px;
    }

    .page-company .company-hero__overlay {
        background:
            linear-gradient(90deg, rgba(8, 14, 28, 0.84) 0%, rgba(8, 14, 28, 0.46) 42%, rgba(8, 14, 28, 0.16) 78%, rgba(8, 14, 28, 0.02) 100%),
            radial-gradient(circle at left top, rgba(255,255,255,0.18) 0%, transparent 30%);
    }

    .page-company .company-hero__content {
        max-width: 410px;
        padding: 72px 0 78px;
    }

    .page-company .company-hero__title {
        margin-bottom: 16px;
        font-size: clamp(58px, 4.2vw, 70px);
        line-height: 1.03;
        letter-spacing: -0.04em;
    }

    .page-company .company-hero__text {
        max-width: 330px;
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.62;
        color: rgba(255,255,255,0.76);
    }

    .page-company .btn--company-hero {
        min-width: 156px;
        min-height: 40px;
        font-size: 13px;
    }

    .page-company .company-intro {
        padding: 84px 0 82px;
    }

    .page-company .company-intro__grid {
        grid-template-columns: minmax(0, 1fr) 398px;
        gap: 104px;
        align-items: start;
    }

    .page-company .company-intro__copy {
        max-width: 590px;
    }

    .page-company .company-intro__copy .section-title,
    .page-company .company-advantages .section-title,
    .page-company .company-stages .section-title {
        font-size: clamp(46px, 3.6vw, 58px);
        line-height: 1.04;
        letter-spacing: -0.04em;
    }

    .page-company .company-intro__copy .section-title {
        margin-bottom: 24px;
    }

    .page-company .company-intro__copy p {
        font-size: 15px;
        line-height: 1.7;
        color: rgba(255,255,255,0.76);
    }

    .page-company .company-intro__copy p + p {
        margin-top: 22px;
    }

    .page-company .company-intro__media-frame {
        width: min(100%, 398px);
        min-height: 506px;
        border-radius: 4px;
        border: 0;
        background: #d9d9d9;
        box-shadow: none;
    }

    .page-company .company-intro__media-frame img {
        min-height: 506px;
    }

    .page-company .company-advantages {
        padding: 4px 0 94px;
    }

    .page-company .company-advantages .section-title {
        max-width: 360px;
        margin-bottom: 26px;
    }

    .page-company .company-advantages__grid {
        gap: 14px;
    }

    .page-company .company-adv-card {
        min-height: 172px;
        padding: 18px 18px 18px;
        border-radius: 4px;
        box-shadow: none;
    }

    .page-company .company-adv-card__icon {
        width: 28px;
        height: 28px;
        margin-bottom: 18px;
    }

    .page-company .company-adv-card__title {
        font-size: 15px;
        line-height: 1.28;
        margin-bottom: 8px;
    }

    .page-company .company-adv-card__text {
        font-size: 13px;
        line-height: 1.55;
    }

    .page-company .company-breakdown {
        min-height: 538px;
        padding: 84px 0 92px;
    }

    .page-company .company-breakdown__layout {
        grid-template-columns: minmax(0, 1fr) 256px;
        gap: 112px;
        align-items: center;
    }

    .page-company .company-breakdown__content {
        max-width: 590px;
    }

    .page-company .company-breakdown__title {
        margin-bottom: 10px;
        font-size: clamp(46px, 3.6vw, 58px);
        line-height: 1.04;
        letter-spacing: -0.04em;
    }

    .page-company .company-breakdown__lead,
    .page-company .company-breakdown__text {
        font-size: 15px;
        line-height: 1.68;
        color: rgba(255,255,255,0.76);
    }

    .page-company .company-breakdown__lead {
        margin-bottom: 38px;
    }

    .page-company .company-breakdown__subtitle {
        margin-bottom: 10px;
        font-size: clamp(44px, 4vw, 56px);
        line-height: 1.04;
        letter-spacing: -0.04em;
    }

    .page-company .company-breakdown__text {
        max-width: 520px;
        margin-bottom: 24px;
    }

    .page-company .company-breakdown__aside {
        border-radius: 4px;
        padding: 24px 18px;
        box-shadow: none;
    }

    .page-company .company-breakdown__aside-title {
        font-size: 22px;
        line-height: 1.14;
        margin-bottom: 12px;
    }

    .page-company .company-breakdown__aside-text {
        font-size: 13px;
        line-height: 1.58;
        margin-bottom: 16px;
    }

    .page-company .company-stages {
        padding-top: 84px;
        padding-bottom: 4px;
    }

    .page-company .company-stages .section-title {
        margin-bottom: 28px;
    }

    .page-company .big-form--company {
        padding: 54px 0 68px;
    }

    .page-company .big-form__company-grid {
        gap: 12px;
    }

    .page-company .big-form--company .big-form__title {
        margin-bottom: 28px;
        font-size: 40px;
        line-height: 1.06;
        letter-spacing: -0.04em;
    }

    .page-company .file-field {
        min-height: 48px;
    }

    .page-contacts .contacts-find__wrap {
        min-height: 690px;
    }

    .page-contacts .contacts-find__info {
        padding: 90px 88px 78px 0;
    }

    .page-contacts .contacts-find__heading {
        margin-bottom: 44px;
    }

    .page-contacts .contacts-find__blocks {
        gap: 34px 34px;
    }

    .page-contacts .contacts-find__map {
        min-height: 690px;
    }

    .page-contacts .contacts-find__route-btn {
        top: 108px;
        left: 88px;
    }

    .page-contacts .contacts-find__map-actions {
        left: 90px;
        bottom: 88px;
    }

    .page-contacts .big-form--contacts {
        padding: 50px 0 68px;
    }

    .page-equipment .catalog-card {
        border-radius: 2px;
        box-shadow: none;
    }

    .page-equipment .catalog-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    }

    .page-equipment .catalog-card--frame .catalog-card__title {
        max-width: 58%;
        top: 15px;
        left: 15px;
        font-size: 13px;
    }

    .page-equipment .catalog-card__visual--art {
        align-items: stretch;
    }

    .page-equipment .catalog-card__art {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    .page-equipment-detail .equipment-detail__hero {
        padding-bottom: 74px;
    }

    .page-equipment-detail .equipment-detail__brands-grid {
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 10px;
    }

    .page-equipment-detail .equipment-detail__brand-card {
        min-height: 60px;
    }

    .page-equipment-detail .equipment-detail__brand-card img {
        max-height: 28px;
    }

    .page-equipment-detail .equipment-detail__intro-grid {
        grid-template-columns: minmax(0, 1.1fr) 356px;
        gap: 56px;
    }

    .page-equipment-detail .equipment-detail__lead {
        margin-bottom: 34px;
    }

    .page-equipment-detail .equipment-detail__section-title {
        font-size: clamp(42px, 3.3vw, 54px);
        line-height: 1.04;
    }

    .page-equipment-detail .equipment-detail__problem-intro {
        font-size: 16px;
        line-height: 1.68;
        margin-bottom: 16px;
    }

    .page-equipment-detail .detail-steps {
        gap: 18px;
    }

    .page-equipment-detail .detail-step__title {
        font-size: 16px;
    }

    .page-equipment-detail .detail-step__text {
        font-size: 13px;
        line-height: 1.55;
    }

    .page-equipment-detail .equipment-detail__guarantee {
        grid-template-columns: minmax(0, 1fr) 468px;
        gap: 56px;
        align-items: start;
    }

    .page-equipment-detail .equipment-detail__guarantee-badge {
        max-width: 260px;
        font-size: 28px;
    }

    .page-equipment-detail .equipment-detail__guarantee-item {
        min-height: 160px;
        border-radius: 4px;
    }

    .page-equipment-detail .equipment-detail__works .works__head {
        margin-bottom: 16px;
    }

    .page-equipment-detail .equipment-detail__work-card {
        border-radius: 4px;
    }

    .page-equipment-detail .detail-form {
        padding: 50px 0 64px;
    }

    .page-equipment-detail .detail-form__field,
    .page-equipment-detail .detail-form__upload {
        background: #ececef;
    }

    .page-articles {
        background: #0c1425;
    }

    .page-articles .articles-hero {
        background: transparent;
        padding: 148px 0 34px;
        text-align: left;
    }

    .page-articles .articles-hero__title {
        max-width: none;
        margin-bottom: 20px;
        font-size: clamp(54px, 4vw, 64px);
        line-height: 1.03;
        letter-spacing: -0.04em;
    }

    .page-articles .articles-hero__sub {
        max-width: 700px;
        margin: 0;
        font-size: 15px;
        line-height: 1.62;
        color: rgba(255,255,255,0.74);
    }

    .page-articles .articles-section {
        background: transparent;
        padding: 0 0 82px;
    }

    .page-articles .articles-filters {
        gap: 10px;
        margin-bottom: 28px;
    }

    .page-articles .articles-filter {
        min-height: 34px;
        padding: 0 16px;
        border: 1px solid rgba(255,255,255,0.78);
        border-radius: 999px;
        background: #fff;
        color: #121b2c;
        font-size: 11px;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .page-articles .articles-filter--active,
    .page-articles .articles-filter:hover {
        background: #1456ff;
        border-color: #1456ff;
        color: #fff;
    }

    .page-articles .article-featured {
        grid-template-columns: minmax(0, 0.39fr) minmax(0, 0.61fr);
        gap: 0;
        min-height: 390px;
        margin-bottom: 26px;
        border-radius: 4px;
        background: #f6f7f9;
        box-shadow: none;
    }

    .page-articles .article-featured__img {
        aspect-ratio: auto;
        min-height: 390px;
    }

    .page-articles .article-featured--no-image {
        grid-template-columns: 1fr;
    }

    .page-articles .article-featured--no-image .article-featured__img {
        display: none;
    }

    .page-articles .article-featured__body {
        padding: 54px 64px 44px;
        gap: 14px;
    }

    .page-articles .article-featured__title {
        max-width: 520px;
        font-size: 40px;
        line-height: 1.08;
        color: #11192b;
        letter-spacing: -0.03em;
    }

    .page-articles .article-featured__excerpt {
        max-width: 470px;
        font-size: 15px;
        line-height: 1.62;
        color: #5b6679;
    }

    .page-articles .article-card__cat {
        color: #d1a22e;
    }

    .page-articles .article-featured .article-card__meta,
    .page-articles .article-featured .article-card__meta svg {
        color: #8a93a3;
    }

    .page-articles .article-featured .article-card__reading-time {
        color: #8a93a3;
        font-size: 13px;
    }

    .page-articles .article-featured .article-card__read {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        width: fit-content;
        padding: 0 18px;
        border-radius: 999px;
        background: #11192b;
        color: #fff;
        font-size: 11px;
        font-weight: 600;
        margin-top: 4px;
    }

    .page-articles .articles-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    .page-articles .article-card {
        border-radius: 4px;
        background: #fff;
        box-shadow: none;
        min-height: 372px;
    }

    .page-articles .article-card__img {
        aspect-ratio: 1.04 / 0.88;
    }

    .page-articles .article-card__body {
        padding: 18px 16px 20px;
        gap: 9px;
    }

    .page-articles .article-card__title {
        font-size: 16px;
        line-height: 1.24;
        color: #11192b;
    }

    .page-articles .article-card__excerpt {
        font-size: 13px;
        line-height: 1.54;
        color: #667183;
    }

    .page-articles .article-card__meta,
    .page-articles .article-card__meta svg {
        color: #8d96a5;
        font-size: 12px;
    }

    .page-articles .article-card__reading-time {
        color: #8d96a5;
        font-size: 12px;
    }

    .page-articles .article-card__read {
        color: #11192b;
        font-size: 12px;
        margin-top: 8px;
    }

    .page-articles .articles-more {
        margin-top: 18px;
    }
}

@media (max-width: 900px) {
    .page-company .company-hero,
    .page-articles .articles-hero {
        padding-top: 110px;
    }

    .page-company .company-intro,
    .page-company .company-advantages,
    .page-company .company-breakdown,
    .page-company .company-stages,
    .page-company .big-form--company,
    .page-articles .articles-section,
    .page-contacts .big-form--contacts,
    .page-equipment-detail .detail-form {
        padding-left: 0;
        padding-right: 0;
    }

    .page-articles .articles-hero {
        text-align: left;
        padding-bottom: 28px;
    }

    .page-articles .articles-hero__sub {
        margin: 0;
    }

    .page-articles .article-featured {
        background: #f6f7f9;
    }

    .page-articles .article-featured__body {
        padding: 28px;
    }

    .page-articles .article-featured__title,
    .page-articles .article-card__title {
        color: #11192b;
    }

    .page-articles .article-featured__excerpt,
    .page-articles .article-card__excerpt,
    .page-articles .article-card__meta,
    .page-articles .article-card__reading-time {
        color: #637083;
    }

    .page-articles .article-card {
        background: #fff;
    }
}

@media (max-width: 700px) {
    .page-company .company-hero {
        min-height: 448px;
    }

    .page-company .company-hero__content {
        max-width: 320px;
        padding: 28px 0 60px;
    }

    .page-company .company-hero__title,
    .page-company .company-intro__copy .section-title,
    .page-company .company-advantages .section-title,
    .page-company .company-breakdown__title,
    .page-company .company-stages .section-title,
    .page-contacts .contacts-hero__title,
    .page-contacts .contacts-find__heading,
    .page-articles .articles-hero__title,
    .page-equipment .equipment-page__title,
    .page-equipment-detail .equipment-detail__title {
        font-size: clamp(24px, 7vw, 46px);
        line-height: 1.04;
    }

    .page-company .company-intro {
        padding: 58px 0 52px;
    }

    .page-company .company-intro__media-frame,
    .page-company .company-intro__media-frame img {
        min-height: 320px;
    }

    .page-company .company-advantages {
        padding-bottom: 60px;
    }

    .page-company .company-breakdown {
        min-height: 0;
        padding: 60px 0;
    }

    .page-company .company-breakdown__subtitle {
        font-size: 32px;
    }

    .page-company .company-stages {
        padding-top: 62px;
    }

    .page-company .big-form--company {
        padding: 50px 0 60px;
    }

    .page-contacts .contacts-hero {
        padding: 114px 0 34px;
    }

    .page-contacts .contacts-find__info {
        padding: 34px 20px;
    }

    .page-contacts .contacts-find__map {
        min-height: 320px;
    }

    .page-contacts .contacts-find__route-btn {
        top: 14px;
        left: 14px;
        right: auto;
    }

    .page-contacts .contacts-find__map-actions {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .page-articles .articles-hero {
        padding: 112px 0 30px;
    }

    .page-articles .articles-hero__sub {
        font-size: 14px;
        line-height: 1.58;
    }

    .page-articles .articles-section {
        padding-bottom: 60px;
    }

    .page-articles .articles-filters {
        margin-bottom: 18px;
    }

    .page-articles .article-featured__img {
        min-height: 236px;
    }

    .page-articles .article-featured__body {
        padding: 22px 18px 20px;
        gap: 10px;
    }

    .page-articles .article-featured__title {
        font-size: 28px;
        line-height: 1.14;
    }

    .page-articles .article-featured .article-card__read {
        min-height: 32px;
        padding: 0 16px;
    }

    .page-equipment .catalog-card {
        min-height: 284px;
    }

    .page-equipment .catalog-card--frame .catalog-card__title {
        max-width: 54%;
    }

    .page-equipment-detail .equipment-detail__hero {
        padding-bottom: 46px;
    }

    .page-equipment-detail .equipment-detail__brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-equipment-detail .equipment-detail__section-title {
        font-size: clamp(30px, 8vw, 38px);
        line-height: 1.08;
    }

    .page-equipment-detail .equipment-detail__guarantee {
        gap: 24px;
    }

    .page-equipment-detail .equipment-detail__guarantee-card,
    .page-equipment-detail .equipment-detail__guarantee-item,
    .page-equipment-detail .equipment-detail__work-card {
        border-radius: 4px;
    }
}

/* ============================================
   CONTACTS PAGE REFINEMENT
   ============================================ */
.page-contacts .contacts-find {
    background: #0c1425;
    padding-bottom: 0;
}

.page-contacts .contacts-hero > .container {
    max-width: 1920px;
    padding: 0 128px;
}

.page-contacts .contacts-find__wrap {
    max-width: 1920px;
    min-height: 548px;
    padding: 0 128px;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 0;
    align-items: stretch;
}

.page-contacts .contacts-find__info {
    display: block;
    padding: 70px 56px 58px 0;
    background: transparent;
}

.page-contacts .contacts-find__heading {
    margin-bottom: 34px;
}

.page-contacts .contacts-find__blocks {
    gap: 32px 30px;
}

.page-contacts .contacts-find__block {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.page-contacts .contacts-find__block h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.page-contacts .contacts-find__block a,
.page-contacts .contacts-find__block p {
    color: rgba(246, 247, 249, 0.78);
    font-size: 14px;
    line-height: 1.72;
}

.page-contacts .contacts-find__map {
    position: relative;
    min-height: 548px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #0d1525;
}

.page-contacts .contacts-find__map-image {
    position: absolute;
    inset: 0;
}

.page-contacts .contacts-find__route-btn {
    top: 116px;
    left: 54px;
    right: auto;
    min-height: 38px;
    padding: 0 22px;
    background: #fff;
    border-color: #fff;
    color: #11192b;
    border-width: 1px;
    font-size: 12px;
}

.page-contacts .contacts-find__map-actions {
    left: 56px;
    right: auto;
    bottom: 66px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
}

.page-contacts .contacts-find__map-label {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.page-contacts .contacts-find__scheme-btn {
    min-height: 52px;
    min-width: 198px;
    padding: 0 28px;
    border-radius: 4px;
    background: #fff;
    border-color: #fff;
    color: #11192b;
    border-width: 1px;
    font-size: 14px;
}

.page-contacts .contacts-find__route-btn:hover,
.page-contacts .contacts-find__scheme-btn:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.92);
    color: #11192b;
}

@media (max-width: 1200px) {
    .page-contacts .contacts-hero > .container {
        padding: 0 56px;
    }

    .page-contacts .contacts-find__wrap {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 56px;
    }

    .page-contacts .contacts-find__map {
        min-height: 500px;
    }
}

@media (max-width: 900px) {
    .page-contacts .contacts-find__blocks {
        grid-template-columns: 1fr;
    }

    .page-contacts .contacts-find__block {
        min-height: auto;
    }
}

@media (max-width: 700px) {
    .page-contacts .contacts-find {
        padding-bottom: 0;
    }

    .page-contacts .contacts-hero > .container,
    .page-contacts .contacts-find__wrap {
        padding: 0 20px;
    }

    .page-contacts .contacts-find__info {
        padding: 34px 20px;
    }

    .page-contacts .contacts-find__map {
        min-height: 300px;
    }

    .page-contacts .contacts-find__route-btn {
        top: 14px;
        left: 14px;
        min-height: 36px;
        padding: 0 18px;
    }

    .page-contacts .contacts-find__map-actions {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .page-contacts .contacts-find__scheme-btn {
        min-width: 0;
        width: auto;
        padding: 0 22px;
    }
}

.catalog-card--link {
    display: block;
    color: inherit;
}

.catalog-card__visual--image::before,
.catalog-card__visual--image::after {
    content: none !important;
}

.catalog-card__placeholder {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(17, 25, 43, 0.14) 0%, rgba(17, 25, 43, 0.04) 100%);
    color: #11192b;
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 800;
}

.catalog-card__meta {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.catalog-card__tag,
.catalog-card__sub {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.catalog-card__tag {
    background: rgba(9, 19, 39, 0.08);
    color: #091327;
}

.catalog-card__sub {
    background: rgba(255, 255, 255, 0.82);
    color: #4b5568;
}

.equipment-page__empty {
    padding: 40px 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
}

.equipment-page__empty h2 {
    margin: 0 0 12px;
    color: #fff;
}

.equipment-detail__visual-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    max-width: 360px;
    min-height: 320px;
    border-radius: 24px;
    background: linear-gradient(135deg, #eef2f8 0%, #dce3ef 100%);
    color: #0d1526;
    font-family: var(--font-head);
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 800;
}

.equipment-detail__section-copy {
    padding: 30px 32px;
    border-radius: 24px;
    background: #fff;
    color: #4e5768;
    line-height: 1.75;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.equipment-detail__section-copy h2,
.equipment-detail__section-copy h3,
.equipment-detail__section-copy h4 {
    color: #0d1526;
    margin-top: 1.4em;
    margin-bottom: 0.5em;
}

.equipment-detail__section-copy p {
    margin: 0.75em 0;
}

.equipment-detail__section-copy p:first-child {
    margin-top: 0;
}

.equipment-detail__section-copy p:last-child {
    margin-bottom: 0;
}

.equipment-detail__section-copy ul,
.equipment-detail__section-copy ol {
    margin: 0.75em 0;
    padding-left: 1.5em;
}

.equipment-detail__section-copy ul {
    list-style: disc;
}

.equipment-detail__section-copy ol {
    list-style: decimal;
}

.equipment-detail__section-copy li {
    margin-bottom: 0.35em;
}

.equipment-detail__section-copy a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--tr);
}

.equipment-detail__section-copy a:hover {
    color: var(--accent-hover);
}

.equipment-detail__section-copy img {
    border-radius: 12px;
    margin: 1em 0;
}

.equipment-detail__section-copy blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 16px;
    margin: 1em 0;
    color: #3a4255;
    font-style: italic;
}

.equipment-detail__work-note {
    margin: 14px 0 0;
    color: #5d6679;
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .catalog-card__meta {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .equipment-detail__section-copy {
        padding: 22px;
    }
}

/* === MAINTENANCE PAGE === */

/* Hero */
.maint-hero {
    background: var(--bg);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.maint-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(20, 86, 255, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.maint-hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}
.maint-hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    max-width: 820px;
    margin: 0 auto 24px;
}
.maint-hero__sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.maint-hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats strip */
.maint-stats {
    background: var(--bg2);
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.maint-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.maint-stats__item {
    padding: 8px 0;
}
.maint-stats__value {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.maint-stats__value span {
    color: var(--accent);
}
.maint-stats__label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}

/* Виды ТО */
.maint-services {
    background: var(--bg);
    padding: 100px 0;
}
.maint-services__header {
    text-align: center;
    margin-bottom: 56px;
}
.maint-services__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
.maint-services__title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
}
.maint-services__sub {
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    margin: 0 auto;
}
.maint-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.maint-service-card {
    background: var(--bg2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 36px 32px;
    transition: border-color 0.2s;
}
.maint-service-card:hover {
    border-color: rgba(20, 86, 255, 0.35);
}
.maint-service-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(20, 86, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}
.maint-service-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.maint-service-card__text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin: 0;
}

/* Этапы ТО */
.maint-process {
    background: var(--bg2);
    padding: 100px 0;
}
.maint-process__header {
    text-align: center;
    margin-bottom: 56px;
}
.maint-process__title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
}
.maint-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    counter-reset: maint-steps;
}
.maint-process__step {
    text-align: center;
    counter-increment: maint-steps;
    position: relative;
}
.maint-process__step::before {
    content: counter(maint-steps, decimal-leading-zero);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 12px;
}
.maint-process__step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.maint-process__step-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    margin: 0;
}

/* CTA section */
.maint-cta {
    background: var(--accent);
    padding: 80px 0;
    text-align: center;
}
.maint-cta__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
}
.maint-cta__sub {
    color: rgba(255,255,255,0.8);
    margin: 0 auto 32px;
    max-width: 520px;
    font-size: 1rem;
}

/* Global button variant — белая кнопка для цветного фона */
.btn--white {
    background: #fff;
    color: var(--accent);
    border: 2px solid #fff;
}
.btn--white:hover {
    background: transparent;
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .maint-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .maint-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .maint-process__steps {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .maint-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .maint-services__grid {
        grid-template-columns: 1fr;
    }
    .maint-process__steps {
        grid-template-columns: 1fr 1fr;
    }
    .maint-hero {
        padding: 80px 0 60px;
    }
}

/* === EQUIPMENT BY MANUFACTURER === */

.mfr-groups {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 8px 0 60px;
}

.mfr-group {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
}

.mfr-group__header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mfr-group__logo {
    height: 36px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.mfr-group__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.mfr-group__count {
    margin-left: auto;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
}

.mfr-group__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.mfr-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    transition: background 0.15s;
}

.mfr-item:hover {
    background: rgba(20, 86, 255, 0.07);
}

.mfr-item:nth-child(2n) {
    border-right: none;
}

.mfr-item:nth-last-child(1),
.mfr-item:nth-last-child(2) {
    border-bottom: none;
}

.mfr-item__title {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    flex: 1;
    line-height: 1.4;
}

.mfr-item__cat {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
}

.mfr-item__arrow {
    color: rgba(255,255,255,0.2);
    flex-shrink: 0;
    transition: color 0.15s, transform 0.15s;
}

.mfr-item:hover .mfr-item__arrow {
    color: var(--accent);
    transform: translateX(3px);
}

@media (max-width: 640px) {
    .mfr-group__items {
        grid-template-columns: 1fr;
    }
    .mfr-item:nth-child(2n) {
        border-right: none;
    }
    .mfr-item:nth-last-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .mfr-item:last-child {
        border-bottom: none;
    }
    .mfr-group__header {
        padding: 18px 20px;
    }
    .mfr-item {
        padding: 12px 20px;
    }
}

/* === BRAND GRID (view=manufacturer) === */

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 8px 0 60px;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px 24px 24px;
    background: var(--bg2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    min-height: 140px;
}

.brand-card:hover {
    border-color: rgba(20, 86, 255, 0.4);
    background: rgba(20, 86, 255, 0.06);
    transform: translateY(-2px);
}

.brand-card__logo {
    height: 44px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.brand-card__name {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-align: center;
    letter-spacing: 0.03em;
}

.brand-card__count {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
}

@media (max-width: 900px) {
    .brand-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .brand-card { padding: 24px 16px 18px; min-height: 110px; }
    .brand-card__logo { height: 32px; }
}

/* === BRAND DETAIL PAGE === */

.brand-detail__nav {
    padding: 90px 0 0;
}

.brand-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.15s;
}

.brand-detail__back:hover {
    color: rgba(255,255,255,0.85);
}

.brand-detail__hero {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px 0 56px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.brand-detail__logo {
    width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.brand-detail__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.2;
}

.brand-detail__desc {
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin: 0 0 28px;
    font-size: 0.95rem;
}

.brand-detail__list-header {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 36px 0 20px;
}

.brand-detail__list-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    flex: 1;
}

.brand-detail__list-title span {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255,255,255,0.35);
    margin-left: 8px;
}

.brand-detail__sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-detail__sort-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.brand-detail__sort-btn {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: color 0.15s, border-color 0.15s;
}

.brand-detail__sort-btn:hover,
.brand-detail__sort-btn--active {
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}

.brand-detail__sort-btn--active {
    background: rgba(255,255,255,0.06);
}

.brand-eq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 60px;
}

.brand-eq-item {
    display: flex;
    align-items: center;
    padding: 16px 22px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    transition: background 0.15s;
    gap: 12px;
}

.brand-eq-item:nth-child(2n) {
    border-right: none;
}

.brand-eq-item:nth-last-child(1),
.brand-eq-item:nth-last-child(2) {
    border-bottom: none;
}

.brand-eq-item:hover {
    background: rgba(20, 86, 255, 0.07);
}

.brand-eq-item__body {
    flex: 1;
    min-width: 0;
}

.brand-eq-item__title {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}

.brand-eq-item__cat {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    margin-top: 2px;
}

.brand-eq-item__arrow {
    color: rgba(255,255,255,0.2);
    flex-shrink: 0;
    transition: color 0.15s, transform 0.15s;
}

.brand-eq-item:hover .brand-eq-item__arrow {
    color: var(--accent);
    transform: translateX(3px);
}

.brand-detail__empty {
    color: rgba(255,255,255,0.4);
    padding: 40px 0;
}

@media (max-width: 720px) {
    .brand-detail__hero {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 0 40px;
    }
    .brand-detail__logo {
        max-height: 56px;
        width: auto;
        max-width: 180px;
    }
    .brand-eq-list {
        grid-template-columns: 1fr;
    }
    .brand-eq-item:nth-child(2n) {
        border-right: none;
    }
    .brand-eq-item:nth-last-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .brand-eq-item:last-child {
        border-bottom: none;
    }
}

/* === BRAND MODELS LIST === */
.brand-models {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.brand-models__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 36px;
}

.brand-models__series {
    margin-bottom: 36px;
}

.brand-models__series-name {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin: 0 0 14px;
}

.brand-models__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 6px 12px;
}

.brand-models__item {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    padding: 5px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.15s, background 0.15s;
}

.brand-models__item:hover {
    color: rgba(255,255,255,0.9);
    background: rgba(20,86,255,0.08);
}

@media (max-width: 720px) {
    .brand-models__list {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .brand-models__title {
        font-size: 1.2rem;
    }
}

/* === BRAND MODELS ACCORDION === */
.bm-acc__item {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.bm-acc__item:first-child {
    border-top: 1px solid rgba(255,255,255,0.07);
}

.bm-acc__head {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    background: none;
    border: none;
    padding: 16px 0;
    cursor: pointer;
    text-align: left;
    color: #fff;
    transition: color 0.15s;
}

.bm-acc__head:hover {
    color: var(--accent);
}

.bm-acc__series-name {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: inherit;
}

.bm-acc__count {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
    transition: color 0.15s;
}

.bm-acc__head:hover .bm-acc__count {
    color: rgba(255,255,255,0.5);
}

.bm-acc__arrow {
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease, color 0.15s;
}

.bm-acc__head[aria-expanded="true"] .bm-acc__arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

.bm-acc__body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

.bm-acc__body .brand-models__list {
    padding-bottom: 20px;
}

/* === EQUIPMENT CATALOG CARD (type view) === */
/* Figma @2x full-card exports — image fills card, HTML title visually hidden (baked into image) */

.page-equipment .catalog-card--frame {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
    border: none;
}

/* Visually hide HTML title — title text is baked into Frame image */
.page-equipment .catalog-card--frame .catalog-card__title {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Visual wrapper fills card */
.page-equipment .catalog-card--frame .catalog-card__visual--art {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    pointer-events: none !important;
}
.page-equipment .catalog-card--frame .catalog-card__visual--art::before,
.page-equipment .catalog-card--frame .catalog-card__visual--art::after {
    content: none !important;
}

/* Image fills full card — overrides all base catalog-card__art rules */
.page-equipment .catalog-card--frame .catalog-card__art {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    filter: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    z-index: 0 !important;
}

.page-equipment .catalog-card--frame:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

/* На мобиле base-правило задаёт aspect-ratio: auto + min-height: 310px,
   что делает Frame-карточку горизонтальной и обрезает верх Figma-изображения.
   Возвращаем квадрат — Frame-экспорты рассчитаны на 1:1 */
@media (max-width: 560px) {
    .page-equipment .catalog-card--frame {
        aspect-ratio: 1 / 1 !important;
        min-height: unset !important;
    }
}

/* Pagination */
.catalog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 56px;
}

.catalog-pagination__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.catalog-pagination__link:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.35);
    color: #fff;
}

.catalog-pagination__link--active {
    background: #fff;
    border-color: #fff;
    color: #0d1526;
    pointer-events: none;
}

@media (max-width: 600px) {
    .catalog-pagination__link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
