/* =====================================================
   Brightfield Global — styled after brightfieldmedical.com
   ===================================================== */

/* ---------- Fonts (self-hosted Poppins; Inter stays as Cyrillic fallback) ---------- */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-400.woff2) format("woff2");
  }
  @font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-500.woff2) format("woff2");
  }
  @font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-600.woff2) format("woff2");
  }
  @font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-700.woff2) format("woff2");
  }

/* ---------- Design Tokens ---------- */
:root {
    --blue-900: #052f63;
    --blue-800: #073c80;
    --blue-700: #0B4996;   /* brand — site blue */
    --blue-600: #0e57b0;
    --blue-500: #0B4996;   /* accent / buttons */
    --blue-400: #2f72c8;
    --blue-100: #e3ecf7;
    --blue-50:  #f0f5fc;

    /* brightfieldmedical.com palette */
    --accent:     #0B4996;
    --text-black: #070707;
    --gray-bg:    #F8F8F8;
    --card-line:  #EBEBEB;

    /* brand blue as rgb for shadows */
    --blue-rgb: 11, 73, 150;

    --ink:      #070707;
    --ink-soft: #2c2c2c;
    --muted:    #5f6470;
    --line:     #e6e8ee;

    --bg:       #ffffff;
    --bg-soft:  #F8F8F8;

    --white:    #ffffff;

    --radius-sm: 15px;
    --radius:    24px;
    --radius-lg: 24px;
    --radius-pill: 56px;

    --shadow-sm: 0 0 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 12px 30px rgba(7, 7, 7, 0.08);
    --shadow-lg: 0 24px 60px rgba(7, 7, 7, 0.12);
    /* neutral (no blue tint) — for clean 3D lift */
    --shadow-card: 0 24px 54px rgba(28, 33, 48, 0.12);
    --shadow-soft: 0 12px 26px rgba(28, 33, 48, 0.10);

    --ease: ease;
    --ease-out: ease;

    --container: 1280px;
    --gutter: 20px;

    --font: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  }
  
  /* ---------- Reset ---------- */
  *,
  *::before,
  *::after { box-sizing: border-box; }
  
  html { -webkit-text-size-adjust: 100%; }
  
  body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, p, figure, address { margin: 0; }
  ul { margin: 0; padding: 0; list-style: none; }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; height: auto; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  address { font-style: normal; }
  
  /* ---------- Layout helpers ---------- */
  .container {
    width: 100%;
    max-width: calc(var(--container) + var(--gutter) * 2);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  
  .section-title {
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--text-black);
  }
  .section-title--center { text-align: center; }

  /* accent kicker above titles — brightfieldmedical pattern */
  .section-kicker {
    display: block;
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 12px;
  }
  
  .section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
  }
  
  /* ---------- Buttons (= .arrow_button на brightfieldmedical.com) ---------- */
  .btn {
    --btn-bg: var(--accent);
    --btn-fg: #fff;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    min-height: 46px;
    padding: 8px 8px 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: normal;
    color: var(--btn-fg);
    background: var(--btn-bg);
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
    box-sizing: border-box;
  }
  .btn > span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
  }
  .btn:hover { background: #fff; color: var(--accent); }

  /* стрелка из SVG (круглая иконка 28×28) */
  .btn .btn__arrow,
  .btn img.btn__arrow {
    flex: none;
    width: 28px;
    height: 28px;
    display: block;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
  }
  .btn:hover .btn__arrow { border-color: var(--accent); }

  /* legacy: старый круглый svg-icon — оставляем совместимость */
  .btn .btn__icon {
    display: inline-grid;
    place-items: center;
    flex: none;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #fff;
    color: var(--accent);
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
  }
  .btn .btn__icon svg { display: block; }
  .btn:hover .btn__icon { border-color: var(--accent); }

  /* без иконки — симметричный padding как Learn More / white */
  .btn > span:only-child { padding-right: 8px; }

  .btn--ghost {
    --btn-bg: #fff;
    --btn-fg: var(--text-black);
    border-color: #fff;
    padding: 8px 32px;
  }
  .btn--ghost:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

  .btn--outline {
    --btn-bg: transparent;
    --btn-fg: var(--accent);
    border-color: var(--accent);
    padding: 8px 8px 8px 16px;
  }
  .btn--outline:hover { background: var(--accent); color: #fff; }
  .btn--outline:hover .btn__arrow { border-color: #fff; }

  .btn--light {
    --btn-bg: #fff;
    --btn-fg: var(--accent);
    border-color: #fff;
  }
  .btn--light:hover { background: transparent; color: #fff; border-color: #fff; }

  .btn--ghost-light {
    --btn-bg: transparent;
    --btn-fg: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 8px 32px;
  }
  .btn--ghost-light:hover { background: #fff; color: var(--accent); border-color: #fff; }

  /* primary без явной стрелки в разметке — дорисовываем как на референсе */
  .btn--primary:not(:has(.btn__arrow)):not(:has(.btn__icon))::after {
    content: "";
    width: 28px;
    height: 28px;
    flex: none;
    background: url(../img/button-arrow.svg) center / contain no-repeat;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
  }
  .btn--primary:not(:has(.btn__arrow)):not(:has(.btn__icon)):hover::after {
    border-color: var(--accent);
  }
  
  /* =====================================================
     HEADER — fixed, transparent over hero, white when scrolled
     ===================================================== */
  .header {
    position: sticky;
    top: 0;
    z-index: 100;
  }
  /* home / contacts: hero lies underneath the transparent header */
  body.home .header,
  body.page-template-homepage-php .header,
  body.page-template-homepage .header,
  body.page-template-pageshomepage-php .header,
  body.page-template-contacts .header,
  body.page-template-pagescontacts-php .header,
  body.page-template-about .header,
  body.page-template-pagesabout-php .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  .header__bar {
    background: #fff;
    padding: 12px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  }
  body.home .header:not(.is-scrolled) .header__bar,
  body.page-template-homepage-php .header:not(.is-scrolled) .header__bar,
  body.page-template-homepage .header:not(.is-scrolled) .header__bar,
  body.page-template-pageshomepage-php .header:not(.is-scrolled) .header__bar,
  body.page-template-contacts .header:not(.is-scrolled) .header__bar,
  body.page-template-pagescontacts-php .header:not(.is-scrolled) .header__bar,
  body.page-template-about .header:not(.is-scrolled) .header__bar,
  body.page-template-pagesabout-php .header:not(.is-scrolled) .header__bar {
    background: transparent;
    padding: 28px 0;
  }
  .header.is-scrolled .header__bar {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
  }
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 64px;
  }
  .header__logo img { width: 100%; max-width: 221px; height: auto; }

  .header__nav { margin-left: auto; }
  .header__nav-list {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .header__nav-list a {
    display: block;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 400;
    color: #1E1E1E;
    white-space: nowrap;
    transition: color 0.3s ease;
  }
  .header__nav-list a:hover { color: var(--accent); }
  .header__nav-list .current-menu-item > a,
  .header__nav-list .current_page_item > a { color: var(--accent); }

  .header__actions { display: flex; align-items: center; gap: 14px; }

  .header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 42px; height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    align-items: center;
    transition: border-color 0.3s, background 0.3s;
  }
  .header__menu-toggle span {
    display: block;
    width: 18px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }
  .header__menu-toggle:hover { border-color: var(--accent); }
  
  .header__lang {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--ink-soft);
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
  }
  .header__lang:hover { border-color: var(--blue-400); color: var(--blue-500); }
  .header__lang { position: relative; user-select: none; }
  .header__lang svg { transition: transform 0.3s var(--ease); }
  .header__lang.is-open { border-color: var(--blue-400); color: var(--blue-500); }
  .header__lang.is-open svg { transform: rotate(180deg); }
  .header__lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 170px;
    padding: 6px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(20, 60, 130, 0.12);
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
    z-index: 200;
  }
  .header__lang.is-open .header__lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .header__lang-option {
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    border: none;
    border-radius: 8px;
    background: transparent;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .header__lang-option:hover { background: var(--bg-soft, #f4f5f7); color: var(--blue-700); }
  .header__lang-option.is-active { color: var(--blue-700); font-weight: 600; }
  
  .header__cta { padding: 6px 6px 6px 16px; min-height: 44px; white-space: nowrap; }

  .header__lang { border-radius: var(--radius-pill); }
  .header__lang:hover { border-color: var(--accent); color: var(--accent); }
  
  /* =====================================================
     HERO — full-bleed slider under transparent header
     (layout mirrors brightfieldmedical.com hero)
     ===================================================== */
  .hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(620px, 92vh, 860px);
    padding: 175px 0 90px;
    overflow: hidden;
    background: var(--gray-bg);
  }
  .hero__slider {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero__slider .swiper-wrapper,
  .hero__slider .swiper-slide { height: 100%; }
  .hero__slider .swiper-slide { overflow: hidden; }
  .hero__image-link { display: block; width: 100%; height: 100%; }
  .hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* readability scrim over slides — light like the prod hero background */
  .hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    /* background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.88) 40%,
      rgba(255, 255, 255, 0.55) 68%,
      rgba(255, 255, 255, 0.18) 100%); */
  }
  .hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 680px;
  }
  .hero__kicker {
    display: inline-block;
    padding: 5px 20px;
    border-radius: var(--radius-pill);
    background: var(--accent);
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 25px;
  }
  .hero__title {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--text-black);
    margin-top: 0;
    margin-bottom: 0;
  }
  @media (max-width: 1450px) {
    .hero__title { font-size: 56px; line-height: 64px; }
  }
  @media (max-width: 1050px) {
    .hero__title { font-size: 48px; line-height: 56px; }
  }
  @media (max-width: 840px) {
    .hero__title { font-size: 39px; line-height: 48px; }
  }
  @media (max-width: 600px) {
    .hero__title { font-size: 32px; line-height: 40px; }
    .section-title { font-size: 28px; line-height: 36px; }
    .section-kicker { font-size: 18px; line-height: 24px; }
  }
  .hero__text {
    margin-top: 25px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-black);
    max-width: 550px;
  }
  .hero__actions {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .hero__actions .btn--ghost { box-shadow: var(--shadow-sm); }

  .hero__nav {
    position: absolute;
    right: var(--gutter);
    bottom: -34px;
    z-index: 2;
    display: flex;
    gap: 10px;
  }
  .hero__arrow {
    display: grid;
    place-items: center;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #fff;
    color: var(--accent);
    box-shadow: var(--shadow-sm);
    transition: background 0.3s, color 0.3s, border-color 0.3s;
  }
  .hero__arrow:hover { border-color: var(--accent); }
  .hero__arrow--active { background: var(--accent); color: #fff; border-color: var(--accent); }
  .hero__arrow--active:hover { background: #fff; color: var(--accent); }
  
  /* =====================================================
     PRODUCTS
     ===================================================== */
  .products { padding: 100px 0 0; }
  .products__grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .product-card {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 150px;
    padding: 44px 32px;
    border-radius: var(--radius);
    background: var(--gray-bg);
    border: 1px solid transparent;
    overflow: hidden;
    transition: transform 0.5s var(--ease), border-color 0.3s ease, background 0.3s ease;
    will-change: transform;
  }
  .product-card::after {
    /* glow ring */
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1.5px transparent;
    transition: box-shadow 0.5s var(--ease);
  }
  .product-card__media {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    transition: transform 0.6s var(--ease);
  }
  .product-card__media img {
    height: 46px;
    width: auto;
    object-fit: contain;
  }
  .product-card__shine {
    position: absolute;
    top: 0; left: -60%;
    width: 50%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.75), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
  }
  .product-card:hover {
    box-shadow: none;
    border-color: var(--accent);
    background: #fff;
  }
  .product-card:hover::after { box-shadow: inset 0 0 0 1px rgba(28, 33, 48, 0.05); }
  .product-card:hover .product-card__media { transform: scale(1.06); }
  .product-card:hover .product-card__shine { animation: shine 0.9s var(--ease); }
  @keyframes shine {
    to { left: 130%; }
  }
  
  /* =====================================================
     ABOUT — lead paint text + cards (brightfieldmedical)
     ===================================================== */
  .about { padding: 100px 0 150px; background: var(--gray-bg); }
  .about__intro { display: flex; flex-direction: column; }
  .about__subtitle {
    display: block;
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 12px;
  }
  .about__lead {
    margin: 0 0 35px;
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    color: var(--text-black);
  }
  .about__brand { color: var(--text-black); }
  .about__lead .paint-target,
  .about__lead .paint-target .w {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: #B1B1B1;
    transition: color 0.15s linear;
    will-change: color;
  }
  .about__lead .paint-target .w.is-on { color: var(--text-black); }
  @media (prefers-reduced-motion: reduce) {
    .about__lead .paint-target .w { transition: none; }
  }
  .about__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 85px;
    margin-bottom: 85px;
    border-bottom: 1px solid #B1B1B1;
  }
  .about__plus { flex: none; width: 48px; height: 48px; display: block; }
  .about__grid { margin-top: 0; }
  .about__grid:not(.m-swiper) .swiper-wrapper,
  .about__grid .swiper-wrapper { align-items: stretch; gap: 24px; }

  @media (max-width: 1200px) {
    .about__lead { font-size: 32px; line-height: 42px; }
  }
  @media (max-width: 870px) {
    .about__subtitle { font-size: 18px; }
    .about__lead { font-size: 24px; line-height: 32px; }
    .about__actions { padding-bottom: 40px; margin-bottom: 40px; }
  }
  @media (max-width: 560px) {
    .about__plus { width: 40px; height: 40px; }
  }

  .feature {
    position: relative;
    height: auto;
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
  }
  .feature__icon {
    display: grid;
    place-items: center;
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    margin-bottom: 30px;
    transition: transform 0.5s var(--ease);
  }
  .feature:hover .feature__icon {
    transform: rotate(-4deg);
  }
  .feature__title {
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    color: var(--text-black);
    border-top: 1px solid var(--card-line);
    padding-top: 20px;
    margin-bottom: 12px;
  }
  .feature__text {
    font-size: 16px;
    line-height: 30px;
    color: var(--text-black);
  }
  
  /* =====================================================
     LOGISTICS
     ===================================================== */
  .logistics { padding: 100px 0; background: #fff; }
  .logistics__grid { margin-top: 0; }
  .logi-card {
    position: relative;
    display: flex;
    gap: 22px;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--gray-bg);
    border: 1px solid transparent;
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease;
  }
  .logi-card:hover { border-color: var(--accent); background: #fff; }

  .logi-card__num {
    flex: none;
    display: grid;
    place-items: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    transition: transform 0.3s ease;
  }
  .logi-card:hover .logi-card__num {
    transform: scale(1.06);
  }
  .logi-card__title {
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-black);
  }
  .logi-card__text {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-black);
  }
  
  /* =====================================================
     NEWS
     ===================================================== */
  .news { padding: 100px 0; background: var(--gray-bg); }
  .news__grid { margin-top: 0; }
  .news__grid:not(.m-swiper) { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 880px) {
    .news__grid:not(.m-swiper) { grid-template-columns: 1fr; }
  }
  .news-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }
  .news-card__media {
    overflow: hidden;
    aspect-ratio: 16 / 9;
  }
  .news-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
  }
  .news-card:hover { box-shadow: var(--shadow-sm); }
  .news-card:hover .news-card__media img { transform: scale(1.06); }

  .news-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    flex: 1;
  }
  .news-card__title {
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    color: var(--text-black);
  }
  .news-card__text {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-black);
    flex: 1;
  }
  .news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    color: var(--accent);
    margin-top: 6px;
    align-self: flex-start;
    transition: color 0.3s var(--ease);
  }
  .news-card__link svg { transition: transform 0.4s var(--ease); }
  /* only the View More link reacts — and only on its own hover */
  .news-card__link:hover { color: var(--blue-700); }
  .news-card__link:hover svg { transform: translateX(5px); }
  
  /* =====================================================
     REVIEWS
     ===================================================== */
  /* =====================================================
     INDUSTRIES SERVED — brightfieldmedical.com
     ===================================================== */
  .industries {
    background: url(../img/industries/ind.jpg) no-repeat center center / cover;
    padding: 56px 0 82px;
  }
  .industries_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .industries_subtitle {
    font-size: 18px;
    line-height: 24px;
    color: var(--accent);
    font-weight: 400;
    margin-bottom: 14px;
    text-align: center;
  }
  .industries_title {
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin: 0 0 14px;
    text-align: center;
    max-width: 735px;
  }
  .industries_text {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--text-black);
    text-align: center;
    max-width: 620px;
    margin: 0;
  }
  .industries_box {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
  }
  .industries_box_item {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
  }
  .industries_box_item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 24px;
  }
  .industries_item_title {
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    color: var(--text-black);
    margin: 0 0 12px;
    padding-top: 12px;
    border-top: 1px solid #EBEBEB;
  }
  .industries_item_text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    margin: 0;
  }
  @media (max-width: 1200px) {
    .industries_box { gap: 25px; margin-top: 40px; }
  }
  @media (max-width: 870px) {
    .industries_title { font-size: 38px; line-height: 46px; }
    .industries_box { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 520px) {
    .industries_title { font-size: 32px; line-height: 40px; }
    .industries_box { grid-template-columns: 1fr; }
    .industries_box_item img { margin-bottom: 15px; }
  }
  @media (max-width: 450px) {
    .industries_title { font-size: 26px; line-height: 34px; }
  }

  /* =====================================================
     INDUSTRIES SERVED — brightfieldmedical.com
     ===================================================== */
  .industries {
    background: url(../img/industries/ind.jpg) no-repeat center center / cover;
    padding: 56px 0 82px;
  }
  .industries_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .industries_subtitle {
    font-size: 18px;
    line-height: 24px;
    color: var(--accent);
    font-weight: 400;
    margin-bottom: 14px;
    text-align: center;
  }
  .industries_title {
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin: 0 0 14px;
    text-align: center;
    max-width: 735px;
  }
  .industries_text {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--text-black);
    text-align: center;
    max-width: 620px;
    margin: 0;
  }
  .industries_box {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
  }
  .industries_box_item {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
  }
  .industries_box_item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 24px;
  }
  .industries_item_title {
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    color: var(--text-black);
    margin: 0 0 12px;
    padding-top: 12px;
    border-top: 1px solid #EBEBEB;
  }
  .industries_item_text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    margin: 0;
  }
  @media (max-width: 1200px) {
    .industries_box { gap: 25px; margin-top: 40px; }
  }
  @media (max-width: 870px) {
    .industries_title { font-size: 38px; line-height: 46px; }
    .industries_box { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 520px) {
    .industries_title { font-size: 32px; line-height: 40px; }
    .industries_box { grid-template-columns: 1fr; }
    .industries_box_item img { margin-bottom: 15px; }
  }
  @media (max-width: 450px) {
    .industries_title { font-size: 26px; line-height: 34px; }
  }

  .reviews { padding: 100px 0; }
  .reviews__slider {
    margin-top: 52px;
    overflow: hidden;
    padding: 6px;
    margin-inline: -6px;
  }
  .reviews__slider .swiper-slide { height: auto; }
  .review-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--gray-bg);
    border: 1px solid transparent;
    transition: border-color 0.3s ease, background 0.3s ease;
  }
  .review-card:hover {
    box-shadow: none;
    border-color: var(--accent);
    background: #fff;
  }
  
  .review-card__date { font-size: 0.82rem; color: var(--muted); }
  .review-card__product { display: flex; align-items: center; gap: 14px; }
  .review-card__thumb {
    flex: none;
    width: 54px; height: 54px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    overflow: hidden;
  }
  .review-card__thumb img { height: 44px; width: auto; object-fit: contain; }
  .review-card__product-name { font-size: 1rem; font-weight: 600; color: var(--ink); }
  .review-card__text { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
  
  .review-card__author { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
  .review-card__avatar {
    flex: none;
    width: 40px; height: 40px;
  }
  .review-card__avatar img { width: 100%; height: 100%; object-fit: cover;     border-radius: 50%;}
  .review-card__name { display: block; font-size: 0.9rem; font-weight: 600; color: var(--ink); }
  .review-card__org { display: block; font-size: 0.78rem; color: var(--muted); }
  
  .reviews__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
  }
  .reviews__arrow {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
  }
  .reviews__arrow:hover { border-color: var(--blue-400); color: var(--blue-500); transform: translateY(-2px); }
  .reviews__page { font-size: 0.92rem; font-weight: 600; color: var(--ink-soft); }
  .reviews__progress {
    width: 90px; height: 3px;
    border-radius: 3px;
    background: var(--line);
    position: relative;
    overflow: hidden;
  }
  .reviews__progress::before {
    content: "";
    position: absolute;
    inset: 0;
    width: var(--p, 16%);
    border-radius: 3px;
    background: var(--blue-500);
    transition: width 0.5s var(--ease);
  }
  
  /* =====================================================
     FOOTER
     ===================================================== */
  .footer {
    background: linear-gradient(0deg, #0B4996 0%, #0896F4 100%);
    color: #fff;
  }
  .footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 45px;
  }
  .footer__logo {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 40px;
  }
  .footer__address {
    font-size: 18px;
    line-height: 2;
    color: #fff;
  }
  .footer__address a { transition: opacity 0.3s; }
  .footer__address a:hover { opacity: 0.75; }

  .footer__heading {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 18px;
  }
  .footer__list { display: flex; flex-direction: column; gap: 15px; }
  .footer__list a {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    position: relative;
    width: fit-content;
    transition: color 0.3s;
  }
  .footer__list a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -3px;
    width: 100%; height: 1px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
  }
  .footer__list a:hover { color: #fff; }
  .footer__list a:hover::after { transform: scaleX(1); }
  
  .footer__cta-col { display: flex; justify-content: flex-end; align-items: flex-start; }
  
  .footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 22px 0;
  }
  .footer__bottom p {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
  }
  
  /* =====================================================
     NAV MENU OVERLAY
     ===================================================== */
  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    background:
      radial-gradient(900px 600px at 82% -10%, rgba(36, 116, 223, 0.35), transparent 60%),
      linear-gradient(160deg, #082a57 0%, #061a36 100%);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
  }
  .nav-menu.is-open { opacity: 1; visibility: visible; }
  
  .nav-menu__inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-top: 26px;
    padding-bottom: 44px;
  }
  .nav-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
  }
  .nav-menu__label {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
  }
  .nav-menu__close {
    display: grid;
    place-items: center;
    width: 48px; height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease);
  }
  .nav-menu__close:hover { background: rgba(255, 255, 255, 0.1); transform: rotate(90deg); }
  
  .nav-menu__links {
    display: flex;
    flex-direction: column;
    margin: 34px 0 0;
    max-width: 720px;
    width: 100%;
  }
  .nav-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #fff;
    opacity: 0;
    transform: translateY(24px);
    transition:
      color 0.3s ease,
      padding-left 0.4s var(--ease),
      transform 0.6s var(--ease),
      opacity 0.6s var(--ease);
  }
  .nav-menu__link svg { flex: none; color: rgba(255, 255, 255, 0.45); transition: transform 0.4s var(--ease), color 0.3s; }
  .nav-menu__link:hover { color: var(--blue-400); padding-left: 16px; }
  .nav-menu__link:hover svg { transform: translateX(8px); color: var(--blue-400); }
  .nav-menu__link.is-active { color: var(--blue-400); }   /* текущая страница: только цвет, без сдвига */
  
  .nav-menu.is-open .nav-menu__link { opacity: 1; transform: none; }
  .nav-menu.is-open .nav-menu__link:nth-child(1) { transition-delay: 0s, 0s, 0.10s, 0.10s; }
  .nav-menu.is-open .nav-menu__link:nth-child(2) { transition-delay: 0s, 0s, 0.16s, 0.16s; }
  .nav-menu.is-open .nav-menu__link:nth-child(3) { transition-delay: 0s, 0s, 0.22s, 0.22s; }
  .nav-menu.is-open .nav-menu__link:nth-child(4) { transition-delay: 0s, 0s, 0.28s, 0.28s; }
  .nav-menu.is-open .nav-menu__link:nth-child(5) { transition-delay: 0s, 0s, 0.34s, 0.34s; }
  .nav-menu.is-open .nav-menu__link:nth-child(6) { transition-delay: 0s, 0s, 0.40s, 0.40s; }
  
  .nav-menu__foot {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 56px;
    margin-top: 38px;
    padding-top: 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease) 0.4s, transform 0.6s var(--ease) 0.4s;
  }
  .nav-menu.is-open .nav-menu__foot { opacity: 1; transform: none; }
  .nav-menu__contact { display: flex; flex-direction: column; gap: 7px; }
  .nav-menu__contact-label {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--blue-400);
  }
  .nav-menu__contact a { font-size: 1.06rem; font-weight: 500; color: #fff; transition: color 0.3s; }
  .nav-menu__contact a:hover { color: var(--blue-400); }

  /* prevent scroll when menu open */
  body.is-locked { overflow: hidden; }
  
  /* =====================================================
     CATALOG PAGE
     ===================================================== */
  .catalog { padding: 48px 0 100px; }
  .catalog .line-tab {
    transition: all 0.4s var(--ease);
  }
  .catalog .line-tab:hover {
    transform: scale(1.04);
  }
  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .breadcrumb__dot { width: 8px; height: 8px; background: var(--blue-700); border-radius: 2px; }
  .breadcrumb__link { color: var(--ink); transition: color 0.3s; text-transform: uppercase;}
  .breadcrumb__link:hover { color: var(--blue-500); }
  .breadcrumb__sep { color: var(--muted); }
  .breadcrumb__current { color: var(--muted); text-transform: uppercase; }
  
  .catalog__title {
    margin-top: 26px;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    font-weight: 500;
    letter-spacing: 0;
  }
  
  .catalog__intro {
    text-align: center;
    max-width: 720px;
    margin: 56px auto 0;
  }
  .catalog__heading {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.15;
  }
  .catalog__subtitle {
    margin-top: 16px;
    font-size: 1.02rem;
    color: var(--muted);
  }
  
  /* product-line tabs */
  .lines { margin: 48px 0 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .line-tab {
    display: grid;
    place-items: center;
    min-height: 110px;
    padding: 28px 24px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1.5px solid var(--line);
    transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
  }
  .line-tab img { height: 40px; width: auto; object-fit: contain; }
  .line-tab:hover { border-color: var(--blue-100); }
  .line-tab--active { border-color: var(--blue-500); }
  
  /* product grid */
  .catalog__grid:not(.m-swiper) { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .prod-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: border-color 0.4s var(--ease);
  }
  .prod-card:hover { border-color: var(--blue-100); }
  .prod-card__media {
    display: block;
    aspect-ratio: 1 / 1;
    padding: 22px;
    background: #fff;
    overflow: hidden;
  }
  .prod-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s var(--ease);
  }
  .prod-card:hover .prod-card__media img { transform: scale(1.04); }
  
  .prod-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 4px 26px 28px;
    flex: 1;
  }
  .prod-card__cat {
    margin-top: 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--blue-500);
  }
  .prod-card__title {
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--ink);
  }
  .prod-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--ease);
  }
  .prod-card__title a:hover { color: var(--blue-700); }
  .prod-card__text {
    font-size: 0.92rem;
    color: var(--muted);
    flex: 1;
  }
  .prod-card__btn {
    margin-top: 14px;
    width: 100%;
    justify-content: center;
  }
  
  /* =====================================================
     CATEGORY PAGE
     ===================================================== */
  /* category head: brand logo + category name */
  .category__head {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .category__logo { height: 44px; width: auto; max-width: 100%; display: block; }
  .category__name {
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.1;
    color: var(--ink);
  }
  
  /* product grid: fixed 3-column layout, 6 cards per filter */
  .category__grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .cat-empty {
    grid-column: 1 / -1;
    padding: 60px 0;
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
  }
  /* category card button: outlined by default, fills blue only on hover */
  .category__grid .prod-card__btn { margin-top: 18px; }
  
  /* subcategory panel */
  .cat-panel {
    margin-top: 40px;
    padding: 22px;
    background: #f4f5f7;
    border-radius: 18px;
  }
  /* accordion toggle (subtitle becomes a clickable header) */
  .cat-panel__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    padding: 2px 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    color: var(--ink);
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
  }
  .cat-panel__subtitle {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink-soft);
    transition: color 0.25s var(--ease);
  }
  .cat-panel__toggle:focus { outline: none; }
  .cat-panel__toggle:focus-visible { outline: none; border-radius: 8px; box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25); }
  .cat-panel__toggle:hover .cat-panel__subtitle { color: var(--blue-700); }
  .cat-panel__chevron { flex: none; color: var(--blue-700); transition: transform 0.35s var(--ease); }
  .cat-panel:not(.is-collapsed) .cat-panel__chevron { transform: rotate(180deg); }
  
  /* collapsible body — animates auto height via grid rows */
  .cat-panel__collapse {
    display: grid;
    grid-template-rows: 1fr;
    transition: grid-template-rows 0.4s var(--ease);
  }
  .cat-panel.is-collapsed .cat-panel__collapse { grid-template-rows: 0fr; }
  .cat-panel__collapse-inner { overflow: hidden; min-height: 0; }
  .cat-panel__collapse .cat-panel__pills { padding-top: 18px; }
  
  /* accordion is mobile-only: on desktop filters stay open, no toggle */
  @media (min-width: 881px) {
    .cat-panel__toggle { cursor: default; pointer-events: none; }
    .cat-panel__chevron { display: none; }
    .cat-panel.is-collapsed .cat-panel__collapse { grid-template-rows: 1fr; }
    .cat-panel__collapse { transition: none; }
  }
  
  .cat-panel__pills {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
  .cat-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 56px;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--ink);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  }
  .cat-pill:hover { border-color: var(--blue-200, var(--blue-100)); color: var(--blue-500); }
  .cat-pill--active,
  .cat-pill:active {
    border-color: var(--blue-500);
    color: var(--blue-700);
  }
  /* static pagination under the products */
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 56px;
  }
  .pagination__btn {
    display: inline-grid;
    place-items: center;
    min-width: 44px;
    height: 44px;
    padding: 0 6px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
  }
  .pagination__btn:hover { border-color: var(--blue-400); color: var(--blue-500); }
  .pagination__btn--active { background: var(--blue-700); border-color: var(--blue-700); color: #fff; }
  .pagination__btn--active:hover { color: #fff; }
  .pagination__btn--nav svg { display: block; }
  .pagination__dots { padding: 0 4px; color: var(--muted); font-weight: 600; }
  
  /* category copy block */
  .cat-copy { margin-top: 80px; }
  .cat-copy__title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 26px;
  }
  .cat-copy p,
  .cat-copy__text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--muted);
    max-width: 1000px;
  }
  .cat-copy p { margin-bottom: 20px; }
  .cat-copy p:last-child { margin-bottom: 0; }
  /* .cat-copy__text + .cat-copy__text { margin-top: 22px; } */
  
  /* =====================================================
     PRODUCT PAGE
     ===================================================== */
  .product { padding: 40px 0 20px; }
  .product__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    margin-top: 30px;
    align-items: center;
  }
  
  /* gallery */
  .gallery { position: relative; min-width: 0; }
  .gallery__video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 7px 20px 7px 8px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
    box-shadow: 0 6px 16px rgba(20, 60, 130, 0.08);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  }
  .gallery__video:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(20, 60, 130, 0.12); }
  .gallery__play {
    display: grid;
    place-items: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--blue-700);
    color: var(--blue-700);
    padding-left: 3px;
    transition: transform 0.3s var(--ease);
  }
  .gallery__video:hover .gallery__play { transform: scale(1.06); }
  .gallery__main {
    position: relative;
    display: flex;
    justify-content: center;
    aspect-ratio: 4 / 4;
    padding: 26px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
  }
  .gallery__main img { max-height: 100%; width: auto; object-fit: contain; }
  /* side arrows — mobile only (hidden on desktop) */
  .gallery__arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--blue-700);
    box-shadow: 0 6px 16px rgba(20, 60, 130, 0.14);
    z-index: 4;
    cursor: pointer;
    transition: background 0.25s var(--ease), color 0.25s var(--ease);
  }
  .gallery__arrow svg { display: block; }
  .gallery__arrow:active { background: var(--blue-700); color: #fff; }
  .gallery__arrow--prev { left: 12px; }
  .gallery__arrow--next { right: 12px; }
  /* thumbnails row: swiper + nav arrows (desktop) */
  .gallery__thumbs-row { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
  .gallery__thumbs { flex: 1 1 auto; min-width: 0; overflow: hidden; }
  .gallery__thumbs .swiper-slide { height: auto; }
  .gallery__tnav {
    display: grid;
    place-items: center;
    flex: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--blue-700);
    cursor: pointer;
    transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
  }
  .gallery__tnav:hover { border-color: var(--blue-400); color: var(--blue-500); }
  .gallery__tnav svg { display: block; }
  .gallery__tnav.swiper-button-disabled { opacity: 0.35; cursor: default; pointer-events: none; }
  .gallery__thumb {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    padding: 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    transition: border-color 0.3s var(--ease);
  }
  .gallery__thumb img { max-height: 100%; width: auto; object-fit: contain; }
  .gallery__thumb:hover { border-color: var(--blue-300); }
  .gallery__thumb.is-active { border-color: var(--blue-500); }
  
  /* info */
  .product__brand { height: 46px; width: auto; margin-bottom: 20px; }
  .product__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.1;
    color: var(--ink);
  }
  .product__reviews-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blue-500);
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
  }
  .product__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 22px 0;
    padding: 16px 0;
    border-top: 1px dashed var(--line);
    border-bottom: 1px dashed var(--line);
    font-size: 0.88rem;
    color: var(--muted);
  }
  .product__meta strong { color: var(--ink); font-weight: 600; }
  .product__meta-sep { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-300); }
  .product__desc { font-size: 0.98rem; color: var(--muted); max-width: 52ch; }
  .product__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
  .product__actions .btn { border-radius: var(--radius-pill); padding: 8px 8px 8px 16px; }
  
  /* about */
  .product-about { padding: 44px 0 44px; }
  .product-about .section-title { margin-top: 30px; margin-bottom: 28px; }
  .product-about__text { display: flex; flex-direction: column; gap: 18px; max-width: 980px; }
  .product-about__text p { font-size: 0.98rem; color: var(--muted); line-height: 1.7; }
  .product-about__text ul {
    margin: 0;
    padding-left: 1.25em;
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: disc;
  }
  .product-about__text ul li {
    font-size: 0.98rem;
    color: var(--muted);
    line-height: 1.7;
  }
  .product-about__text ul li::marker { color: var(--blue-500); }

  /* product page section spacing overrides */
  .single-product .reviews { padding: 30px 0 50px; }
  .single-product .offer { padding-top: 80px; }
  .single-product .faq { padding-bottom: 0; }
  
  /* specs table */
  .specs { padding: 56px 0; }
  .specs .section-title { margin-bottom: 32px; }
  .specs__table {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .specs__row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
  }
  .specs__row:nth-child(odd) { background: var(--blue-50); }
  .specs__row--head { background: var(--blue-100) !important; }
  .specs__cell {
    padding: 15px 24px;
    font-size: 0.92rem;
    color: var(--ink-soft);
  }
  .specs__row--head .specs__cell { font-weight: 600; color: var(--ink); }
  .specs__cell:first-child { border-right: 1px solid rgba(255,255,255,0.6); }
  .specs__table.is-collapsed .specs__row--extra { display: none; }
  .specs__more {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--blue-500);
    cursor: pointer;
  }
  .specs__more:hover { color: var(--blue-700, #0b3d91); }
  
  /* =====================================================
     CONTACT / Get a Quote — brightfieldmedical.com
     ===================================================== */
  .contact {
    padding: 80px 0 150px;
    background: url(../img/contact-bg.png) no-repeat bottom center / cover;
  }
  .contact_wrapper {
    display: grid;
    grid-template-columns: 1fr 595px;
    gap: 40px;
  }
  .contact_left {
    display: flex;
    flex-direction: column;
  }
  .contact_subtitle {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .contact_title {
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 24px;
    max-width: 500px;
  }
  .contact_text {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    max-width: 500px;
    color: var(--text-black);
  }
  .contact_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.47);
    padding: 23px 65px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
  }
  .contact_form_title {
    font-size: 32px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
  }
  .contact_form_item {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .contact_form_item label {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
  }
  .contact_form_item input,
  .contact_form_item textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.47);
    border: 1px solid rgba(217, 217, 217, 0.65);
    border-radius: 15px;
    padding: 10px 20px;
    font-family: inherit;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    resize: none;
    box-sizing: border-box;
    transition: border-color 0.3s ease, background 0.3s ease;
  }
  .contact_form_item textarea { height: 150px; }
  .contact_form_item input::placeholder,
  .contact_form_item textarea::placeholder {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #D9D9D9;
  }
  .contact_form_item input:focus,
  .contact_form_item textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.85);
  }
  .contact_form_button {
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 50px;
    padding: 10px 50px;
    font-family: inherit;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
    max-width: 250px;
    align-self: center;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .contact_form_button:hover {
    background: #fff;
    color: var(--accent);
  }
  .contact_form_button:disabled { opacity: 0.7; cursor: wait; }
  .contact_form .contact_form_error,
  .contact_form .contact_form_success,
  .contact_form .contact_form_loading {
    display: none;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
  }
  .contact_form .contact_form_error { color: #d33; }
  .contact_form .contact_form_success { color: #1a9d4f; }
  .contact_form .contact_form_loading { color: var(--muted); }

  @media (max-width: 1200px) {
    .contact { padding-bottom: 100px; }
    .contact_wrapper { grid-template-columns: 1fr 500px; }
    .contact_form { padding: 23px 40px; }
    .contact_title { font-size: 42px; line-height: 50px; }
  }
  @media (max-width: 1050px) {
    .contact_wrapper { grid-template-columns: 1fr 450px; }
  }
  @media (max-width: 970px) {
    .contact_wrapper {
      display: flex;
      flex-direction: column;
      max-width: 695px;
      margin: 0 auto;
      align-items: center;
    }
    .contact_right { width: 100%; }
    .contact_left { align-items: center; }
    .contact_subtitle,
    .contact_title,
    .contact_text { text-align: center; }
  }
  @media (max-width: 870px) {
    .contact_title { font-size: 38px; line-height: 46px; }
  }
  @media (max-width: 670px) {
    .contact { padding: 60px 0 80px; }
    .contact_title { font-size: 32px; line-height: 40px; }
    .contact_form { padding: 22px 22px; border-radius: 32px; }
    .contact_form_title { font-size: 26px; line-height: 34px; text-align: center; }
    .contact_form_item label { font-size: 16px; line-height: 24px; }
    .contact_form_item input,
    .contact_form_item textarea { font-size: 14px; line-height: 22px; }
    .contact_form_button { max-width: none; width: 100%; }
  }
  @media (max-width: 450px) {
    .contact_title { font-size: 26px; line-height: 34px; }
    .contact_text { font-size: 16px; line-height: 24px; }
    .contact_form_title { font-size: 22px; line-height: 30px; }
  }

  /* offer */
  .offer { padding: 40px 0 80px; }
  .offer__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: center;
    padding: 56px;
    border-radius: var(--radius-lg);
    background: linear-gradient(0deg, #0B4996 0%, #0896F4 100%);
    color: #fff;
  }
  .offer__intro, .offer__form { min-width: 0; }
  .offer__title { font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 500; letter-spacing: 0; }
  .offer__text { margin-top: 16px; font-size: 0.96rem; color: rgba(255,255,255,0.92); line-height: 1.65; }
  
  /* white form card */
  .offer__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    background: #fff;
    border-radius: 18px;
  }
  .offer__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .offer__input {
    width: 100%;
    padding: 10px 20px;
    border-radius: 15px;
    border: 1px solid #d9d9d9;
    background: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--ink);
    transition: border-color 0.25s var(--ease);
  }
  .offer__input::placeholder { color: var(--muted); }
  .offer__input:focus { outline: none; border-color: var(--accent); }
  .offer__textarea { min-height: 96px; resize: vertical; }
  .offer__submit {
    justify-content: center;
    margin-top: 4px;
    border-radius: 10px;
    background: var(--blue-700);
  }
  .offer__submit::before { background: var(--blue-900); }
  
  /* benefits */
  .benefits { padding: 40px 0 70px; }
  .benefits .section-title { margin-bottom: 36px; }
  .benefits__slider { overflow: hidden; padding: 6px; margin-inline: -6px; }
  .benefits__slider .swiper-slide { height: auto; }
  .benefit {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
  }
  .benefit__media { aspect-ratio: 16 / 10; overflow: hidden; background: #f2f5fa; }
  .benefit__media img { width: 100%; height: 100%; object-fit: cover; }
  .benefit__title { font-size: 1.08rem; font-weight: 600; color: var(--ink); padding: 20px 22px 0; }
  .benefit__text { font-size: 0.9rem; color: var(--muted); padding: 8px 22px 24px; }
  .benefits__nav { display: flex; justify-content: center; gap: 14px; margin-top: 32px; }
  .benefits__arrow {
    display: grid; place-items: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
  }
  .benefits__arrow:hover { border-color: var(--blue-400); color: var(--blue-500); transform: translateY(-2px); }
  
  /* faq */
  .faq { padding: 40px 0 100px; }
  .faq .section-title { margin-bottom: 36px; }
  .faq__list { display: flex; flex-direction: column; gap: 14px; }
  .faq__item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
    transition: border-color 0.3s var(--ease);
  }
  .faq__item.is-open { border-color: var(--blue-100); }
  .faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
  }
  .faq__icon {
    position: relative;
    flex: none;
    width: 22px; height: 22px;
  }
  .faq__icon::before, .faq__icon::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 12px; height: 2px;
    background: var(--blue-500);
    transform: translate(-50%, -50%);
    transition: transform 0.4s var(--ease), opacity 0.3s;
    border-radius: 2px;
  }
  .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
  .faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }
  .faq__a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s var(--ease);
  }
  .faq__item.is-open .faq__a { grid-template-rows: 1fr; }
  .faq__a > p {
    overflow: hidden;
    margin: 0;
    padding: 0 26px;
    font-size: 0.93rem;
    color: var(--muted);
    line-height: 1.65;
  }
  .faq__item.is-open .faq__a > p { padding-bottom: 24px; }
  
  /* =====================================================
     VIDEO REVIEW MODAL
     ===================================================== */
  .vmodal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  }
  .vmodal.is-open { opacity: 1; visibility: visible; }
  .vmodal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 22, 46, 0.66);
    backdrop-filter: blur(3px);
  }
  .vmodal__dialog {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 18px;
    padding: 26px 28px 28px;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.4s var(--ease);
  }
  .vmodal.is-open .vmodal__dialog { transform: none; }
  
  .vmodal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
  }
  .vmodal__title { font-size: 1.1rem; font-weight: 500; color: var(--ink); }
  .vmodal__title strong { font-weight: 700; }
  .vmodal__close {
    flex: none;
    display: grid; place-items: center;
    width: 34px; height: 34px;
    border-radius: 9px;
    color: var(--ink-soft);
    transition: background 0.25s, color 0.25s;
  }
  .vmodal__close:hover { background: var(--bg-soft); color: var(--ink); }
  
  .vmodal__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #0b1730;
  }
  .vmodal__player img { width: 100%; height: 100%; object-fit: cover; }
  .vmodal__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: grid; place-items: center;
    width: 62px; height: 62px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--blue-700);
    padding-left: 4px;
    transition: transform 0.3s var(--ease), background 0.3s;
  }
  .vmodal__player:hover .vmodal__play { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
  .vmodal__caption { margin: 16px 0 18px; font-size: 0.95rem; font-weight: 600; color: var(--ink); }
  
  .vmodal__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .vthumb { text-align: left; }
  .vthumb__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
    background: #0b1730;
  }
  .vthumb__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
  .vthumb:hover .vthumb__media img { transform: scale(1.06); }
  .vthumb__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: grid; place-items: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--blue-700);
    padding-left: 2px;
  }
  .vthumb__cap { display: block; margin-top: 8px; font-size: 0.74rem; color: var(--muted); }
  
  .vmodal__foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 22px;
  }
  .vmodal__dots { display: flex; gap: 7px; }
  .vmodal__dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
  .vmodal__dots span.is-active { background: var(--blue-500); width: 18px; border-radius: 4px; }
  .vmodal__channel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    transition: color 0.25s;
  }
  .vmodal__channel:hover { color: var(--blue-600); }
  .vmodal__yt { display: inline-flex; }
  
  /* =====================================================
     ABOUT PAGE
     ===================================================== */
  .eyebrow {
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--accent);
    margin-bottom: 14px;
  }
  
  /* about hero — full-bleed slides */
  .ab-hero {
    position: relative;
    min-height: clamp(560px, 78vh, 760px);
    overflow: hidden;
    background: var(--gray-bg);
  }
  .ab-hero__slider {
    position: absolute;
    inset: 0;
  }
  .ab-hero__slider .swiper-wrapper,
  .ab-hero__slider .swiper-slide { height: 100%; }
  .ab-hero__slide {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(560px, 78vh, 760px);
    overflow: hidden;
  }
  .ab-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .ab-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .ab-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.78) 38%,
      rgba(255, 255, 255, 0.35) 68%,
      rgba(255, 255, 255, 0.12) 100%
    );
  }
  .ab-hero__panel {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 140px;
    padding-bottom: 90px;
  }
  .ab-hero__breadcrumb { margin-bottom: 28px; }
  .ab-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 640px;
  }
  .ab-hero__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.15;
    color: var(--text-black);
    margin-top: 10px;
  }
  .ab-hero__text {
    margin-top: 18px;
    font-size: 1.02rem;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 52ch;
  }
  .ab-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
  }
  .ab-hero__nav {
    position: absolute;
    right: max(var(--gutter), calc((100% - var(--container)) / 2));
    bottom: 36px;
    z-index: 3;
    display: flex;
    gap: 10px;
  }

  /* =====================================================
     ABOUT — Approach / Expertise / Key Benefits
     ===================================================== */
  .about_box_item {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
  }
  .about_box_item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 30px;
  }
  .about_box_item h3 {
    border-bottom: 1px solid #EBEBEB;
    padding-bottom: 12px;
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    color: var(--text-black);
  }
  .about_box_item p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: var(--text-black);
  }

  .approach { padding-top: 100px; }
  .approach_wrapper { display: flex; flex-direction: column; }
  .approach_top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 48px;
  }
  .approach_top_left {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .approach_top_right { max-width: 525px; }
  .approach_top_box { display: flex; flex-direction: column; gap: 24px; }
  .approach_top_item {
    padding-bottom: 24px;
    border-bottom: 1px solid #EBEBEB;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .approach_top_item:last-child { padding-bottom: 0; border-bottom: none; }
  .approach_top_item_title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: var(--text-black);
  }
  .approach_top_item_text { font-size: 16px; line-height: 24px; color: var(--text-black); }
  .approach_top_left_subtitle {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
  }
  .approach_top_left_title {
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
  }
  .approach_top_left_text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
  }
  .approach_bottom {
    position: relative;
    height: 557px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 32px 68px;
    background: no-repeat center center / cover;
  }
  .approach_bottom_box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    width: 100%;
  }
  .approach_bottom_box .about_box_item img { margin-bottom: 20px; }

  .about_expertise { padding: 100px 0; }
  .about_expertise_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about_expertise_subtitle {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 14px;
    text-align: center;
  }
  .about_expertise_title {
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 24px;
    max-width: 825px;
    text-align: center;
  }
  .about_expertise_text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    max-width: 625px;
    text-align: center;
    margin-bottom: 54px;
  }
  .about_expertise_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
  }
  .about_expertise_item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 24px;
    border: 1px solid var(--accent);
    border-left: 4px solid var(--accent);
    padding: 24px;
    transition: all 0.3s ease;
  }
  .about_expertise_item h3 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text-black);
    padding-bottom: 12px;
    border-bottom: 1px solid #EBEBEB;
  }
  .about_expertise_item p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
  }

  .key-benefits {
    background-color: #F8F8F8;
    padding: 100px 0;
  }
  .key-benefits_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .key-benefits_subtitle {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 14px;
    text-align: center;
  }
  .key-benefits_title {
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 24px;
    max-width: 825px;
    text-align: center;
  }
  .key-benefits_text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    max-width: 625px;
    text-align: center;
    margin-bottom: 54px;
  }
  .key-benefits_box {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    width: 100%;
  }
  .key-benefits_item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 24px;
    border: 1px solid #EBEBEB;
    padding: 24px;
    transition: all 0.3s ease;
  }
  .key-benefits_item:hover,
  .key-benefits_item.active {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
  }
  .key-benefits_item span {
    font-size: 36px;
    line-height: 36px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 12px;
    transition: color 0.3s ease;
  }
  .key-benefits_item:hover span,
  .key-benefits_item.active span { color: #fff; }
  .key-benefits_item h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: var(--text-black);
    margin-bottom: 12px;
  }
  .key-benefits_item:hover h3,
  .key-benefits_item.active h3 { color: #fff; }
  .key-benefits_item p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
  }
  .key-benefits_item:hover p,
  .key-benefits_item.active p { color: #fff; }
  .key-benefits_item_1 { grid-column: 1 / 3; }
  .key-benefits_item_2 { grid-column: 3 / 5; }
  .key-benefits_item_3 { grid-column: 5 / 7; }
  .key-benefits_item_4 { grid-column: 1 / 4; padding-bottom: 70px; }
  .key-benefits_item_5 { grid-column: 4 / 7; padding-bottom: 70px; }

  @media (max-width: 1200px) {
    .approach_top_left_title,
    .about_expertise_title,
    .key-benefits_title { font-size: 40px; line-height: 48px; }
    .approach_top_left { gap: 0; }
    .approach_top_item_title { font-size: 20px; line-height: 28px; }
    .approach_top_item { padding-bottom: 15px; }
    .approach_top_box { gap: 15px; }
    .approach_bottom { padding: 32px; }
  }
  @media (max-width: 1070px) {
    .key-benefits_item_1 { grid-column: 1 / 4; }
    .key-benefits_item_2 { grid-column: 4 / 7; }
    .key-benefits_item_3 { grid-column: 1 / 4; }
    .key-benefits_item_4 { grid-column: 4 / 7; }
    .key-benefits_item_5 { grid-column: 1 / 7; }
  }
  @media (max-width: 1000px) {
    .approach_top { flex-direction: column; gap: 50px; }
    .approach_top_left,
    .approach_top_right { max-width: 100%; }
    .approach_bottom { height: auto; }
    .approach_bottom_box { grid-template-columns: 1fr 1fr; }
    .approach_top_item_title,
    .approach_top_item_text,
    .approach_top_left_subtitle,
    .approach_top_left_text,
    .approach_top_left_title { text-align: center; }
  }
  @media (max-width: 870px) {
    .approach_top_left_title,
    .about_expertise_title,
    .key-benefits_title { font-size: 38px; line-height: 46px; }
    .about_expertise_box { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 730px) {
    .approach_top_left_title,
    .about_expertise_title,
    .key-benefits_title { font-size: 32px; line-height: 40px; }
  }
  @media (max-width: 670px) {
    .approach_bottom_box,
    .key-benefits_box { grid-template-columns: 1fr; }
    .approach_bottom_box .about_box_item img { margin-bottom: 10px; }
    .about_expertise_text { margin-bottom: 30px; }
    .key-benefits_item_1,
    .key-benefits_item_2,
    .key-benefits_item_3,
    .key-benefits_item_4,
    .key-benefits_item_5 { grid-column: unset; padding-bottom: 24px; }
    .key-benefits_item h3 { font-size: 20px; line-height: 28px; }
    .key-benefits_item span { font-size: 32px; }
  }
  @media (max-width: 515px) {
    .about_expertise_box { grid-template-columns: 1fr; }
    .about_expertise_item { min-height: 175px; }
  }
  @media (max-width: 450px) {
    .approach_top_left_title,
    .about_expertise_title,
    .key-benefits_title { font-size: 26px; line-height: 34px; }
    .about_box_item h3,
    .approach_top_item_title { font-size: 18px; line-height: 26px; }
    .approach_bottom { padding: 24px; }
  }
  
  /* specialties */
  .specialties { padding: 50px 0 60px; }
  .specialties .section-title { margin-bottom: 36px; }
  .specialties__slider { overflow: hidden; padding: 6px; margin-inline: -6px; }
  .specialties__slider .swiper-slide { height: auto; }
  .spec-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
  }
  .spec-card__media { aspect-ratio: 4 / 3; overflow: hidden; display: block; }
  .spec-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
  .spec-card:hover .spec-card__media img { transform: scale(1.05); }
  .spec-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
  .spec-card__title { font-size: 1.12rem; font-weight: 600; color: var(--ink); }
  .spec-card__title a { color: inherit; text-decoration: none; }
  .spec-card__title a:hover { color: var(--blue-500); }
  .spec-card__text { font-size: 0.88rem; color: var(--muted); flex: 1; }
  .spec-card__link { font-size: 0.85rem; font-weight: 600; color: var(--blue-500); }
  .ab-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
  
  /* tech */
  .tech { position: relative; padding: 90px 0; color: #fff; overflow: hidden; }
  .tech__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
  .tech__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,38,84,0.72), rgba(10,38,84,0.66)); }
  .tech__inner { position: relative; z-index: 1; }
  .tech__head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
  .tech__title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 500; letter-spacing: 0; }
  .tech__subtitle { margin-top: 14px; font-size: 0.98rem; color: rgba(255,255,255,0.85); }
  .tech__grid { margin: 0 auto; max-width: 1180px; }
  .tech-card {
    background: #fff;
    color: var(--ink);
    border-radius: var(--radius);
    padding: 26px 24px;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  }
  .tech-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(6, 24, 56, 0.28); }
  .tech-card:hover .tech-card__icon { transform: translateY(-2px) rotate(-4deg); }
  .tech-card__icon {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--blue-700);
    color: #fff;
    margin-bottom: 16px;
    transition: transform 0.4s var(--ease);
  }
  .tech-card__icon i { font-size: 20px; line-height: 1; display: block; }
  .tech-card__title { font-size: 1.02rem; font-weight: 600; margin-bottom: 14px; }
  .tech-card__list { display: flex; flex-direction: column; gap: 8px; }
  .tech-card__list li { position: relative; padding-left: 16px; font-size: 0.85rem; color: var(--muted); }
  .tech-card__list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-400); }
  .tech__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 40px; }
  /* (btn--ghost-light defined in Buttons block above) */
  
  /* gallery */
  .gallery-sec { padding: 70px 0; }
  .gallery-sec .section-title { margin-bottom: 36px; }
  .gallery-sec__slider { overflow: hidden; padding: 6px; margin-inline: -6px; }
  .gallery-sec__slider .swiper-slide { height: auto; }
  .gal { display: flex; flex-direction: column; gap: 12px; }
  .gal__media { aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); cursor: zoom-in; }
  .gal__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); pointer-events: none; }
  .gal:hover .gal__media img { transform: scale(1.05); }
  .gal__cap { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
  
  /* news2 */
  .news2 { padding: 70px 0 40px; }
  .news2__nav { display: flex; gap: 10px; }
  .news2__arrow {
    display: grid; place-items: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    transition: border-color 0.3s, color 0.3s, background 0.3s;
  }
  .news2__arrow:hover { border-color: var(--blue-400); color: var(--blue-500); }
  .news2__arrow--next { background: var(--blue-500); color: #fff; border-color: var(--blue-500); }
  .news2__arrow--next:hover { background: var(--blue-600); color: #fff; }
  .news2__slider { overflow: hidden; padding: 6px; margin-inline: -6px; }
  .news2__slider .swiper-slide { height: auto; }
  .news2 .news-card { height: 100%; }
  .news-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 8px; }
  .news-card__foot .news-card__link { margin-top: 0; align-self: center; }
  .countdown { display: flex; align-items: center; gap: 9px; }
  .cd-unit { display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .cd-unit { display: flex; flex-direction: column; align-items: center; }
  .cd-unit b { font-size: 1.15rem; font-weight: 700; color: var(--ink); line-height: 1; }
  .cd-unit i { font-size: 0.62rem; font-style: normal; color: var(--muted); margin-top: 4px; letter-spacing: 0.02em; }
  .cd-sep { font-size: 1.05rem; font-weight: 700; color: var(--blue-300); align-self: flex-start; margin-top: 1px; }
  
  /* clients */
  .clients { padding: 50px 0; }
  .clients .section-title { margin-bottom: 32px; }
  .clients__bar { display: flex; align-items: center; gap: 18px; }
  .clients__arrow {
    flex: none;
    display: grid; place-items: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    transition: border-color 0.3s, color 0.3s, background 0.3s;
  }
  .clients__arrow:hover { border-color: var(--blue-400); color: var(--blue-500); }
  .clients__slider {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 30px 0;
  }
  .client-logo { display: grid; place-items: center; height: 52px; }
  .client-logo img {
    max-height: 46px;
    max-width: 80%;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .client-logo:hover img { opacity: 1; transform: scale(1.04); }
  
  /* why choose */
  .why { padding: 70px 0; }
  .why__inner { display: grid; grid-template-columns: 1.2fr 1fr 0.82fr; gap: 36px; align-items: stretch; }
  .why__lead { margin: 18px 0 28px; font-size: 0.96rem; color: var(--muted); line-height: 1.7; max-width: 46ch; }
  .why__list { display: flex; flex-direction: column; gap: 22px; }
  .why__item { display: flex; gap: 16px; }
  .why__icon { flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--blue-50); color: var(--blue-700); }
  .why__title { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
  .why__text { font-size: 0.88rem; color: var(--muted); }
  .why__image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
  .why__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .why__stats { display: flex; flex-direction: column; gap: 20px; }
  .why-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 26px 30px;
    border-radius: 18px;
    background: var(--blue-100);
    transition: transform 0.4s var(--ease), background 0.4s var(--ease);
  }
  .why-stat:hover { transform: translateY(-4px); background: #d6e6fb; }
  .why-stat:hover .why-stat__num { color: var(--blue-700); }
  .why-stat__num { transition: color 0.4s var(--ease); }
  .why-stat__num { font-size: 2.2rem; font-weight: 800; color: var(--ink); line-height: 1; }
  .why-stat__label { font-size: 0.86rem; color: var(--ink-soft); }
  
  /* certs */
  .certs { padding: 50px 0 90px; }
  .certs__head {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
  }
  .certs__lead { margin: 0; font-size: 0.96rem; color: var(--muted); }
  .certs__grid:not(.m-swiper) { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .cert { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
  .cert__badge {
    display: grid; place-items: center;
    width: 86px; height: 86px;
    border-radius: 50%;
    border: 3px solid var(--blue-700);
    color: var(--blue-700);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.02em;
  }
  .cert__img {
    width: 92px;
    height: 92px;
    object-fit: contain;
  }
  .cert__title { font-size: 1rem; font-weight: 600; color: var(--ink); }
  
  /* swiper bullets (about sliders) */
  .ab-dots .swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: var(--line);
    opacity: 1;
    transition: width 0.3s var(--ease), background 0.3s var(--ease);
  }
  .ab-dots .swiper-pagination-bullet-active { width: 22px; border-radius: 4px; background: var(--blue-500); }
  
  /* =====================================================
     CONTACTS PAGE
     ===================================================== */
  .eyebrow--center { display: block; text-align: center; }
  
  .contacts-hero {
    padding: 140px 0 60px;
    background:
      linear-gradient(
        180deg,
        #d6eeff 0%,
        #e4f3ff 32%,
        #f0f8ff 58%,
        #fafcff 82%,
        #ffffff 100%
      );
  }
  .contacts-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
    margin-top: 26px;
  }
  .contacts-hero__title { font-size: clamp(1.9rem, 3.2vw, 2.7rem); font-weight: 500; letter-spacing: 0; line-height: 1.1; max-width: 14ch; }
  .contacts-hero__text { margin-top: 20px; font-size: 0.98rem; color: var(--muted); line-height: 1.7; max-width: 46ch; }
  .contact-info { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
  .contact-info li { display: flex; align-items: center; gap: 14px; font-size: 0.95rem; color: var(--ink-soft); }
  .contact-info__icon {
    flex: none;
    display: grid; place-items: center;
    width: 40px; height: 40px;
    border-radius: 11px;
    background: var(--blue-50);
    color: var(--blue-700);
  }
  .contact-info__icon i { font-size: 17px; display: block; }
  .contacts-hero__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
  .contacts-hero__map iframe { width: 100%; height: 360px; border: 0; display: block; }
  
  /* global presence */
  .global {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
    background: var(--bg);
  }
  .global__head { position: relative; z-index: 2; text-align: center; max-width: 835px; margin: 0 auto 50px; }
  .global__cards { position: relative; padding: 0 0 18px; }
  .global__map {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 108%;
    height: 100%;
    z-index: 0;
    opacity: 0.95;
    pointer-events: none;
  }
  .global__map svg { display: none; }
  .global__grid { position: relative; z-index: 1; }
  .global__title {
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--text-black);
    max-width: 835px;
    margin: 0 auto 14px;
  }
  .global__subtitle {
    margin: 0 auto;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--text-black);
    max-width: 620px;
  }
  .global__grid:not(.m-swiper) { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .office {
    display: flex;
    flex-direction: column;
    min-height: 325px;
    background: #fff;
    border: none;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .office:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12); background: #fff; }
  .office__head { display: flex; align-items: center; gap: 15px; margin-bottom: 27px; }
  .office__flag { width: 30px; height: 30px; border-radius: 50%; overflow: hidden; flex: none; }
  .office__flag img,
  .office__flag svg { width: 100%; height: 100%; display: block; object-fit: cover; }
  .office__name { font-size: 18px; font-weight: 500; color: var(--text-black); line-height: 1.3; }
  .office__list { display: flex; flex-direction: column; gap: 20px; }
  .office__list li,
  .office__list li a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--text-black);
  }

  @media (max-width: 1200px) {
    .global__title { font-size: 42px; line-height: 52px; }
    .global__grid:not(.m-swiper) { gap: 25px; }
  }
  @media (max-width: 870px) {
    .global__title { font-size: 38px; line-height: 46px; }
    .global__subtitle { font-size: 16px; line-height: 25px; }
  }
  @media (max-width: 730px) {
    .global { padding-bottom: 50px; }
    .global__title { font-size: 32px; line-height: 40px; }
    .office { min-height: 280px; }
  }
  @media (max-width: 450px) {
    .global__title { font-size: 26px; line-height: 34px; }
  }
  .office__list i {
    flex: none;
    display: grid; place-items: center;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    margin-top: 1px;
  }
  .office__list em { font-style: normal; color: var(--muted); }
  
  /* consultation */
  .consult { padding: 30px 0 90px; }
  .consult__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
  .consult__title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 500; letter-spacing: 0; }
  .consult__text { margin: 18px 0 28px; font-size: 0.96rem; color: var(--muted); line-height: 1.7; }
  .consult__features { display: flex; flex-direction: column; gap: 18px; }
  .consult__features li { display: flex; align-items: center; gap: 14px; font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); }
  .consult__icon {
    flex: none;
    display: grid; place-items: center;
    width: 38px; height: 38px;
    border-radius: 11px;
    background: var(--blue-50);
    color: var(--blue-700);
  }
  .consult__icon i { font-size: 16px; display: block; }
  
  .consult__form {
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: var(--radius-lg);
    padding: 34px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .consult__form-title { font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
  .consult__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .consult__input {
    width: 100%;
    padding: 10px 20px;
    border-radius: 15px;
    border: 1px solid #d9d9d9;
    background: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--ink);
    transition: border-color 0.25s var(--ease);
  }
  .consult__input::placeholder { color: var(--muted); }
  .consult__input:focus { outline: none; border-color: var(--accent); }
  .consult__select-wrap { position: relative; }
  .consult__select { appearance: none; -webkit-appearance: none; cursor: pointer; color: var(--muted); }
  .consult__chevron { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
  .consult__textarea { min-height: 120px; resize: vertical; }
  .consult__bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
  .consult__check { display: flex; align-items: center; gap: 9px; font-size: 0.84rem; color: var(--muted); cursor: pointer; }
  .consult__check input { width: 16px; height: 16px; accent-color: var(--blue-700); }
  .consult__submit { padding: 13px 26px; }
  
  /* =====================================================
     LOGISTICS PAGE
     ===================================================== */
  .logi-hero { padding: 40px 0 60px; }
  .logi-hero__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
  .logi-hero__title { font-size: clamp(1.9rem, 3.2vw, 2.7rem); font-weight: 500; letter-spacing: 0; line-height: 1.12; }
  .logi-hero__text { margin-top: 20px; font-size: 0.98rem; color: var(--muted); line-height: 1.7; }
  .logi-hero__media { border-radius: var(--radius-lg); overflow: hidden; }
  .logi-hero__media img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; display: block; }
  
  .solutions { padding: 50px 0 80px; }
  .solutions__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
  .solutions__title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 500; letter-spacing: 0; }
  .solutions__subtitle { margin-top: 12px; font-size: 0.96rem; color: var(--muted); }

  /* logistics expertise (medical-style: text left, image right) */
  .logi-expertise { padding: 100px 0 80px; }
  .logi-expertise__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }
  .logi-expertise__subtitle {
    font-size: 18px;
    line-height: 24px;
    color: var(--accent);
    font-weight: 400;
    margin-bottom: 14px;
  }
  .logi-expertise__title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.15;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 14px;
    max-width: 825px;
  }
  .logi-expertise__text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    max-width: 625px;
    margin-bottom: 34px;
  }
  .logi-expertise__line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    border: 1px solid #EBEBEB;
    border-radius: 24px;
  }
  .logi-expertise__line span {
    border-radius: 24px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    padding: 10px 20px;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .logi-expertise__line span:hover {
    background: var(--accent);
    color: #fff;
  }
  .logi-expertise__box {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .logi-expertise__item {
    padding: 32px 0;
    border-bottom: 1px solid #EBEBEB;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .logi-expertise__item:first-child { padding-top: 0; }
  .logi-expertise__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
  }
  .logi-expertise__left h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: var(--text-black);
  }
  .logi-expertise__right {
    border-radius: 24px;
    overflow: hidden;
    min-height: 280px;
  }
  .logi-expertise__right img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
  }

  .logi-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 56px;
  }
  .logi-block:last-child { margin-bottom: 0; }
  .logi-block--reverse .logi-block__text { order: 2; }
  .logi-block__title { font-size: 1.35rem; font-weight: 600; color: var(--ink); margin-bottom: 22px; letter-spacing: 0; }
  .logi-list { display: flex; flex-direction: column; gap: 16px; }
  .logi-list li { display: flex; gap: 14px; align-items: flex-start; }
  .logi-list b { color: var(--ink); font-weight: 600; }
  .logi-list div { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
  .logi-check {
    flex: none;
    display: grid; place-items: center;
    width: 22px; height: 22px;
    border-radius: 7px;
    background: var(--blue-500);
    color: #fff;
    margin-top: 1px;
  }
  .logi-block__media { display: grid; place-items: center; }
  .logi-block__media img { width: 100%; max-width: 460px; height: auto; object-fit: contain; }
  
  /* logistics advantages (4-col industries on logistics page) */
  .logi-advantages {
    background: url("../img/logistics/industries-bg.webp") no-repeat center center / cover;
    padding-top: 100px;
    padding-bottom: 82px;
  }
  .logi-advantages .industries_title,
  .logi-advantages .industries_text { max-width: 100%; }
  .logi-advantages .industries_box {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  @media (max-width: 1200px) {
    .logi-advantages .industries_box { grid-template-columns: repeat(2, 1fr); }
    .logi-advantages .industries_title { font-size: 42px; line-height: 52px; }
  }
  @media (max-width: 870px) {
    .logi-advantages .industries_title { font-size: 38px; line-height: 46px; }
  }
  @media (max-width: 730px) {
    .logi-advantages .industries_title { font-size: 32px; line-height: 40px; }
  }
  @media (max-width: 670px) {
    .logi-advantages { padding-bottom: 50px; }
  }
  @media (max-width: 570px) {
    .logi-advantages .industries_box { grid-template-columns: 1fr; }
  }
  @media (max-width: 450px) {
    .logi-advantages .industries_title { font-size: 26px; line-height: 34px; }
  }

  /* logistics CTA */
  .logi-cta { padding: 60px 0; }
  .logi-cta__inner {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 56px 40px;
    border-radius: var(--radius-lg);
    color: #fff;
    background:
      linear-gradient(150deg, rgba(8, 32, 70, 0.86) 0%, rgba(6, 24, 56, 0.9) 100%),
      url("../img/logi-cta-bg.webp") center / cover no-repeat;
  }
  .logi-cta__title { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 500; letter-spacing: 0; }
  .logi-cta__text { max-width: 640px; margin: 16px auto 30px; font-size: 0.96rem; color: rgba(255, 255, 255, 0.85); line-height: 1.6; }
  .logi-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
  
  /* =====================================================
     NEWS PAGE
     ===================================================== */
  .news-page { padding: 40px 0 100px; }
  .news-page__title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 500; letter-spacing: 0; }
  .news-page__intro { margin-top: 22px; max-width: 78ch; font-size: 1rem; color: var(--muted); line-height: 1.7; }
  
  .news-featured {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
    margin: 56px 0 64px;
  }
  .news-featured__media { border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
  .news-featured__media img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; display: block; }
  .news-featured__title { font-size: clamp(1.6rem, 2.8vw, 2.3rem); font-weight: 500; letter-spacing: 0; line-height: 1.15; margin: 14px 0 18px; }
  .news-featured__text { font-size: 0.96rem; color: var(--muted); line-height: 1.7; margin-bottom: 22px; max-width: 46ch; }
  
  .news__grid--page { gap: 28px; }
  
  /* =====================================================
     NEWS POST (article)
     ===================================================== */
  .post { padding: 40px 0 60px; }
  .post__container { max-width: calc(960px + var(--gutter) * 2); }
  .post__title { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 500; letter-spacing: 0; line-height: 1.15; }
  .post__date { margin-top: 14px; font-size: 0.9rem; color: var(--muted); }
  .post__media { margin: 26px 0 36px; }
  .post__main { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--line); }
  .post__main img { width: 100%; height: auto; display: block; }
  .post__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 16px; }
  .post__thumb {
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: border-color 0.3s var(--ease);
  }
  .post__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
  .post__thumb:hover { border-color: var(--blue-400); }
  .post__thumb:hover img { transform: scale(1.05); }
  .post__thumb.is-active { border-color: var(--blue-500); }
  
  .post__body { color: var(--ink-soft); }
  .post__body p { font-size: 0.98rem; line-height: 1.75; color: var(--muted); margin-bottom: 16px; }
  .post__body h2 { font-size: 1.15rem; font-weight: 600; color: var(--ink); margin: 26px 0 12px; }
  .post__body ul { margin: 0 0 18px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .post__body li { position: relative; padding-left: 20px; font-size: 0.96rem; line-height: 1.7; color: var(--muted); }
  .post__body li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-400); }
  
  .post__nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 44px; }
  .post__nav .btn span { display: inline-flex; align-items: center; }
  
  /* =====================================================
     MOBILE SECTION SLIDERS (home)
     ===================================================== */
  .m-swiper { overflow: hidden; }
  .m-swiper .swiper-slide { height: auto; }
  .m-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
  .m-dots .swiper-pagination-bullet { width: 8px; height: 8px; background: var(--line); opacity: 1; transition: width 0.3s var(--ease), background 0.3s var(--ease); }
  .m-dots .swiper-pagination-bullet-active { width: 22px; border-radius: 4px; background: var(--blue-500); }
  .m-dots--light .swiper-pagination-bullet { background: rgba(255, 255, 255, 0.4); }
  .m-dots--light .swiper-pagination-bullet-active { background: #fff; }
  /* lines slider dots sit above the product grid — keep them clear of the cards */
  .catalog [data-dots="lines"] { margin-top: 22px; margin-bottom: 30px; }
  .m-arrows { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
  .m-arrow { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); color: var(--ink-soft); transition: border-color 0.3s, color 0.3s, background 0.3s; }
  .m-arrow:hover { border-color: var(--blue-400); color: var(--blue-500); }
  .m-arrow--next { background: var(--blue-500); color: #fff; border-color: var(--blue-500); }
  .m-arrow--next:hover { background: var(--blue-600); color: #fff; }
  
  @media (min-width: 881px) {
    .m-swiper { overflow: visible; }
    .m-swiper .swiper-wrapper { transform: none !important; }
    .m-swiper .swiper-slide { width: auto !important; margin: 0 !important; }
    .m-dots, .m-arrows { display: none !important; }
    .about__grid .swiper-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .logistics__grid .swiper-wrapper { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .tech__grid .swiper-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .global__grid .swiper-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .catalog__grid .swiper-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .certs__grid .swiper-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .news__grid .swiper-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  }
  
  /* image lightbox */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: grid;
    place-items: center;
    padding: 30px;
    background: rgba(8, 22, 46, 0.85);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  }
  .lightbox.is-open { opacity: 1; visibility: visible; }
  .lightbox img { max-width: 100%; max-height: 88vh; object-fit: contain; border-radius: 12px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }
  .lightbox__close {
    position: absolute;
    top: 22px; right: 22px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: background 0.3s;
    z-index: 2;
  }
  .lightbox__close:hover { background: rgba(255, 255, 255, 0.3); }
  .lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    display: grid;
    place-items: center;
    transition: background 0.3s;
    z-index: 2;
  }
  .lightbox__nav:hover { background: rgba(255, 255, 255, 0.3); }
  .lightbox__nav--prev { left: 18px; }
  .lightbox__nav--next { right: 18px; }
  @media (max-width: 700px) {
    .lightbox__nav--prev { left: 8px; }
    .lightbox__nav--next { right: 8px; }
    .lightbox__nav { width: 40px; height: 40px; }
  }
  
  /* =====================================================
     Reveal animation base state
     ===================================================== */
  [data-fade] { opacity: 0; transform: translateY(26px); }
  [data-stagger] > * { opacity: 0; transform: translateY(34px); }
  .split-line {
    overflow: hidden;
    /* room for descenders (g, y, p) so the reveal mask doesn't clip them */
    padding-bottom: 0.2em;
    margin-bottom: -0.2em;
  }
  
  /* =====================================================
     RESPONSIVE
     ===================================================== */
  @media (max-width: 1080px) {
    :root { --gutter: 28px; }
    .header__nav { display: none; }
    .header__menu-toggle { display: flex; }
    .header__logo { margin-right: auto; }
    .header__logo img { max-width: 180px; }
    .hero__inner { gap: 44px; }
    .footer__inner { grid-template-columns: 1fr 1fr; row-gap: 44px; }
    .footer__cta-col { justify-content: flex-start; }
  }
  
  @media (max-width: 880px) {
    .hero { min-height: 560px; padding: 130px 0 90px; }
    .hero__title { max-width: 100%; }
    /* .hero__scrim {
      background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.90) 0%,
        rgba(255, 255, 255, 0.72) 60%,
        rgba(255, 255, 255, 0.45) 100%);
    } */
    .hero__nav { position: static; margin-top: 28px; }
    .products__grid { grid-template-columns: 1fr; gap: 18px; }
    .products, .logistics, .news { padding: 72px 0; }
    .about { padding: 24px 0 72px; }
  
    .catalog { padding: 36px 0 72px; }
    .catalog__grid:not(.m-swiper) { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .category__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .cat-panel__pills { grid-template-columns: repeat(3, 1fr); }
    .cat-copy { margin-top: 56px; }
  
    /* hide duplicate footer CTA on mobile */
    .footer__cta-col { display: none; }
  
    .product__top { grid-template-columns: 1fr; gap: 36px; }
    /* mobile gallery: single image + side arrows, no thumbnails */
    .gallery__thumbs-row { display: none; }
    .gallery__arrow { display: grid; }
    .offer__panel { grid-template-columns: 1fr; gap: 30px; padding: 40px 32px; }
    .product-about, .specs, .benefits { padding-top: 48px; padding-bottom: 48px; }
  
    .ab-hero__panel { padding-top: 120px; padding-bottom: 110px; }
    .ab-hero__nav { left: var(--gutter); right: auto; bottom: 28px; }
    .ab-hero__actions { flex-wrap: wrap; gap: 12px; }
    .ab-hero__actions .btn { flex: 0 0 auto; font-size: 0.85rem; padding: 12px 18px; white-space: nowrap; justify-content: center; }
    .ab-hero__scrim {
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.88) 0%,
        rgba(255, 255, 255, 0.72) 55%,
        rgba(255, 255, 255, 0.4) 100%
      );
    }
    .contacts-hero { padding: 110px 0 35px; }
    .contacts-hero__inner { grid-template-columns: 1fr; gap: 36px; }
    .consult__inner { grid-template-columns: 1fr; gap: 36px; }
    .news-featured { grid-template-columns: 1fr; gap: 28px; }
    .post__thumbs { grid-template-columns: repeat(2, 1fr); }
    .logi-hero__inner { grid-template-columns: 1fr; gap: 20px; }
    .solutions__head { margin-bottom: 24px; }
    .logi-expertise { padding: 70px 0 50px; }
    .logi-expertise__box { margin-top: 30px; }
    .logi-expertise__item {
      display: flex;
      flex-direction: column-reverse;
      gap: 20px;
    }
    .logi-expertise__right { min-height: 240px; }
    .logi-expertise__right img { min-height: 240px; }
    .logi-expertise__left h3 { font-size: 20px; line-height: 28px; }
    .logi-expertise__line span { padding: 5px 10px; font-size: 16px; line-height: 22px; }
    .logi-block { grid-template-columns: 1fr; gap: 18px; }
    .logi-block--reverse .logi-block__text { order: 0; }
    .logi-block__media { order: -1; }
    .global__grid { grid-template-columns: repeat(2, 1fr); }
    .tech__grid { grid-template-columns: repeat(2, 1fr); }
    .tech { padding: 64px 0; }
    .why__inner { grid-template-columns: 1fr; gap: 28px; align-items: stretch; }
    .why__left { order: 3; }
    .why__image { order: 1; max-width: 100%; }
    .why__image img { position: static; width: 100%; height: auto; aspect-ratio: 16 / 10; }
    .why__stats { order: 2; flex-direction: row; flex-wrap: wrap; }
    .why-stat { flex: 1; min-width: 150px; }
  }
  
  @media (max-width: 560px) {
    :root { --gutter: 20px; }
    .header__inner { min-height: 56px; gap: 14px; }
    .header__lang { order: -1; }   /* виден на мобиле, слева от бургера */
    .header__cta span:not(.btn__icon):not(.btn__arrow) { display: none; }
    .header__cta { padding: 11px; }
    .section-head { flex-direction: row; flex-wrap: nowrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 30px; }
    .section-head .section-title { flex: 1 1 auto; min-width: 0; font-size: 1.45rem; }
    .section-head .btn { flex: none; padding: 9px 13px; font-size: 0.76rem; white-space: nowrap; }
    .feature__text, .hero__text { max-width: 100%; }
    .hero__actions { flex-wrap: wrap; gap: 10px; }
    .hero__actions .btn { flex: 0 1 auto; min-width: 0; font-size: 14px; justify-content: center; }
    .hero__kicker { font-size: 14px; }
    .footer__inner { grid-template-columns: 1fr; }
    .logi-card { padding: 26px 24px; }
  
    .lines { grid-template-columns: 1fr; gap: 16px; }
    .catalog__grid:not(.m-swiper) { grid-template-columns: 1fr; }
  
    .offer__row { grid-template-columns: 1fr; }
    .offer__panel { padding: 32px 22px; }
    .offer__submit { align-self: stretch; padding: 13px 22px; font-size: 0.82rem; white-space: nowrap; }
  
    .cat-panel { padding: 16px; border-radius: 14px; }
    .cat-panel__pills { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .cat-pill { min-height: 52px; font-size: 0.82rem; padding: 10px 12px; }
    .category__grid { grid-template-columns: 1fr; margin-top: 28px; }
    .pagination { margin-top: 40px; gap: 6px; }
    .pagination__btn { min-width: 38px; height: 38px; font-size: 0.85rem; }
    .category__head { gap: 12px; }
    .category__logo { height: 38px; }
    .cat-copy { margin-top: 44px; }
    .specs__cell { padding: 13px 16px; font-size: 0.85rem; }
    .product__actions .btn { flex: 1; justify-content: center; }
  
    /* smaller Video Review button on mobile */
    .gallery__video { gap: 8px; padding: 5px 13px 5px 5px; font-size: 0.78rem; }
    .gallery__play { width: 23px; height: 23px; border-width: 1.5px; padding-left: 2px; }
    .gallery__play svg { width: 9px; height: auto; }
  
    /* smaller video modal text on mobile */
    .vmodal__title { font-size: 0.92rem; line-height: 1.35; }
    .vmodal__caption { margin: 12px 0 14px; font-size: 0.82rem; }
    .vthumb__cap { font-size: 0.66rem; margin-top: 6px; }
  
    .tech__grid { grid-template-columns: 1fr; }
    .global__grid { grid-template-columns: 1fr; }
    .consult__row { grid-template-columns: 1fr; }
    .consult__bottom { flex-direction: column; align-items: stretch; gap: 16px; }
    .consult__submit { width: 100%; justify-content: center; }
    .certs__grid { grid-template-columns: 1fr; gap: 32px; }
    .clients__row { justify-content: center; gap: 22px 30px; }
    .ab-hero__actions { flex-wrap: wrap; gap: 12px; }
    .ab-hero__actions .btn { flex: 0 0 auto; font-size: 0.85rem; padding: 12px 18px; white-space: nowrap; justify-content: center; }
    .logi-hero__actions .btn, .product__actions .btn { font-size: 0.78rem; white-space: nowrap; }
    .product__actions .btn { padding: 13px 18px; }
  
    /* tech buttons compact (one row) */
    .tech__actions { gap: 8px; }
    .tech__actions .btn { flex: 0 0 auto; font-size: 0.72rem; padding: 9px 12px; white-space: nowrap; }
  
    /* news2 footer: View More + timer in one row */
    .news-card__foot { flex-wrap: nowrap; gap: 10px; }
    .countdown { gap: 6px; }
    .cd-unit b { font-size: 0.98rem; }
    .cd-unit i { font-size: 0.55rem; }
    .cd-sep { font-size: 0.9rem; }
  
    /* smaller breadcrumb */
    .breadcrumb { flex-wrap: wrap; font-size: 0.6rem; gap: 5px 7px; letter-spacing: 0.03em; }
    .breadcrumb__link, .breadcrumb__sep { white-space: nowrap; }
  
    /* smaller post prev/next + logistics CTA buttons */
    .post__nav { gap: 12px; }
    .post__nav .btn { padding: 11px 16px; font-size: 0.8rem; }
    .logi-cta__inner { padding: 40px 22px; }
    .logi-cta__actions { gap: 10px; }
    .logi-cta__actions .btn { font-size: 0.82rem; padding: 12px 16px; }
  }
  
  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    [data-fade], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  }


/* =====================================================
   REUSABLE POPUP (request form)
   ===================================================== */
.hk-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.hk-popup.is-open { display: flex; }
.hk-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 70, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.hk-popup__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 24px;
  padding: 38px 32px 32px;
  box-shadow: 0 30px 80px rgba(20, 60, 130, 0.25);
  animation: hkPopupIn 0.3s var(--ease, ease);
}
@keyframes hkPopupIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.hk-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  color: var(--ink, #14213d);
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.hk-popup__close:hover { background: var(--bg-soft, #f4f5f7); color: var(--blue-500, #1b4fd6); }
.hk-popup__title {
  margin: 0 0 20px;
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
  color: var(--text-black, #070707);
}
.hk-popup__form { display: flex; flex-direction: column; gap: 14px; }
.hk-popup__form input,
.hk-popup__form textarea {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  font: inherit;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-black, #070707);
  background: #fff;
  transition: border-color 0.2s;
}
.hk-popup__form input::placeholder,
.hk-popup__form textarea::placeholder { color: #a9a9a9; }
.hk-popup__form input:focus,
.hk-popup__form textarea:focus { outline: none; border-color: var(--accent, #0B4996); }
.hk-popup__form textarea { min-height: 110px; resize: vertical; }
.hk-popup__submit {
  margin-top: 4px;
  padding: 10px 40px;
  border: 1px solid var(--accent, #0B4996);
  border-radius: 50px;
  background: var(--accent, #0B4996);
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  align-self: center;
  min-width: 200px;
  transition: background 0.3s ease, color 0.3s ease;
}
.hk-popup__submit:hover { background: #fff; color: var(--accent, #0B4996); }

/* статусы формы (показываются из JS) */
.home_contact_form .contact_form_error,
.home_contact_form .contact_form_success,
.home_contact_form .contact_form_loading {
  display: none;
  font-size: 0.88rem;
  padding: 6px 2px 0;
}
.home_contact_form .contact_form_error { color: #d33; }
.home_contact_form .contact_form_success { color: #1a9d4f; }
.home_contact_form .contact_form_loading { color: var(--ink-soft, #6b7280); }
