:root {
  --ink: #00294F;
  --ink-2: #00294F;
  --orange: #F2B500;
  --orange-dark: #003B70;
  --paper: #F3F6F8;
  --white: #fff;
  --steel: #87939c;
  --line: #CFD9E1;
  --text: #53616a;
  --radius: 6px;
  --shadow: 0 18px 60px rgba(23,32,39,.14)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial,"Helvetica Neue",sans-serif;
  line-height: 1.5
}

body.locked {
  overflow: hidden
}

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

button,a {
  color: inherit
}

button {
  cursor: pointer
}

a {
  text-decoration: none
}

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

.container {
  width: min(1180px,calc(100% - 40px));
  margin: auto
}

.service-bar {
  color: #d9e0e4;
  background: #00294F;
  font-size: 12px
}

.service-bar__inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,247,248,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px)
}

.header__main {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none
}

.brand__sign {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 4px;
  font-size: 23px;
  font-weight: 900;
  box-shadow: inset 0 -4px var(--orange)
}

.brand b,.brand small {
  display: block
}

.brand b {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: .04em
}

.brand small {
  margin-top: 4px;
  color: var(--steel);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.nav {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 700
}

.nav a {
  position: relative;
  padding: 8px 0
}

.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--orange);
  transition: .2s
}

.nav a:hover:after {
  right: 0
}

.header__contacts {
  display: grid;
  text-align: right
}

.phone {
  font-weight: 900;
  white-space: nowrap
}

.text-btn {
  padding: 0;
  border: 0;
  color: var(--orange-dark);
  background: none;
  font-size: 12px
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  color: #fff;
  background: var(--orange);
  font-weight: 800;
  transition: .2s
}

.btn:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,59,112,.24)
}

.btn--large {
  min-height: 54px;
  padding-inline: 25px
}

.btn--outline {
  border-color: rgba(255,255,255,.6);
  background: rgba(23,32,39,.28);
  backdrop-filter: blur(8px)
}

.btn--outline:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink)
}

.btn--wide {
  width: 100%
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink)
}

.hero {
  min-height: 720px;
  height: calc(100vh - 110px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink)
}

.hero__image,.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.hero__image {
  object-fit: cover
}

.hero__overlay {
  background: linear-gradient(90deg,rgba(12,18,22,.95) 0%,rgba(12,18,22,.78) 45%,rgba(12,18,22,.2) 83%),linear-gradient(0deg,rgba(12,18,22,.5),transparent 50%)
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 70px 0 105px
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 19px;
  color: #ff8a4d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em
}

.kicker span {
  width: 34px;
  height: 2px;
  background: var(--orange)
}

.kicker--dark {
  color: var(--orange-dark)
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px,5.8vw,78px);
  line-height: .98;
  letter-spacing: -.045em
}

.hero h1 em {
  color: #d4dce0;
  font-style: normal;
  font-weight: 400
}

.hero__lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #d4dce0;
  font-size: 19px
}

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

.hero__points {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  color: #d4dce0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.hero__points span {
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.28)
}

.hero__side {
  position: absolute;
  right: 25px;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center
}

.hero__side i {
  width: 70px;
  height: 1px;
  background: rgba(255,255,255,.5)
}

.quick-strip {
  position: relative;
  z-index: 3;
  margin-top: -55px
}

.quick-strip__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden
}

.quick-strip article {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border-right: 1px solid var(--line)
}

.quick-strip article:last-child {
  border: 0
}

.quick-strip article>b {
  color: var(--orange);
  font-size: 13px
}

.quick-strip strong,.quick-strip small {
  display: block
}

.quick-strip strong {
  font-size: 16px
}

.quick-strip small {
  margin-top: 5px;
  color: var(--text);
  font-size: 12px
}

.section {
  padding: 100px 0
}

.section-head {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 42px
}

.section h2,.contacts h2 {
  margin: 0;
  font-size: clamp(34px,4vw,54px);
  line-height: 1.03;
  letter-spacing: -.035em
}

.section-head>p {
  margin: 0;
  color: var(--text);
  font-size: 16px
}

.tabs {
  display: flex;
  width: max-content;
  margin-bottom: 24px;
  padding: 4px;
  background: #e6eaec;
  border-radius: 5px
}

.tab {
  min-width: 150px;
  padding: 11px 20px;
  border: 0;
  border-radius: 4px;
  color: var(--text);
  background: transparent;
  font-weight: 800
}

.tab.active {
  color: #fff;
  background: var(--ink)
}

.catalog-panel {
  display: none;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px
}

.catalog-panel.active {
  display: grid
}

.product {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink)
}

.product--large {
  grid-row: span 2;
  min-height: 540px
}

.product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.product:after {
  content: "";
  position: absolute;
  inset: 25% 0 0;
  background: linear-gradient(transparent,rgba(9,14,17,.92))
}

.product:hover img {
  transform: scale(1.025)
}

.product>div {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  color: #fff
}

.product span {
  color: #ff9a66;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em
}

.product h3 {
  max-width: 530px;
  margin: 8px 0 5px;
  font-size: clamp(21px,2.6vw,34px);
  line-height: 1.08
}

.product p {
  max-width: 520px;
  margin: 10px 0 18px;
  color: #d1d9dd
}

.product button {
  padding: 0;
  border: 0;
  color: #fff;
  background: none;
  font-weight: 800
}

.calculator-section {
  color: #fff;
  background: var(--ink)
}

.calculator-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center
}

.calculator-copy h2 {
  margin: 0;
  font-size: clamp(40px,5vw,62px);
  line-height: 1.02
}

.calculator-copy>p:not(.kicker) {
  max-width: 520px;
  color: #aeb9bf
}

.calculator-copy ol {
  margin: 36px 0 0;
  padding: 0;
  list-style: none
}

.calculator-copy li {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.13);
  color: #d5dcdf
}

.calculator-copy li b {
  color: var(--orange);
  font-size: 12px
}

.calculator {
  display: grid;
  gap: 16px;
  padding: 32px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}

.form-progress {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 800
}

.form-progress b {
  color: var(--orange)
}

label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 800
}

input,select,textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  outline: none
}

input:focus,select:focus,textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,181,0,.2)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.check {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 400
}

.check input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--orange)
}

.form-note {
  color: var(--text);
  text-align: center
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line)
}

.benefits article {
  min-height: 245px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff
}

.benefits b {
  color: var(--orange);
  font-size: 12px
}

.benefits h3 {
  margin: 48px 0 12px;
  font-size: 21px
}

.benefits p {
  margin: 0;
  color: var(--text);
  font-size: 14px
}

.services-section {
  color: #fff;
  background: #00294F
}

.services-section>.container {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px
}

.services-title {
  position: sticky;
  top: 150px;
  align-self: start
}

.services-title h2 {
  margin-bottom: 30px
}

.services-list article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,.16)
}

.services-list b {
  color: var(--orange)
}

.services-list h3 {
  margin: 0 0 5px;
  font-size: 23px
}

.services-list p {
  margin: 0;
  color: #aeb9bf
}

.process {
  background: #fff
}

.process>div>h2 {
  margin-bottom: 40px
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  border-top: 2px solid var(--ink)
}

.process-line article {
  position: relative;
  padding: 26px 24px 0 0
}

.process-line article:before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange)
}

.process-line b {
  color: var(--orange);
  font-size: 11px
}

.process-line h3 {
  margin: 26px 0 7px
}

.process-line p {
  margin: 0;
  color: var(--text);
  font-size: 13px
}

.solutions {
  color: #fff;
  background: #00294F
}

.section-head--light>p {
  color: #aeb9bf
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  grid-auto-rows: 270px;
  gap: 16px
}

.gallery figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius)
}

.gallery__main {
  grid-column: span 2;
  grid-row: span 2
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s
}

.gallery figure:after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent,rgba(10,15,18,.85))
}

.gallery figure:hover img {
  transform: scale(1.02)
}

.gallery figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 20px;
  font-weight: 800
}

.gallery figcaption b {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 1.3
}

.gallery figcaption span {
  display: block;
  color: #c8d1d6;
  font-size: 12px;
  font-weight: 500
}

.solutions__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid rgba(207,217,225,.28)
}

.solutions__footer p {
  max-width: 760px;
  margin: 0;
  color: #d8e0e5;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55
}

.solutions__footer .btn {
  flex: 0 0 auto
}

.solutions__notice {
  margin: 14px 0 0;
  color: #8fa1ad;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px
}

.faq-layout>div:first-child>p:not(.kicker) {
  color: var(--text)
}

.faq-layout .btn {
  margin-top: 16px
}

.accordion details {
  border-top: 1px solid var(--line)
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line)
}

.accordion summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  list-style: none
}

.accordion summary::-webkit-details-marker {
  display: none
}

.accordion summary span {
  color: var(--orange);
  font-size: 22px
}

.accordion details[open] summary span {
  transform: rotate(45deg)
}

.accordion details p {
  max-width: 700px;
  margin: 0;
  padding: 0 30px 24px 0;
  color: var(--text)
}

.contacts {
  padding: 90px 0;
  color: #fff;
  background: var(--ink-2)
}

.contacts__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px
}

.contacts p {
  color: #aeb9bf
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 30px
}

.contact-links a {
  width: max-content;
  font-size: 20px;
  font-weight: 900
}

.contact-links span {
  color: #c6d0d5
}

.contact-links small {
  color: #ff9a66
}

.lead-form,.modal-form {
  display: grid;
  gap: 14px;
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius)
}

.footer {
  padding: 50px 0 24px;
  color: #bec8cd;
  background: #00294F
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 70px
}

.brand--footer b {
  color: #fff
}

.footer nav,.footer__legal {
  display: grid;
  gap: 9px;
  font-size: 13px
}

.footer__legal {
  text-align: right
}

.footer__bottom {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 11px
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px
}

.modal.open {
  display: grid
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,8,10,.78)
}

.modal__panel {
  position: relative;
  width: min(510px,100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 30px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}

.modal__panel h2 {
  margin: 0;
  font-size: 34px
}

.modal__panel>p:not(.kicker) {
  color: var(--text)
}

.modal__close {
  position: absolute;
  right: 13px;
  top: 13px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-size: 24px
}

.modal-form {
  padding: 10px 0 0
}

.mobile-actions {
  display: none
}

@media(max-width:1080px) {
  .nav,.header__contacts,.header__cta {
    display: none
  }

  .menu-toggle {
    display: block
  }

  .header.open .nav,.header.open .header__contacts,.header.open .header__cta {
    display: grid;
    grid-column: 1/-1;
    width: 100%
  }

  .header.open .nav {
    margin: 0;
    gap: 2px
  }

  .header.open .header__contacts {
    text-align: left
  }

  .header__main {
    flex-wrap: wrap;
    padding: 15px 0
  }

  .calculator-layout,.faq-layout,.contacts__grid {
    gap: 45px
  }

  .benefits {
    grid-template-columns: repeat(2,1fr)
  }

}

@media(max-width:760px) {
  .container {
    width: min(100% - 24px,1180px)
  }

  .desktop-only {
    display: none
  }

  .service-bar__inner {
    justify-content: space-between
  }

  .header__main {
    min-height: 68px
  }

  .brand__sign {
    width: 38px;
    height: 38px
  }

  .hero {
    min-height: 670px;
    height: auto
  }

  .hero__content {
    padding: 90px 0 115px
  }

  .hero h1 {
    font-size: 42px
  }

  .hero__lead {
    font-size: 16px
  }

  .hero__actions {
    display: grid
  }

  .hero__points {
    display: grid;
    gap: 8px
  }

  .hero__points span {
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,.22)
  }

  .hero__side {
    display: none
  }

  .quick-strip {
    margin-top: -36px
  }

  .quick-strip__grid {
    grid-template-columns: 1fr
  }

  .quick-strip article {
    min-height: 88px;
    padding: 18px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .section {
    padding: 70px 0
  }

  .section-head,.calculator-layout,.services-section>.container,.faq-layout,.contacts__grid,.footer__grid,.footer__bottom {
    grid-template-columns: 1fr;
    gap: 26px
  }

  .catalog-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }

  .product,.product--large {
    grid-row: auto;
    min-height: 390px
  }

  .calculator {
    padding: 22px
  }

  .benefits {
    grid-template-columns: 1fr
  }

  .benefits article {
    min-height: 190px
  }

  .benefits h3 {
    margin-top: 28px
  }

  .services-title {
    position: static
  }

  .process-line {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 2px solid var(--ink);
    margin-left: 5px
  }

  .process-line article {
    padding: 0 0 28px 25px
  }

  .process-line article:before {
    top: 5px;
    left: -7px
  }

  .process-line h3 {
    margin: 5px 0
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-rows: auto
  }

  .gallery__main {
    grid-column: auto;
    grid-row: auto
  }

  .gallery figure {
    min-height: 330px
  }

  .solutions__footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px
  }

  .footer__legal {
    text-align: left
  }

  .footer__bottom {
    gap: 5px
  }

  .mobile-actions {
    position: fixed;
    z-index: 45;
    left: 8px;
    right: 8px;
    bottom: 8px;
    display: grid;
    grid-template-columns: .75fr .9fr 1.4fr;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 8px 30px rgba(0,0,0,.25)
  }

  .mobile-actions a,.mobile-actions button {
    min-height: 49px;
    display: grid;
    place-items: center;
    border: 0;
    border-right: 1px solid #34434c;
    color: #fff;
    background: var(--ink);
    font-size: 11px;
    font-weight: 800
  }

  .mobile-actions button {
    border: 0;
    background: var(--orange)
  }

  body {
    padding-bottom: 0
  }

}

/* Above-the-fold layout matched to design.png */
.hero > .container,
.proof-bar > .container,
.reference-catalog > .container {
  width: min(1436px, calc(100% - 100px));
}

.hero {
  height: 440px;
  min-height: 440px;
  border-bottom: 1px solid var(--line);
}

.hero__content {
  padding: 62px 0 58px;
}

.hero h1 {
  max-width: 650px;
  margin-top: 18px;
}

.hero__lead {
  max-width: 540px;
  margin-top: 22px;
}

.hero__actions {
  align-items: stretch;
  gap: 32px;
  margin-top: 30px;
}

.hero__actions .btn {
  min-width: 222px;
  justify-content: space-between;
  padding-inline: 32px 24px;
}

.hero__actions .btn span {
  font-size: 22px;
  font-weight: 400;
}

.hero__actions .btn.btn--large {
  justify-content: center;
  gap: 12px;
  padding-inline: 27px;
}

.hero__actions .btn.btn--large span {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  line-height: 1;
  transform: translateY(-2px);
}

.hero__catalog-link {
  display: flex;
  align-items: center;
  gap: 17px;
  min-width: 190px;
  padding-left: 26px;
  border-left: 1px solid #CFD9E1;
  color: #252a2e;
  font-size: 12px;
  line-height: 1.45;
}

.hero__catalog-link b {
  font-size: 25px;
  font-weight: 400;
}

.proof-bar {
  background: transparent;
  border-bottom: 0;
}

.proof-bar__grid {
  display: grid;
  grid-template-columns: 1.16fr 1.16fr 1.16fr .72fr .72fr .9fr;
  align-items: center;
  min-height: 88px;
}

.proof-bar article {
  min-width: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 26px;
  border-right: 1px solid #CFD9E1;
}

.proof-bar article:first-child {
  padding-left: 15px;
}

.proof-bar article:last-child {
  border-right: 0;
}

.proof-item {
  gap: 17px;
}

.proof-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
}

.proof-item strong,
.proof-item small,
.proof-stat b,
.proof-stat small {
  display: block;
}

.proof-item strong {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.proof-item small {
  margin-top: 5px;
  color: #686e74;
  font-size: 11px;
  line-height: 1.35;
}

.proof-stat {
  display: block !important;
  border-right: 0 !important;
  text-align: center;
}

.proof-stat b {
  color: var(--orange);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.proof-stat small {
  margin-top: 8px;
  color: #6b7177;
  font-size: 10px;
  line-height: 1.3;
}

.reference-catalog {
  padding: 20px 0 44px;
  background: transparent;
}

.catalog-zone {
  padding-top: 2px;
  background: #F3F6F8;
}

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

.reference-card {
  overflow: hidden;
  border: 1px solid #CFD9E1;
  background: #fff;
}

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

.reference-card > div {
  position: relative;
  min-height: 108px;
  padding: 18px 44px 17px 20px;
}

.reference-card h2 {
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.reference-card p {
  margin: 0;
  color: #686e74;
  font-size: 12px;
  line-height: 1.45;
}

.reference-card button {
  position: absolute;
  right: 20px;
  bottom: 23px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #272c30;
  font-size: 22px;
}

.reference-card__link {
  position: absolute;
  right: 20px;
  bottom: 23px;
  color: #272c30;
  font-size: 22px;
  font-weight: 500;
}

.mega-menu__heading {
  position: relative;
  width: fit-content;
  cursor: pointer;
  transition: color .2s ease;
}

.mega-menu__heading::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.mega-menu__heading:hover,
.mega-menu__heading:focus-within {
  color: var(--orange);
}

.mega-menu__heading:hover::after,
.mega-menu__heading:focus-within::after {
  transform: scaleX(1);
}

.header .nav .mega-menu__heading-link {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  padding: 0;
  font-size: 0;
  cursor: pointer;
}

.service-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 16px;
  padding: 14px 0;
  border: 1px solid #CFD9E1;
  background: #F3F6F8;
}

.service-ribbon article {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border-right: 1px solid #CFD9E1;
}

.service-ribbon article:last-child {
  border-right: 0;
}

.service-ribbon span {
  color: #4e555b;
  font-size: 27px;
  font-weight: 400;
}

.service-ribbon img {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
}

.service-ribbon p {
  margin: 0;
  color: #4e555b;
  font-size: 11px;
  line-height: 1.4;
}

@media (max-width: 1120px) {
  .hero > .container,
  .proof-bar > .container,
  .reference-catalog > .container {
    width: min(100% - 40px, 1436px);
  }

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

  .proof-bar article {
    padding: 16px 22px;
    border-bottom: 1px solid #CFD9E1;
  }

  .reference-catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .hero > .container,
  .proof-bar > .container,
  .reference-catalog > .container {
    width: min(100% - 24px, 1436px);
  }

  .hero {
    height: auto;
    min-height: 590px;
  }

  .hero__content {
    padding: 68px 0;
  }

  .hero__actions {
    gap: 14px;
  }

  .hero__catalog-link {
    min-height: 54px;
    border: 1px solid #CFD9E1;
  }

  .proof-bar__grid,
  .reference-catalog__grid,
  .service-ribbon {
    grid-template-columns: 1fr;
  }

  .proof-bar article {
    min-height: 74px;
    border-right: 0;
  }

  .proof-stat {
    text-align: left;
  }

  .reference-card img {
    height: 230px;
  }

  .service-ribbon article {
    justify-content: flex-start;
    padding: 13px 24px;
    border-right: 0;
    border-bottom: 1px solid #CFD9E1;
  }
}

/* Supporting grey text uses a consistent medium weight */
.brand small,
.header__descriptor,
.header__contacts span,
.hero__lead,
.section-head > p,
.section-head p:not(.kicker),
.quick-strip small,
.proof-item small,
.proof-stat small,
.reference-card p,
.service-ribbon p,
.product p,
.benefits p,
.services-list p,
.process-line p,
.calculator-copy > p:not(.kicker),
.form-note,
.gallery figcaption span,
.faq-layout > div:first-child > p:not(.kicker),
.accordion details p,
.contacts p,
.contact-links span,
.contact-links small,
.footer,
.footer__legal,
.footer__bottom {
  font-weight: 500;
}

.hero__image {
  object-position: center bottom;
}

/* Header arrows and products mega-menu */
.header .nav {
  position: static;
}

.header .nav > a,
.header .nav__item > a {
  gap: 5px;
}

.nav__item {
  display: flex;
  align-items: stretch;
}

.nav__arrow {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  object-fit: contain;
  transition: transform .2s ease;
}

.nav__item--products:hover > a .nav__arrow,
.nav__item--products:focus-within > a .nav__arrow {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 60;
  visibility: hidden;
  opacity: 0;
  padding: 26px 0 30px;
  border-top: 1px solid #CFD9E1;
  border-bottom: 1px solid #CFD9E1;
  background: rgba(255,255,255,.99);
  box-shadow: 0 20px 45px rgba(17,20,25,.12);
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.nav__item--products:hover .mega-menu,
.nav__item--products:focus-within .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mega-menu__inner {
  width: min(1436px, calc(100% - 100px));
  display: grid;
  grid-template-columns: .72fr repeat(4, 1fr);
  gap: 0;
  margin: 0 auto;
}

.header .mega-menu a {
  display: block;
  padding: 6px 0;
  color: #5f656b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  white-space: normal;
}

.header .mega-menu a::after {
  display: none;
}

.header .mega-menu a:hover {
  color: var(--orange);
}

.mega-menu__inner section {
  padding: 0 28px;
  border-left: 1px solid #CFD9E1;
}

.mega-menu__inner h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.header .mega-menu__back {
  padding: 0 28px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.mega-menu__back span {
  display: block;
  margin-top: 16px;
  color: var(--orange);
  font-size: 24px;
}

@media (max-width: 1120px) {
  .mega-menu {
    display: none;
  }

  .nav__item {
    display: block;
  }

  .header.open .nav__item > a {
    padding: 10px 0;
  }
}

/* Keep the lower, product-focused part of the hero photo in frame */
.hero__image {
  object-position: center bottom;
}

/* Products directory page */
.header .nav .is-current {
  color: var(--orange);
}

.products-hero {
  padding: 42px 0 62px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.products-hero > .container,
.product-directory > .container,
.products-assurance > .container,
.products-request > .container {
  width: min(1436px, calc(100% - 100px));
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 52px;
  color: #6c7278;
  font-size: 13px;
  font-weight: 500;
}

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

.breadcrumbs__arrow {
  color: #a0a5aa;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.breadcrumbs__current {
  color: var(--ink);
  font-weight: 600;
}

.products-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: end;
}

.products-hero h1 {
  margin: 0;
  font-size: clamp(50px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}

.products-hero__grid > p {
  max-width: 600px;
  margin: 0 0 5px;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.product-directory {
  padding: 52px 0 72px;
  background: #F3F6F8;
}

.product-directory__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.directory-card {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: 440px;
  overflow: hidden;
  border: 1px solid #CFD9E1;
  background: #fff;
}

.directory-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.directory-card:first-child > img {
  object-position: 32% center;
}

.directory-card__body {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.directory-card__number {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.directory-card h2 {
  margin: 18px 0 10px;
  font-size: 28px;
  line-height: 1.12;
}

.directory-card p {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.directory-card ul {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.directory-card li {
  border-top: 1px solid #F3F6F8;
}

.directory-card li:last-child {
  border-bottom: 1px solid #F3F6F8;
}

.directory-card li a {
  display: block;
  padding: 7px 18px 7px 0;
  color: #464c51;
  font-size: 12px;
  font-weight: 500;
}

.directory-card li a:hover {
  color: var(--orange);
}

.directory-card button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding: 13px 0 0;
  border: 0;
  border-top: 1px solid #CFD9E1;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.directory-card button b {
  color: var(--orange);
  font-size: 18px;
}

.directory-card__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: 13px 0 0;
  border-top: 1px solid #CFD9E1;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.directory-card__action:hover {
  color: #F2B500;
}

.directory-card__action b {
  color: #F2B500;
  font-size: 18px;
}

.products-assurance {
  padding: 65px 0;
  background: #fff;
}

.products-assurance__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.products-assurance article {
  min-height: 190px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.products-assurance b {
  color: var(--orange);
  font-size: 30px;
  font-weight: 600;
}

.products-assurance h3 {
  margin: 32px 0 7px;
  font-size: 16px;
}

.products-assurance p {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
}

.products-request {
  padding: 80px 0;
  color: #fff;
  background: #00294F;
}

.products-request__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.products-request h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.05;
}

.products-request__grid > div > p:not(.kicker) {
  max-width: 570px;
  color: #b8c0c5;
  font-weight: 500;
}

@media (max-width: 1120px) {
  .products-hero > .container,
  .product-directory > .container,
  .products-assurance > .container,
  .products-request > .container {
    width: min(100% - 40px, 1436px);
  }

  .directory-card {
    grid-template-columns: 1fr;
  }

  .directory-card > img {
    height: 280px;
  }
}

@media (max-width: 760px) {
  .products-hero > .container,
  .product-directory > .container,
  .products-assurance > .container,
  .products-request > .container {
    width: min(100% - 24px, 1436px);
  }

  .products-hero {
    padding: 30px 0 45px;
  }

  .breadcrumbs {
    margin-bottom: 34px;
  }

  .products-hero__grid,
  .product-directory__grid,
  .products-assurance__grid,
  .products-request__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .products-hero h1 {
    font-size: 48px;
  }

  .directory-card > img {
    height: 230px;
  }

  .directory-card__body {
    padding: 24px;
  }

  .products-request__grid {
    gap: 36px;
  }
}

/* Shared page grid: all major section headings align with the hero */
.section > .container,
.contacts > .container,
.footer > .container {
  width: min(1436px, calc(100% - 100px));
}

@media (max-width: 1120px) {
  .section > .container,
  .contacts > .container,
  .footer > .container {
    width: min(100% - 40px, 1436px);
  }
}

@media (max-width: 760px) {
  .section > .container,
  .contacts > .container,
  .footer > .container {
    width: min(100% - 24px, 1436px);
  }
}

@media(max-width:480px) {
  .brand small {
    display: none
  }

  .hero h1 {
    font-size: 35px
  }

  .section h2,.contacts h2 {
    font-size: 34px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .tab {
    min-width: 0
  }

  .product,.product--large {
    min-height: 350px
  }

  .product>div {
    padding: 22px
  }

  .gallery figure {
    min-height: 290px
  }

  .modal__panel {
    padding: 22px
  }

}

/* Redesign based on design.png: precise, light, architectural */

:root {
  --ink: #00294F;
  --ink-2: #00294F;
  --orange: #F2B500;
  --orange-dark: #003B70;
  --paper: #fff;
  --white: #fff;
  --steel: #777d84;
  --line: #e3e5e7;
  --text: #5f656c;
  --radius: 2px;
  --shadow: 0 12px 35px rgba(17,20,25,.08)
}

body {
  background: #fff;
  font-family: Arial,"Helvetica Neue",sans-serif
}

.service-bar {
  display: none
}

.header {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid #CFD9E1
}

.header__main {
  min-height: 92px;
  gap: 28px
}

.brand__sign {
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--orange);
  border-radius: 0;
  box-shadow: none
}

.brand b {
  font-size: 20px;
  letter-spacing: .02em
}

.brand small {
  color: #656b71;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px
}

.nav {
  gap: 28px;
  font-weight: 500
}

.nav a:after {
  background: var(--orange)
}

.text-btn {
  color: var(--orange)
}

.header__cta {
  min-width: 168px
}

.btn {
  border-radius: 2px;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: none
}

.btn:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark)
}

.hero {
  height: 570px;
  min-height: 570px;
  color: var(--ink);
  background: #fff
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0 50% 0 0;
  z-index: 1;
  opacity: .4;
  background: linear-gradient(115deg,transparent 0 52%,#F3F6F8 52.2% 52.5%,transparent 52.7%),linear-gradient(25deg,transparent 0 60%,#F3F6F8 60.2% 60.5%,transparent 60.7%)
}

.hero__image {
  left: 43%;
  width: 57%;
  object-position: center;
  clip-path: polygon(15% 0,100% 0,100% 100%,0 100%)
}

.hero__overlay {
  background: linear-gradient(90deg,#fff 0%,#fff 42%,rgba(255,255,255,.25) 53%,transparent 68%)
}

.hero__content {
  padding: 70px 0 85px
}

.kicker {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: .02em;
  text-transform: none
}

.kicker span {
  background: var(--orange)
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(46px,4.5vw,68px);
  line-height: 1.08;
  letter-spacing: -.035em
}

.hero h1 em {
  color: var(--ink);
  font-weight: 700
}

.hero__lead {
  max-width: 570px;
  margin-top: 24px;
  color: #5f656c;
  font-size: 16px
}

.hero__actions {
  margin-top: 30px
}

.btn--outline {
  color: var(--ink);
  border-color: #CFD9E1;
  background: #fff;
  backdrop-filter: none
}

.btn--outline:hover {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink)
}

.hero__points {
  gap: 0;
  margin-top: 44px;
  color: #33383d
}

.hero__points span {
  min-width: 185px;
  padding: 12px 22px 0 0;
  border-top: 1px solid #CFD9E1;
  font-size: 10px
}

.hero__side {
  display: none
}

.quick-strip {
  margin: 0;
  border-bottom: 1px solid #CFD9E1
}

.quick-strip__grid {
  width: min(100%,1180px);
  box-shadow: none;
  border-radius: 0
}

.quick-strip article {
  min-height: 88px;
  padding: 19px 28px
}

.quick-strip article>b {
  font-size: 22px;
  font-weight: 400
}

.quick-strip strong {
  font-size: 14px
}

.quick-strip small {
  font-size: 11px
}

.section {
  padding: 82px 0
}

.section-head {
  margin-bottom: 32px
}

.section h2,.contacts h2 {
  font-size: clamp(34px,3.5vw,48px);
  font-weight: 700
}

.tabs {
  background: #F3F6F8;
  border: 1px solid #CFD9E1
}

.tab.active {
  background: var(--orange)
}

.catalog-panel {
  grid-template-columns: 1.15fr .85fr;
  gap: 20px
}

.product {
  border: 1px solid #CFD9E1;
  background: #fff
}

.product:after {
  inset: 55% 0 0;
  background: linear-gradient(transparent,rgba(10,12,14,.75))
}

.product>div {
  padding: 26px
}

.product span {
  color: #fff
}

.product button {
  color: #fff
}

.benefits {
  border-color: #e3e5e7
}

.benefits article {
  background: #fff
}

.benefits b {
  color: var(--orange);
  font-size: 24px;
  font-weight: 400
}

.benefits h3 {
  margin-top: 38px
}

.services-section {
  color: var(--ink);
  background: #F3F6F8;
  border-top: 1px solid #CFD9E1;
  border-bottom: 1px solid #CFD9E1
}

.services-section .kicker {
  color: var(--orange)
}

.services-list article {
  border-color: #CFD9E1
}

.services-list p {
  color: var(--text)
}

.process-line {
  border-color: var(--ink)
}

.process-line article:before {
  background: var(--orange)
}

.solutions {
  background: #00294F
}

.faq-section {
  background: #fff
}

.accordion summary span {
  color: var(--orange)
}

.contacts {
  background: #00294F
}

.footer {
  background: #00294F
}

.modal__panel {
  border-radius: 2px
}

.mobile-actions button {
  background: var(--orange)
}

@media(max-width:1080px) {
  .header__main {
    min-height: 74px
  }

  .hero {
    height: auto;
    min-height: 650px
  }

  .hero__image {
    left: 35%;
    width: 65%;
    opacity: .38;
    clip-path: none
  }

  .hero__overlay {
    background: linear-gradient(90deg,#fff 0%,rgba(255,255,255,.94) 45%,rgba(255,255,255,.68) 100%)
  }

  .hero:before {
    display: none
  }

}

@media(max-width:760px) {
  .header__main {
    padding: 10px 0
  }

  .hero {
    min-height: 620px
  }

  .hero__image {
    left: 0;
    width: 100%;
    opacity: .22
  }

  .hero__overlay {
    background: linear-gradient(90deg,rgba(255,255,255,.98),rgba(255,255,255,.78))
  }

  .hero__content {
    padding: 75px 0 80px
  }

  .hero h1 {
    font-size: 42px
  }

  .hero__lead {
    color: #41464b
  }

  .hero__points {
    margin-top: 34px
  }

  .quick-strip__grid {
    width: 100%
  }

  .services-section {
    color: var(--ink)
  }

}

@media(max-width:480px) {
  .hero h1 {
    font-size: 36px
  }

  .hero__points span {
    min-width: 0
  }

  .header .brand b {
    font-size: 17px
  }

}

/* Exact header composition from the approved reference */

.header>.header__main.container {
  width: min(1460px,calc(100% - 56px))
}

.header__main {
  min-height: 92px;
  gap: 0
}

.header__wordmark {
  padding-right: 22px
}

.header__wordmark b {
  color: var(--orange);
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.025em
}

.header__descriptor {
  flex: none;
  padding: 0 30px 0 22px;
  border-left: 1px solid #CFD9E1;
  color: #575d63;
  font-size: 12px;
  line-height: 1.35
}

.header .nav {
  gap: 0;
  margin-left: auto
}

.header .nav a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 35px 18px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap
}

.header .nav a i {
  color: #72777c;
  font-size: 13px;
  font-style: normal
}

.header .nav a:after {
  bottom: 25px
}

.header__contacts {
  min-width: 178px;
  margin-left: 17px;
  padding-left: 24px;
  border-left: 1px solid #CFD9E1;
  text-align: left
}

.header__contacts .phone {
  font-size: 16px;
  letter-spacing: .01em
}

.header__contacts span {
  display: block;
  margin-top: 3px;
  color: #7b8085;
  font-size: 10px
}

.header__cta {
  min-width: 170px;
  min-height: 48px;
  margin-left: 18px;
  padding-inline: 22px;
  font-size: 13px
}

.header .menu-toggle {
  margin-left: auto
}

@media(max-width:1320px) and (min-width:1081px) {
  .header>.header__main.container {
    width: min(100% - 30px,1460px)
  }

  .header__descriptor {
    padding-right: 15px;
    padding-left: 15px
  }

  .header .nav a {
    padding-inline: 10px
  }

  .header__contacts {
    min-width: 160px;
    margin-left: 9px;
    padding-left: 15px
  }

  .header__cta {
    min-width: 145px;
    margin-left: 10px;
    padding-inline: 14px
  }

  .header__wordmark {
    padding-right: 15px
  }

  .header__wordmark b {
    font-size: 23px
  }

}

@media(max-width:1080px) {
  .header>.header__main.container {
    width: min(100% - 28px,1460px)
  }

  .header__descriptor {
    margin-left: 18px
  }

  .header.open .header__descriptor {
    display: block
  }

  .header.open .nav a {
    padding: 10px 0
  }

  .header.open .nav a:after {
    bottom: 3px
  }

  .header.open .header__contacts {
    margin: 0;
    padding: 14px 0;
    border-left: 0;
    border-top: 1px solid var(--line)
  }

  .header.open .header__cta {
    margin: 0
  }

  .header__wordmark b {
    font-size: 23px
  }

}

@media(max-width:620px) {
  .header__descriptor {
    display: none
  }

  .header__wordmark {
    padding-right: 0
  }

  .header__wordmark b {
    font-size: 20px
  }

}

/* Approved typography specification */

body,button,input,select,textarea {
  font-family: "Manrope","Inter","Helvetica Neue",Arial,sans-serif
}

.hero h1 {
  font-size: clamp(58px,4.45vw,64px);
  font-weight: 800;
  line-height: 1.05
}

.hero h1 em {
  font-weight: 800
}

.hero__lead {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5
}

.header .nav a {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.2
}

.header__contacts .phone {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2
}

.btn {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1
}

.product h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25
}

.product p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45
}

.quick-strip strong,.benefits h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3
}

.quick-strip small,.benefits p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4
}

.quick-strip article>b,.benefits article>b {
  font-size: 26px;
  font-weight: 600;
  line-height: 1
}

.process-line h3,.services-list h3 {
  font-weight: 700
}

.process-line p,.services-list p {
  line-height: 1.45
}

@media(max-width:760px) {
  .hero h1 {
    font-size: clamp(38px,10vw,48px);
    line-height: 1.06
  }

  .hero__lead {
    font-size: 16px
  }

  .header .nav a {
    font-size: 14px
  }

  .product h3 {
    font-size: 18px
  }

}

/* Final reference geometry overrides */
.hero > .container,
.proof-bar > .container,
.reference-catalog > .container {
  width: min(1436px, calc(100% - 100px));
}

.hero {
  height: 440px;
  min-height: 440px;
}

.hero__content {
  padding: 62px 0 58px;
}

.hero h1 {
  max-width: 650px;
  margin-top: 18px;
}

.hero__lead {
  max-width: 540px;
  margin-top: 22px;
}

@media (max-width: 1120px) {
  .hero > .container,
  .proof-bar > .container,
  .reference-catalog > .container {
    width: min(100% - 40px, 1436px);
  }
}

@media (max-width: 760px) {
  .hero > .container,
  .proof-bar > .container,
  .reference-catalog > .container {
    width: min(100% - 24px, 1436px);
  }

  .hero {
    height: auto;
    min-height: 590px;
  }

  .hero__content {
    padding: 68px 0;
  }
}

/* Final supporting-text weight override */
.brand small,
.header__descriptor,
.header__contacts span,
.hero__lead,
.section-head > p,
.section-head p:not(.kicker),
.quick-strip small,
.proof-item small,
.proof-stat small,
.reference-card p,
.service-ribbon p,
.product p,
.benefits p,
.services-list p,
.process-line p,
.calculator-copy > p:not(.kicker),
.form-note,
.gallery figcaption span,
.faq-layout > div:first-child > p:not(.kicker),
.accordion details p,
.contacts p,
.contact-links span,
.contact-links small,
.footer,
.footer__legal,
.footer__bottom {
  font-weight: 500;
}

/* Final hero crop override */
.hero__image {
  object-position: center bottom;
}

/* Mega-menu matched to designmenu.png */
.header .nav > a,
.header .nav__item > a {
  gap: 4px;
}

.nav__arrow {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

.mega-menu {
  left: 34px;
  right: 34px;
  padding: 0;
  border: 1px solid #CFD9E1;
  border-radius: 2px;
  box-shadow: 0 14px 30px rgba(17,20,25,.13);
}

.mega-menu__inner {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 25px 0 36px;
}

.mega-menu__inner section {
  min-height: 295px;
  padding: 0 48px;
  border-left: 1px solid #CFD9E1;
}

.mega-menu__inner section:first-child {
  border-left: 0;
}

.mega-menu__inner h3 {
  margin-bottom: 14px;
  font-size: 16px;
}

.header .mega-menu__inner section > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  color: #30353a;
  font-size: 13px;
}

.header .mega-menu__inner section > a span {
  flex: none;
  color: var(--orange);
  font-size: 20px;
  font-weight: 400;
}

.mega-menu__business > img {
  width: 100%;
  height: 112px;
  margin-top: 4px;
  object-fit: cover;
}

.header .mega-menu__inner .mega-menu__business-link {
  padding-top: 11px;
  color: var(--ink);
  font-weight: 700;
}

.mega-menu__footer {
  min-height: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-top: 1px solid #CFD9E1;
  background: #F3F6F8;
}

.header .mega-menu__footer a,
.header .mega-menu__footer button {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 25px;
  border: 0;
  border-right: 1px solid #CFD9E1;
  color: #3e4449;
  background: transparent;
  font-size: 11px;
  font-weight: 500;
}

.header .mega-menu__footer button:last-child {
  border-right: 0;
}

.mega-menu__footer img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.mega-menu__footer b {
  font-size: 25px;
  font-weight: 400;
}

@media (max-width: 1120px) {
  .mega-menu {
    display: none;
  }

  .nav__arrow {
    display: none;
  }
}

.mega-menu__inner {
  padding-bottom: 25px;
}

.mega-menu__inner section {
  min-height: 205px;
}

/* Страница «Ворота» */
.gates-page .gate-directions,
.gates-page .gate-series,
.gates-page .industrial-gates {
  display: none;
}

.gate-picker {
  padding: 78px 0 48px;
  background: #fff;
}

.gate-picker__breadcrumbs {
  margin-bottom: 34px;
}

.gate-picker__heading {
  margin-bottom: 34px;
}

.gate-picker__heading h1 {
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: clamp(38px, 3.4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.gate-picker__heading > p:last-child {
  margin: 0;
  color: #697077;
  font-size: 15px;
  font-weight: 500;
}

.gate-picker__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.doors-page .gate-picker__tabs {
  grid-template-columns: repeat(3, 1fr);
}

.doors-page .gate-picker__tab {
  min-height: 320px;
}

.doors-page .gate-picker__tab > img {
  height: 230px;
}

.doors-page .gate-picker__visual img {
  object-position: center;
}

@media (max-width: 1120px) {
  .doors-page .gate-picker__tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .doors-page .gate-picker__tabs {
    display: flex;
  }
}

.gate-picker__tab {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  min-height: 270px;
  padding: 0;
  border: 1px solid #CFD9E1;
  color: var(--ink);
  background: #fff;
  text-align: left;
}

.gate-picker__tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.gate-picker__tab.is-active::after,
.gate-picker__tab:hover::after {
  transform: scaleX(1);
}

.gate-picker__tab > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 184px;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.gate-picker__tab:hover > img {
  transform: scale(1.025);
}

.gate-picker__tab > span {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 17px 16px 18px;
}

.gate-picker__tab b {
  font-size: 16px;
  font-weight: 700;
}

.gate-picker__tab small {
  color: #767c81;
  font-size: 10px;
  font-weight: 500;
}

.gate-picker__tab i {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 0 16px 26px 0;
  color: var(--orange);
  font-size: 21px;
  font-style: normal;
}

.gate-picker__content {
  margin: 28px calc((100vw - min(100vw, 1436px)) / -2) 0;
  padding: 30px max(20px, calc((100vw - 1436px) / 2));
  background: #F3F6F8;
}

.gate-picker__panel {
  display: none;
  grid-template-columns: 38% 62%;
  min-height: 430px;
  animation: gatePanelIn .3s ease both;
}

.gate-picker__panel.is-active {
  display: grid;
}

@keyframes gatePanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.gate-picker__visual {
  position: relative;
  min-height: 430px;
}

.gate-picker__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gate-picker__visual > span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 9px 12px;
  color: #fff;
  background: var(--orange);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.gate-picker__details {
  min-width: 0;
  padding: 8px 0 0 36px;
}

.gate-picker__details > h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.2;
}

.gate-picker__details > p {
  margin: 0 0 22px;
  color: #73797e;
  font-size: 12px;
  font-weight: 500;
}

.gate-picker__models {
  border: 1px solid #CFD9E1;
  background: #fff;
}

.gate-picker__models article {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr) 96px 96px;
  align-items: center;
  gap: 12px;
  min-height: 100px;
  padding: 15px 18px;
  border-top: 1px solid #CFD9E1;
}

.gate-picker__models article:first-child {
  border-top: 0;
}

.gate-picker__models h4 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 17px;
}

.gate-picker__models article > div > small {
  color: #7a8085;
  font-size: 9px;
  font-weight: 500;
}

.gate-picker__models dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
}

.gate-picker__models dt {
  margin-bottom: 5px;
  color: #989da1;
  font-size: 8px;
  font-weight: 500;
}

.gate-picker__models dd {
  margin: 0;
  color: #555b60;
  font-size: 10px;
  font-weight: 500;
}

.gate-picker__models article > a {
  padding: 11px 9px;
  border: 1px solid #9da2a6;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.gate-picker__models article > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
  border: 0;
  color: var(--orange);
  background: transparent;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.gate-picker__models article > button b {
  font-size: 17px;
  font-weight: 400;
}

.gate-picker__help {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 18px 35px;
  border: 1px solid #CFD9E1;
  background: #fff;
}

.gate-picker__help-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 22px;
  font-weight: 600;
}

.gate-picker__help-image {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
}

.gate-picker__help h3 {
  margin: 0 0 5px;
  font-size: 16px;
}

.gate-picker__help p {
  margin: 0;
  color: #747a7f;
  font-size: 10px;
  font-weight: 500;
}

@media (max-width: 1120px) {
  .gate-picker__tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .gate-picker__panel {
    grid-template-columns: 1fr;
  }

  .gate-picker__visual {
    min-height: 420px;
  }

  .gate-picker__details {
    padding: 35px 0 0;
  }
}

@media (max-width: 760px) {
  .gate-picker {
    padding-top: 60px;
  }

  .gate-picker__tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .gate-picker__tab {
    min-width: 250px;
    scroll-snap-align: start;
  }

  .gate-picker__content {
    margin-top: 20px;
    padding-top: 20px;
  }

  .gate-picker__visual {
    min-height: 290px;
  }

  .gate-picker__models article {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
  }

  .gate-picker__models dl {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .gate-picker__models article > a,
  .gate-picker__models article > button {
    grid-row: 3;
  }

  .gate-picker__help {
    grid-template-columns: auto 1fr;
    padding: 20px;
  }

  .gate-picker__help .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .gate-picker__models dl {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gate-picker__visual {
    min-height: 240px;
  }
}

.gate-hero {
  padding: 34px 0 72px;
  background: #F3F6F8;
}

.gate-hero .breadcrumbs {
  margin-bottom: 34px;
}

.gate-hero__grid {
  min-height: 570px;
  display: grid;
  grid-template-columns: 45% 55%;
  background: #fff;
}

.gate-hero__copy {
  align-self: center;
  padding: 65px 70px;
}

.gate-hero h1 {
  margin: 22px 0 26px;
  color: var(--ink);
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.gate-hero__copy > p:last-of-type {
  max-width: 540px;
  color: #697077;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.gate-hero__grid > img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: 42% center;
}

.gate-hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.gate-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.gate-link span {
  margin-left: 8px;
  color: var(--orange);
}

.gate-directions {
  padding: 80px 0 92px;
}

.gate-directions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 28px;
  background: #CFD9E1;
  border: 1px solid #CFD9E1;
}

.gate-directions__grid > a {
  min-height: 185px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 32px;
  padding: 42px;
  color: var(--ink);
  background: #fff;
  transition: background .2s ease;
}

.gate-directions__grid > a:hover {
  background: #F3F6F8;
}

.gate-directions__grid span {
  color: #9a9fa3;
  font-size: 12px;
  font-weight: 600;
}

.gate-directions__grid h2 {
  margin: 0 0 12px;
  font-size: 25px;
}

.gate-directions__grid p {
  max-width: 440px;
  margin: 0;
  color: #6e7479;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.gate-directions__grid b {
  color: var(--orange);
  font-size: 27px;
  font-weight: 400;
}

.gate-series {
  padding: 100px 0;
  background: #F3F6F8;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 45px;
}

.section-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(35px, 3.3vw, 50px);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.section-heading > p {
  margin: 0;
  color: #697077;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.gate-series__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gate-card {
  display: flex;
  flex-direction: column;
  background: #fff;
}

.gate-card__image {
  position: relative;
  overflow: hidden;
}

.gate-card__image img {
  width: 100%;
  height: 310px;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}

.gate-card:hover .gate-card__image img {
  transform: scale(1.025);
}

.gate-card__image > span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(25,29,33,.8);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.gate-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.gate-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
}

.gate-card p {
  min-height: 67px;
  margin: 0 0 22px;
  color: #70767b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
}

.gate-card ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #CFD9E1;
}

.gate-card li {
  padding: 12px 0;
  border-bottom: 1px solid #CFD9E1;
  color: #676d72;
  font-size: 12px;
  font-weight: 500;
}

.gate-card li b {
  margin-right: 5px;
  color: var(--ink);
  font-size: 13px;
}

.gate-card button,
.industrial-gates article button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding: 15px 0;
  border: 0;
  border-top: 1px solid #CFD9E1;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.gate-card button span,
.industrial-gates article button b {
  color: var(--orange);
  font-size: 19px;
  font-weight: 400;
}

.gate-note {
  margin: 25px 0 0;
  color: #7a8085;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.55;
}

.industrial-gates {
  padding: 105px 0;
  color: #fff;
  background: #00294F;
}

.industrial-gates .section-heading h2 {
  color: #fff;
}

.industrial-gates .section-heading > p {
  color: #aeb3b7;
}

.industrial-gates__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industrial-gates article {
  color: var(--ink);
  background: #fff;
}

.industrial-gates article > img {
  width: 100%;
  height: 285px;
  display: block;
  object-fit: cover;
}

.industrial-gates article > div {
  padding: 28px 30px;
}

.industrial-gates article div > span {
  color: #949a9e;
  font-size: 11px;
  font-weight: 600;
}

.industrial-gates h3 {
  margin: 12px 0;
  font-size: 24px;
}

.industrial-gates article p {
  min-height: 58px;
  color: #6e7479;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.gate-benefits {
  padding: 75px 0;
  background: #fff;
}

.gate-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gate-benefits article {
  padding: 5px 42px;
  border-left: 1px solid #CFD9E1;
}

.gate-benefits article:first-child {
  padding-left: 0;
  border-left: 0;
}

.gate-benefits article > b {
  color: var(--ink);
  font-size: 27px;
  font-weight: 600;
}

.gate-benefits h3 {
  margin: 11px 0 8px;
  font-size: 13px;
}

.gate-benefits p {
  margin: 0;
  color: #757b80;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
}

.directory-card__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 16px 0;
  border-top: 1px solid #CFD9E1;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.directory-card__button b {
  color: var(--orange);
  font-size: 19px;
  font-weight: 400;
}

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

  .gate-hero__grid > img {
    height: 460px;
    order: -1;
  }

  .gate-series__grid,
  .industrial-gates__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gate-benefits__grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 0;
  }

  .gate-benefits article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .gate-hero {
    padding-bottom: 45px;
  }

  .gate-hero__copy {
    padding: 36px 24px 42px;
  }

  .gate-hero h1 {
    font-size: 39px;
  }

  .gate-hero__grid > img {
    height: 300px;
  }

  .gate-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .gate-directions,
  .gate-series,
  .industrial-gates {
    padding: 70px 0;
  }

  .gate-directions__grid,
  .gate-series__grid,
  .industrial-gates__grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .gate-directions__grid > a {
    min-height: 155px;
    gap: 18px;
    padding: 28px 22px;
  }

  .section-heading {
    gap: 24px;
  }

  .gate-card__image img,
  .industrial-gates article > img {
    height: 270px;
  }

  .gate-benefits__grid {
    grid-template-columns: 1fr;
  }

  .gate-benefits article,
  .gate-benefits article:nth-child(3) {
    padding: 0 0 25px;
    border-left: 0;
    border-bottom: 1px solid #CFD9E1;
  }
}

/* Страницы «О компании» и «Контакты» */
.contact-design-top {
  display: grid;
  grid-template-columns: 62% 38%;
  min-height: 480px;
  border-bottom: 1px solid #CFD9E1;
  background: #fff;
}

.contact-design-left {
  border-right: 1px solid #CFD9E1;
}

.contact-design-intro {
  min-height: 190px;
  padding: 34px max(40px, calc((100vw - 1436px) / 2));
}

.contact-design-intro .about-label {
  margin-bottom: 14px;
}

.contact-design-intro h1 {
  margin: 0 0 10px;
  color: #111519;
  font-size: clamp(44px, 3.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.contact-design-intro > p:last-child {
  margin: 0;
  color: #686e73;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
}

.contact-design-map {
  position: relative;
  height: 290px;
  overflow: hidden;
  background-color: #F3F6F8;
  background-image: linear-gradient(25deg,transparent 48%,#CFD9E1 49%,#CFD9E1 50%,transparent 51%),linear-gradient(112deg,transparent 48%,#CFD9E1 49%,#CFD9E1 50%,transparent 51%),repeating-linear-gradient(0deg,transparent 0 38px,rgba(214,217,219,.58) 39px 40px),repeating-linear-gradient(90deg,transparent 0 54px,rgba(214,217,219,.46) 55px 56px);
  background-size: 330px 230px,280px 260px,100% 100%,100% 100%;
}

.contact-map-widget {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #F3F6F8;
}

.contact-map-widget > div,
.contact-map-widget iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.map-road {
  position: absolute;
  width: 115%;
  height: 18px;
  border: 1px solid #e0e3e4;
  background: rgba(255,255,255,.82);
}

.map-road--one { top: 43%; left: -8%; transform: rotate(-9deg); }
.map-road--two { top: 55%; left: -4%; transform: rotate(19deg); }
.map-road--three { top: 28%; left: 20%; transform: rotate(72deg); }
.map-road--four { top: 65%; left: 32%; transform: rotate(-42deg); }

.contact-map-pin {
  position: absolute;
  top: 44%;
  left: 58%;
  z-index: 2;
  width: 34px;
  height: 45px;
  border-radius: 50% 50% 50% 0;
  background: var(--orange);
  transform: rotate(-45deg);
  box-shadow: 0 8px 18px rgba(242,181,0,.22);
}

.contact-map-pin span {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
}

.contact-map-card {
  position: absolute;
  left: max(40px, calc((100vw - 1436px) / 2));
  bottom: 28px;
  z-index: 3;
  min-width: 215px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(25,29,33,.1);
}

.contact-map-card h2 {
  margin: 0 0 8px;
  font-size: 15px;
}

.contact-map-card p {
  margin: 0 0 15px;
  color: #676d72;
  font-size: 10px;
  font-weight: 500;
}

.contact-map-card a {
  display: flex;
  justify-content: space-between;
  padding-bottom: 6px;
  border-bottom: 1px solid #272c31;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
}

.contact-map-card a span {
  color: var(--orange);
  font-size: 16px;
}

.contact-map-card small {
  display: block;
  margin-top: 9px;
  color: #a0a5a9;
  font-size: 7px;
}

.contact-design-panel {
  padding: 27px max(38px, calc((100vw - 1436px) / 2)) 22px 48px;
}

.contact-demo {
  margin: 0 0 11px;
  color: var(--orange);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-main-phone,
.contact-main-mail {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #111519;
}

.contact-main-phone {
  font-size: clamp(24px,2.25vw,34px);
  font-weight: 700;
}

.contact-main-mail {
  margin-top: 7px;
  font-size: 15px;
  font-weight: 500;
}

.contact-main-address {
  margin: 12px 0 0 38px;
  color: #56636d;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}

.contact-main-phone span,
.contact-main-mail span {
  color: var(--orange);
  font-size: 23px;
  font-weight: 400;
}

.contact-main-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 20px 0 16px;
}

.contact-main-actions .btn {
  min-height: 42px;
  font-size: 11px;
}

.contact-design-panel .btn--outline {
  border-color: var(--orange);
  color: var(--orange);
}

.contact-messengers {
  padding: 8px 0 14px;
  border-bottom: 1px solid #CFD9E1;
}

.contact-messengers a {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  min-height: 38px;
  color: #31363b;
  font-size: 11px;
  font-weight: 500;
}

.contact-messengers a span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 0;
}

.contact-messengers a span img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.contact-messengers a b {
  font-size: 17px;
  font-weight: 400;
}

.contact-departments {
  margin: 0;
}

.contact-departments > div {
  display: grid;
  grid-template-columns: 46% 54%;
  padding: 13px 0;
  border-bottom: 1px solid #CFD9E1;
}

.contact-departments dt {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #34393e;
  font-size: 10px;
  font-weight: 500;
}

.contact-departments dt i {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #00294F;
  font-style: normal;
}

.contact-departments dt i img {
  display: block;
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.contact-departments dt i img[src*="sales-department-transparent"] {
  width: 38px;
  height: auto;
  max-width: none;
}

.contact-departments dd {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}

.contact-departments dd a,
.contact-departments dd span {
  color: #5f656a;
  font-size: 10px;
  font-weight: 500;
}

.contact-design-request {
  padding: 32px 0 26px;
  border-bottom: 1px solid #CFD9E1;
  background: #F3F6F8;
}

.contact-design-request > .container,
.contact-info-strip > .container,
.contact-design-footer > .container,
.contact-company-details > .container {
  width: min(1436px,calc(100% - 56px));
}

.contact-design-request__grid {
  display: grid;
  grid-template-columns: 31% 69%;
  gap: 50px;
}

.contact-task-copy h2 {
  margin: 0 0 15px;
  font-size: 25px;
}

.contact-task-copy > p {
  max-width: 350px;
  color: #676d72;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.65;
}

.contact-task-copy ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.contact-task-copy li {
  position: relative;
  margin: 14px 0;
  padding-left: 30px;
  color: #62686d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.contact-task-copy li::before {
  content: "✓";
  position: absolute;
  top: -1px;
  left: 1px;
  color: var(--orange);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-wide-form {
  padding: 0;
  border: 0;
  background: transparent;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}

.contact-wide-form > label,
.contact-form-grid label {
  display: block;
  color: #34393e;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-wide-form em,
.contact-form-grid em {
  display: inline;
  margin-left: 2px;
  color: var(--orange);
  font-style: normal;
  line-height: inherit;
  vertical-align: baseline;
}

.contact-wide-form input,
.contact-wide-form select,
.contact-wide-form textarea {
  width: 100%;
  margin-top: 5px;
  padding: 11px 14px;
  border: 1px solid #CFD9E1;
  border-radius: 0;
  color: #34393e;
  background: #fff;
  font-family: inherit;
  font-size: 10px;
  font-weight: 500;
  text-transform: none;
}

.contact-wide-form textarea {
  resize: vertical;
}

.contact-form-bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 235px;
  align-items: end;
  gap: 7px 25px;
  margin-top: 8px;
}

.contact-file {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #33383d;
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
}

.contact-file span {
  border-bottom: 1px solid #33383d;
}

.contact-file > img {
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.contact-file input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form-bottom .check {
  grid-column: 1;
  margin: 0;
  text-transform: none;
}

.contact-form-bottom > .btn {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 42px;
}

.contact-info-strip {
  padding: 26px 0;
  background: #fff;
}

.contact-info-strip__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
}

.contact-info-strip article {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 45px;
  border-left: 1px solid #CFD9E1;
}

.contact-info-strip article:first-child {
  padding-left: 20px;
  border-left: 0;
}

.contact-info-strip i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  font-style: normal;
}

.contact-info-strip i img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.contact-info-strip article:first-child,
.contact-info-strip article:last-child {
  grid-template-columns: 52px 1fr;
}

.contact-info-strip article:first-child i,
.contact-info-strip article:last-child i {
  width: 48px;
  height: 48px;
}

.contact-info-strip article:first-child i img,
.contact-info-strip article:last-child i img {
  max-width: none;
}

.contact-info-strip article:first-child i img {
  width: 44px;
  height: 44px;
}

.contact-info-strip article:last-child i img {
  width: 44px;
  height: 35px;
}

.contact-info-strip article > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-info-strip b,
.contact-info-strip a,
.contact-info-strip span {
  font-size: 10px;
  font-weight: 500;
}

.contact-info-strip a {
  color: var(--orange);
}

.contact-company-details {
  padding: 35px 0;
  background: #F3F6F8;
}

.contact-company-details__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-company-details dl {
  margin: 0;
  padding: 20px 25px;
  background: #fff;
}

.contact-company-details dl > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid #CFD9E1;
}

.contact-company-details dl > div:first-child { border-top: 0; }
.contact-company-details dt { color:#94999d;font-size:8px;text-transform:uppercase; }
.contact-company-details dd { margin:0;font-size:10px;font-weight:500; }

.contact-design-footer {
  padding: 18px 0;
  color: #c8cccf;
  background: #00294F;
}

.contact-design-footer .container {
  display: flex;
  justify-content: space-between;
}

.contact-design-footer p,
.contact-design-footer a {
  margin: 0;
  color: #c8cccf;
  font-size: 8px;
  font-weight: 500;
}

@media (max-width: 1000px) {
  .contact-design-top,
  .contact-design-request__grid {
    grid-template-columns: 1fr;
  }

  .contact-design-left {
    border-right: 0;
  }

  .contact-design-panel {
    padding: 40px max(28px,calc((100vw - 900px)/2));
  }

  .contact-info-strip article {
    padding: 0 25px;
  }
}

@media (max-width: 680px) {
  .contact-design-intro {
    min-height: 0;
    padding: 45px 24px;
  }

  .contact-design-intro h1 {
    font-size: 42px;
  }

  .contact-design-map {
    height: 340px;
  }

  .contact-map-card {
    left: 20px;
    bottom: 20px;
  }

  .contact-design-panel {
    padding: 35px 24px;
  }

  .contact-form-grid,
  .contact-company-details__grid,
  .contact-info-strip__grid {
    grid-template-columns: 1fr;
  }

  .contact-form-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-form-bottom .check,
  .contact-form-bottom > .btn {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-info-strip article,
  .contact-info-strip article:first-child {
    padding: 18px 0;
    border-top: 1px solid #CFD9E1;
    border-left: 0;
  }

  .contact-info-strip article:first-child { border-top: 0; }
  .contact-company-details dl > div { grid-template-columns:1fr;gap:6px; }
  .contact-design-footer .container { align-items:flex-start;flex-direction:column;gap:10px; }
}

.about-design-hero {
  position: relative;
  isolation: isolate;
  min-height: 505px;
  overflow: hidden;
  border-bottom: 1px solid #CFD9E1;
  background: #fff;
}

.about-design-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 24%;
  width: 31%;
  background-image: url("assets/images/architectural-lines.svg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: .36;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 92%, transparent 100%);
}

.about-design-hero__copy {
  position: relative;
  z-index: 2;
  width: 37%;
  max-width: 560px;
  margin-left: max(28px, calc((100vw - 1436px) / 2));
  padding: 58px 35px 54px 0;
}

.about-label {
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.about-design-hero h1 {
  margin: 0 0 28px;
  color: #111519;
  font-size: clamp(42px, 3.15vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.045em;
  white-space: nowrap;
}

.about-design-hero__copy > p:not(.about-label) {
  margin: 0 0 27px;
  color: #676d72;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.about-design-hero__copy > a {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  padding-bottom: 7px;
  border-bottom: 1px solid #262b30;
  color: #00294F;
  font-size: 12px;
  font-weight: 700;
}

.about-design-hero__copy > a span {
  color: var(--orange);
  font-size: 20px;
  font-weight: 400;
}

.about-design-hero__image {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 62%;
  overflow: hidden;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 6% 100%);
}

.about-design-hero__image img {
  width: 100%;
  height: 100%;
  min-height: 505px;
  display: block;
  object-fit: cover;
  object-position: 45% center;
}

.about-facts {
  border-bottom: 1px solid #CFD9E1;
  background: #fff;
}

.about-facts > .container,
.about-supplier > .container,
.about-timeline > .container {
  width: min(1436px, calc(100% - 56px));
}

.about-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-facts article {
  position: relative;
  min-height: 85px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-facts article::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  width: 1px;
  height: 37px;
  background: #CFD9E1;
}

.about-facts article:last-child::after {
  display: none;
}

.about-facts b {
  color: var(--orange);
  font-size: 25px;
  font-weight: 500;
}

.about-facts span {
  margin-top: 4px;
  color: #676d72;
  font-size: 10px;
  font-weight: 500;
}

.about-supplier {
  padding: 25px 0;
  background: #F3F6F8;
}

.about-supplier__grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 45px;
}

.about-supplier__copy {
  align-self: center;
  max-width: 560px;
  padding: 15px 28px 15px 0;
}

.about-supplier h2 {
  margin: 0 0 13px;
  font-size: 25px;
  line-height: 1.2;
}

.about-supplier__copy p {
  max-width: 560px;
  margin: 0 0 13px;
  color: #686e73;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
}

.about-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.about-capabilities article {
  min-height: 90px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 16px;
  padding: 15px 24px;
  border: 1px solid #CFD9E1;
  background: #fff;
}

.about-capabilities img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.about-capabilities h3 {
  margin: 0 0 5px;
  font-size: 13px;
}

.about-capabilities p {
  margin: 0;
  color: #71777c;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.5;
}

.about-proof {
  width: min(calc(100% - 48px), 1488px);
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 330px;
  margin: 0 auto;
  background: #fff;
}

.about-proof__image {
  height: 330px;
  overflow: hidden;
}

.about-proof__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 48% center;
}

.about-proof__content {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 45px;
  padding: 28px 55px;
}

.about-proof h2 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.15;
}

.about-documents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-documents article {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid #bfc3c6;
  background: linear-gradient(145deg,#fff,#f0f1f1);
}

.about-documents span {
  color: var(--orange);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-documents b {
  margin: 24px 0 auto;
  font-size: 11px;
  line-height: 1.35;
}

.about-documents small {
  margin-top: 9px;
  color: #858b90;
  font-size: 8px;
  line-height: 1.4;
}

.about-proof__checks {
  align-self: center;
}

.about-proof__checks p {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  color: #62686d;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.45;
}

.about-proof__checks p span {
  color: var(--orange);
  font-size: 14px;
}

.about-proof__checks .btn {
  width: 100%;
  justify-content: space-between;
  margin-top: 16px;
}

.about-timeline {
  padding: 18px 0 28px;
  border-top: 1px solid #CFD9E1;
  background: #fff;
}

.about-timeline__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-timeline__grid::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 4px;
  right: 4px;
  height: 1px;
  background: #CFD9E1;
}

.about-timeline article {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 24px;
}

.about-timeline i {
  position: absolute;
  top: 3px;
  left: 0;
  z-index: 1;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.about-timeline b {
  color: var(--orange);
  font-size: 12px;
}

.about-timeline span {
  margin-top: 5px;
  color: #73797e;
  font-size: 9px;
  font-weight: 500;
}

@media (max-width: 1050px) {
  .about-design-hero::before {
    display: none;
  }

  .about-supplier__grid,
  .about-proof {
    grid-template-columns: 1fr;
  }

  .about-design-hero {
    display: flex;
    flex-direction: column;
  }

  .about-design-hero__copy {
    position: relative;
    width: min(calc(100% - 48px), 760px);
    max-width: none;
    margin: 0 auto;
    padding: 60px 0;
  }

  .about-design-hero__image {
    position: relative;
    width: 100%;
    clip-path: none;
  }

  .about-design-hero__image img {
    min-height: 430px;
  }

  .about-supplier__copy {
    padding-inline: 0;
  }

  .about-proof__image {
    height: 420px;
  }
}

@media (max-width: 700px) {
  .about-design-hero h1 {
    font-size: 40px;
    white-space: normal;
  }

  .about-design-hero__image img,
  .about-proof__image {
    min-height: 0;
    height: 300px;
  }

  .about-facts__grid,
  .about-capabilities,
  .about-proof__content,
  .about-documents {
    grid-template-columns: 1fr 1fr;
  }

  .about-facts article:nth-child(2)::after {
    display: none;
  }

  .about-facts article:nth-child(-n+2) {
    border-bottom: 1px solid #CFD9E1;
  }

  .about-capabilities article {
    grid-template-columns: 45px 1fr;
    padding: 14px;
  }

  .about-capabilities img {
    width: 38px;
    height: 38px;
  }

  .about-proof__content {
    grid-template-columns: 1fr;
    padding: 35px 24px;
  }

  .about-timeline__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-timeline__grid::before {
    top: 0;
    bottom: 0;
    left: 4px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .about-timeline article {
    padding: 0 0 0 28px;
  }

  .about-timeline i {
    top: 3px;
  }
}

@media (max-width: 480px) {
  .about-facts__grid,
  .about-capabilities,
  .about-documents {
    grid-template-columns: 1fr;
  }

  .about-facts article::after {
    display: none;
  }

  .about-facts article {
    border-bottom: 1px solid #CFD9E1;
  }
}

.info-hero {
  padding: 36px 0 90px;
  color: #fff;
  background: #00294F;
}

.info-hero .breadcrumbs {
  margin-bottom: 65px;
}

.info-hero .breadcrumbs a,
.info-hero .breadcrumbs span {
  color: #aeb3b7;
}

.info-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 80px;
}

.info-hero h1 {
  margin: 20px 0 0;
  color: #fff;
  font-size: clamp(46px, 4.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.info-hero__grid > p {
  margin: 0;
  color: #b9bec2;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.about-intro {
  padding: 105px 0;
  background: #fff;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}

.about-intro h2,
.about-status h2,
.contact-office h2 {
  margin: 20px 0 25px;
  font-size: clamp(35px, 3.4vw, 51px);
  line-height: 1.1;
}

.about-intro__grid > div:first-child > p:not(.kicker),
.about-status p {
  color: #697077;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.about-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #CFD9E1;
  border-left: 1px solid #CFD9E1;
}

.about-numbers article {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 30px;
  border-right: 1px solid #CFD9E1;
  border-bottom: 1px solid #CFD9E1;
}

.about-numbers b {
  margin-bottom: 12px;
  font-size: 26px;
}

.about-numbers span {
  color: #71777c;
  font-size: 11px;
  font-weight: 500;
}

.about-principles {
  padding: 105px 0;
  color: #fff;
  background: #00294F;
}

.about-principles .section-heading h2 {
  color: #fff;
}

.about-principles .section-heading > p {
  color: #afb4b8;
}

.about-principles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #4a5055;
  border-left: 1px solid #4a5055;
}

.about-principles article {
  min-height: 255px;
  padding: 35px;
  border-right: 1px solid #4a5055;
  border-bottom: 1px solid #4a5055;
}

.about-principles article > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
}

.about-principles h3 {
  margin: 65px 0 15px;
  color: #fff;
  font-size: 19px;
}

.about-principles article p {
  color: #aeb3b7;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.65;
}

.about-status {
  padding: 100px 0;
  background: #F3F6F8;
}

.about-status__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.contact-office {
  padding: 90px 0;
  background: #fff;
}

.contact-office__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  min-height: 620px;
}

.contact-office__details {
  padding: 55px 65px;
  border: 1px solid #CFD9E1;
}

.demo-badge {
  display: inline-block;
  margin: 0;
  padding: 7px 10px;
  color: #fff;
  background: var(--orange);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-office dl {
  margin: 35px 0;
}

.contact-office dl > div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid #CFD9E1;
}

.contact-office dt,
.company-details dt {
  color: #959a9e;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-office dd,
.company-details dd {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.contact-office__actions {
  display: flex;
  gap: 12px;
}

.btn--outline {
  border: 1px solid #a7acb0;
  color: var(--ink);
  background: transparent;
}

.contact-map {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-color: #e8e9e9;
  background-image: linear-gradient(30deg, transparent 49%, rgba(255,255,255,.8) 50%, transparent 51%), linear-gradient(120deg, transparent 49%, rgba(255,255,255,.8) 50%, transparent 51%);
  background-size: 120px 120px;
}

.contact-map::before,
.contact-map::after {
  content: "";
  position: absolute;
  width: 130%;
  height: 26px;
  background: rgba(255,255,255,.8);
  transform: rotate(-20deg);
}

.contact-map::after {
  transform: rotate(32deg);
}

.contact-map > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 35px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(26,30,34,.12);
}

.contact-map span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-weight: 800;
}

.contact-map small {
  margin-top: 6px;
  color: #858b90;
  font-size: 9px;
}

.contact-request {
  padding: 100px 0;
  color: #fff;
  background: #00294F;
}

.contact-request h2 {
  color: #fff;
}

.company-details {
  padding: 100px 0;
  background: #F3F6F8;
}

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

.company-details dl {
  margin: 0;
  padding: 25px 35px;
  background: #fff;
}

.company-details dl > div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid #CFD9E1;
}

.company-details dl > div:first-child {
  border-top: 0;
}

@media (max-width: 900px) {
  .info-hero__grid,
  .about-intro__grid,
  .about-status__grid,
  .contact-office__grid {
    grid-template-columns: 1fr;
  }

  .about-principles__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-map {
    min-height: 430px;
  }
}

@media (max-width: 620px) {
  .info-hero {
    padding-bottom: 65px;
  }

  .info-hero .breadcrumbs {
    margin-bottom: 45px;
  }

  .about-intro,
  .about-principles,
  .about-status,
  .contact-office,
  .contact-request,
  .company-details {
    padding: 70px 0;
  }

  .about-numbers,
  .about-principles__grid,
  .company-details__grid {
    grid-template-columns: 1fr;
  }

  .contact-office__details {
    padding: 35px 24px;
  }

  .contact-office dl > div,
  .company-details dl > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .contact-office__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .company-details dl {
    padding: 20px 24px;
  }
}

/* Расширенный каталог промышленных ворот */
.gates-page .industrial-tabs,
.gates-page .industrial-family,
.gates-page .industrial-disclaimer {
  display: none;
}

.industrial-choice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industrial-choice article {
  color: var(--ink);
  background: #fff;
}

.industrial-choice img {
  width: 100%;
  height: 285px;
  display: block;
  object-fit: cover;
}

.industrial-choice article > div {
  padding: 28px 30px;
}

.industrial-choice span {
  color: #92989d;
  font-size: 11px;
  font-weight: 600;
}

.industrial-choice h3 {
  margin: 12px 0;
  font-size: 24px;
}

.industrial-choice p {
  min-height: 62px;
  color: #6e7479;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.industrial-choice a {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 15px;
  border-top: 1px solid #CFD9E1;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.industrial-choice a b {
  color: var(--orange);
  font-size: 19px;
  font-weight: 400;
}

.industrial-detail-hero {
  padding: 34px 0 70px;
  color: #fff;
  background: #00294F;
}

.industrial-detail-hero .breadcrumbs {
  margin-bottom: 34px;
}

.industrial-detail-hero .breadcrumbs a,
.industrial-detail-hero .breadcrumbs span {
  color: #aeb3b7;
}

.industrial-detail-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: #00294F;
}

.industrial-detail-hero__grid > div {
  align-self: center;
  padding: 65px;
}

.industrial-detail-hero h1 {
  margin: 22px 0;
  color: #fff;
  font-size: clamp(43px, 4vw, 62px);
  line-height: 1.05;
}

.industrial-detail-hero__grid p:not(.kicker) {
  color: #b9bec2;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.industrial-detail-hero__grid .btn {
  margin-top: 25px;
}

.industrial-detail-hero__grid img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.industrial-detail-nav {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid #CFD9E1;
  background: #fff;
}

.industrial-detail-nav .container {
  display: flex;
}

.industrial-detail-nav a {
  min-width: 180px;
  padding: 22px 28px;
  border-left: 1px solid #CFD9E1;
  color: #73797e;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.industrial-detail-nav a.is-current {
  color: #fff;
  background: var(--orange);
}

.industrial-detail-catalog {
  padding: 100px 0;
  background: #F3F6F8;
}

.detail-model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #CFD9E1;
  border: 1px solid #CFD9E1;
}

.detail-model-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.detail-model-grid--sectional article:last-child {
  grid-column: 1 / -1;
}

.detail-model-grid article {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #fff;
}

.detail-model-grid article > span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.detail-model-grid h3 {
  margin: 20px 0 13px;
  font-size: 21px;
}

.detail-model-grid p,
.detail-model-grid li {
  color: #686e73;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.detail-model-grid ul {
  padding-left: 18px;
}

.detail-model-grid button {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid #CFD9E1;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}

.detail-model-grid button b {
  color: var(--orange);
  font-size: 19px;
  font-weight: 400;
}

.detail-subheading {
  margin-top: 90px;
}

.detail-note {
  margin-top: 25px;
  color: #73797e;
  font-size: 10px;
  font-weight: 500;
}

.product-tech-guide {
  display: grid;
  grid-template-columns: minmax(230px, .8fr) minmax(0, 2.2fr);
  gap: 32px;
  margin-top: 42px;
  padding: 30px;
  border: 1px solid #CFD9E1;
  background: #fff;
}

.product-tech-guide__heading > span {
  color: #003B70;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-tech-guide__heading h3 {
  margin: 10px 0 8px;
  font-size: 24px;
  line-height: 1.2;
}

.product-tech-guide__heading p,
.product-tech-guide__grid p,
.product-tech-guide__note {
  color: #68747d;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.product-tech-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #CFD9E1;
}

.product-tech-guide__grid article {
  padding: 20px;
  background: #F3F6F8;
}

.product-tech-guide__grid small {
  display: block;
  min-height: 30px;
  color: #68747d;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.product-tech-guide__grid strong {
  display: block;
  margin: 9px 0;
  color: #00294F;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 700;
  line-height: 1.2;
}

.product-tech-guide__note {
  grid-column: 2;
  margin: -14px 0 0;
}

.product-tech-guide--doors {
  margin-bottom: 34px;
}

.loading-model__specs {
  margin: 15px 0 22px;
  border-top: 1px solid #CFD9E1;
}

.loading-model__specs > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid #CFD9E1;
}

.loading-model__specs dt,
.loading-model__specs dd {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.loading-model__specs dt {
  color: #68747d;
}

.loading-model__specs dd {
  color: #00294F;
  text-align: right;
}

@media (max-width: 980px) {
  .industrial-choice,
  .detail-model-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .industrial-detail-hero__grid img {
    height: 380px;
    order: -1;
  }

  .product-tech-guide {
    grid-template-columns: 1fr;
  }

  .product-tech-guide__note {
    grid-column: 1;
    margin-top: -12px;
  }
}

@media (max-width: 680px) {
  .industrial-choice,
  .detail-model-grid,
  .detail-model-grid--two {
    grid-template-columns: 1fr;
  }

  .industrial-choice p {
    min-height: 0;
  }

  .industrial-detail-hero__grid > div {
    padding: 38px 24px;
  }

  .industrial-detail-hero__grid img {
    height: 280px;
  }

  .industrial-detail-nav {
    overflow-x: auto;
  }

  .industrial-detail-nav a {
    min-width: 140px;
    padding: 18px;
  }

  .industrial-detail-catalog {
    padding: 70px 0;
  }

  .detail-model-grid article {
    min-height: 0;
    padding: 27px 23px;
  }

  .detail-model-grid--sectional article:last-child {
    grid-column: auto;
  }

  .product-tech-guide {
    gap: 22px;
    margin-top: 30px;
    padding: 22px;
  }

  .product-tech-guide__grid {
    grid-template-columns: 1fr;
  }

  .product-tech-guide__grid small {
    min-height: 0;
  }
}
.industrial-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 70px;
  border: 1px solid #4a5055;
}

.industrial-tabs a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 26px;
  border-left: 1px solid #4a5055;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease;
}

.industrial-tabs a:first-child {
  border-left: 0;
}

.industrial-tabs a:hover {
  background: #30363b;
}

.industrial-tabs span {
  color: #9ea4a8;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.industrial-family {
  padding: 80px 0 20px;
  scroll-margin-top: 100px;
  border-top: 1px solid #454b50;
}

.industrial-family__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 355px;
  margin-bottom: 28px;
  background: #00294F;
}

.industrial-family__intro > div {
  align-self: center;
  padding: 55px 60px;
}

.industrial-family__intro > div > span {
  color: #aeb3b7;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.industrial-family__intro h3 {
  margin: 18px 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.1;
}

.industrial-family__intro p {
  margin: 0;
  color: #b6bbc0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
}

.industrial-family__intro img {
  width: 100%;
  height: 355px;
  display: block;
  object-fit: cover;
}

.industrial-family__intro--reverse > div {
  order: 2;
}

.industrial-models {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #454b50;
  border: 1px solid #454b50;
}

.industrial-models--two {
  grid-template-columns: repeat(2, 1fr);
}

.industrial-models article {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  color: var(--ink);
  background: #fff;
}

.industrial-model__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #CFD9E1;
}

.industrial-model__top span {
  color: #858b90;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.industrial-model__top b {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.industrial-models article h4 {
  min-height: 58px;
  margin: 0 0 13px;
  font-size: 20px;
  line-height: 1.35;
}

.industrial-models article > p {
  min-height: 66px;
  margin: 0 0 18px;
  color: #6e7479;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.industrial-models ul {
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.industrial-models li {
  position: relative;
  padding: 7px 0 7px 15px;
  color: #5d6368;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.industrial-models li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--orange);
}

.industrial-models article button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 15px 0 0;
  border: 0;
  border-top: 1px solid #CFD9E1;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}

.industrial-models article button b {
  color: var(--orange);
  font-size: 19px;
  font-weight: 400;
}

.industrial-model-group {
  margin-top: 42px;
}

.industrial-model-group > h4 {
  margin: 0 0 17px;
  color: #fff;
  font-size: 16px;
}

.industrial-disclaimer {
  margin: 38px 0 0;
  color: #aeb3b7;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .industrial-family__intro {
    grid-template-columns: 1fr;
  }

  .industrial-family__intro--reverse > div {
    order: initial;
  }

  .industrial-models {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .industrial-tabs,
  .industrial-models,
  .industrial-models--two {
    grid-template-columns: 1fr;
  }

  .industrial-tabs a {
    border-top: 1px solid #4a5055;
    border-left: 0;
  }

  .industrial-tabs a:first-child {
    border-top: 0;
  }

  .industrial-family {
    padding-top: 55px;
  }

  .industrial-family__intro > div {
    padding: 38px 25px;
  }

  .industrial-family__intro img {
    height: 270px;
  }

  .industrial-models article {
    min-height: 0;
    padding: 27px 23px;
  }

  .industrial-models article h4,
  .industrial-models article > p {
    min-height: 0;
  }
}

/* Final mobile hero, actions and back-to-top controls */
.scroll-top {
  display: none;
}

@media (max-width: 760px) {
  .hero__image {
    left: 0;
    width: 100%;
    opacity: .62;
    object-position: 58% bottom;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, .94) 0%,
      rgba(255, 255, 255, .87) 45%,
      rgba(255, 255, 255, .58) 74%,
      rgba(255, 255, 255, .32) 100%
    );
  }

  .mobile-actions {
    left: auto;
    right: 58px;
    bottom: 8px;
    width: min(calc(100% - 74px), 310px);
    grid-template-columns: 1fr 1.35fr;
    border-radius: 3px;
  }

  .mobile-actions a,
  .mobile-actions button {
    min-height: 42px;
    padding: 5px 9px;
    border-right-color: rgba(255, 255, 255, .28);
    background: var(--orange);
    font-size: 10px;
    line-height: 1.15;
  }

  .mobile-actions > :last-child {
    border-right: 0;
  }

  .scroll-top {
    position: fixed;
    z-index: 46;
    right: 8px;
    bottom: 8px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 3px;
    color: #fff;
    background: var(--ink);
    box-shadow: 0 8px 24px rgba(17, 20, 25, .24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    cursor: pointer;
  }

  .scroll-top span {
    font-size: 23px;
    font-weight: 500;
    line-height: 1;
  }

  .scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
/* Automation catalogue */
.automation-catalog {
  padding: 0 0 92px;
  background: #F3F6F8;
}

.automation-catalog__breadcrumbs {
  padding-top: 30px;
  margin-bottom: 54px;
}

.automation-catalog__heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.automation-catalog__heading h1 {
  max-width: 780px;
  margin: 16px 0 20px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.automation-catalog__heading > p:last-child {
  max-width: 710px;
  margin: 0;
  color: #667076;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.automation-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 24px;
  background: #CFD9E1;
  border: 1px solid #CFD9E1;
}

.automation-tab {
  position: relative;
  min-height: 106px;
  padding: 22px 20px;
  border: 0;
  background: #fff;
  color: #00294F;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.automation-tab::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 19px;
  left: 20px;
  height: 2px;
  background: #F2B500;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.automation-tab b,
.automation-tab small {
  display: block;
}

.automation-tab b {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.25;
}

.automation-tab small {
  color: #7b8387;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}

.automation-tab:hover,
.automation-tab.is-active {
  color: #F2B500;
  background: #F3F6F8;
}

.automation-tab:hover::after,
.automation-tab.is-active::after {
  transform: scaleX(1);
}

.automation-panel {
  animation: automation-panel-in .35s ease both;
}

@keyframes automation-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.automation-panel__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  min-height: 510px;
  background: #fff;
}

.automation-panel__intro > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 60px clamp(38px, 5vw, 74px);
}

.automation-panel__intro--reverse .automation-panel__image {
  order: 2;
}

.automation-panel__image {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #CFD9E1;
}

.automation-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#automation-garage .automation-panel__image img {
  object-position: 50% 52%;
}

#automation-sliding .automation-panel__image img {
  object-position: 45% center;
}

#automation-swing .automation-panel__image img {
  object-position: 50% center;
}

#automation-industrial .automation-panel__image img {
  object-position: center;
}

#automation-control .automation-panel__image img {
  object-position: 45% center;
}

.automation-panel__image span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 9px 13px;
  background: rgba(255,255,255,.92);
  color: #252b2e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.automation-panel__eyebrow {
  margin: 0 0 15px;
  color: #F2B500;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.automation-panel__intro h2 {
  margin: 0 0 20px;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.automation-panel__intro h2 + p {
  margin: 0 0 30px;
  color: #697277;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.automation-models {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: #CFD9E1;
  border: 1px solid #CFD9E1;
}

.automation-models article {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 34px;
  background: #fff;
}

.automation-models article.is-featured {
  box-shadow: inset 0 3px #F2B500;
}

.automation-model__top {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 15px;
  min-height: 105px;
  padding-bottom: 24px;
  border-bottom: 1px solid #CFD9E1;
}

.automation-model__top > span,
.accessory-grid article > span {
  color: #F2B500;
  font-size: 11px;
  font-weight: 700;
}

.automation-model__top h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.2;
}

.automation-model__top p {
  margin: 0;
  color: #727a7e;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.automation-models dl {
  margin: 22px 0 28px;
}

.automation-models dl > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid #F3F6F8;
  font-size: 12px;
}

.automation-models dt {
  color: #7a8286;
  font-weight: 500;
}

.automation-models dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.automation-models article > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: 15px 0 4px;
  border: 0;
  background: transparent;
  color: #00294F;
  font: 700 13px/1 Manrope, sans-serif;
  cursor: pointer;
}

.automation-models article > button b {
  color: #F2B500;
  font-size: 18px;
}

.automation-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: #CFD9E1;
}

.automation-specs > div {
  min-height: 176px;
  padding: 30px;
  background: #00294F;
  color: #fff;
}

.automation-specs span,
.automation-specs strong,
.automation-specs p {
  display: block;
}

.automation-specs span {
  margin-bottom: 5px;
  color: #aeb6ba;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.automation-specs strong {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: -.03em;
}

.automation-specs p {
  margin: 18px 0 0;
  color: #bac0c3;
  font-size: 11px;
  font-weight: 500;
}

.automation-features,
.accessory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: #CFD9E1;
}

.automation-features article,
.accessory-grid article {
  min-height: 175px;
  padding: 30px;
  background: #fff;
}

.automation-features h3,
.accessory-grid h3 {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.3;
}

.automation-features p,
.accessory-grid p {
  margin: 0;
  color: #71797d;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

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

.accessory-grid article {
  min-height: 205px;
}

.accessory-grid article > span {
  display: block;
  margin-bottom: 28px;
}

.automation-help {
  margin-top: 34px;
}

@media (max-width: 1050px) {
  .automation-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .automation-panel__intro {
    grid-template-columns: 1fr 1fr;
  }

  .automation-models {
    grid-template-columns: 1fr;
  }

  .automation-model__top {
    min-height: auto;
  }

  .automation-specs,
  .automation-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .automation-catalog {
    padding-bottom: 58px;
  }

  .automation-catalog__breadcrumbs {
    padding-top: 18px;
    margin-bottom: 36px;
  }

  .automation-catalog__heading {
    margin-bottom: 28px;
  }

  .automation-catalog__heading h1 {
    margin-top: 12px;
    font-size: 39px;
  }

  .automation-catalog__heading > p:last-child {
    font-size: 14px;
  }

  .automation-tabs {
    display: flex;
    gap: 8px;
    margin-right: calc(var(--container-pad) * -1);
    padding-right: var(--container-pad);
    overflow-x: auto;
    border: 0;
    background: transparent;
    scrollbar-width: none;
  }

  .automation-tabs::-webkit-scrollbar {
    display: none;
  }

  .automation-tab {
    flex: 0 0 170px;
    min-height: 92px;
    padding: 18px;
    border: 1px solid #CFD9E1;
  }

  .automation-panel__intro,
  .automation-panel__intro--reverse {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .automation-panel__intro--reverse .automation-panel__image {
    order: 0;
  }

  .automation-panel__image {
    min-height: 310px;
  }

  .automation-panel__intro > div:last-child {
    padding: 34px 24px 38px;
  }

  .automation-panel__intro h2 {
    font-size: 32px;
  }

  .automation-models article {
    padding: 27px 23px;
  }

  .automation-specs,
  .automation-features,
  .accessory-grid {
    grid-template-columns: 1fr 1fr;
  }

  .automation-specs > div,
  .automation-features article,
  .accessory-grid article {
    min-height: 150px;
    padding: 22px;
  }
}

@media (max-width: 440px) {
  .automation-catalog__heading h1 {
    font-size: 35px;
  }

  .automation-panel__image {
    min-height: 270px;
  }

  .automation-specs,
  .automation-features,
  .accessory-grid {
    grid-template-columns: 1fr;
  }

  .automation-specs > div,
  .automation-features article,
  .accessory-grid article {
    min-height: 0;
  }
}
/* Loading equipment catalogue */
.loading-catalog__heading {
  max-width: 900px;
}

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

.loading-catalog .automation-panel__image img {
  object-position: center;
}

.loading-catalog #loading-levelers .automation-panel__image img {
  object-position: 52% center;
}

.loading-catalog #loading-houses .automation-panel__image img {
  object-position: 48% center;
}

.loading-series {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 18px;
}

.loading-series span {
  padding: 7px 10px;
  border: 1px solid #CFD9E1;
  color: #4e575b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}

.loading-model__text {
  min-height: 75px;
  margin: 0 0 22px;
  color: #727a7e;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.loading-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: #CFD9E1;
}

.loading-benefits article {
  min-height: 205px;
  padding: 31px;
  background: #fff;
}

.loading-benefits span {
  display: block;
  margin-bottom: 30px;
  color: #F2B500;
  font-size: 11px;
  font-weight: 700;
}

.loading-benefits h3 {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.3;
}

.loading-benefits p {
  margin: 0;
  color: #71797d;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.loading-help {
  background: #fff;
}

.loading-applications {
  padding: 86px 0 96px;
  background: #fff;
}

.loading-applications__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 30px 80px;
  align-items: end;
  margin-bottom: 46px;
}

.loading-applications__heading .kicker {
  grid-column: 1 / -1;
  margin-bottom: -13px;
}

.loading-applications__heading h2 {
  margin: 0;
  max-width: 690px;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.loading-applications__heading > p:last-child {
  margin: 0;
  color: #6d767a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.loading-applications__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #CFD9E1;
  border-left: 1px solid #CFD9E1;
}

.loading-applications__grid article {
  position: relative;
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid #CFD9E1;
  border-bottom: 1px solid #CFD9E1;
  transition: background .2s ease, color .2s ease;
}

.loading-applications__grid article:hover {
  background: #00294F;
  color: #fff;
}

.loading-applications__grid span {
  display: block;
  margin-bottom: 36px;
  color: #F2B500;
  font-size: 10px;
  font-weight: 700;
}

.loading-applications__grid h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

@media (max-width: 1050px) {
  .loading-benefits,
  .loading-applications__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .loading-tabs {
    display: flex;
  }

  .loading-model__text {
    min-height: 0;
  }

  .loading-benefits {
    grid-template-columns: 1fr 1fr;
  }

  .loading-benefits article {
    min-height: 170px;
    padding: 23px;
  }

  .loading-applications {
    padding: 60px 0 68px;
  }

  .loading-applications__heading {
    display: block;
    margin-bottom: 32px;
  }

  .loading-applications__heading .kicker {
    margin-bottom: 18px;
  }

  .loading-applications__heading h2 {
    margin-bottom: 18px;
    font-size: 37px;
  }
}

@media (max-width: 440px) {
  .loading-benefits,
  .loading-applications__grid {
    grid-template-columns: 1fr;
  }

  .loading-benefits article,
  .loading-applications__grid article {
    min-height: 0;
  }
}
/* Cookie consent */
.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  border: 1px solid #CFD9E1;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 55px rgba(24,31,35,.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(22px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-banner__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 24px 27px;
  border-left: 4px solid #F2B500;
}

.cookie-banner__text strong {
  display: block;
  margin-bottom: 7px;
  color: #00294F;
  font-size: 16px;
  font-weight: 800;
}

.cookie-banner__text > p,
.cookie-banner__details p {
  margin: 0;
  color: #646d72;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.cookie-banner__details-button {
  margin: 8px 0 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #F2B500;
  font: 700 11px/1.35 Manrope, sans-serif;
  cursor: pointer;
}

.cookie-banner__details {
  display: grid;
  gap: 6px;
  max-width: 760px;
  margin-top: 11px;
  padding-top: 10px;
  border-top: 1px solid #CFD9E1;
}

.cookie-banner__details[hidden] {
  display: none;
}

.cookie-banner__details b {
  color: #31383c;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-banner__actions button {
  min-height: 44px;
  padding: 0 19px;
  border: 1px solid #CFD9E1;
  font: 700 12px/1 Manrope, sans-serif;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.cookie-banner__necessary {
  background: #fff;
  color: #2c3337;
}

.cookie-banner__necessary:hover {
  border-color: #2c3337;
}

.cookie-banner__accept {
  border-color: #F2B500 !important;
  background: #F2B500;
  color: #fff;
}

.cookie-banner__accept:hover {
  border-color: #003B70 !important;
  background: #003B70;
}

.cookie-settings {
  display: block;
  margin: 8px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: underline;
  cursor: pointer;
}

.contact-map-consent {
  display: grid !important;
  place-items: center;
  padding: 28px;
  background: #F3F6F8;
  text-align: center;
}

.contact-map-consent > div {
  width: min(100%, 430px);
  height: auto !important;
}

.contact-map-consent strong {
  display: block;
  margin-bottom: 9px;
  color: #252c30;
  font-size: 17px;
}

.contact-map-consent p {
  margin: 0 0 17px;
  color: #677075;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.contact-map-consent button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  background: #F2B500;
  color: #fff;
  font: 700 12px/1 Manrope, sans-serif;
  cursor: pointer;
}

@media (max-width: 760px) {
  .cookie-banner {
    right: 12px;
    bottom: 72px;
    left: 12px;
  }

  .cookie-banner__content {
    display: block;
    padding: 20px 19px;
  }

  .cookie-banner__actions {
    margin-top: 17px;
  }

  .cookie-banner__actions button {
    flex: 1 1 50%;
    padding: 0 12px;
  }
}

@media (max-width: 420px) {
  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-banner__necessary {
    order: 2;
  }
}

/* Unified engineering-style footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 70px 0 38px;
  color: #aeb8bf;
  background:
    radial-gradient(circle at 10% 20%, rgba(41,58,69,.22), transparent 35%),
    radial-gradient(circle at 86% 55%, rgba(34,48,58,.22), transparent 35%),
    #00294F;
  font-family: Manrope, Inter, "Helvetica Neue", Arial, sans-serif;
}

.site-footer .container {
  width: min(1408px, calc(100% - 80px));
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.4fr .95fr .9fr .95fr 1.08fr;
  gap: clamp(34px, 4vw, 88px);
  align-items: start;
}

.site-footer p {
  margin: 0;
}

.site-footer__identity {
  min-width: 0;
}

.site-footer__logo {
  display: inline-block;
  color: #F2B500;
  font-size: clamp(28px, 2.15vw, 36px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.site-footer__partner {
  margin-top: 18px !important;
  color: #929da5;
  font-size: 14px;
  font-weight: 500;
}

.site-footer__description {
  margin-top: 35px !important;
  color: #b8c1c7;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

.site-footer__direct {
  display: grid;
  gap: 15px;
  margin-top: 32px;
}

.site-footer__direct a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #aeb8bf;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s ease;
}

.site-footer__direct a:hover {
  color: #fff;
}

.site-footer__contact-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .94;
}

.site-footer__direct span,
.site-footer__hours span,
.site-footer__callback span {
  display: inline-grid;
  width: 25px;
  flex: 0 0 25px;
  place-items: center;
  color: #f3f6f7;
  font-size: 21px;
  font-weight: 400;
}

.site-footer__direct .site-footer__phone {
  color: #fff;
  font-size: clamp(19px, 1.55vw, 25px);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.site-footer__column,
.site-footer__connect {
  display: grid;
  align-content: start;
  gap: 26px;
}

.site-footer__column strong,
.site-footer__connect > strong {
  margin-bottom: 10px;
  color: #F3F6F8;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer__column a {
  width: fit-content;
  color: #aeb8bf;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  transition: color .2s ease, transform .2s ease;
}

.site-footer__column a:hover {
  color: #fff;
  transform: translateX(3px);
}

.site-footer__social,
.site-footer__callback {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  border: 1px solid rgba(211,221,226,.42);
  color: #c5cdd2;
  background: rgba(255,255,255,.015);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.site-footer__social:hover,
.site-footer__callback:hover {
  border-color: rgba(255,255,255,.8);
  color: #fff;
  background: rgba(255,255,255,.05);
}

.site-footer__social img {
  width: 27px;
  height: 27px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .92;
}

.site-footer__hours {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 17px 0 3px !important;
  color: #89959d;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.site-footer__callback {
  width: 100%;
  font-family: inherit;
}

.site-footer__callback .site-footer__contact-icon {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 310px 1fr 260px;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
  padding-top: 37px;
  border-top: 1px solid rgba(215,224,229,.25);
  color: #9ba6ad;
  font-size: 12px;
  font-weight: 500;
}

.site-footer .footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  color: #aeb8bf;
  font-size: 12px;
  text-align: left;
}

.site-footer .footer__legal > * {
  margin: 0;
  padding: 0 24px;
  border: 0;
  border-left: 1px solid rgba(215,224,229,.32);
  color: inherit;
  background: transparent;
  font: inherit;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer .footer__legal > :first-child {
  padding-left: 0;
  border-left: 0;
}

.site-footer .footer__legal a:hover,
.site-footer .cookie-settings:hover {
  color: #fff;
}

.site-footer .cookie-settings {
  display: inline-block;
  width: auto;
  text-align: left;
}

.site-footer .cookie-settings::before {
  content: "☷";
  margin-right: 9px;
  color: #dbe1e4;
  font-size: 17px;
  vertical-align: -1px;
}

.site-footer__offer {
  padding-left: 34px;
  border-left: 1px solid rgba(215,224,229,.36);
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .site-footer__main {
    grid-template-columns: 1.35fr repeat(2, 1fr);
    row-gap: 54px;
  }

  .site-footer__identity {
    grid-row: span 2;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer .footer__legal {
    justify-content: flex-start;
  }

  .site-footer__offer {
    padding: 0;
    border: 0;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 52px 0 112px;
  }

  .site-footer .container {
    width: min(100% - 36px, 560px);
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .site-footer__identity {
    grid-row: auto;
  }

  .site-footer__description {
    margin-top: 25px !important;
  }

  .site-footer__column,
  .site-footer__connect {
    gap: 20px;
  }

  .site-footer__bottom {
    margin-top: 48px;
    padding-top: 28px;
  }

  .site-footer .footer__legal {
    display: grid;
    justify-content: stretch;
  }

  .site-footer .footer__legal > * {
    padding: 10px 0;
    border-left: 0;
    border-top: 1px solid rgba(215,224,229,.18);
    white-space: normal;
  }

  .site-footer .footer__legal > :first-child {
    border-top: 0;
  }
}

/* Privacy policy and consent pages */
.check a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.check a:hover {
  color: #F2B500;
}

.cookie-banner__text a {
  color: #003B70;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-main {
  background: #F3F6F8;
}

.legal-hero {
  padding: 66px 0 72px;
  border-bottom: 1px solid #CFD9E1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.76)),
    repeating-linear-gradient(0deg, transparent 0 35px, rgba(89,105,114,.08) 35px 36px),
    repeating-linear-gradient(90deg, transparent 0 35px, rgba(89,105,114,.08) 35px 36px),
    #fff;
}

.legal-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 36px;
  color: #8a949a;
  font: 600 12px/1.3 Manrope, sans-serif;
}

.legal-breadcrumbs a {
  color: #515d64;
}

.legal-breadcrumbs a:hover {
  color: #F2B500;
}

.legal-kicker {
  margin: 0 0 18px;
  color: #F2B500;
  font: 700 12px/1.2 Manrope, sans-serif;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #00294F;
  font: 700 clamp(34px, 4.1vw, 58px)/1.08 Manrope, sans-serif;
  letter-spacing: -.04em;
}

.legal-updated {
  margin: 25px 0 0;
  color: #737f86;
  font: 500 13px/1.4 Manrope, sans-serif;
}

.legal-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  padding-top: 58px;
  padding-bottom: 90px;
}

.legal-nav {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 7px;
  padding: 25px 0;
  border-top: 2px solid #00294F;
  border-bottom: 1px solid #CFD9E1;
}

.legal-nav strong {
  margin-bottom: 10px;
  color: #00294F;
  font: 700 12px/1.3 Manrope, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-nav a {
  padding: 7px 0;
  color: #727d83;
  font: 500 12px/1.4 Manrope, sans-serif;
  transition: color .2s ease, transform .2s ease;
}

.legal-nav a:hover {
  color: #F2B500;
  transform: translateX(3px);
}

.legal-document {
  min-width: 0;
  padding: clamp(30px, 4.4vw, 62px);
  border: 1px solid #CFD9E1;
  background: #fff;
  box-shadow: 0 16px 55px rgba(32,43,49,.07);
  color: #4e5a61;
  font: 500 14px/1.78 Manrope, sans-serif;
}

.legal-template-note {
  margin-bottom: 48px;
  padding: 22px 24px;
  border-left: 4px solid #F2B500;
  background: #F3F6F8;
}

.legal-template-note strong {
  display: block;
  margin-bottom: 6px;
  color: #00294F;
  font-size: 14px;
  font-weight: 800;
}

.legal-template-note p {
  margin: 0;
}

.legal-document section {
  scroll-margin-top: 25px;
}

.legal-document section + section {
  margin-top: 55px;
  padding-top: 50px;
  border-top: 1px solid #CFD9E1;
}

.legal-document h2 {
  margin: 0 0 25px;
  color: #00294F;
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document ul {
  display: grid;
  gap: 9px;
  margin: 0 0 20px;
  padding-left: 22px;
}

.legal-document a {
  color: #003B70;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-placeholder {
  padding: 2px 5px;
  color: #003B70;
  background: #F3F6F8;
  font: inherit;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.legal-table-wrap {
  max-width: 100%;
  margin: 0 0 25px;
  overflow-x: auto;
  border: 1px solid #CFD9E1;
}

.legal-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 11px;
  line-height: 1.55;
}

.legal-table th,
.legal-table td {
  padding: 15px 16px;
  border-right: 1px solid #CFD9E1;
  border-bottom: 1px solid #CFD9E1;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: #fff;
  background: #00294F;
  font-weight: 700;
}

.legal-table tbody tr:nth-child(even) {
  background: #F3F6F8;
}

.legal-table tr > :last-child {
  border-right: 0;
}

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

.legal-details {
  margin: 0 0 28px;
  border-top: 1px solid #CFD9E1;
}

.legal-details > div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 25px;
  padding: 14px 0;
  border-bottom: 1px solid #CFD9E1;
}

.legal-details dt {
  color: #7b868c;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-details dd {
  margin: 0;
}

.legal-sources {
  margin-top: 28px !important;
  padding-top: 20px;
  border-top: 1px dashed #CFD9E1;
  color: #768188;
  font-size: 12px;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 20px 0;
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .legal-hero {
    padding: 42px 0 48px;
  }

  .legal-breadcrumbs {
    margin-bottom: 25px;
  }

  .legal-layout {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .legal-document {
    margin: 0 -2px;
    padding: 25px 20px 35px;
  }

  .legal-template-note {
    margin-bottom: 36px;
    padding: 18px;
  }

  .legal-document section + section {
    margin-top: 38px;
    padding-top: 36px;
  }

  .legal-details > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/* Contacts page: readable supporting text */
.contacts-design-page .contact-design-intro > p:last-child {
  font-size: 16px;
  line-height: 1.6;
}

.contacts-design-page .contact-map-card p {
  font-size: 13px;
  line-height: 1.55;
}

.contacts-design-page .contact-map-card small {
  font-size: 10px;
  line-height: 1.45;
}

.contacts-design-page .contact-map-card a {
  font-size: 12px;
}

.contacts-design-page .contact-map-consent p {
  font-size: 14px;
  line-height: 1.55;
}

.contacts-design-page .contact-departments dd a,
.contacts-design-page .contact-departments dd span {
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contacts-design-page .contact-messengers a {
  min-height: 44px;
  font-size: 15px;
  font-weight: 600;
}

.contacts-design-page .contact-departments dt {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.contacts-design-page .contact-departments dt i {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
}

.contacts-design-page .contact-departments dt i img,
.contacts-design-page .contact-departments dt i img[src*="sales-department-transparent"] {
  width: 28px;
  height: 28px;
  max-width: 28px;
  object-fit: contain;
}

.contacts-design-page .contact-info-strip article,
.contacts-design-page .contact-info-strip article:first-child,
.contacts-design-page .contact-info-strip article:last-child {
  grid-template-columns: 48px 1fr;
}

.contacts-design-page .contact-info-strip i,
.contacts-design-page .contact-info-strip article:first-child i,
.contacts-design-page .contact-info-strip article:last-child i {
  width: 44px;
  height: 44px;
}

.contacts-design-page .contact-info-strip i img,
.contacts-design-page .contact-info-strip article:first-child i img,
.contacts-design-page .contact-info-strip article:last-child i img {
  width: 38px;
  height: 38px;
  max-width: 38px;
  object-fit: contain;
}

.contacts-design-page .contact-main-icon {
  position: relative;
  display: block;
  overflow: hidden;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
}

.contacts-design-page .contact-main-icon img {
  position: absolute;
  height: auto;
  max-width: none;
}

.contacts-design-page .contact-main-icon--search {
  transform: scaleX(-1);
}

.contacts-design-page .contact-main-icon--search img {
  top: -27px;
  left: -41px;
  width: 99px;
}

.contacts-design-page .contact-main-icon--mail img {
  top: -80px;
  left: -32px;
  width: 88px;
}

/* About page: readable supporting text */
.about-page .about-design-hero__copy > p:not(.about-label) {
  font-size: 16px;
  line-height: 1.7;
}

.about-page .about-facts article {
  min-height: 100px;
}

.about-page .about-facts span {
  font-size: 13px;
  line-height: 1.4;
}

.about-page .about-supplier__copy p {
  font-size: 15px;
  line-height: 1.65;
}

.about-page .about-capabilities article {
  min-height: 112px;
}

.about-page .about-capabilities h3 {
  font-size: 15px;
}

.about-page .about-capabilities p {
  font-size: 12px;
  line-height: 1.55;
}

.about-page .about-proof {
  min-height: 380px;
}

.about-page .about-proof__image {
  height: 380px;
}

.about-page .about-documents article {
  min-height: 165px;
}

.about-page .about-documents span {
  font-size: 10px;
}

.about-page .about-documents b {
  font-size: 13px;
  line-height: 1.45;
}

.about-page .about-documents small {
  font-size: 11px;
  line-height: 1.5;
}

.about-page .about-proof__checks p {
  grid-template-columns: 23px 1fr;
  font-size: 13px;
  line-height: 1.5;
}

.about-page .about-proof__checks p span {
  font-size: 18px;
  line-height: 1.2;
}

.about-page .about-timeline {
  padding-top: 24px;
  padding-bottom: 36px;
}

.about-page .about-timeline b {
  font-size: 14px;
}

.about-page .about-timeline span {
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 700px) {
  .about-page .about-design-hero__copy > p:not(.about-label),
  .about-page .about-supplier__copy p {
    font-size: 14px;
  }

  .about-page .about-proof__image {
    height: 300px;
  }
}

/* Home service ribbon: visually equal icon sizes */
.service-ribbon .service-ribbon__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  font-size: 0;
}

.service-ribbon .service-ribbon__icon img {
  width: 36px;
  height: 36px;
  max-width: none;
  flex: none;
  object-fit: contain;
  transform-origin: center;
}

.service-ribbon .service-ribbon__icon img[src*="measurement"] {
  transform: scale(1.1);
}

.service-ribbon .service-ribbon__icon img[src*="calculation"] {
  transform: scale(1.08);
}

.service-ribbon .service-ribbon__icon img[src*="delivery-truck"] {
  transform: scale(1.22);
}

.contacts-design-page .contact-task-copy > p {
  max-width: 430px;
  font-size: 14px;
  line-height: 1.65;
}

.contacts-design-page .contact-task-copy li {
  font-size: 15px;
}

.contacts-design-page .contact-wide-form > label,
.contacts-design-page .contact-form-grid label {
  font-size: 10px;
}

.contacts-design-page .contact-wide-form input,
.contacts-design-page .contact-wide-form select,
.contacts-design-page .contact-wide-form textarea {
  font-size: 13px;
  line-height: 1.45;
}

.contacts-design-page .contact-wide-form input::placeholder,
.contacts-design-page .contact-wide-form textarea::placeholder {
  color: #747d82;
  opacity: 1;
}

.contacts-design-page .contact-form-bottom .check {
  color: #5d666b;
  font-size: 12px;
  line-height: 1.5;
}

.contacts-design-page .contact-info-strip b {
  font-size: 13px;
  font-weight: 700;
}

.contacts-design-page .contact-info-strip a,
.contacts-design-page .contact-info-strip span {
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 680px) {
  .contacts-design-page .contact-design-intro > p:last-child {
    font-size: 15px;
  }

  .contacts-design-page .contact-task-copy > p,
  .contacts-design-page .contact-map-consent p {
    font-size: 13px;
  }
}

/* Home page: readable supporting text */
.home-page .hero__lead {
  font-size: 18px;
  line-height: 1.6;
}

.home-page .proof-item small,
.home-page .proof-stat small {
  font-size: 12px;
  line-height: 1.45;
}

.home-page .reference-card p {
  font-size: 14px;
  line-height: 1.55;
}

.home-page .reference-card > div {
  min-height: 122px;
}

.home-page .service-ribbon p {
  font-size: 13px;
  line-height: 1.5;
}

.home-page .section-head > p,
.home-page .faq-layout > div:first-child > p:not(.kicker),
.home-page .contacts__grid > div > p:not(.kicker) {
  font-size: 17px;
  line-height: 1.65;
}

.home-page .benefits p,
.home-page .services-list p {
  font-size: 15px;
  line-height: 1.6;
}

.home-page .process-line p {
  font-size: 14px;
  line-height: 1.55;
}

.home-page .gallery figcaption span {
  font-size: 13px;
  line-height: 1.45;
}

.home-page .accordion details p {
  font-size: 15px;
  line-height: 1.65;
}

.home-page .contact-links span {
  font-size: 15px;
  line-height: 1.5;
}

.home-page .contact-links small {
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .home-page .hero__lead {
    font-size: 16px;
  }

  .home-page .section-head > p,
  .home-page .faq-layout > div:first-child > p:not(.kicker),
  .home-page .contacts__grid > div > p:not(.kicker) {
    font-size: 15px;
  }

  .home-page .reference-card p,
  .home-page .benefits p,
  .home-page .services-list p,
  .home-page .accordion details p {
    font-size: 14px;
  }
}

/* Product pages: readable supporting text */
.products-page .breadcrumbs,
.gates-page .breadcrumbs,
.doors-page .breadcrumbs,
.automation-page .breadcrumbs,
.loading-page .breadcrumbs,
.industrial-detail-page .breadcrumbs {
  font-size: 14px;
  font-weight: 500;
}

.products-page .products-hero__grid > p,
.products-page .products-request__grid > div > p:not(.kicker),
.gates-page .products-request__grid > div > p:not(.kicker),
.doors-page .products-request__grid > div > p:not(.kicker),
.automation-page .products-request__grid > div > p:not(.kicker),
.loading-page .products-request__grid > div > p:not(.kicker),
.industrial-detail-page .products-request__grid > div > p:not(.kicker),
.gates-page .gate-picker__heading > p:last-child,
.doors-page .gate-picker__heading > p:last-child,
.gates-page .section-heading > p,
.doors-page .section-heading > p,
.automation-page .automation-catalog__heading > p:last-child,
.loading-page .automation-catalog__heading > p:last-child,
.loading-page .loading-applications__heading > p:last-child,
.industrial-detail-page .industrial-detail-hero__grid p:not(.kicker) {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.products-page .directory-card p,
.products-page .products-assurance p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.products-page .directory-card li a {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.gates-page .gate-picker__tab small,
.doors-page .gate-picker__tab small,
.automation-page .automation-tab small,
.loading-page .automation-tab small {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.gates-page .gate-picker__details > p,
.doors-page .gate-picker__details > p,
.gates-page .gate-card p,
.doors-page .gate-card p,
.gates-page .industrial-gates article p,
.gates-page .industrial-choice p,
.doors-page .industrial-choice p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

.gates-page .gate-card li,
.doors-page .gate-card li {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.gates-page .gate-benefits p,
.doors-page .gate-benefits p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.gates-page .gate-note,
.doors-page .gate-note {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.gates-page .gate-picker__models article > div > small,
.doors-page .gate-picker__models article > div > small {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

.gates-page .gate-picker__models dt,
.doors-page .gate-picker__models dt {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
}

.gates-page .gate-picker__models dd,
.doors-page .gate-picker__models dd {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.gates-page .gate-picker__help p,
.doors-page .gate-picker__help p,
.automation-page .gate-picker__help p,
.loading-page .gate-picker__help p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.gates-page .industrial-gates article div > span,
.gates-page .industrial-choice span,
.doors-page .industrial-choice span {
  font-size: 12px;
  font-weight: 500;
}

.automation-page .automation-panel__intro h2 + p,
.loading-page .automation-panel__intro h2 + p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.automation-page .automation-panel__image span,
.loading-page .automation-panel__image span,
.automation-page .automation-panel__eyebrow,
.loading-page .automation-panel__eyebrow,
.automation-page .automation-model__top > span,
.loading-page .automation-model__top > span,
.automation-page .accessory-grid article > span,
.loading-page .accessory-grid article > span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.automation-page .automation-model__top p,
.loading-page .automation-model__top p,
.automation-page .automation-features p,
.loading-page .automation-features p,
.automation-page .accessory-grid p,
.loading-page .accessory-grid p,
.loading-page .loading-model__text,
.loading-page .loading-benefits p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.automation-page .automation-models dl > div,
.loading-page .automation-models dl > div {
  font-size: 13px;
  line-height: 1.5;
}

.automation-page .automation-models dt,
.loading-page .automation-models dt {
  font-weight: 500;
}

.automation-page .automation-specs span,
.loading-page .automation-specs span {
  font-size: 12px;
  font-weight: 500;
}

.automation-page .automation-specs p,
.loading-page .automation-specs p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.loading-page .loading-series span,
.loading-page .loading-benefits span,
.loading-page .loading-applications__grid span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.industrial-detail-page .detail-model-grid p,
.industrial-detail-page .detail-model-grid li {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

.industrial-detail-page .detail-model-grid article > span {
  font-size: 11px;
  font-weight: 500;
}

.industrial-detail-page .detail-note {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.industrial-detail-page .industrial-detail-nav a {
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 760px) {
  .products-page .products-hero__grid > p,
  .products-page .products-request__grid > div > p:not(.kicker),
  .gates-page .products-request__grid > div > p:not(.kicker),
  .doors-page .products-request__grid > div > p:not(.kicker),
  .automation-page .products-request__grid > div > p:not(.kicker),
  .loading-page .products-request__grid > div > p:not(.kicker),
  .industrial-detail-page .products-request__grid > div > p:not(.kicker),
  .gates-page .gate-picker__heading > p:last-child,
  .doors-page .gate-picker__heading > p:last-child,
  .gates-page .section-heading > p,
  .doors-page .section-heading > p,
  .automation-page .automation-catalog__heading > p:last-child,
  .loading-page .automation-catalog__heading > p:last-child,
  .loading-page .loading-applications__heading > p:last-child,
  .industrial-detail-page .industrial-detail-hero__grid p:not(.kicker) {
    font-size: 15px;
  }

  .automation-page .automation-panel__intro h2 + p,
  .loading-page .automation-panel__intro h2 + p {
    font-size: 15px;
  }
}

/* Message fields: fixed size and character counter */
textarea,
.contact-wide-form textarea {
  resize: none;
}

.textarea-counter {
  display: block;
  width: 100%;
  margin-top: 7px;
  color: #737b80;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-align: right;
}

/* Contacts form: align consent checkbox with the first text line */
.contacts-design-page .contact-form-bottom .check {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  align-items: start;
  column-gap: 8px;
}

.contacts-design-page .contact-form-bottom .check input {
  width: 17px;
  height: 17px;
  margin: 0;
}

/* Footer: working-hours icon */
.site-footer__hours img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .9;
}

/* Techprogress brand palette */
:root {
  --brand-blue: #003B70;
  --brand-blue-dark: #00294F;
  --brand-yellow: #F2B500;
  --ink: #00294F;
  --ink-2: #00294F;
  --orange: #F2B500;
  --orange-dark: #003B70;
  --paper: #F3F6F8;
  --line: #CFD9E1;
  --shadow: 0 12px 35px rgba(0, 41, 79, .1);
}

.header__wordmark b {
  padding-bottom: 4px;
  border-bottom: 3px solid var(--brand-yellow);
  color: var(--brand-blue);
}

.site-footer__logo {
  color: var(--brand-yellow);
}

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

.btn:hover {
  border-color: var(--brand-blue-dark);
  color: #fff;
  background: var(--brand-blue-dark);
  box-shadow: 0 10px 28px rgba(0, 59, 112, .22);
}

.btn--outline {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--brand-blue-dark);
  color: #fff;
  background: var(--brand-blue-dark);
}

.header__cta,
.services-section .btn,
.products-request .btn,
.contacts .btn,
.contact-request .btn,
.industrial-detail-hero .btn,
.industrial-gates .btn,
.site-footer__callback {
  border-color: var(--brand-yellow);
  color: var(--brand-blue-dark);
  background: var(--brand-yellow);
}

.header__cta:hover,
.services-section .btn:hover,
.products-request .btn:hover,
.contacts .btn:hover,
.contact-request .btn:hover,
.industrial-detail-hero .btn:hover,
.industrial-gates .btn:hover,
.site-footer__callback:hover {
  border-color: #fff;
  color: #fff;
  background: var(--brand-blue);
}

.services-section,
.solutions,
.contacts,
.products-request,
.industrial-gates,
.about-principles,
.contact-request,
.industrial-detail-hero,
.info-hero,
.contact-design-footer,
.automation-specs > div {
  background-color: var(--brand-blue-dark);
}

.industrial-detail-hero__grid,
.industrial-family__intro {
  background: var(--brand-blue);
}

.site-footer {
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 59, 112, .52), transparent 38%),
    radial-gradient(circle at 86% 55%, rgba(0, 59, 112, .38), transparent 38%),
    var(--brand-blue-dark);
}

.kicker,
.kicker--dark,
.legal-kicker,
.automation-panel__eyebrow,
.automation-model__top > span,
.accessory-grid article > span,
.loading-benefits span,
.loading-applications__grid span {
  color: var(--brand-blue);
}

.kicker span,
.nav a::after,
.mega-menu__heading::after,
.process-line article::before,
.automation-tab::after {
  background: var(--brand-yellow);
}

.services-section .kicker,
.solutions .kicker,
.contacts .kicker,
.products-request .kicker,
.industrial-gates .kicker,
.industrial-detail-hero .kicker,
.about-principles .kicker,
.contact-request .kicker {
  color: var(--brand-yellow);
}

.header .nav .is-current,
.automation-tab:hover,
.automation-tab.is-active,
.mega-menu__heading:hover,
.mega-menu__heading:focus-within {
  color: var(--brand-blue);
}

.tab.active {
  color: var(--brand-blue-dark);
  background: var(--brand-yellow);
}

.cookie-banner__content,
.legal-template-note {
  border-left-color: var(--brand-yellow);
}

.cookie-banner__details-button,
.cookie-banner__text a,
.check a:hover,
.legal-breadcrumbs a:hover,
.legal-nav a:hover {
  color: var(--brand-blue);
}

.cookie-banner__accept,
.contact-map-consent button {
  border-color: var(--brand-blue) !important;
  color: #fff;
  background: var(--brand-blue);
}

.cookie-banner__accept:hover,
.contact-map-consent button:hover {
  border-color: var(--brand-blue-dark) !important;
  color: #fff;
  background: var(--brand-blue-dark);
}

.scroll-top {
  background: var(--brand-blue-dark);
}

@media (max-width: 760px) {
  .mobile-actions a {
    color: #fff;
    background: var(--brand-blue);
  }

  .mobile-actions button {
    color: var(--brand-blue-dark);
    background: var(--brand-yellow);
  }
}
/* Контраст текста в тёмном блоке «Один подрядчик на весь цикл работ» */
.services-section {
  color: #fff;
}

.services-section .services-title h2,
.services-section .services-list h3 {
  color: #fff;
}

.services-section .services-list b {
  color: var(--brand-yellow);
}

.services-section .services-list p {
  color: #cfd9e1;
}

.services-section .services-list article {
  border-color: rgba(207, 217, 225, 0.35);
}

/* Contact page: recolor the legacy red phone/search and mail sprite */
.contacts-design-page .contact-main-icon img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(53%) saturate(2255%) hue-rotate(181deg) brightness(88%) contrast(105%);
  transition: filter 0.2s ease;
}

.contacts-design-page .contact-main-phone:hover .contact-main-icon img,
.contacts-design-page .contact-main-mail:hover .contact-main-icon img {
  filter: brightness(0) saturate(100%) invert(69%) sepia(98%) saturate(1083%) hue-rotate(359deg) brightness(98%) contrast(102%);
}

/* Home proof bar: compensate for different transparent margins inside PNG icons */
.home-page .proof-item .proof-icon {
  transform-origin: center;
}

.home-page .proof-item .proof-icon[src$="easy-installation.png"] {
  transform: scale(0.96);
}

.home-page .proof-item .proof-icon[src$="warranty.png"] {
  transform: scale(1.18);
}

@media (max-width: 760px) {
  .home-page .proof-bar__grid {
    grid-template-columns: 1fr;
  }

  .home-page .proof-item,
  .home-page .proof-bar article:first-child {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    column-gap: 17px;
    width: 100%;
    padding: 16px 15px;
  }

  .home-page .proof-item .proof-icon {
    grid-column: 1;
    justify-self: center;
  }

  .home-page .proof-item > div {
    grid-column: 2;
  }
}

/* Products directory: keep the entrance door as the focal point of the crop */
.products-page .directory-card#doors > img {
  object-position: 60% center;
}
