

/* Start:/design/index2.css?1785095616114480*/
:root {
    --color-bg: #eef3f7;
    --color-surface: #ffffff;
    --color-dark: #1d2d3a;
    --color-muted: #6b7f8f;
    --color-line: #d6e2eb;
    --color-primary: #3e78a0;
    --color-primary-dark: #244f73;
    --color-accent: #9fc5df;
    --color-steel: #5f88a6;
    --shadow-soft: 0 16px 40px rgba(29, 45, 58, .12);
    --shadow-card: 0 12px 28px rgba(29, 45, 58, .09);
    --radius-xl: 28px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --container: 1180px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    min-width: 320px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
    color: var(--color-dark);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
  }
  
  body.is-locked {
    overflow: hidden;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  button,
  input,
  textarea,
  select {
    font: inherit;
  }
  
  button {
    cursor: pointer;
  }
  
  .container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .01em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
  }
  
  .btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    box-shadow: 0 12px 24px rgba(62, 120, 160, .26);
  }
  
  .btn--primary:hover {
    box-shadow: 0 18px 30px rgba(62, 120, 160, .34);
  }
  
  .btn--outline {
    color: var(--color-primary);
    border-color: rgba(62, 120, 160, .34);
    background: #fff;
  }
  
  .btn--outline:hover {
    border-color: var(--color-primary);
    background: #f1f7fb;
  }
  
  .btn--light {
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
  }
  
  .btn--light:hover {
    background: rgba(255, 255, 255, .22);
  }
  
  .btn--dark {
    color: #fff;
    background: var(--color-dark);
  }
  
  .btn--ghost {
    color: var(--color-steel);
    background: #edf4f8;
  }
  
  .btn--wide {
    width: 100%;
  }
  
  .btn--footer {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .28);
  }
  
  /* Header */
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 24px rgba(21, 33, 47, .08);
  }
  
  .topbar {
    color: #fff;
    background: var(--color-dark);
    font-size: 14px;
  }
  
  .topbar__inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    min-height: 42px;
    align-items: center;
  }
  
  .topbar__item {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
  }
  
  .topbar__label {
    color: var(--color-accent);
    font-weight: 700;
  }
  
  .topbar a {
    color: #fff;
    font-weight: 700;
  }
  
  .topbar a:hover {
    color: var(--color-accent);
  }
  
  .topbar__item--right {
    justify-content: flex-end;
    color: rgba(255, 255, 255, .78);
  }
  
  .header-main {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
  }
  
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
  }
  
  .brand__icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #f1f4f7;
    box-shadow: inset 0 0 0 1px var(--color-line);
    overflow: hidden;
  }
  
  .brand__icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
  }
  
  .brand__text {
    display: grid;
    line-height: 1.05;
  }
  
  .brand__text span {
    font-size: 15px;
    color: var(--color-muted);
  }
  
  .brand__text strong {
    font-size: 20px;
    letter-spacing: .02em;
    text-transform: uppercase;
  }
  
  .brand__text small {
    margin-top: 5px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  
  .main-nav {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
  }
  
  .main-nav a {
    padding: 10px 9px;
    border-radius: 999px;
    color: #273548;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    white-space: nowrap;
  }
  
  .main-nav a:hover {
    color: var(--color-primary);
    background: #eef6fb;
  }
  
  .menu-toggle {
    display: none;
    align-items: center;
    gap: 6px;
    border: 0;
    color: var(--color-dark);
    background: transparent;
    font-weight: 800;
  }
  
  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 10px;
  }
  
  .menu-toggle b {
    margin-left: 3px;
    font-size: 13px;
    text-transform: uppercase;
  }
  
  /* Hero */
  
  .hero {
    position: relative;
    min-height: 650px;
    color: #fff;
    background: #111;
    overflow: hidden;
  }
  
  .hero__viewport,
  .hero__slide {
    position: absolute;
    inset: 0;
  }
  
  .hero__slide {
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity .7s ease, visibility .7s ease, transform 1.1s ease;
    background-image: linear-gradient(90deg, rgba(22, 45, 63, .90) 0%, rgba(31, 68, 94, .72) 44%, rgba(51, 92, 119, .24) 100%), var(--slide-bg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  .hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  
  .hero__content {
    position: relative;
    z-index: 2;
    padding: 112px 0 124px;
  }
  
  .eyebrow,
  .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
  }
  
  .eyebrow::before,
  .section-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
  }
  
  .hero h1,
  .hero h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(38px, 6vw, 74px);
    line-height: .98;
    letter-spacing: -.045em;
    text-transform: uppercase;
  }
  
  .hero__lead {
    max-width: 660px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(18px, 2.2vw, 23px);
  }
  
  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
  }
  
  .slider-btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, .22);
    font-size: 42px;
    line-height: 1;
    transition: background .2s ease, transform .2s ease;
  }
  
  .slider-btn:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
  }
  
  .slider-btn--prev {
    left: 28px;
  }
  
  .slider-btn--next {
    right: 28px;
  }
  
  .hero__dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 4;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
  }
  
  .hero__dots button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    transition: width .2s ease, border-radius .2s ease, background .2s ease;
  }
  
  .hero__dots button.is-active {
    width: 34px;
    border-radius: 999px;
    background: var(--color-accent);
  }
  
  /* Notice */
  
  .notice {
    position: relative;
    z-index: 4;
    margin-top: 0;
  }
  
  .notice--after-catalog {
    padding: 0 0 34px;
    background: #f7fafc;
  }
  
  .notice--after-catalog .notice__inner {
    border: 1px solid rgba(95, 136, 166, .22);
  }
  
  .notice__inner {
    display: grid;
    grid-template-columns: minmax(210px, 1fr) 1.6fr auto;
    gap: 28px;
    align-items: center;
    padding: 26px 30px;
    border-radius: var(--radius-xl);
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), #1f425f);
    box-shadow: var(--shadow-soft);
  }
  
  .notice h2 {
    margin: 4px 0 0;
    font-size: 28px;
    line-height: 1.15;
  }
  
  .notice p {
    margin: 0;
    color: rgba(255, 255, 255, .86);
  }
  
  .notice__badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  
  /* Sections */
  
  .section {
    padding: 92px 0;
  }
  
  .section--about {
    padding-top: 86px;
  }
  
  .section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 38px;
  }
  
  .section-head--center {
    display: grid;
    justify-items: center;
    text-align: center;
  }
  
  .section-head h2,
  .about-text h2,
  .order-info h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -.03em;
  }
  
  .section-kicker {
    color: var(--color-primary);
  }
  
  /* Catalog */
  
  .section--catalog {
    background: #f7fafc;
    padding-top: 76px;
  }
  
  .catalog-search {
    display: grid;
    gap: 8px;
    min-width: min(100%, 360px);
    color: var(--color-muted);
    font-weight: 700;
    font-size: 14px;
  }
  
  .catalog-search input {
    width: 100%;
    height: 50px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    padding: 0 18px;
    color: var(--color-dark);
    background: #f8fafc;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  
  .catalog-search input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(62, 120, 160, .14);
  }
  
  .catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }
  
  .product-card {
    display: grid;
    grid-template-rows: 185px 1fr;
    min-height: 360px;
    border: 1px solid var(--color-line);
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px rgba(21, 33, 47, .05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }
  
  .product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(62, 120, 160, .35);
    box-shadow: var(--shadow-card);
  }
  
  .product-card > a {
    display: block;
    background: #edf4f8;
    overflow: hidden;
  }
  
  .product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
  }
  
  .product-card:hover img {
    transform: scale(1.06);
  }
  
  .product-card div {
    padding: 20px;
  }
  
  .product-card h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.15;
  }
  
  .product-card h3 a:hover {
    color: var(--color-primary);
  }
  
  .product-card p {
    margin: 12px 0 0;
    color: var(--color-muted);
    font-size: 15px;
  }
  
  .catalog-empty {
    margin-top: 24px;
    padding: 22px;
    border-radius: 18px;
    background: #edf6fc;
    color: #335a75;
    font-weight: 700;
  }
  
  /* About */
  
  .about-grid {
    display: grid;
    grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
    gap: 58px;
    align-items: center;
  }
  
  .about-media {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(145deg, #fff, #e9eef4);
    box-shadow: var(--shadow-soft);
  }
  
  .about-media img {
    width: 88%;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 22px 28px rgba(21, 33, 47, .14));
  }
  
  .about-media::before {
    content: "";
    position: absolute;
    inset: auto -22% -32% 10%;
    height: 55%;
    transform: rotate(-7deg);
    background: rgba(62, 120, 160, .10);
  }
  
  .about-media__card {
    position: absolute;
    left: 26px;
    bottom: 26px;
    width: 170px;
    padding: 18px;
    border-radius: 20px;
    color: #fff;
    background: var(--color-dark);
    box-shadow: var(--shadow-card);
  }
  
  .about-media__card strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    color: var(--color-accent);
  }
  
  .about-media__card span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .82);
  }
  
  .about-text p {
    color: var(--color-muted);
    font-size: 17px;
  }
  
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 28px 0;
  }
  
  .stat {
    padding: 18px;
    border: 1px solid var(--color-line);
    border-radius: 18px;
    background: #fff;
  }
  
  .stat strong {
    display: block;
    color: var(--color-primary);
    font-size: 27px;
    line-height: 1;
  }
  
  .stat span {
    display: block;
    margin-top: 8px;
    color: var(--color-muted);
    font-size: 14px;
  }
  
  .about-text__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
  
  /* Benefits */
  
  .benefits {
    background: linear-gradient(180deg, #f5f6f8 0%, #edf1f5 100%);
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
  
  .benefits-grid article {
    position: relative;
    min-height: 235px;
    padding: 30px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(21, 33, 47, .05);
    overflow: hidden;
  }
  
  .benefits-grid article::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(62, 120, 160, .09);
  }
  
  .benefits-grid span {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .12em;
  }
  
  .benefits-grid h3 {
    margin: 16px 0 10px;
    font-size: 24px;
    line-height: 1.15;
  }
  
  .benefits-grid p {
    margin: 0;
    color: var(--color-muted);
  }
  
  /* Services */
  
  .services {
    background: #fff;
  }
  
  .link-more {
    color: var(--color-primary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
  }
  
  .link-more:hover {
    color: var(--color-primary-dark);
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  
  .service-card {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-card);
  }
  
  .service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .service-card div {
    padding: 26px;
  }
  
  .service-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
  }
  
  .service-card p {
    margin: 0;
    color: var(--color-muted);
  }
  
  /* Clients */
  
  .clients {
    background: #fff;
    padding-top: 70px;
    padding-bottom: 76px;
  }
  
  .clients-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }
  
  .clients-row img {
    width: 100%;
    height: 92px;
    object-fit: contain;
    padding: 18px;
    border: 1px solid var(--color-line);
    border-radius: 18px;
    background: #fff;
    transition: filter .2s ease, opacity .2s ease, transform .2s ease;
  }
  
  .clients-row img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-3px);
  }
  
  /* Order */
  
  .order-section {
    padding: 92px 0;
    color: #fff;
    background: linear-gradient(135deg, rgba(21, 33, 47, .96), rgba(21, 33, 47, .86)), url('/design/templates/businessimage/images/header-bk.jpg') center/cover no-repeat;
  }
  
  .order-grid {
    display: grid;
    grid-template-columns: minmax(280px, .86fr) minmax(320px, 1fr);
    gap: 48px;
    align-items: start;
  }
  
  .order-info p {
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
  }
  
  .order-info ul {
    display: grid;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
  }
  
  .order-info li {
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, .86);
  }
  
  .order-info li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 900;
  }
  
  .order-form {
    display: grid;
    gap: 16px;
    padding: 30px;
    border-radius: var(--radius-xl);
    background: #fff;
    color: var(--color-dark);
    box-shadow: var(--shadow-soft);
  }
  
  .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  
  .form-row--full {
    grid-template-columns: 1fr;
  }
  
  .order-form label,
  .modal label {
    display: grid;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    color: var(--color-dark);
  }
  
  input,
  textarea,
  select {
    width: 100%;
    border: 1px solid var(--color-line);
    border-radius: 14px;
    padding: 13px 14px;
    color: var(--color-dark);
    background: #f8fafc;
    outline: none;
    resize: vertical;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  }
  
  input:focus,
  textarea:focus,
  select:focus {
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(62, 120, 160, .14);
  }
  
  .checkbox {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 10px !important;
    color: var(--color-muted) !important;
    font-weight: 500 !important;
  }
  
  .checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-primary);
  }
  
  .form-note {
    margin: 0;
    color: var(--color-muted);
    font-size: 13px;
  }
  
  .form-note.is-success {
    color: #2f7a63;
    font-weight: 800;
  }
  
  .form-note.is-error {
    color: var(--color-primary);
    font-weight: 800;
  }
  
  /* Footer */
  
  .site-footer {
    color: rgba(255, 255, 255, .78);
    background: #101925;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .75fr .9fr .8fr;
    gap: 38px;
    padding: 58px 0 36px;
  }
  
  .brand--footer {
    min-width: 0;
    color: #fff;
  }
  
  .footer-grid h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 18px;
  }
  
  .footer-grid a {
    display: table;
    margin: 8px 0;
    color: rgba(255, 255, 255, .80);
  }
  
  .footer-grid a:hover {
    color: var(--color-accent);
  }
  
  .footer-grid p {
    margin: 14px 0 0;
    max-width: 390px;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .10);
    font-size: 14px;
  }
  
  .footer-bottom a {
    color: var(--color-accent);
    font-weight: 800;
  }
  
  /* Modal */
  
  .modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    place-items: center;
    padding: 24px;
  }
  
  .modal.is-open {
    display: grid;
  }
  
  .modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 12, 20, .64);
    backdrop-filter: blur(6px);
  }
  
  .modal__dialog {
    position: relative;
    width: min(100%, 480px);
    max-height: min(720px, calc(100vh - 48px));
    overflow: auto;
    padding: 32px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
  }
  
  .modal__dialog h2 {
    margin: 0 0 8px;
    font-size: 30px;
  }
  
  .modal__dialog p {
    margin: 0 0 20px;
    color: var(--color-muted);
  }
  
  .modal__dialog form {
    display: grid;
    gap: 16px;
  }
  
  .modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    color: var(--color-dark);
    background: #eef2f6;
    font-size: 26px;
    line-height: 1;
  }
  
  .modal__close:hover {
    color: #fff;
    background: var(--color-primary);
  }
  
  .scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--color-primary);
    font-size: 24px;
    box-shadow: 0 12px 24px rgba(62, 120, 160, .30);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease;
  }
  
  .scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  /* Adaptive */
  
  @media (max-width: 1120px) {
    .header-main {
      grid-template-columns: auto auto;
    }
  
    .header-main__callback {
      display: none;
    }
  
    .menu-toggle {
      display: inline-grid;
      justify-self: end;
    }
  
    .menu-toggle span {
      grid-column: 1;
    }
  
    .menu-toggle b {
      grid-row: 1 / span 3;
      grid-column: 2;
      align-self: center;
    }
  
    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 20px;
        background: #fff;
        box-shadow: var(--shadow-soft);
      
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px) scale(.98);
        transform-origin: top center;
      
        transition:
          opacity .24s ease,
          transform .24s ease,
          visibility 0s linear .24s;
      }
      
      .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
      
        transition:
          opacity .24s ease,
          transform .24s ease,
          visibility 0s linear 0s;
      }
  
    .main-nav a {
      padding: 14px 16px;
      font-size: 14px;
      white-space: normal;
    }
  
    .catalog-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  
    .slider-btn {
      display: none;
    }
  }
  
  @media (max-width: 900px) {
    .topbar__inner {
      flex-direction: column;
      align-items: flex-start;
      padding: 10px 0;
      gap: 8px;
    }
  
    .topbar__item--right {
      justify-content: flex-start;
    }
  
    .hero {
      min-height: 590px;
    }
  
    .notice {
      margin-top: 0;
    }
  
    .notice__inner {
      grid-template-columns: 1fr;
      border-radius: 0;
      width: 100%;
    }
  
    .about-grid,
    .order-grid {
      grid-template-columns: 1fr;
    }
  
    .about-media {
      min-height: 350px;
    }
  
    .stats,
    .benefits-grid,
    .service-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .catalog-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .clients-row {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 640px) {
    .container {
      width: min(100% - 24px, var(--container));
    }
  
    .header-main {
      min-height: 72px;
    }
  
    .brand {
      min-width: 0;
    }
  
    .brand__icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
    }
  
    .brand__icon img {
      width: 30px;
      height: 30px;
    }
  
    .brand__text strong {
      font-size: 16px;
    }
  
    .brand__text small {
      display: none;
    }
  
    .hero {
      min-height: 570px;
    }
  
    .hero__content {
      padding: 92px 0 98px;
    }
  
    .hero__slide {
      background-image: linear-gradient(90deg, rgba(22, 45, 63, .92), rgba(31, 68, 94, .74)), var(--slide-bg);
    }
  
    .hero__actions {
      align-items: stretch;
      flex-direction: column;
    }
  
    .hero__actions .btn {
      width: 100%;
    }
  
    .section {
      padding: 64px 0;
    }
  
    .section--about {
      padding-top: 72px;
    }
  
    .section-head {
      display: grid;
      align-items: start;
    }
  
    .catalog-search {
      min-width: 0;
    }
  
    .catalog-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
  
    .benefits-grid,
    .service-grid,
    .stats,
    .clients-row,
    .footer-grid,
    .form-row {
      grid-template-columns: 1fr;
    }
  
    .product-card {
      grid-template-rows: 120px 1fr;
      min-height: auto;
      border-radius: 16px;
    }
  
    .product-card div {
      padding: 12px;
    }
  
    .product-card h3 {
      font-size: 15px;
      line-height: 1.2;
    }
  
    .product-card p {
      margin-top: 8px;
      font-size: 12px;
      line-height: 1.35;
    }
  
    .order-form {
      padding: 22px;
      border-radius: 22px;
    }
  
    .footer-bottom {
      flex-direction: column;
    }
  
    .modal {
      padding: 12px;
    }
  
    .modal__dialog {
      padding: 26px 20px;
      border-radius: 22px;
    }
  }

  /* Fade-in / fade-out для всех модальных окон */

.modal {
    display: grid;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity .28s ease,
      visibility 0s linear .28s;
  }
  
  .modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity .28s ease,
      visibility 0s linear 0s;
  }
  
  .modal__backdrop {
    opacity: 0;
    transition: opacity .28s ease;
  }
  
  .modal.is-open .modal__backdrop {
    opacity: 1;
  }
  
  .modal__dialog {
    opacity: 0;
    transform: translateY(18px) scale(.96);
    transition:
      opacity .28s ease,
      transform .28s ease;
  }
  
  .modal.is-open .modal__dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  
  .modal.is-closing {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
  }
  
  .modal.is-closing .modal__backdrop {
    opacity: 0;
  }
  
  .modal.is-closing .modal__dialog {
    opacity: 0;
    transform: translateY(18px) scale(.96);
  }

  .menu-toggle span {
    transition:
      transform .24s ease,
      opacity .24s ease,
      background .24s ease;
  }
  
  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }




/* Стили пришедшие с старницей каталога */

/* Inner catalog page */

.inner-hero {
  position: relative;
  padding: 64px 0 52px;
  background:
    radial-gradient(circle at 80% 10%, rgba(159, 197, 223, .34), transparent 34%),
    linear-gradient(145deg, #f7fafc 0%, #e9f1f6 100%);
  overflow: hidden;
}

.inner-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(62, 120, 160, .09);
}

.inner-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 48px;
  align-items: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--color-primary);
}

.breadcrumbs a:hover {
  color: var(--color-primary-dark);
}

.inner-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.inner-hero__lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: clamp(17px, 2vw, 21px);
}

.inner-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.catalog-summary {
  padding: 30px;
  border: 1px solid rgba(62, 120, 160, .18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.catalog-summary__label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #edf4f8;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.catalog-summary strong {
  display: block;
  color: var(--color-dark);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.04em;
}

.catalog-summary p {
  margin: 16px 0 20px;
  color: var(--color-muted);
}

.catalog-summary a {
  display: inline-flex;
  color: var(--color-primary);
  font-weight: 900;
}

.catalog-alert {
  padding: 26px 0 0;
  background: #f7fafc;
}

.catalog-alert__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid rgba(95, 136, 166, .22);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #fff, #eef6fb);
  box-shadow: 0 10px 28px rgba(29, 45, 58, .07);
}

.catalog-alert strong {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
  line-height: 1.2;
}

.catalog-alert p {
  margin: 0;
  color: var(--color-muted);
}

.section--catalog-page {
  background: #f7fafc;
  padding-top: 72px;
}

.catalog-grid--sections .product-card {
  position: relative;
}

.catalog-section-card__num {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.catalog-section-card__link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
}

.catalog-section-card__link::after {
  content: "→";
  margin-left: 8px;
  transition: transform .2s ease;
}

.catalog-section-card:hover .catalog-section-card__link::after {
  transform: translateX(4px);
}

.catalog-order-block {
  padding: 0 0 92px;
  background: #f7fafc;
}

.catalog-order-block__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(159, 197, 223, .28), transparent 30%),
    linear-gradient(135deg, var(--color-primary), #1f425f);
  box-shadow: var(--shadow-soft);
}

.catalog-order-block .section-kicker {
  color: var(--color-accent);
}

.catalog-order-block h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.catalog-order-block p {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
}

.catalog-order-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.catalog-order-block .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .08);
}

.catalog-order-block .btn--outline:hover {
  background: rgba(255, 255, 255, .16);
}

/* Adaptive */

@media (max-width: 1024px) {
  .inner-hero__grid {
    grid-template-columns: 1fr;
  }

  .catalog-summary {
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .inner-hero {
    padding: 44px 0 38px;
  }

  .breadcrumbs {
    margin-bottom: 20px;
  }

  .catalog-alert__inner,
  .catalog-order-block__inner {
    grid-template-columns: 1fr;
  }

  .catalog-order-block__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .inner-hero__actions,
  .catalog-order-block__actions {
    display: grid;
  }

  .inner-hero__actions .btn,
  .catalog-order-block__actions .btn,
  .catalog-alert .btn {
    width: 100%;
  }

  .catalog-alert__inner,
  .catalog-order-block__inner,
  .catalog-summary {
    padding: 24px;
  }
}
/* Детальная страница  товара*/

/* ==========================================
   Product detail page
   Добавить в конец index2.css
   Предыдущий CSS для detail-страницы лучше заменить этим
========================================== */

.product-detail-page {
  background: #f7fafc;
}

/* Hero */

.inner-hero {
  position: relative;
  padding: 64px 0 70px;
  background:
    radial-gradient(circle at 80% 10%, rgba(159, 197, 223, .34), transparent 34%),
    linear-gradient(145deg, #f7fafc 0%, #e9f1f6 100%);
  overflow: hidden;
}

.inner-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(62, 120, 160, .09);
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--color-primary);
}

.breadcrumbs a:hover {
  color: var(--color-primary-dark);
}

.product-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.product-detail-hero__media {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(62, 120, 160, .14);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #e7f0f6);
  box-shadow: var(--shadow-soft);
}

.product-detail-hero__media::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(62, 120, 160, .12);
}

.product-detail-hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.product-detail-hero__content {
  min-width: 0;
}

.product-detail-hero__content h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.product-detail-hero__lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: clamp(17px, 2vw, 20px);
}

.product-detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.product-detail-meta__item {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(62, 120, 160, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 8px 20px rgba(21, 33, 47, .05);
}

.product-detail-meta__item span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-detail-meta__item strong {
  display: block;
  color: var(--color-dark);
  font-size: 16px;
  line-height: 1.25;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* Alert */

.catalog-alert {
  background: #f7fafc;
}

.product-detail-alert {
  padding: 34px 0 0;
}

.catalog-alert__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid rgba(95, 136, 166, .22);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #fff, #eef6fb);
  box-shadow: 0 10px 28px rgba(29, 45, 58, .07);
}

.catalog-alert strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-dark);
  font-size: 22px;
  line-height: 1.2;
}

.catalog-alert p {
  margin: 0;
  color: var(--color-muted);
}

/* Main layout */

.product-detail-section {
  padding: 76px 0 60px;
  background: #f7fafc;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}

.product-detail-layout > * {
  min-width: 0;
}

.product-detail-main {
  min-width: 0;
  display: grid;
  gap: 26px;
}

.product-detail-aside {
  position: sticky;
  top: 110px;
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 18px;
  align-self: start;
}

/* Detail cards */

.detail-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 8px 20px rgba(21, 33, 47, .05);
}

.detail-card__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.detail-card h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.detail-card__back {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(62, 120, 160, .26);
  border-radius: 999px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
  background: #f1f7fb;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.detail-card__back:hover {
  border-color: var(--color-primary);
  background: #e5f1f8;
}

.detail-card--text p {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 17px;
}

/* Table */

.product-table-note {
  display: none;
}

.product-spec-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  background: #fff;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.product-spec-table-wrap.is-dragging {
  cursor: grabbing;
}

.product-spec-table-wrap.is-dragging,
.product-spec-table-wrap.is-dragging * {
  user-select: none;
}

.product-spec-table-wrap::-webkit-scrollbar {
  height: 10px;
}

.product-spec-table-wrap::-webkit-scrollbar-track {
  background: #eef4f8;
  border-radius: 999px;
}

.product-spec-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(62, 120, 160, .45);
  border-radius: 999px;
}

.product-spec-table-wrap::-webkit-scrollbar-thumb:hover {
  background: rgba(62, 120, 160, .72);
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.product-spec-table--wide {
  min-width: 1480px;
}

.product-spec-table th,
.product-spec-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.product-spec-table th {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

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

.product-spec-table td {
  color: var(--color-dark);
  font-size: 15px;
}

.product-spec-table td:first-child {
  font-weight: 900;
}

.product-spec-table tbody tr:hover {
  background: #f5f9fc;
}

/* Features */

.detail-card--features {
  overflow: hidden;
}

.detail-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.detail-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(62, 120, 160, .14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 12%, rgba(159, 197, 223, .2), transparent 34%),
    linear-gradient(145deg, #ffffff, #f4f8fb);
  box-shadow: 0 10px 24px rgba(21, 33, 47, .05);
}

.detail-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--color-primary);
  background: #eaf3f8;
}

.detail-feature__icon:empty {
  display: none;
}

.detail-feature__icon svg {
  display: block;
  width: 30px;
  height: 30px;
  max-width: 100%;
  max-height: 100%;
  fill: currentColor;
}

.detail-feature strong {
  display: block;
  margin-bottom: 14px;
  color: var(--color-dark);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.detail-feature span:not(.detail-feature__icon) {
  display: block;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.55;
}

/* Aside */

.aside-order-card,
.aside-info-card {
  width: 100%;
  box-sizing: border-box;
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.aside-order-card {
  color: #fff;
  background:
    radial-gradient(circle at 88% 16%, rgba(159, 197, 223, .28), transparent 34%),
    linear-gradient(135deg, var(--color-primary), #1f425f);
}

.aside-order-card__label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--color-dark);
  background: var(--color-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.aside-order-card h3,
.aside-info-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.aside-order-card p {
  margin: 14px 0 20px;
  color: rgba(255, 255, 255, .82);
}

.aside-order-card .btn--primary {
  background: #fff;
  color: var(--color-primary);
  box-shadow: none;
}

.aside-order-card .btn--primary:hover {
  box-shadow: 0 14px 24px rgba(0, 0, 0, .16);
}

.aside-order-card__phone {
  display: inline-flex;
  margin-top: 18px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.aside-info-card {
  border: 1px solid var(--color-line);
  background: #fff;
}

.aside-info-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.aside-info-card li {
  position: relative;
  padding-left: 22px;
  color: var(--color-muted);
  font-weight: 700;
}

.aside-info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* Related products */

.related-products {
  padding: 14px 0 76px;
  background: #f7fafc;
}

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

/* Bottom CTA */

.catalog-order-block {
  padding: 0 0 92px;
  background: #f7fafc;
}

.catalog-order-block__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(159, 197, 223, .28), transparent 30%),
    linear-gradient(135deg, var(--color-primary), #1f425f);
  box-shadow: var(--shadow-soft);
}

.catalog-order-block .section-kicker {
  color: var(--color-accent);
}

.catalog-order-block h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.catalog-order-block p {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
}

.catalog-order-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.catalog-order-block .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .08);
}

.catalog-order-block .btn--outline:hover {
  background: rgba(255, 255, 255, .16);
}

/* Adaptive */

@media (max-width: 1180px) {
  .related-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .product-detail-hero__grid,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-aside {
    position: static;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .inner-hero {
    padding: 44px 0 46px;
  }

  .breadcrumbs {
    margin-bottom: 22px;
  }

  .product-detail-meta {
    grid-template-columns: 1fr;
  }

  .detail-card__head {
    display: grid;
  }

  .catalog-alert__inner,
  .catalog-order-block__inner {
    grid-template-columns: 1fr;
  }

  .catalog-order-block__actions {
    justify-content: flex-start;
  }

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

  .detail-features {
    grid-template-columns: 1fr;
  }

  .detail-feature {
    min-height: 230px;
  }
}

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

  .product-spec-table--wide {
    min-width: 1320px;
  }
}

@media (max-width: 640px) {
  .product-detail-hero__media {
    min-height: 280px;
  }

  .product-detail-hero__media img {
    height: 280px;
  }

  .product-detail-actions,
  .catalog-order-block__actions {
    display: grid;
  }

  .product-detail-actions .btn,
  .catalog-order-block__actions .btn,
  .catalog-alert .btn {
    width: 100%;
  }

  .product-detail-section {
    padding-top: 52px;
  }

  .detail-card,
  .aside-order-card,
  .aside-info-card {
    padding: 22px;
  }

  .detail-feature {
    min-height: 220px;
    padding: 24px;
  }

  .detail-feature strong {
    font-size: 22px;
  }

  .catalog-alert__inner,
  .catalog-order-block__inner {
    padding: 24px;
  }

  .related-products__grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================
   Contacts page
   Полный CSS для страницы контактов
   Добавить в конец index2.css
========================================== */

.contacts-page {
  background: #f7fafc;
}

/* Hero */

.contacts-hero {
  position: relative;
  padding: 64px 0 70px;
  background:
    radial-gradient(circle at 82% 12%, rgba(159, 197, 223, .34), transparent 34%),
    linear-gradient(145deg, #f7fafc 0%, #e9f1f6 100%);
  overflow: hidden;
}

.contacts-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(62, 120, 160, .09);
}

.contacts-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--color-primary);
}

.breadcrumbs a:hover {
  color: var(--color-primary-dark);
}

.contacts-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 54px;
  align-items: center;
}

.contacts-hero__content {
  min-width: 0;
}

.contacts-hero__content h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.contacts-hero__lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: clamp(17px, 2vw, 21px);
}

.contacts-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.contacts-hero-card {
  padding: 30px;
  border: 1px solid rgba(62, 120, 160, .18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.contacts-hero-card__label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--color-primary);
  background: #edf4f8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contacts-hero-card__phone {
  display: block;
  color: var(--color-dark);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.contacts-hero-card__phone + .contacts-hero-card__phone {
  margin-top: 8px;
}

.contacts-hero-card__line {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(62, 120, 160, .14);
}

.contacts-hero-card__line span {
  display: block;
  margin-bottom: 5px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contacts-hero-card__line a,
.contacts-hero-card__line p {
  margin: 0;
  color: var(--color-dark);
  font-size: 17px;
  font-weight: 800;
}

/* Alert */

.contacts-alert {
  padding: 34px 0 0;
  background: #f7fafc;
}

.contacts-alert__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid rgba(95, 136, 166, .22);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #fff, #eef6fb);
  box-shadow: 0 10px 28px rgba(29, 45, 58, .07);
}

.contacts-alert strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-dark);
  font-size: 22px;
  line-height: 1.2;
}

.contacts-alert p {
  margin: 0;
  color: var(--color-muted);
}

/* Contact cards */

.contacts-section {
  padding: 76px 0 42px;
  background: #f7fafc;
}

.contacts-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.contacts-card {
  min-width: 0;
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 12%, rgba(159, 197, 223, .18), transparent 32%),
    #fff;
  box-shadow: 0 8px 20px rgba(21, 33, 47, .05);
}

.contacts-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--color-primary);
  background: #eaf3f8;
}

.contacts-card__icon:empty {
  display: none;
}

.contacts-card__icon svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.contacts-card__label {
  display: block;
  margin-bottom: 10px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contacts-card h3 {
  margin: 0;
  color: var(--color-dark);
  font-size: 24px;
  line-height: 1.14;
  letter-spacing: -.025em;
}

.contacts-card p {
  margin: 16px 0 0;
  color: var(--color-muted);
}

.contacts-card__links {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.contacts-card__links a,
.contacts-card__address,
.contacts-card__schedule {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 900;
}

.contacts-card__links a:hover {
  color: var(--color-primary-dark);
}

/* Map */

.contacts-map-section {
  padding: 34px 0 48px;
  background: #f7fafc;
}

.contacts-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: stretch;
}

.contacts-map-layout > * {
  min-width: 0;
}

.contacts-map-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 8px 20px rgba(21, 33, 47, .05);
}

.contacts-map-card__top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contacts-map-card h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.contacts-map-card__button {
  min-width: 265px;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
  white-space: nowrap;
}

.contacts-map {
  width: 100%;
  height: 430px;
  border-radius: 24px;
  overflow: hidden;
  background: #e7f0f6;
}

.contacts-route-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 88% 16%, rgba(159, 197, 223, .28), transparent 34%),
    linear-gradient(135deg, var(--color-primary), #1f425f);
  box-shadow: var(--shadow-card);
}

.contacts-route-card__label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--color-dark);
  background: var(--color-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contacts-route-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.contacts-route-card p {
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, .82);
}

.contacts-route-card__actions {
  display: grid;
  gap: 12px;
}

.contacts-route-card .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .08);
}

.contacts-route-card .btn--outline:hover {
  background: rgba(255, 255, 255, .16);
}

@media (max-width: 1024px) {
  .contacts-map-layout {
    grid-template-columns: 1fr;
  }

  .contacts-route-card {
    min-height: 300px;
  }
}

@media (max-width: 860px) {
  .contacts-map-card__top {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contacts-map-card__button {
    width: fit-content;
    min-width: 240px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .contacts-map {
    height: 360px;
  }

  .contacts-map-card__button {
    width: 100%;
    min-width: 0;
  }

  .contacts-map-card,
  .contacts-route-card {
    padding: 24px;
  }

  .contacts-route-card__actions {
    display: grid;
  }

  .contacts-route-card .btn {
    width: 100%;
  }
}

/* Form */

.contacts-form-section {
  padding: 42px 0 54px;
  background: #f7fafc;
}

.contacts-form-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 32px;
  align-items: start;
}

.contacts-form-text {
  min-width: 0;
  padding: 34px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 90% 18%, rgba(159, 197, 223, .3), transparent 30%),
    linear-gradient(135deg, var(--color-primary), #1f425f);
  box-shadow: var(--shadow-soft);
}

.contacts-form-text .section-kicker {
  color: var(--color-accent);
}

.contacts-form-text h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.contacts-form-text p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
}

.contacts-form-text__list {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background: rgba(255, 255, 255, .08);
}

.contacts-form-text__list span {
  display: block;
  margin-bottom: 12px;
  font-weight: 900;
}

.contacts-form-text__list ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, .84);
}

.contacts-form {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 8px 20px rgba(21, 33, 47, .05);
}

.contacts-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contacts-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.contacts-form label span {
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 900;
}

.contacts-form input,
.contacts-form select,
.contacts-form textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--color-dark);
  background: #f8fbfd;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.contacts-form input:focus,
.contacts-form select:focus,
.contacts-form textarea:focus {
  border-color: rgba(62, 120, 160, .7);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(62, 120, 160, .1);
}

.contacts-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contacts-form__agree {
  display: flex !important;
  grid-template-columns: auto 1fr;
  flex-direction: row;
  gap: 10px !important;
  align-items: flex-start;
}

.contacts-form__agree input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.contacts-form__agree span {
  color: var(--color-muted) !important;
  font-weight: 700 !important;
  line-height: 1.45;
}

.contacts-form__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}

.contacts-form__bottom p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 700;
}

.contacts-form__bottom a {
  color: var(--color-primary);
  font-weight: 900;
}

/* Requisites */

.contacts-requisites-section {
  padding: 42px 0 76px;
  background: #f7fafc;
}

.contacts-requisites {
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 8px 20px rgba(21, 33, 47, .05);
}

.contacts-requisites__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contacts-requisites h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.contacts-requisites__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--color-line);
  border-radius: 22px;
  overflow: hidden;
}

.contacts-requisite {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: #fff;
}

.contacts-requisite:nth-child(4n) {
  border-right: 0;
}

.contacts-requisite:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.contacts-requisite span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contacts-requisite strong {
  display: block;
  color: var(--color-dark);
  font-size: 16px;
  line-height: 1.35;
}

.contacts-requisites__note {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

/* Bottom CTA */

.contacts-bottom-cta {
  padding: 0 0 92px;
  background: #f7fafc;
}

.contacts-bottom-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(159, 197, 223, .28), transparent 30%),
    linear-gradient(135deg, var(--color-primary), #1f425f);
  box-shadow: var(--shadow-soft);
}

.contacts-bottom-cta .section-kicker {
  color: var(--color-accent);
}

.contacts-bottom-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.contacts-bottom-cta p {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
}

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

.contacts-bottom-cta .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .08);
}

.contacts-bottom-cta .btn--outline:hover {
  background: rgba(255, 255, 255, .16);
}

/* Adaptive */

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

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

  .contacts-requisite:nth-child(4n) {
    border-right: 1px solid var(--color-line);
  }

  .contacts-requisite:nth-child(2n) {
    border-right: 0;
  }

  .contacts-requisite:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--color-line);
  }

  .contacts-requisite:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 1024px) {
  .contacts-hero__grid,
  .contacts-map-layout,
  .contacts-form-layout {
    grid-template-columns: 1fr;
  }

  .contacts-hero-card {
    max-width: 560px;
  }

  .contacts-route-card {
    min-height: 300px;
  }
}

@media (max-width: 860px) {
  .contacts-hero {
    padding: 44px 0 46px;
  }

  .breadcrumbs {
    margin-bottom: 22px;
  }

  .contacts-alert__inner,
  .contacts-bottom-cta__inner,
  .contacts-requisites__head,
  .contacts-map-card__top {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contacts-bottom-cta__actions {
    justify-content: flex-start;
  }

  .contacts-form__grid {
    grid-template-columns: 1fr;
  }

  .contacts-map-card__button {
    width: fit-content;
    min-width: 230px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .contacts-hero__actions,
  .contacts-bottom-cta__actions,
  .contacts-route-card__actions {
    display: grid;
  }

  .contacts-hero__actions .btn,
  .contacts-bottom-cta__actions .btn,
  .contacts-alert .btn,
  .contacts-route-card .btn,
  .contacts-form__bottom .btn,
  .contacts-map-card__button {
    width: 100%;
  }

  .contacts-map-card__button {
    min-width: 0;
  }

  .contacts-cards {
    grid-template-columns: 1fr;
  }

  .contacts-card {
    min-height: auto;
  }

  .contacts-map {
    height: 420px;
  }

  .contacts-map-balloon {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 18px;
  }

  .contacts-map-balloon strong {
    font-size: 18px;
  }

  .contacts-hero-card,
  .contacts-card,
  .contacts-map-card,
  .contacts-route-card,
  .contacts-form,
  .contacts-form-text,
  .contacts-requisites,
  .contacts-alert__inner,
  .contacts-bottom-cta__inner {
    padding: 24px;
  }

  .contacts-requisites__grid {
    grid-template-columns: 1fr;
  }

  .contacts-requisite,
  .contacts-requisite:nth-child(2n),
  .contacts-requisite:nth-child(4n),
  .contacts-requisite:nth-last-child(-n + 2),
  .contacts-requisite:nth-last-child(-n + 4) {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .contacts-requisite:last-child {
    border-bottom: 0;
  }

  .contacts-form__bottom {
    display: grid;
  }
}

/* ==========================================
   Catalog mobile fixed container
   Вставить в самый конец CSS
========================================== */

/* Возвращаем нормальные боковые отступы контейнеру,
   потому что .inner-hero__grid одновременно является .container */
   .catalog-page .inner-hero__grid.container,
   .catalog-page .catalog-alert .container,
   .catalog-page .section--catalog-page .container,
   .catalog-page .catalog-order-block .container {
     width: min(100% - 32px, 1200px);
     max-width: 1200px;
     margin-left: auto;
     margin-right: auto;
     box-sizing: border-box;
   }
   
   /* Чтобы контент внутри grid не выталкивал страницу */
   .catalog-page .inner-hero__grid,
   .catalog-page .inner-hero__content,
   .catalog-page .catalog-summary,
   .catalog-page .catalog-order-block__inner {
     min-width: 0;
     max-width: 100%;
     box-sizing: border-box;
   }
   
   /* Hero каталога */
   .catalog-page .inner-hero__grid {
     display: grid;
     grid-template-columns: minmax(0, 1fr) 330px;
     gap: 48px;
     align-items: center;
   }
   
   .catalog-page .inner-hero h1 {
     max-width: 100%;
     overflow-wrap: break-word;
   }
   
   .catalog-page .inner-hero__lead {
     max-width: 100%;
   }
   
   .catalog-page .catalog-summary {
     width: 100%;
   }
   
   .catalog-page .catalog-summary strong,
   .catalog-page .catalog-summary p,
   .catalog-page .catalog-summary a {
     max-width: 100%;
     overflow-wrap: break-word;
   }
   
   /* Кнопки в нижнем CTA */
   .catalog-page .catalog-order-block__actions {
     min-width: 0;
   }
   
   .catalog-page .catalog-order-block__actions .btn {
     justify-content: center;
   }
   
   /* Планшеты */
   @media (max-width: 1024px) {
     .catalog-page .inner-hero__grid {
       grid-template-columns: 1fr;
       gap: 32px;
     }
   
     .catalog-page .catalog-summary {
       max-width: 520px;
     }
   }
   
   /* Мобилка */
   @media (max-width: 640px) {
     .catalog-page .inner-hero {
       padding: 40px 0 36px;
     }
   
     .catalog-page .inner-hero__grid.container,
     .catalog-page .catalog-alert .container,
     .catalog-page .section--catalog-page .container,
     .catalog-page .catalog-order-block .container {
       width: min(100% - 32px, 1200px);
     }
   
     .catalog-page .inner-hero__grid {
       grid-template-columns: 1fr;
       gap: 28px;
     }
   
     .catalog-page .breadcrumbs {
       margin-bottom: 22px;
     }
   
     .catalog-page .inner-hero h1 {
       font-size: 32px;
       line-height: 1.04;
       letter-spacing: -.035em;
     }
   
     .catalog-page .inner-hero__lead {
       font-size: 16px;
       line-height: 1.55;
     }
   
     .catalog-page .inner-hero__actions {
       display: grid;
       grid-template-columns: 1fr;
       gap: 12px;
       width: 100%;
     }
   
     .catalog-page .inner-hero__actions .btn {
       width: 100%;
       justify-content: center;
     }
   
     .catalog-page .catalog-summary {
       max-width: none;
       padding: 24px;
     }
   
     .catalog-page .catalog-summary strong {
       font-size: 34px;
       line-height: 1.05;
     }
   
     .catalog-page .catalog-order-block__inner {
       grid-template-columns: 1fr;
       padding: 24px;
     }
   
     .catalog-page .catalog-order-block__actions {
       display: grid;
       grid-template-columns: 1fr;
       width: 100%;
     }
   
     .catalog-page .catalog-order-block__actions .btn {
       width: 100%;
     }
   }
   
   /* 360px и меньше */
   @media (max-width: 380px) {
     .catalog-page .inner-hero__grid.container,
     .catalog-page .catalog-alert .container,
     .catalog-page .section--catalog-page .container,
     .catalog-page .catalog-order-block .container {
       width: min(100% - 28px, 1200px);
     }
   
     .catalog-page .inner-hero h1 {
       font-size: 30px;
     }
   
     .catalog-page .catalog-summary {
       padding: 22px;
     }
   
     .catalog-page .catalog-summary strong {
       font-size: 31px;
     }
   
     .catalog-page .catalog-order-block h2 {
       font-size: 28px;
     }
   }
   /* ==========================================
   Unified mobile typography for inner pages
   Вставить в самый конец CSS
========================================== */

/* Общие внутренние hero-заголовки */
.inner-hero h1,
.product-detail-hero__content h1,
.contacts-hero__content h1 {
  max-width: 100%;
  overflow-wrap: break-word;
}

/* Общие нижние CTA-блоки */
.catalog-order-block h2,
.contacts-bottom-cta h2 {
  max-width: 100%;
  overflow-wrap: break-word;
}

/* Планшеты */
@media (max-width: 860px) {
  .inner-hero h1,
  .product-detail-hero__content h1,
  .contacts-hero__content h1 {
    font-size: 38px;
    line-height: 1.02;
    letter-spacing: -.04em;
  }

  .catalog-order-block h2,
  .contacts-bottom-cta h2 {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -.03em;
  }
}

/* Мобилка */
@media (max-width: 640px) {
  .inner-hero h1,
  .product-detail-hero__content h1,
  .contacts-hero__content h1 {
    font-size: 32px;
    line-height: 1.04;
    letter-spacing: -.035em;
  }

  .inner-hero__lead,
  .product-detail-hero__lead,
  .contacts-hero__lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .catalog-order-block h2,
  .contacts-bottom-cta h2 {
    font-size: 30px;
    line-height: 1.1;
  }

  .catalog-order-block p,
  .contacts-bottom-cta p {
    font-size: 16px;
    line-height: 1.55;
  }
}

/* 360px и меньше */
@media (max-width: 380px) {
  .inner-hero h1,
  .product-detail-hero__content h1,
  .contacts-hero__content h1 {
    font-size: 30px;
  }

  .catalog-order-block h2,
  .contacts-bottom-cta h2 {
    font-size: 28px;
  }
}

/* ==========================================
   Main hero mobile fix
   Вставить в самый конец CSS
========================================== */

.hero,
.hero__viewport,
.hero__slide {
  max-width: 100%;
  overflow: hidden;
}

.hero__content {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.hero h1,
.hero h2 {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}

/* Мобилка */
@media (max-width: 640px) {
  .hero {
    min-height: 570px;
  }

  .hero .container.hero__content {
    width: min(100% - 32px, var(--container));
    margin-left: auto;
    margin-right: auto;
  }

  .hero__content {
    padding: 78px 0 96px;
  }

  .hero h1,
  .hero h2 {
    font-size: 32px;
    line-height: 1.04;
    letter-spacing: -.035em;
  }

  .hero__lead {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.55;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* 360px и меньше */
@media (max-width: 380px) {
  .hero .container.hero__content {
    width: min(100% - 32px, var(--container));
  }

  .hero h1,
  .hero h2 {
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -.03em;
  }

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

/* Совсем узкие экраны */
@media (max-width: 340px) {
  .hero h1,
  .hero h2 {
    font-size: 28px;
  }
}

/* Партнеры "елочкой": 5 сверху, 4 снизу со смещением */
@media (min-width: 901px) {
  .clients-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

  .clients-row > :nth-child(6) {
    grid-column-start: 2;
  }
}

/* Success popup */

.success-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
          opacity .28s ease,
          visibility 0s linear .28s;
}

.success-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition:
          opacity .28s ease,
          visibility 0s linear 0s;
}

.success-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 20, .62);
  backdrop-filter: blur(6px);
}

.success-popup__dialog {
  position: relative;
  width: min(100%, 440px);
  padding: 34px 30px 30px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
  text-align: center;

  opacity: 0;
  transform: translateY(18px) scale(.96);

  transition:
          opacity .28s ease,
          transform .28s ease;
}

.success-popup.is-open .success-popup__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.success-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--color-dark);
  background: #eef2f6;
  font-size: 26px;
  line-height: 1;
}

.success-popup__close:hover {
  color: #fff;
  background: var(--color-primary);
}

.success-popup__icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  font-size: 42px;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(62, 120, 160, .28);
}

.success-popup h3 {
  margin: 0;
  color: var(--color-dark);
  font-size: 28px;
  line-height: 1.15;
}

.success-popup p {
  margin: 14px 0 24px;
  color: var(--color-muted);
  font-size: 16px;
}

.success-popup .btn {
  min-width: 160px;
}

@media (max-width: 480px) {
  .success-popup {
    padding: 16px;
  }

  .success-popup__dialog {
    padding: 32px 22px 24px;
    border-radius: 22px;
  }

  .success-popup h3 {
    font-size: 24px;
  }

  .success-popup .btn {
    width: 100%;
  }
}

/* Ошибки формы */

.order-form input.is-field-error,
.order-form textarea.is-field-error,
.order-form select.is-field-error {
  border-color: #c0392b;
  background: #fff6f5;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, .12);
}

.order-form label.has-error {
  color: #c0392b;
}

.order-form .checkbox.has-error span {
  color: #c0392b !important;
}

.order-form .checkbox.has-error input {
  outline: 2px solid rgba(192, 57, 43, .45);
  outline-offset: 2px;
}

/* Таблица характеристик — компактно на ПК */
.product-spec-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.product-spec-table {
  width: 100%;
  min-width: 100%;
  table-layout: fixed;
}

.product-spec-table--wide {
  min-width: 100%;
}

.product-spec-table th,
.product-spec-table td {
  padding: 10px 12px;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  vertical-align: top;
}

/* Шапка может быть в 2-3 строки */
.product-spec-table th {
  line-height: 1.25;
}

/* Числа и короткие значения не раздувают колонки */
.product-spec-table td {
  line-height: 1.35;
}

@media (max-width: 700px) {
  .product-spec-table {
    width: auto;
    table-layout: auto;
  }

  .product-spec-table--wide {
    min-width: 900px;
  }

  .product-spec-table th,
  .product-spec-table td {
    white-space: nowrap;
  }
}

/* Нормальная сетка таблицы */
.product-spec-table th,
.product-spec-table td {
  border-bottom: 1px solid var(--color-line);
  border-right: 1px solid var(--color-line);
}

/* Убираем последнюю вертикальную линию справа */
.product-spec-table th:last-child,
.product-spec-table td:last-child {
  border-right: 0;
}

/* Последняя строка без нижней линии */
.product-spec-table tbody tr:last-child td {
  border-bottom: 0;
}

/* Строка-разделитель из --- */
.product-spec-table__empty-row td {
  height: 28px;
  padding: 0;
  border-right: 0;
  border-bottom: 0;
  background: #fff;
}

/* Чтобы после пустой строки не было лишней линии сверху/снизу */
.product-spec-table__empty-row + tr td {
  border-top: 0;
}

.product-spec-table__empty-row:hover {
  background: #fff;
}

.product-spec-table th,
.product-spec-table td {
  text-align: center;
  vertical-align: middle;
}

/* ==========================================
   Floating sticky header for product tables
========================================== */

.product-spec-table-sticky-head {
  position: fixed;
  z-index: 45;
  left: 0;
  top: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);

  border: 1px solid var(--color-line);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: #fff;
  box-shadow: 0 14px 28px rgba(21, 33, 47, .14);

  transition:
          opacity .18s ease,
          transform .18s ease,
          visibility 0s linear .18s;
}

.product-spec-table-sticky-head.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);

  transition:
          opacity .18s ease,
          transform .18s ease,
          visibility 0s linear 0s;
}

.product-spec-table-sticky-head__inner {
  width: max-content;
  will-change: transform;
}

.product-spec-table-sticky-head table {
  margin: 0;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}

.product-spec-table-sticky-head th {
  padding: 10px 12px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: normal;
  overflow-wrap: break-word;
}

.product-spec-table-sticky-head th:last-child {
  border-right: 0;
}

@media (max-width: 700px) {
  .product-spec-table-sticky-head th {
    white-space: nowrap;
  }
}

.product-spec-table__empty-row td {
  height: 30px;
  padding: 0;
  border-right: 0;
  border-bottom: 0;
  background: #f7fafc;
}

.product-spec-table-sticky-head table {
  table-layout: fixed !important;
  border-collapse: collapse;
}

.product-spec-table-sticky-head th {
  box-sizing: border-box;
}

/* ==========================================
   Contacts page extra styles
   Fallback state for Yandex map
========================================== */

.contacts-map {
  min-height: 420px;
}

.contacts-map__fallback {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: inherit;
}

.contacts-map__fallback-inner {
  max-width: 420px;
}

.contacts-map__fallback-title {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.contacts-map__fallback-text {
  margin: 0 0 18px;
}

.contacts-form input.is-field-error,
.contacts-form textarea.is-field-error,
.contacts-form select.is-field-error {
  border-color: #c0392b;
  background: #fff6f5;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, .12);
}

.contacts-form label.has-error span {
  color: #c0392b;
}

.contacts-form__agree.has-error span {
  color: #c0392b !important;
}

.contacts-form__agree.has-error input {
  outline: 2px solid rgba(192, 57, 43, .45);
  outline-offset: 2px;
}

.modal input.is-field-error,
.modal textarea.is-field-error,
.modal select.is-field-error {
  border-color: #c0392b;
  background: #fff6f5;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, .12);
}

.modal label.has-error {
  color: #c0392b;
}

.modal .checkbox.has-error span {
  color: #c0392b !important;
}

.modal .checkbox.has-error input {
  outline: 2px solid rgba(192, 57, 43, .45);
  outline-offset: 2px;
}

/* ==========================================
   404 page
========================================== */

.error-page {
  position: relative;
  padding: 86px 0 104px;
  background:
    radial-gradient(circle at 82% 12%, rgba(159, 197, 223, .34), transparent 34%),
    linear-gradient(145deg, #f7fafc 0%, #e9f1f6 100%);
  overflow: hidden;
}

.error-page::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(62, 120, 160, .09);
}

.error-page__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 54px;
  align-items: center;
}

.error-page__content {
  min-width: 0;
}

.error-page h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.error-page__lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: clamp(17px, 2vw, 21px);
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.error-page__card {
  padding: 34px;
  border: 1px solid rgba(62, 120, 160, .18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.error-page__card span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: clamp(76px, 9vw, 118px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.08em;
}

.error-page__card strong {
  display: block;
  color: var(--color-dark);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.error-page__card p {
  margin: 16px 0 24px;
  color: var(--color-muted);
}

@media (max-width: 1024px) {
  .error-page__inner {
    grid-template-columns: 1fr;
  }

  .error-page__card {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .error-page {
    padding: 54px 0 72px;
  }

  .error-page h1 {
    font-size: 34px;
    line-height: 1.04;
    letter-spacing: -.035em;
  }

  .error-page__lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .error-page__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .error-page__actions .btn {
    width: 100%;
  }

  .error-page__card {
    padding: 24px;
  }

  .error-page__card span {
    font-size: 82px;
  }

  .error-page__card strong {
    font-size: 24px;
  }
}
.product-spec-table th, .product-spec-table td {
text-align: left;
}
/* Mobile table: не сжимаем всю таблицу, только переносим длинные заголовки */
@media (max-width: 700px) {
  .product-spec-table-wrap {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .product-spec-table--wide {
    min-width: 900px;
  }

  .product-spec-table th {
    max-width: 150px;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: normal;
    line-height: 1.25;
  }

  .product-spec-table td {
    white-space: nowrap;
  }

  .product-spec-table th,
  .product-spec-table td {
    padding: 12px 14px;
  }
}

/* ==========================================
   Privacy policy page + cookie popup
   Вставить в конец основного CSS-файла сайта.
========================================== */

.privacy-page {
  background: #f7fafc;
}

.privacy-hero {
  position: relative;
  padding: 64px 0 58px;
  background:
    radial-gradient(circle at 82% 12%, rgba(159, 197, 223, .34), transparent 34%),
    linear-gradient(145deg, #f7fafc 0%, #e9f1f6 100%);
  overflow: hidden;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(62, 120, 160, .09);
}

.privacy-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 54px;
  align-items: center;
}

.privacy-hero__content {
  min-width: 0;
}

.privacy-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.privacy-hero__lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: clamp(17px, 2vw, 21px);
}

.privacy-summary {
  padding: 30px;
  border: 1px solid rgba(62, 120, 160, .18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.privacy-summary__label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #edf4f8;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.privacy-summary strong {
  display: block;
  color: var(--color-dark);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.privacy-summary p {
  margin: 14px 0 0;
  color: var(--color-muted);
}

.privacy-section {
  padding: 70px 0 92px;
  background: #f7fafc;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.privacy-toc {
  position: sticky;
  top: 118px;
  padding: 22px;
  border: 1px solid rgba(62, 120, 160, .14);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(21, 33, 47, .05);
}

.privacy-toc strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.privacy-toc a {
  display: block;
  padding: 9px 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--color-line);
}

.privacy-toc a:last-child {
  border-bottom: 0;
}

.privacy-toc a:hover {
  color: var(--color-primary);
}

.privacy-content {
  min-width: 0;
}

.privacy-card {
  margin-bottom: 22px;
  padding: 34px;
  border: 1px solid rgba(62, 120, 160, .14);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(21, 33, 47, .05);
}

.privacy-card h2 {
  margin: 0 0 18px;
  color: var(--color-dark);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.privacy-card h3 {
  margin: 26px 0 12px;
  color: var(--color-dark);
  font-size: 21px;
  line-height: 1.2;
}

.privacy-card p {
  margin: 0 0 14px;
  color: var(--color-muted);
}

.privacy-card p:last-child {
  margin-bottom: 0;
}

.privacy-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  position: relative;
  padding-left: 28px;
  color: var(--color-muted);
}

.privacy-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 900;
}

.privacy-table-wrap {
  width: 100%;
  margin: 18px 0 4px;
  overflow-x: auto;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: #fff;
}

.privacy-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
}

.privacy-table th,
.privacy-table td {
  padding: 15px 16px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  text-align: left;
  vertical-align: top;
}

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

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

.privacy-table th {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.privacy-table td {
  color: var(--color-muted);
}

.privacy-table td:first-child {
  color: var(--color-dark);
  font-weight: 800;
}

.privacy-note {
  margin: 22px 0 0;
  padding: 20px 22px;
  border-left: 4px solid var(--color-primary);
  border-radius: 18px;
  background: #edf6fb;
  color: #335a75;
  font-weight: 700;
}

.privacy-card--requisites .privacy-table {
  min-width: 620px;
}

.cookie-notice {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 250;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity .28s ease,
    transform .28s ease,
    visibility 0s linear .28s;
}

.cookie-notice.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity .28s ease,
    transform .28s ease,
    visibility 0s linear 0s;
}

.cookie-notice__inner {
  position: relative;
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 58px 22px 24px;
  border: 1px solid rgba(62, 120, 160, .20);
  border-radius: 26px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 22px 60px rgba(21, 33, 47, .18);
  backdrop-filter: blur(14px);
}

.cookie-notice__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  font-weight: 900;
  font-size: 22px;
  font-family: Georgia, serif;
  box-shadow: 0 12px 24px rgba(62, 120, 160, .24);
}

.cookie-notice__content {
  min-width: 0;
}

.cookie-notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-dark);
  font-size: 18px;
  line-height: 1.2;
}

.cookie-notice p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-notice__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.cookie-notice__link {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.cookie-notice__link:hover {
  color: var(--color-primary-dark);
}

.cookie-notice__accept {
  min-height: 42px;
  padding: 10px 18px;
}

.cookie-notice__close {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--color-dark);
  background: #eef2f6;
  font-size: 24px;
  line-height: 1;
}

.cookie-notice__close:hover {
  color: #fff;
  background: var(--color-primary);
}

@media (max-width: 860px) {
  .privacy-hero__grid,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-toc {
    position: static;
  }

  .cookie-notice__inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .cookie-notice__actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .privacy-hero {
    padding: 44px 0 46px;
  }

  .privacy-hero h1 {
    font-size: 32px;
    line-height: 1.04;
    letter-spacing: -.035em;
  }

  .privacy-hero__lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .privacy-section {
    padding: 52px 0 68px;
  }

  .privacy-card,
  .privacy-summary,
  .privacy-toc {
    padding: 24px;
  }

  .privacy-card h2 {
    font-size: 25px;
  }

  .cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-notice__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 18px 18px;
    border-radius: 22px;
  }

  .cookie-notice__icon {
    display: none;
  }

  .cookie-notice__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cookie-notice__link {
    text-align: center;
  }

  .cookie-notice__accept {
    width: 100%;
  }

  .cookie-notice__close {
    top: 10px;
    right: 10px;
  }
}

/* ==========================================
   Mobile product table: compact + scroll hint
========================================== */

.product-spec-table-wrap {
  position: relative;
}

/* Правая подсказка, что таблица продолжается */
.product-spec-table-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  z-index: 3;
  background: linear-gradient(
          to right,
          rgba(255, 255, 255, 0),
          rgba(255, 255, 255, .96)
  );
  transition: opacity .18s ease;
}

.product-spec-table-wrap.has-more-right::after {
  opacity: 1;
}

@media (max-width: 700px) {
  .product-spec-table-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .product-spec-table {
    width: max-content;
    min-width: 100%;
    table-layout: auto;
  }

  .product-spec-table--wide {
    min-width: max-content;
  }

  .product-spec-table th,
  .product-spec-table td {
    width: auto;
    min-width: 82px;
    max-width: 132px;
    padding: 9px 10px;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: normal;
    line-height: 1.25;
    font-size: 12px;
  }

  .product-spec-table th {
    font-size: 11px;
    line-height: 1.2;
  }

  .product-spec-table td:first-child,
  .product-spec-table th:first-child {
    min-width: 96px;
    max-width: 140px;
  }
}

@media (max-width: 380px) {
  .product-spec-table th,
  .product-spec-table td {
    min-width: 74px;
    max-width: 118px;
    padding: 8px 8px;
    font-size: 11px;
  }

  .product-spec-table th {
    font-size: 10px;
  }
}
.product-card h3 a {
  text-transform: uppercase;
}
/* ==========================================
   ABOUT COMPANY / MANUFACTURER PAGE
========================================== */

.about-page {
  --about-ink: #132431;
  --about-blue: #3e78a0;
  --about-blue-deep: #163a55;
  --about-ice: #e7f1f7;
  --about-highlight: #8fc4df;
  overflow: hidden;
  background: #f5f8fa;
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page p,
.about-page figure,
.about-page blockquote {
  margin-top: 0;
}

.about-page h1,
.about-page h2,
.about-page h3 {
  line-height: 1.04;
}

.about-page h2 {
  margin-bottom: 0;
  color: var(--about-ink);
  font-size: clamp(36px, 5vw, 68px);
  letter-spacing: -.045em;
}

.about-kicker,
.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: var(--about-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.about-kicker::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

.about-kicker--light {
  color: #a8d1e8;
}

.about-btn {
  min-height: 54px;
  padding-inline: 26px;
}

.about-btn--accent {
  background: linear-gradient(135deg, #4f91b9, #285f84);
  box-shadow: 0 15px 30px rgba(39, 95, 132, .28);
}

.about-btn--accent:hover {
  box-shadow: 0 20px 38px rgba(39, 95, 132, .36);
}

.about-section-head {
  max-width: 820px;
  margin-bottom: 54px;
}

.about-section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .7fr);
  gap: clamp(40px, 7vw, 100px);
  max-width: none;
  align-items: end;
}

.about-section-head__text {
  margin-bottom: 7px;
  color: #607482;
  font-size: 18px;
  line-height: 1.75;
}

/* Hero */
.about-hero {
  position: relative;
  min-height: min(820px, calc(100vh - 80px));
  overflow: hidden;
  color: #fff;
  background: #102a3d;
  isolation: isolate;
}

.about-hero__media,
.about-hero__overlay,
.about-hero__lines {
  position: absolute;
  inset: 0;
}

.about-hero__media {
  z-index: -3;
  inset: -2px;
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  transform: none;
}

.about-hero__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 30, 44, .96) 0%, rgba(10, 30, 44, .88) 37%, rgba(10, 30, 44, .44) 70%, rgba(10, 30, 44, .52) 100%),
    linear-gradient(0deg, rgba(8, 25, 37, .78), transparent 50%);
}

.about-hero__lines {
  z-index: -1;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.about-hero__inner {
  display: flex;
  min-height: inherit;
  padding-top: 30px;
  padding-bottom: 42px;
  flex-direction: column;
}

.about-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.about-breadcrumbs a {
  transition: color .2s ease;
}

.about-breadcrumbs a:hover {
  color: #fff;
}

.about-hero__content {
  width: min(820px, 78%);
  margin-top: auto;
  padding: 90px 0 84px;
}

.about-eyebrow {
  color: #b8d8ea;
}

.about-eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--about-highlight);
  box-shadow: 0 0 0 6px rgba(143, 196, 223, .18);
}

.about-hero h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6.2vw, 94px);
  letter-spacing: -.055em;
  text-wrap: balance;
}

.about-hero__lead {
  max-width: 710px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

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

.about-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.2);
}

.about-hero__fact {
  display: grid;
  min-height: 112px;
  padding: 25px 30px;
  border-right: 1px solid rgba(255,255,255,.2);
  grid-template-columns: auto 1fr;
  gap: 17px;
  align-items: center;
}

.about-hero__fact:first-child {
  padding-left: 0;
}

.about-hero__fact:last-child {
  border-right: 0;
}

.about-hero__fact strong {
  font-size: clamp(33px, 4vw, 54px);
  letter-spacing: -.055em;
}

.about-hero__fact span {
  max-width: 130px;
  color: rgba(255,255,255,.64);
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .055em;
}

/* Production media */
.about-manufacturer {
  padding: 68px 0 104px;
  background: #f5f8fa;
}

.about-media-grid {
  display: grid;
  grid-template-columns: 1.55fr .8fr .8fr;
  grid-template-rows: 330px 350px;
  gap: 18px;
}

.about-media-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #dbe6ed;
  box-shadow: 0 18px 50px rgba(24, 47, 64, .11);
}

.about-media-card--large {
  grid-row: 1 / span 2;
}

.about-media-card--wide {
  grid-column: 2 / span 2;
}

.about-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.about-media-card:hover img {
  transform: scale(1.045);
}

.about-media-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  min-height: 62px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 15px;
  color: #fff;
  background: rgba(10, 28, 40, .72);
  backdrop-filter: blur(12px);
  gap: 15px;
  align-items: center;
}

.about-media-card figcaption span {
  color: #9dc8df;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.about-media-card figcaption strong {
  font-size: 15px;
}

.about-media-card--statement {
  display: flex;
  padding: 26px 24px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 14%, rgba(255,255,255,.16), transparent 32%),
    linear-gradient(145deg, #39779f, #163c58);
  flex-direction: column;
  justify-content: space-between;
}

.about-media-card--statement::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 36px rgba(255,255,255,.04), 0 0 0 72px rgba(255,255,255,.025);
}

.about-media-card__mark {
  color: rgba(255,255,255,.35);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
}

.about-media-card blockquote {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0 0 18px;
  font-size: clamp(20px, 1.55vw, 23px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.about-media-card blockquote span {
  display: block;
}

.about-media-card--statement p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Process */
.about-process {
  position: relative;
  padding: 112px 0;
  color: #fff;
  background: #142b3b;
}

.about-process::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .36;
  background:
    radial-gradient(circle at 5% 10%, rgba(78, 143, 184, .48), transparent 30%),
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.055) 50%, transparent 50.1%);
}

.about-process__grid {
  position: relative;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(60px, 9vw, 130px);
}

.about-process__intro {
  position: sticky;
  top: 155px;
  align-self: start;
}

.about-process__intro h2 {
  margin-bottom: 24px;
  color: #fff;
}

.about-process__intro > p:not(.about-kicker) {
  max-width: 490px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.66);
  font-size: 17px;
  line-height: 1.72;
}

.about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-weight: 800;
}

.about-text-link span {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  place-items: center;
  transition: transform .2s ease, background .2s ease;
}

.about-text-link:hover span {
  transform: rotate(45deg);
  background: rgba(255,255,255,.1);
}

.about-process__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.about-process__list li {
  display: grid;
  min-height: 170px;
  padding: 35px 0;
  border-top: 1px solid rgba(255,255,255,.15);
  grid-template-columns: 100px 1fr;
  gap: 20px;
}

.about-process__list li:last-child {
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.about-process__number {
  color: #8bb9d3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.about-process__list h3 {
  margin-bottom: 13px;
  color: #fff;
  font-size: clamp(25px, 2.5vw, 36px);
  letter-spacing: -.035em;
}

.about-process__list p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255,255,255,.58);
  font-size: 16px;
  line-height: 1.65;
}

/* Video */
.about-video-section {
  padding: 116px 0 120px;
  background: #fff;
}

.about-section-head--video {
  margin-bottom: 45px;
}

.about-video {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background: #163247;
  box-shadow: 0 32px 70px rgba(20, 45, 62, .18);
}

.about-video > img,
.about-video > video {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.about-video > video {
  display: block;
  background: #0e2637;
}

.about-video__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,22,32,.78), rgba(7,22,32,.08) 70%);
}

.about-video__placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(440px, calc(100% - 40px));
  transform: translate(-50%, -50%);
  text-align: center;
  justify-items: center;
}

.about-video__video-control {
  position: absolute;
  inset: 0;
  display: grid;
  background: linear-gradient(0deg, rgba(7,22,32,.45), rgba(7,22,32,.05) 70%);
  place-items: center;
  transition: opacity .35s ease, visibility .35s ease;
}

.about-video.is-playing .about-video__video-control {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.about-video__play {
  position: relative;
  z-index: 1;
  display: grid;
  width: 104px;
  height: 104px;
  margin-bottom: 24px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  place-items: center;
  box-shadow: 0 0 0 14px rgba(255,255,255,.07);
  animation: about-play-breathe 2.4s ease-in-out infinite;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.about-video__play::before,
.about-video__play::after {
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: inherit;
  content: "";
  opacity: 0;
  animation: about-play-pulse 2.6s ease-out infinite;
  pointer-events: none;
}

.about-video__play::after {
  animation-delay: 1.3s;
}

.about-video__play--button {
  margin-bottom: 0;
}

.about-video__play--button:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,.28);
  box-shadow: 0 0 0 18px rgba(255,255,255,.09);
}

.about-video__play svg {
  position: relative;
  z-index: 1;
  width: 35px;
  fill: currentColor;
  transform: translateX(3px);
}

@keyframes about-play-pulse {
  0% {
    transform: scale(.78);
    opacity: .7;
  }
  75%,
  100% {
    transform: scale(1.42);
    opacity: 0;
  }
}

@keyframes about-play-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.045);
  }
}

.about-video__placeholder strong {
  margin-bottom: 8px;
  font-size: clamp(27px, 3vw, 42px);
  letter-spacing: -.035em;
}

.about-video__placeholder small {
  color: rgba(255,255,255,.65);
  font-size: 14px;
}

.about-video__label {
  position: absolute;
  right: 26px;
  bottom: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: rgba(10,30,43,.48);
  backdrop-filter: blur(10px);
  font-size: 12px;
}

/* Capabilities */
.about-capabilities {
  padding: 115px 0 122px;
  background: #eef4f7;
}

.about-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-capability {
  position: relative;
  min-height: 360px;
  padding: 28px 26px;
  overflow: hidden;
  border: 1px solid #d9e4eb;
  border-radius: 21px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.about-capability:hover {
  transform: translateY(-7px);
  border-color: #c3d7e3;
  box-shadow: 0 22px 45px rgba(25, 54, 74, .12);
}

.about-capability__icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 68px;
  border-radius: 18px;
  background: #eaf3f8;
  place-items: center;
}

.about-capability__icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--about-blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-capability__index {
  position: absolute;
  top: 32px;
  right: 26px;
  color: #9aabb6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.about-capability h3 {
  margin-bottom: 15px;
  color: var(--about-ink);
  font-size: 25px;
  letter-spacing: -.03em;
}

.about-capability p {
  margin-bottom: 0;
  color: #687b88;
  font-size: 15px;
  line-height: 1.65;
}

.about-capability--accent {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(150deg, #3d7fa8, #1b4663);
}

.about-capability--accent .about-capability__icon {
  background: rgba(255,255,255,.12);
}

.about-capability--accent .about-capability__icon svg {
  stroke: #fff;
}

.about-capability--accent .about-capability__index,
.about-capability--accent p {
  color: rgba(255,255,255,.66);
}

.about-capability--accent h3 {
  color: #fff;
}

/* Proof */
.about-proof {
  padding: 125px 0;
  background: #fff;
}

.about-proof__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(55px, 10vw, 145px);
}

.about-proof__title h2 {
  max-width: 560px;
}

.about-proof__lead {
  margin-bottom: 48px;
  color: #415867;
  font-size: clamp(21px, 2.2vw, 30px);
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: -.02em;
}

.about-proof__items {
  display: grid;
  gap: 0;
}

.about-proof__items > div {
  display: grid;
  padding: 27px 0;
  border-top: 1px solid #dce5ea;
  grid-template-columns: 60px minmax(190px, .8fr) 1fr;
  gap: 20px;
  align-items: start;
}

.about-proof__items > div:last-child {
  border-bottom: 1px solid #dce5ea;
}

.about-proof__items span {
  color: var(--about-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.about-proof__items strong {
  color: var(--about-ink);
  font-size: 17px;
}

.about-proof__items p {
  margin-bottom: 0;
  color: #6d7f8a;
  font-size: 14px;
  line-height: 1.62;
}

/* Products */
.about-products {
  padding: 110px 0;
  color: #fff;
  background:
    radial-gradient(circle at 7% 12%, rgba(88, 158, 201, .4), transparent 28%),
    #122b3d;
}

.about-products__inner {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.about-products__copy h2 {
  margin-bottom: 22px;
  color: #fff;
}

.about-products__copy > p:not(.about-kicker) {
  max-width: 440px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.62);
  font-size: 17px;
}

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

.about-products__tags a {
  display: flex;
  min-height: 90px;
  padding: 23px 25px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  font-size: 16px;
  font-weight: 750;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.about-products__tags a:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.1);
}

.about-products__tags span {
  color: #a9d1e7;
  font-size: 22px;
}

/* Final CTA */
.about-final-cta {
  padding: 100px 0;
  background: #eef4f7;
}

.about-final-cta__card {
  position: relative;
  display: grid;
  min-height: 390px;
  padding: clamp(45px, 6vw, 78px);
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.17), transparent 30%),
    linear-gradient(135deg, #3f82ab 0%, #1e5273 60%, #163b55 100%);
  box-shadow: 0 26px 65px rgba(35, 79, 109, .21);
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
}

.about-final-cta__grid {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.about-final-cta__copy,
.about-final-cta__actions {
  position: relative;
}

.about-final-cta__copy h2 {
  max-width: 690px;
  margin-bottom: 22px;
  color: #fff;
}

.about-final-cta__copy > p:not(.about-kicker) {
  max-width: 630px;
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.65;
}

.about-final-cta__actions {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.about-btn--white {
  color: #1d5577;
  background: #fff;
  box-shadow: 0 16px 34px rgba(11, 40, 59, .2);
}

.about-final-cta__phone {
  display: grid;
  gap: 4px;
}

.about-final-cta__phone span {
  color: rgba(255,255,255,.58);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.about-final-cta__phone strong {
  font-size: 22px;
}

/* About page adaptive */
@media (max-width: 1100px) {
  .about-hero__content {
    width: 90%;
  }

  .about-media-grid {
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: 320px 285px 330px;
  }

  .about-media-card--large {
    grid-row: 1 / span 2;
  }

  .about-media-card--statement {
    grid-column: 2;
  }

  .about-media-card--wide {
    grid-column: 1 / span 2;
  }

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

  .about-capability {
    min-height: 310px;
  }

  .about-capability__icon {
    margin-bottom: 48px;
  }

  .about-proof__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-proof__title h2 {
    max-width: 800px;
  }

  .about-final-cta__card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .about-hero {
    min-height: 760px;
  }

  .about-hero__overlay {
    background:
      linear-gradient(90deg, rgba(10,30,44,.94), rgba(10,30,44,.67)),
      linear-gradient(0deg, rgba(8,25,37,.9), transparent 60%);
  }

  .about-hero__content {
    width: 100%;
    padding: 80px 0 55px;
  }

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

  .about-hero__fact {
    min-height: 100px;
    padding: 20px 18px;
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .about-hero__fact:first-child {
    padding-left: 0;
  }

  .about-section-head--split,
  .about-process__grid,
  .about-products__inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-process__intro {
    position: static;
  }

  .about-process__list li {
    min-height: 150px;
  }

  .about-video,
  .about-video > img,
  .about-video > video {
    min-height: 460px;
  }

  .about-products__copy {
    max-width: 650px;
  }
}

@media (max-width: 680px) {
  .about-page h2 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .about-process,
  .about-video-section,
  .about-capabilities,
  .about-proof,
  .about-products {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .about-manufacturer {
    padding-top: 54px;
    padding-bottom: 72px;
  }

  .about-final-cta {
    padding: 65px 0;
  }

  .about-section-head {
    margin-bottom: 35px;
  }

  .about-hero {
    min-height: auto;
  }

  .about-hero__inner {
    min-height: 720px;
    padding-top: 20px;
    padding-bottom: 0;
  }

  .about-hero__media img {
    object-position: 60% 50%;
  }

  .about-hero__content {
    margin-top: auto;
    padding: 70px 0 45px;
  }

  .about-hero h1 {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: clamp(38px, 10.5vw, 48px);
    line-height: 1;
    letter-spacing: -.05em;
  }

  .about-hero__lead {
    font-size: 16px;
  }

  .about-hero__actions {
    display: grid;
  }

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

  .about-hero__facts {
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .about-hero__fact {
    min-width: 0;
    padding: 18px 10px;
    text-align: center;
  }

  .about-hero__fact:first-child {
    padding-left: 10px;
  }

  .about-hero__fact strong {
    font-size: 31px;
  }

  .about-hero__fact span {
    max-width: none;
    font-size: 9px;
  }

  .about-media-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .about-media-card,
  .about-media-card--large,
  .about-media-card--wide {
    min-height: 300px;
    grid-column: auto;
    grid-row: auto;
  }

  .about-media-card--statement {
    min-height: 245px;
    padding: 26px;
    grid-column: auto;
    grid-row: auto;
  }

  .about-media-card--statement blockquote {
    max-width: 270px;
    margin-bottom: 12px;
    font-size: 24px;
  }

  .about-media-card--large {
    min-height: 430px;
  }

  .about-media-card--wide {
    min-height: 250px;
  }


  .about-process__list li {
    padding: 28px 0;
    grid-template-columns: 50px 1fr;
    gap: 12px;
  }

  .about-video,
  .about-video > img,
  .about-video > video {
    min-height: 390px;
  }

  .about-video__play {
    width: 82px;
    height: 82px;
  }

  .about-video__label {
    right: 14px;
    bottom: 14px;
    left: 14px;
    text-align: center;
  }

  .about-capabilities__grid,
  .about-products__tags {
    grid-template-columns: 1fr;
  }

  .about-capability {
    min-height: 285px;
  }

  .about-capability__icon {
    margin-bottom: 38px;
  }

  .about-proof__items > div {
    grid-template-columns: 40px 1fr;
  }

  .about-proof__items p {
    grid-column: 2;
  }

  .about-products__tags a {
    min-height: 75px;
  }

  .about-final-cta__card {
    min-height: 0;
    padding: 34px 24px 32px;
    border-radius: 22px;
    gap: 28px;
  }

  .about-final-cta__grid {
    display: none;
  }

  .about-final-cta__copy h2 {
    margin-bottom: 17px;
    font-size: clamp(31px, 9vw, 38px);
    line-height: 1.07;
    letter-spacing: -.04em;
  }

  .about-final-cta__copy > p:not(.about-kicker) {
    font-size: 16px;
    line-height: 1.55;
  }

  .about-final-cta__actions {
    gap: 18px;
    justify-items: stretch;
  }

  .about-final-cta__actions .btn {
    width: 100%;
  }

  .about-final-cta__phone strong {
    font-size: 20px;
  }
}

@media (max-width: 420px) {
  .about-hero__inner {
    min-height: 690px;
  }

  .about-hero__content {
    padding-top: 58px;
    padding-bottom: 38px;
  }

  .about-eyebrow {
    font-size: 10px;
    line-height: 1.45;
  }

  .about-hero h1 {
    font-size: 36px;
    line-height: 1.02;
  }

  .about-hero__lead {
    font-size: 15px;
    line-height: 1.55;
  }

  .about-media-card--statement {
    min-height: 225px;
  }

  .about-media-card--statement blockquote {
    max-width: 245px;
    font-size: 22px;
  }

  .about-final-cta {
    padding: 50px 0;
  }

  .about-final-cta__card {
    padding: 30px 20px 28px;
    border-radius: 20px;
  }

  .about-final-cta__copy h2 {
    font-size: 30px;
  }

  .about-final-cta__phone strong {
    font-size: 19px;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-media-card img,
  .about-capability,
  .about-text-link span,
  .about-products__tags a,
  .about-video__video-control,
  .about-video__play {
    transition: none;
  }

  .about-video__play,
  .about-video__play::before,
  .about-video__play::after {
    animation: none;
  }
}

/* End */
/* /design/index2.css?1785095616114480 */
