:root {
  --page-bg: #ffffff;
  --hero-max: 1110px;
  --font-sans: "Lato", sans-serif;
  --font-display: "Lato", sans-serif;
  --navy: #10192a;
  --gold: rgba(180, 128, 18, 0.58);
  --white: #ffffff;
}

@font-face {
  font-family: "Lato";
  src: url("/barkon/assets/fonts/lato.thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("/barkon/assets/fonts/lato.light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("/barkon/assets/fonts/lato.regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("/barkon/assets/fonts/lato.medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("/barkon/assets/fonts/lato.semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("/barkon/assets/fonts/lato.bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("/barkon/assets/fonts/lato.heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("/barkon/assets/fonts/lato.black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  font-family: var(--font-sans);
  color: #111111;
}

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

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

.home-top-focus {
  min-height: 100vh;
  background: #ffffff;
}

.page-home .hero-main,
.page-home .hero-second,
.page-home .why-cards-section,
.page-home .section-3b,
.page-home .timeline-section,
.page-home .partners-section,
.page-home .testimony-section,
.page-home .site-footer {
  width: 100%;
  max-width: none;
}

.hero-main {
  width: min(100%, var(--hero-max));
  margin: 0 auto;
  position: relative;
  aspect-ratio: 1110 / 553;
  min-height: auto;
  color: var(--white);
  background: url("/barkon/assets/images/bg_01.png") center top / 100% 100% no-repeat;
  overflow: hidden;
}

.hero-main__shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 112px), 1160px);
  margin: 0 auto;
}

.hero-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-top: 0;
  position: relative;
}

.hero-brand {
  display: inline-block;
}

.hero-brand img {
  width: 88px;
  height: auto;
  display: block;
  margin-top: 0;
}

.hero-main__title {
  font-family: "Barlow Condensed", sans-serif;
}

.hero-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 12px;
  flex-wrap: wrap;
}

.hero-nav a {
  position: relative;
  min-width: 156px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.18s ease;
  z-index: 0;
}

.hero-nav a::before {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -12px;
  right: -12px;
  background: url("/barkon/assets/images/bg_topmenu.png") center center / 100% 100% no-repeat;
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: -1;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  border: 0;
  padding: 0;
  background: transparent;
}

.hero-nav-toggle {
  width: 52px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border-radius: 12px;
  background: rgba(7, 15, 28, 0.68);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.hero-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.hero-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hero-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hero-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero-nav a:hover,
.hero-nav a:focus-visible,
.hero-nav a.is-active {
  color: #FFBF00;
}

.hero-nav a:hover::before,
.hero-nav a:focus-visible::before,
.hero-nav a.is-active::before {
  opacity: 1;
}

.about-page {
  background: #ffffff;
}

.page-about .about-hero,
.page-about .about-company,
.page-about .about-vision,
.page-about .about-mission,
.page-about .site-footer {
  width: 100%;
  max-width: none;
}

.about-hero {
  position: relative;
  width: min(100%, var(--hero-max));
  aspect-ratio: 1254 / 848;
  min-height: auto;
  margin: 0 auto;
  overflow: hidden;
  color: #ffffff;
  background: url("/barkon/assets/images/bg_aboutus1.png") center top / 100% 100% no-repeat;
}

.about-hero::before,
.about-hero::after {
  content: none;
}

.about-hero::before {
  width: 520px;
  height: 350px;
  left: 390px;
  bottom: -105px;
  clip-path: polygon(48% 0, 100% 100%, 0 100%);
}

.about-hero::after {
  width: 420px;
  height: 330px;
  right: -92px;
  bottom: -42px;
  clip-path: polygon(58% 0, 100% 100%, 0 100%);
}

.about-hero__shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 112px), 1160px);
  height: 100%;
  min-height: auto;
  margin: 0 auto;
}

.about-hero__header {
  position: relative;
  z-index: 2;
}

.about-hero__content {
  max-width: 650px;
  padding-top: 100px;
}

.about-hero__content h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4.4rem, 8vw, 6rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  font-weight: 500;
}

.about-hero__content p {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-hero__content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 38px;
  margin-top: 46px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: rgba(255, 255, 255, 0.88);
  padding: 0 18px;
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}

.about-company {
  position: relative;
  width: min(100%, var(--hero-max));
  aspect-ratio: 1461 / 720;
  margin: 0 auto;
  overflow: hidden;
  background: url("/barkon/assets/images/bg_aboutus2.png") center top / 100% 100% no-repeat;
}

.about-company::before {
  content: none;
}

.about-company__shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 80px), 900px);
  min-height: 100%;
  margin: 0 auto;
  padding: 64px 0 78px;
  text-align: center;
}

.about-company__shell h2,
.about-vision__copy h2,
.about-mission__shell h2 {
  margin: 0;
  color: #11173a;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

.about-company__shell h2 {
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.82;
}

.about-company__shell p {
  max-width: 580px;
  margin: 24px auto 0;
  color: #2f2f2f;
  font-size: 0.86rem;
  line-height: 1.65;
}

.about-company__description {
  font-size: 22px;
}

.about-company__description strong {
  display: block;
  font-size: 25px;
  font-weight: 700;
}

.about-company__description span {
  display: block;
  margin-top: 16px;
}

.about-vision {
  position: relative;
  width: min(100%, var(--hero-max));
  margin: 0 auto;
  aspect-ratio: 847 / 322;
  min-height: auto;
  overflow: hidden;
  background: url("/barkon/assets/images/bg_aboutus3b.png") center top / 100% 100% no-repeat;
}

.about-vision::before {
  content: none;
}

.about-vision__shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 90px), 1010px);
  min-height: 100%;
  margin: 0 auto;
}

.about-vision__copy {
  width: min(62%, 690px);
  min-height: 100%;
  padding-top: 118px;
  padding-right: 24px;
  padding-bottom: 26px;
  padding-left: 24px;
  background: rgba(255, 255, 255, 0.75);
}

.about-vision__copy h2 {
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  line-height: 0.9;
}

.about-vision__copy p {
  margin: 28px 0 0;
  color: #333333;
  font-size: 20px;
  line-height: 1.55;
}

.about-vision__copy p + p {
  margin-top: 10px;
}

.about-mission {
  width: min(100%, var(--hero-max));
  margin: 0 auto;
  aspect-ratio: 1223 / 864;
  min-height: auto;
  overflow: hidden;
  color: #ffffff;
  background: url("/barkon/assets/images/bg_aboutus4b.png") center top / 100% 100% no-repeat;
}

.about-mission__shell {
  position: relative;
  width: min(calc(100% - 90px), 1140px);
  margin: 0 auto;
  min-height: clamp(620px, 70vw, 780px);
  padding: 118px 0 40px;
  text-align: center;
}

.about-mission__shell h2 {
  color: #ffffff;
  font-size: clamp(3.4rem, 6vw, 5.1rem);
  line-height: 0.9;
  transform: translateY(16px);
}

.about-mission__cards {
  position: relative;
  min-height: clamp(470px, 48vw, 610px);
  margin-top: 48px;
}

.about-mission__card {
  position: absolute;
  width: 29%;
  min-height: 0;
  padding: 0 18px;
  background: transparent;
  backdrop-filter: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.14);
  text-align: center;
}

.about-mission__card:nth-child(1) {
  left: 4%;
  top: 402px;
}

.about-mission__card:nth-child(2) {
  left: 35.5%;
  top: 356px;
}

.about-mission__card:nth-child(3) {
  right: 4%;
  top: 308px;
}

.about-mission__card span {
  display: none;
}

.about-mission__card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 0.94rem;
  line-height: 1.35;
  font-weight: 700;
  text-transform: uppercase;
}

.about-mission__text-box {
  width: 100%;
  display: flex;
  justify-content: center;
}

.about-mission__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: calc(0.92rem + 3px);
  line-height: 1.4;
  font-weight: 700;
}

.about-mission__card:nth-child(1) h3 {
  font-size: calc(1rem + 3px);
}

.about-mission-sliced {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 72px;
  background: #ffffff;
}

.about-mission-sliced__shell {
  width: 100%;
  margin: 0 auto;
}

.about-mission-sliced__canvas h2 {
  position: absolute;
  left: 50%;
  top: calc(30.4398% - clamp(82px, 7vw, 112px));
  z-index: 3;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 5.1rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  transform: translateX(-50%);
}

.about-mission-sliced__canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 1223 / 864;
  overflow: hidden;
  background: #ffffff;
}

.about-mission-sliced__piece {
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.about-mission-sliced__piece--top {
  inset: 0 auto auto 0;
  width: 100%;
  height: 30.4398%;
  background-image: url("/barkon/assets/images/bg_aboutus4b_top.png");
}

.about-mission-sliced__piece--r1c1 {
  left: 0;
  top: 30.4398%;
  width: 9.812%;
  height: 69.5602%;
  background-image: url("/barkon/assets/images/bg_aboutus4b_r1_c1.png");
}

.about-mission-sliced__piece--r1c2 {
  left: 9.812%;
  top: 30.4398%;
  width: 26.574%;
  height: 37.1528%;
  background-image: url("/barkon/assets/images/bg_aboutus4b_r1_c2.png");
}

.about-mission-sliced__piece--r1c3 {
  left: 36.386%;
  top: 30.4398%;
  width: 26.3287%;
  height: 30.9028%;
  background-image: url("/barkon/assets/images/bg_aboutus4b_r1_c3.png");
}

.about-mission-sliced__piece--r1c4 {
  left: 62.7146%;
  top: 30.4398%;
  width: 26.7375%;
  height: 23.7269%;
  background-image: url("/barkon/assets/images/bg_aboutus4b_r1_c4.png");
}

.about-mission-sliced__piece--r1c5 {
  right: 0;
  top: 30.4398%;
  width: 10.5487%;
  height: 69.5602%;
  background-image: url("/barkon/assets/images/bg_aboutus4b_r1_c5.png");
}

.about-mission-sliced__piece--r2c4 {
  left: 62.7146%;
  top: 54.1667%;
  width: 26.7375%;
  height: 22.2222%;
  background-image: url("/barkon/assets/images/bg_aboutus4b_r2_c4.png");
}

.about-mission-sliced__piece--r3c3 {
  left: 36.386%;
  top: 61.3426%;
  width: 26.3287%;
  height: 22.4537%;
  background-image: url("/barkon/assets/images/bg_aboutus4b_r3_c3.png");
}

.about-mission-sliced__piece--r4c2 {
  left: 9.812%;
  top: 67.5926%;
  width: 26.574%;
  height: 21.7593%;
  background-image: url("/barkon/assets/images/bg_aboutus4b_r4_c2.png");
}

.about-mission-sliced__piece--r5c4 {
  left: 62.7146%;
  top: 76.3889%;
  width: 26.7375%;
  height: 23.6111%;
  background-image: url("/barkon/assets/images/bg_aboutus4b_r5_c4.png");
}

.about-mission-sliced__piece--r6c3 {
  left: 36.386%;
  top: 83.7963%;
  width: 26.3287%;
  height: 16.2037%;
  background-image: url("/barkon/assets/images/bg_aboutus4b_r6_c3.png");
}

.about-mission-sliced__piece--r7c2 {
  left: 9.812%;
  top: 89.3519%;
  width: 26.574%;
  height: 10.6481%;
  background-image: url("/barkon/assets/images/bg_aboutus4b_r7_c2.png");
}

.about-mission-sliced__text {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.about-mission-sliced__text p {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 1.06rem;
  line-height: 1.32;
  font-weight: 700;
  text-wrap: balance;
}

.about-mission-sliced__text--left {
  left: 9.812%;
  top: 67.5926%;
  width: 26.574%;
  height: 21.7593%;
  padding: 22px 60px 16px;
}

.about-mission-sliced__text--middle {
  left: 36.386%;
  top: 61.3426%;
  width: 26.3287%;
  height: 22.4537%;
  padding: 16px 64px 16px;
}

.about-mission-sliced__text--right {
  left: 62.7146%;
  top: 54.1667%;
  width: 26.7375%;
  height: 22.2222%;
  padding: 12px 52px 14px;
}

@media (min-width: 981px) and (max-width: 1440px) {
  .about-mission-sliced__canvas h2 {
    top: calc(30.4398% - 96px);
  }

  .about-mission-sliced__text p {
    font-size: calc(1.06rem + 1px);
    line-height: 1.28;
  }

  .about-mission-sliced__text--left {
    padding: 26px 62px 18px;
  }

  .about-mission-sliced__text--middle {
    padding: 20px 66px 18px;
  }

  .about-mission-sliced__text--right {
    padding: 16px 56px 18px;
  }
}

@media (max-width: 980px) {
  .about-mission-sliced {
    padding: 32px 0 56px;
  }

  .about-mission-sliced__shell {
    width: min(calc(100% - 40px), 920px);
  }

  .about-mission-sliced__canvas h2 {
    top: calc(30.4398% - 68px);
    font-size: clamp(2.7rem, 7vw, 4rem);
  }

  .about-mission-sliced__text p {
    font-size: clamp(0.82rem, 1.7vw, 1rem);
    line-height: 1.24;
  }

  .about-mission-sliced__text--left {
    padding: 16px 40px 12px;
  }

  .about-mission-sliced__text--middle {
    padding: 12px 42px 12px;
  }

  .about-mission-sliced__text--right {
    padding: 10px 36px 12px;
  }
}

@media (max-width: 640px) {
  .about-mission-sliced {
    padding: 24px 0 44px;
  }

  .about-mission-sliced__shell {
    width: min(calc(100% - 18px), 560px);
  }

  .about-mission-sliced__canvas h2 {
    top: calc(30.4398% - 44px);
    font-size: clamp(1.9rem, 9vw, 2.9rem);
  }

  .about-mission-sliced__text p {
    font-size: clamp(0.62rem, 2.35vw, 0.82rem);
    line-height: 1.18;
  }

  .about-mission-sliced__text--left {
    padding: 8px 20px 8px;
  }

  .about-mission-sliced__text--middle {
    padding: 8px 22px 8px;
  }

  .about-mission-sliced__text--right {
    padding: 6px 18px 8px;
  }
}

.page-about .hero-nav a,
.page-about .about-hero__content p,
.page-about .about-hero__content a,
.page-about .about-company__shell p,
.page-about .about-vision__copy p,
.page-about .about-mission__card p {
  font-family: var(--font-sans);
}

.page-about .about-hero__content h1,
.page-about .about-company__shell h2,
.page-about .about-vision__copy h2,
.page-about .about-mission__shell h2 {
  font-family: var(--font-display);
  font-weight: 400;
}

.page-about .about-mission__card h3 {
  font-family: var(--font-display);
  font-weight: 700;
}

.subpage {
  background: #ffffff;
}

.sub-hero {
  width: min(100%, var(--hero-max));
  min-height: 510px;
  margin: 0 auto;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(90deg, rgba(10, 20, 33, 0.72), rgba(10, 20, 33, 0.28)),
    var(--sub-hero-image) center / cover no-repeat;
}

.sub-hero::before,
.sub-hero::after {
  content: "";
  position: absolute;
  bottom: -110px;
  width: 430px;
  height: 350px;
  background: rgba(185, 131, 17, 0.58);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.sub-hero::before {
  left: 28%;
}

.sub-hero::after {
  right: -130px;
}

.services-hero,
.services-brief,
.services-solution {
  width: min(100%, var(--hero-max));
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.page-services .services-hero,
.page-services .services-brief,
.page-services .services-solution,
.page-services .site-footer {
  width: 100%;
  max-width: none;
}

.services-hero {
  aspect-ratio: 1256 / 848;
  color: #ffffff;
  background: url("/barkon/assets/images/bg_services1.png") center top / 100% 100% no-repeat;
}

.services-hero__shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 112px), 1160px);
  height: 100%;
  margin: 0 auto;
}

.services-hero__content {
  max-width: 500px;
  padding-top: 98px;
}

.services-hero__content h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4.8rem, 8.4vw, 6.5rem);
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  font-weight: 500;
}

.services-hero__content p {
  max-width: 320px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-hero__content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 38px;
  margin-top: 34px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}

.services-brief {
  margin-top: -1px;
  aspect-ratio: 1132 / 343;
  background: url("/barkon/assets/images/bg_services2b.png") center top / 100% 100% no-repeat;
}

.services-brief__copy {
  position: absolute;
  left: 9%;
  top: 22%;
  width: min(30%, 330px);
  color: #10192a;
}

.services-brief__copy h2,
.services-solution h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.2rem, 5.8vw, 5rem);
  line-height: 0.85;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  font-weight: 500;
}

.services-brief__copy p {
  margin: 22px 0 0;
  color: #1d2330;
  font-size: calc(0.84rem + 2px);
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.services-solution {
  margin-top: -1px;
  color: #ffffff;
}

.services-solution--one {
  aspect-ratio: 1330 / 784;
  background: url("/barkon/assets/images/bg_services3.png") center top / 100% 100% no-repeat;
}

.services-solution--two {
  aspect-ratio: 1233 / 864;
  background: url("/barkon/assets/images/bg_services4.png") center top / 100% 100% no-repeat;
}

.services-solution--three {
  aspect-ratio: 1772 / 592;
  background: url("/barkon/assets/images/bg_services5.png") center top / 100% 100% no-repeat;
}

.services-solution-grid {
  min-height: 0;
  padding: 156px 0 24px;
  background: url("/barkon/assets/images/bg_services3c.png") center top / 100% 100% no-repeat;
}

.services-solution-grid__shell {
  width: min(calc(100% - 112px), 1100px);
  margin: 0 auto;
}

.services-solution-grid h2 {
  position: static;
  width: max-content;
  margin: 0 0 48px auto;
  text-align: right;
}

.services-solution-grid__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 550px));
  justify-content: center;
  gap: 0;
}

.services-solution-slider {
  position: relative;
}

.services-solution-slider__viewport {
  position: relative;
}

.services-solution-slider [data-services-solution-page] {
  display: none;
}

.services-solution-slider [data-services-solution-page].is-active {
  display: grid;
}

.services-solution-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #d8992f;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.services-solution-slider__arrow span {
  font-size: 2.4rem;
  line-height: 1;
}

.services-solution-slider__arrow--prev {
  left: -26px;
}

.services-solution-slider__arrow--next {
  right: -26px;
}

.services-solution-box {
  position: relative;
  width: 100%;
  aspect-ratio: 550 / 400;
  overflow: hidden;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.services-solution-box__content {
  position: absolute;
  inset: 78px 76px 30px 76px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #ffffff;
  font-family: var(--font-sans);
  text-align: right;
}

.services-solution-box__content h3 {
  margin: 0 0 20px;
  color: #39b8d6;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.services-solution-box__section {
  width: 100%;
}

.services-solution-box__section + .services-solution-box__section {
  margin-top: 20px;
}

.services-solution-box__section h4 {
  margin: 0 0 8px;
  color: #39b8d6;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.services-solution-box__section p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .08em;
  text-align: justify;
  text-align-last: left;
  hyphens: none;
}

.services-solution-box--partition .services-solution-box__content {
  inset: 116px 76px 46px 76px;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.services-solution-box--partition .services-solution-box__content h3 {
  margin: 0 0 28px;
  text-align: left;
}

.services-solution-box--partition .services-solution-box__section p {
  max-width: 100%;
  text-align: justify;
  text-align-last: left;
}

.services-solution-box--renovation .services-solution-box__content {
  inset: 98px 76px 46px 76px;
}

.services-solution-box--renovation .services-solution-box__content h3 {
  margin: 0 0 34px;
}

.services-solution-box--flooring .services-solution-box__content {
  inset: 96px 76px 46px 76px;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.services-solution-box--flooring .services-solution-box__content h3 {
  margin: 0 0 28px;
  text-align: left;
}

.services-solution-box--flooring .services-solution-box__section p {
  max-width: 100%;
  text-align: justify;
  text-align-last: left;
}

.services-solution-card {
  min-height: 276px;
  padding: 30px 34px;
  border: 1px solid rgba(57, 184, 214, 0.58);
  background: rgba(9, 22, 34, 0.62);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
  color: #ffffff;
}

.services-solution-card--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
}

.services-solution-card--partition {
  text-align: left;
}

.services-solution-card--image {
  position: relative;
  padding: 0;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.services-solution-card--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 30, 0.16);
}

.services-solution-card--image-roofing {
  background-image: url("/barkon/assets/images/bg_services3.png");
  background-position: 73% 67%;
}

.services-solution-card--image-partition {
  background-image: url("/barkon/assets/images/bg_services4.png");
  background-position: 28% 42%;
}

.services-solution-card--image-renovation {
  background-image: url("/barkon/assets/images/bg_services5.png");
  background-position: 58% 48%;
}

.services-solution-card__icon {
  position: relative;
  width: 54px;
  height: 48px;
  display: inline-block;
  align-self: flex-end;
  margin-bottom: 16px;
  color: #39b8d6;
}

.services-solution-card--partition .services-solution-card__icon {
  align-self: flex-start;
}

.services-solution-card__icon::before,
.services-solution-card__icon::after {
  content: "";
  position: absolute;
  display: block;
}

.services-solution-card__icon--roof::before {
  left: 4px;
  top: 18px;
  width: 42px;
  height: 25px;
  border: 2px solid currentColor;
  border-top: 0;
}

.services-solution-card__icon--roof::after {
  left: 5px;
  top: 5px;
  width: 38px;
  height: 38px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.services-solution-card__icon--ceiling::before {
  inset: 5px 4px;
  border: 2px solid currentColor;
}

.services-solution-card__icon--ceiling::after {
  left: 16px;
  top: 5px;
  width: 18px;
  height: 38px;
  border-right: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.services-solution-card__icon--renovation::before {
  left: 8px;
  top: 27px;
  width: 38px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.services-solution-card__icon--renovation::after {
  left: 20px;
  top: 6px;
  width: 14px;
  height: 28px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.services-solution-card h3 {
  margin: 0;
  color: #39b8d6;
  font-family: var(--font-sans);
  font-size: 17.5px;
  line-height: 1.12;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.services-solution-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.services-solution-card .services-solution__detail h4 {
  font-size: 15px;
}

.services-solution-card--roofing {
  min-height: 300px;
  border: 0;
  background-color: rgba(9, 22, 34, 0.62);
  background-image: url("/barkon/assets/images/box_left_1.png");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-align: right;
}

.services-solution-card--roofing .services-solution-card__icon {
  display: none;
}

.services-solution h2 {
  position: absolute;
  top: -1%;
  right: 8%;
  text-align: right;
  color: #ffffff;
  font-size: clamp(3.2rem, 5.2vw, 4.65rem);
}

.services-solution-grid h2 {
  position: static;
  width: max-content;
  margin: 0 0 48px auto;
  text-align: right;
}

.services-solution__copy {
  position: absolute;
  color: #ffffff;
  text-align: center;
}

.services-solution__copy h3 {
  margin: 0;
  color: #39b8d6;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.services-solution__detail {
  margin-top: 14px;
}

.services-solution__detail h4 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.services-solution__copy p {
  margin: 6px auto 0;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.78rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.services-solution__copy--roofing {
  top: 46%;
  left: 10.8%;
  width: 30%;
  text-align: right;
}

.services-solution__copy--roofing h3 {
  font-size: 17.5px;
}

.services-solution__copy--roofing .services-solution__detail h4 {
  font-size: 15px;
}

.services-solution__copy--roofing p {
  font-size: 14px;
}

.services-solution__copy--partition {
  top: 19%;
  right: 11.5%;
  width: 30%;
  text-align: center;
}

.services-solution__copy--renovation {
  top: 62%;
  left: 10.5%;
  width: 31%;
}

.services-solution__copy--flooring {
  top: 34%;
  right: 11.5%;
  width: 29%;
}

.page-services .hero-nav a,
.page-services .services-hero__content p,
.page-services .services-hero__content a,
.page-services .services-brief__copy p,
.page-services .services-solution__copy p,
.page-services .site-footer__contact-row p,
.page-services .site-footer__contact-row a,
.page-services .site-footer__group li,
.page-services .site-footer__group li a {
  font-family: var(--font-sans);
}

.page-services .services-hero__content h1,
.page-services .services-brief__copy h2,
.page-services .services-solution h2 {
  font-family: var(--font-display);
  font-weight: 400;
}

.page-services .services-solution__copy h3,
.page-services .site-footer__info h2,
.page-services .site-footer__company h2 {
  font-family: var(--font-display);
  font-weight: 700;
}

.project-hero,
.project-tagline,
.project-slider {
  width: min(100%, var(--hero-max));
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.page-project .project-hero,
.page-project .project-tagline,
.page-project .project-slider,
.page-project .site-footer {
  width: 100%;
  max-width: none;
}

.project-hero {
  aspect-ratio: 1255 / 848;
  color: #ffffff;
  background: url("/barkon/assets/images/bg_project1.png") center top / 100% 100% no-repeat;
}

.project-hero__shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 112px), 1160px);
  height: 100%;
  margin: 0 auto;
}

.project-hero__content {
  max-width: 650px;
  padding-top: 98px;
}

.project-hero__content h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4.8rem, 8.4vw, 6.5rem);
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  font-weight: 500;
}

.project-hero__content p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.18;
  letter-spacing: 0.04em;
  text-transform: none;
}

.project-tagline {
  margin-top: -1px;
  aspect-ratio: 847 / 147;
  display: grid;
  place-items: center;
  background: url("/barkon/assets/images/bg_project2.png") center top / 100% 100% no-repeat;
}

.project-tagline p {
  margin: 0;
  color: #5a626d;
  font-size: clamp(1.2rem, 2.4vw, 2.05rem);
  line-height: 1.35;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
}

.project-tagline strong {
  color: #e5943b;
  font-weight: 400;
}

.project-slider {
  margin-top: -1px;
  aspect-ratio: 850 / 400;
  background: linear-gradient(180deg, #ffffff 0 46.2%, #2f3f4c 46.2% 100%);
}

.project-slider__viewport {
  position: absolute;
  inset: 0;
}

.project-slider__active {
  position: absolute;
  top: 13.8%;
  left: 22.9%;
  z-index: 2;
  width: 52.7%;
  height: 64.4%;
  display: grid;
  grid-template-columns: 47.3% 1fr;
  background: #ffffff;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.project-slider__active::after,
.project-slider__preview::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 5.2%;
  height: 100%;
  background: #f0a247;
}

.project-slider__image,
.project-slider__preview {
  margin: 0;
  overflow: hidden;
}

.project-slider__image img,
.project-slider__preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-slider__content {
  padding: 11.5% 13.5% 8% 9%;
  color: #69717a;
}

.project-slider__content h3 {
  margin: 0;
  color: #69717a;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.35vw, 2.3rem);
  line-height: 0.84;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  font-weight: 300;
}

.project-slider__location {
  margin: 2.5% 0 14%;
  color: #69717a;
  font-size: clamp(0.68rem, 1.05vw, 0.94rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-slider__content p:not(.project-slider__location) {
  margin: 0;
  max-width: 96%;
  color: #69717a;
  font-size: clamp(0.58rem, 0.91vw, 0.82rem);
  line-height: 1.23;
  letter-spacing: 0.05em;
  text-align: justify;
}

.project-slider__preview {
  position: absolute;
  top: 22.8%;
  z-index: 1;
  width: 23.9%;
  height: 46.2%;
  filter: grayscale(1);
  opacity: 0.82;
}

.project-slider__preview--prev {
  left: 6.6%;
}

.project-slider__preview--next {
  right: 6.6%;
}

.project-slider__preview--prev::after {
  right: auto;
  left: 0;
}

.project-slider__arrow {
  position: absolute;
  top: 35.8%;
  z-index: 3;
  width: 7%;
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.project-slider__arrow::before {
  content: "";
  position: absolute;
  top: 16%;
  width: 42%;
  height: 42%;
  border-color: rgba(255, 255, 255, 0.78);
  border-style: solid;
  border-width: clamp(10px, 1.35vw, 20px) clamp(10px, 1.35vw, 20px) 0 0;
}

.project-slider__arrow--prev {
  left: 11.5%;
}

.project-slider__arrow--prev::before {
  left: 36%;
  transform: rotate(-135deg);
}

.project-slider__arrow--next {
  right: 11.5%;
}

.project-slider__arrow--next::before {
  right: 36%;
  transform: rotate(45deg);
}

.page-project .hero-nav a,
.page-project .project-hero__content p,
.page-project .project-tagline p,
.page-project .project-slider__content p,
.page-project .site-footer__contact-row p,
.page-project .site-footer__contact-row a,
.page-project .site-footer__group li,
.page-project .site-footer__group li a {
  font-family: var(--font-sans);
}

.page-project .project-hero__content h1,
.page-project .project-slider__content h3 {
  font-family: var(--font-display);
}

.page-project .site-footer__info h2,
.page-project .site-footer__company h2 {
  font-family: var(--font-display);
  font-weight: 700;
}

.contact-hero,
.contact-main,
.contact-info-strip {
  width: min(100%, var(--hero-max));
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.contact-hero {
  aspect-ratio: 1251 / 848;
  color: #ffffff;
  background: url("/barkon/assets/images/bg_contact1.png") center top / 100% 100% no-repeat;
}

.contact-hero__shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 112px), 1160px);
  height: 100%;
  margin: 0 auto;
}

.contact-hero__content {
  max-width: 430px;
  padding-top: 100px;
}

.contact-hero__content h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4.8rem, 8.2vw, 6.35rem);
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  font-weight: 500;
}

.contact-hero__content p {
  max-width: 330px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  line-height: 1.08;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-main {
  margin-top: -1px;
  aspect-ratio: 1026 / 1024;
  background: url("/barkon/assets/images/bg_contact2.png") center top / 100% 100% no-repeat;
}

.contact-main__shell {
  position: relative;
  width: min(calc(100% - 80px), 980px);
  height: 100%;
  margin: 0 auto;
}

.contact-location {
  position: absolute;
  top: 12%;
  left: 0;
  width: 37%;
}

.contact-location h2 {
  margin: 0;
  color: #11173a;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.84;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  font-weight: 500;
}

.contact-location__photo {
  margin-top: 26px;
  width: min(100%, 315px);
  aspect-ratio: 315 / 235;
  background:
    linear-gradient(rgba(10, 20, 33, 0.08), rgba(10, 20, 33, 0.08)),
    url("/barkon/assets/images/home-hero-clean.jpg") center / cover no-repeat;
  box-shadow: 0 12px 26px rgba(16, 25, 42, 0.16);
}

.contact-main__form {
  position: absolute;
  top: 8%;
  right: 0;
  width: min(46%, 430px);
  gap: 8px;
  padding: 30px 28px 24px;
  background: rgba(240, 240, 240, 0.92);
  box-shadow: 0 12px 28px rgba(16, 25, 42, 0.13);
}

.contact-main__form h2 {
  margin: 0 0 12px;
  color: #1e5a80;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.contact-main__form p {
  margin: 0 0 8px;
  color: #7a7a7a;
  font-size: 0.7rem;
  line-height: 1.5;
}

.contact-main__form label {
  gap: 0;
  font-size: 0;
  letter-spacing: 0;
}

.contact-main__form input,
.contact-main__form textarea {
  min-height: 24px;
  padding: 6px 10px;
  color: #11173a;
  font-size: 0.7rem;
  resize: none;
}

.contact-main__form textarea {
  min-height: 72px;
}

.contact-main__captcha {
  min-height: 54px;
  margin: 6px 0 2px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #777777;
  font-size: 0.7rem;
}

.contact-main__captcha span {
  width: 18px;
  height: 18px;
  display: inline-block;
  border: 1px solid #9a9a9a;
  background: #ffffff;
}

.contact-main__captcha p {
  margin: 0;
}

.contact-main__form button {
  justify-self: stretch;
  min-height: 26px;
  padding: 7px 18px;
  background: #e2a23c;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
}

.contact-main__map {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8%;
  height: 15.5%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(16, 25, 42, 0.18);
}

.contact-main__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.82) contrast(0.95);
}

.contact-info-strip {
  margin-top: -1px;
  background: #0e5468;
  color: #ffffff;
}

.contact-info-strip__shell {
  width: min(calc(100% - 80px), 980px);
  margin: 0 auto;
  min-height: 105px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.25fr;
  gap: 40px;
  align-items: center;
}

.contact-info-strip__item {
  position: relative;
  padding-left: 24px;
}

.contact-info-strip__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  background: #37b8d7;
  clip-path: polygon(50% 0, 100% 38%, 82% 100%, 18% 100%, 0 38%);
}

.contact-info-strip__item span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.contact-info-strip__item h2 {
  margin: 2px 0 4px;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 500;
}

.contact-info-strip__item p {
  margin: 0;
  color: #ffffff;
  font-size: 0.72rem;
  line-height: 1.45;
}

.sub-hero--services {
  --sub-hero-image: url("/barkon/assets/images/background_main_top.png");
}

.sub-hero--project {
  --sub-hero-image: url("/barkon/assets/images/bg_section4.png");
}

.sub-hero--carrier {
  --sub-hero-image: url("/barkon/assets/images/bg_carrier1.png");
  aspect-ratio: 1254 / 848;
  min-height: auto;
  background: var(--sub-hero-image) center top / 100% 100% no-repeat;
}

.sub-hero--carrier::before,
.sub-hero--carrier::after {
  content: none;
}

.sub-hero--carrier .sub-hero__shell {
  min-height: auto;
  height: 100%;
}

.sub-hero--carrier .sub-hero__content {
  max-width: 560px;
  padding-top: 88px;
}

.sub-hero--carrier .sub-hero__content h1 {
  font-size: clamp(4.2rem, 8.6vw, 6.1rem);
}

.sub-hero--carrier .sub-hero__content p {
  margin-top: 14px;
  max-width: none;
  font-size: clamp(1.05rem, 1.65vw, 1.45rem);
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.sub-hero--contact {
  --sub-hero-image: url("/barkon/assets/images/background_main_top.png");
}

.sub-hero__shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 112px), 1160px);
  min-height: 510px;
  margin: 0 auto;
}

.sub-hero__content {
  max-width: 450px;
  padding-top: 104px;
}

.sub-hero__content h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4.6rem, 8vw, 6.25rem);
  line-height: 0.86;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.sub-hero__content p {
  margin: 28px 0 0;
  max-width: 390px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.services-intro,
.services-grid-section,
.project-showcase,
.career-section,
.contact-section {
  width: min(100%, var(--hero-max));
  margin: 0 auto;
  background: #ffffff;
}

.services-intro__shell,
.project-showcase__shell,
.career-section__shell,
.contact-section__shell {
  width: min(calc(100% - 76px), 960px);
  margin: 0 auto;
}

.services-intro__shell {
  padding: 64px 0 36px;
  text-align: center;
}

.services-intro__shell p,
.career-copy > p {
  margin: 0 0 14px;
  color: #d99b1e;
  font-size: 0.86rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.services-intro__shell h2,
.project-showcase__shell h2,
.career-copy h2,
.contact-panel h2 {
  margin: 0;
  color: #11173a;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.2rem, 6vw, 5rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.services-grid {
  width: min(calc(100% - 76px), 980px);
  margin: 0 auto;
  padding: 28px 0 86px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 22px;
  color: #ffffff;
  background: #c99010;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(222, 160, 0, 0.18), rgba(23, 31, 39, 0.5));
  z-index: 1;
}

.service-card img,
.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 0.98;
  text-transform: uppercase;
  font-weight: 500;
}

.project-showcase__shell {
  padding: 72px 0 88px;
}

.project-showcase__shell h2 {
  text-align: center;
}

.project-list {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: #ffffff;
  background: #182333;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 25, 42, 0.12), rgba(16, 25, 42, 0.74));
  z-index: 1;
}

.project-card > div {
  position: relative;
  z-index: 2;
  padding: 26px;
}

.project-card p {
  margin: 0 0 8px;
  color: #ffbf00;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.35rem;
  line-height: 0.96;
  font-weight: 500;
  text-transform: uppercase;
}

.career-section__shell,
.contact-section__shell {
  padding: 76px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}

.career-copy ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.career-copy li {
  margin-top: 12px;
  color: #59616b;
  font-size: 0.95rem;
}

.career-copy li::before {
  content: "• ";
  color: #d99b1e;
  font-size: 1.2rem;
}

.career-form,
.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: #f2f2f2;
}

.career-form label,
.contact-form label {
  display: grid;
  gap: 7px;
  color: #405060;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.career-form input,
.career-form textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  padding: 13px 14px;
  color: #11173a;
  font: inherit;
  background: #ffffff;
}

.career-form button,
.contact-form button {
  justify-self: start;
  border: 0;
  padding: 13px 26px;
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #d99b1e;
}

.contact-hero,
.contact-main,
.contact-info-strip {
  width: min(100%, var(--hero-max));
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.contact-hero {
  aspect-ratio: 1251 / 848;
  color: #ffffff;
  background: url("/barkon/assets/images/bg_contact1.png") center top / 100% 100% no-repeat;
}

.contact-hero__shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 112px), 1160px);
  height: 100%;
  margin: 0 auto;
}

.contact-hero__content {
  max-width: 440px;
  padding-top: 118px;
}

.contact-hero__content h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(5rem, 9vw, 7.1rem);
  line-height: 0.86;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.contact-hero__content p {
  margin: 26px 0 0;
  max-width: 370px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.contact-main {
  margin-top: -1px;
  aspect-ratio: 1026 / 1024;
  background: url("/barkon/assets/images/bg_contact2.png") center top / 100% 100% no-repeat;
}

.contact-main__shell {
  position: relative;
  width: min(calc(100% - 90px), 980px);
  height: 100%;
  margin: 0 auto;
}

.contact-location {
  position: absolute;
  top: 10.2%;
  left: 0;
  width: 42%;
  color: #11172c;
}

.contact-location h2 {
  margin: 0;
  color: #10192a;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.25rem, 6vw, 4.9rem);
  line-height: 0.84;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.contact-location__photo {
  width: min(100%, 318px);
  aspect-ratio: 318 / 258;
  margin-top: 30px;
  background: url("/barkon/assets/images/contact-office-photo.jpeg") center / cover no-repeat;
  box-shadow: 0 14px 28px rgba(16, 25, 42, 0.16);
}

.contact-main__form {
  position: absolute;
  top: 8.4%;
  right: 0;
  width: min(42.5%, 420px);
  display: block;
  gap: 0;
  padding: 28px 30px 24px;
  background: rgba(247, 247, 247, 0.94);
  box-shadow: 0 16px 34px rgba(16, 25, 42, 0.16);
}

.contact-main__form h2 {
  margin: 0;
  color: #1f7b9a;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 4.3vw, 3.75rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-align: right;
  text-transform: uppercase;
  font-weight: 500;
}

.contact-main__form > p {
  width: 78%;
  margin: 14px 0 18px auto;
  color: #68717c;
  font-size: 0.68rem;
  line-height: 1.45;
  text-align: right;
}

.contact-main__form label {
  display: block;
  margin-top: 8px;
  font-size: 0;
}

.contact-main__form input,
.contact-main__form textarea {
  width: 100%;
  border: 1px solid rgba(16, 25, 42, 0.12);
  padding: 8px 10px;
  color: #11173a;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  line-height: 1.35;
  background: #ffffff;
}

.contact-main__form textarea {
  min-height: 98px;
  resize: vertical;
}

.contact-main__captcha {
  margin-top: 12px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(16, 25, 42, 0.12);
  background: #ffffff;
}

.contact-main__captcha span {
  width: 17px;
  height: 17px;
  border: 2px solid #b4b9c0;
  display: block;
}

.contact-main__captcha p {
  margin: 0;
  color: #4f5965;
  font-size: 0.72rem;
  line-height: 1.3;
}

.contact-main__form button {
  width: 100%;
  margin-top: 12px;
  border: 0;
  padding: 11px 20px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: #d99b1e;
  cursor: pointer;
}

.contact-main__map {
  position: absolute;
  right: 0;
  bottom: 5.8%;
  left: 0;
  width: 92%;
  height: 18%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 14px 32px rgba(16, 25, 42, 0.18);
}

.contact-main__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(0.82) contrast(0.95);
}

.contact-info-strip {
  margin-top: -1px;
  background: #154e62;
}

.contact-info-strip__shell {
  width: min(calc(100% - 90px), 980px);
  min-height: 118px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr;
  gap: 44px;
  align-items: center;
}

.contact-info-strip__item {
  position: relative;
  min-height: 56px;
  padding-left: 30px;
  color: #ffffff;
}

.contact-info-strip__item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  background: #39b7d7;
  mask: radial-gradient(circle at 50% 38%, transparent 0 3px, #000 3.4px) center / 100% 100%;
  opacity: 0.95;
}

.contact-info-strip__item--phone::before {
  border-radius: 3px 3px 8px 8px;
  transform: rotate(-36deg);
}

.contact-info-strip__item--email::before {
  mask: none;
  width: 18px;
  height: 13px;
  border: 2px solid #39b7d7;
  background:
    linear-gradient(135deg, transparent 45%, #39b7d7 45% 55%, transparent 55%) center / 100% 100% no-repeat;
}

.contact-info-strip__item span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: none;
}

.contact-info-strip__item h2 {
  margin: 2px 0 5px;
  color: #3fc7e3;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.38rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.contact-info-strip__item p,
.contact-info-strip__item a {
  margin: 0;
  color: #ffffff;
  font-size: 0.72rem;
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.page-contact .contact-hero,
.page-contact .contact-main,
.page-contact .contact-info-strip,
.page-contact .site-footer {
  width: 100%;
  max-width: none;
}

.page-contact .contact-hero__shell {
  width: min(calc(100% - 112px), 1160px);
}

.page-contact .contact-hero__content {
  max-width: 510px;
  padding-top: 214px;
}

.page-contact .contact-hero__content h1 {
  font-size: clamp(6.5rem, 9.25vw, 7.25rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
}

.page-contact .contact-hero__content p {
  max-width: 430px;
  margin-top: 34px;
  font-size: clamp(1.1rem, 1.9vw, 1.42rem);
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: none;
}

.page-contact .contact-main__shell {
  width: min(calc(100% - 260px), 1038px);
}

.page-contact .contact-location {
  top: 10.9%;
  left: 0;
  width: 42%;
}

.page-contact .contact-location h2 {
  font-size: clamp(4.65rem, 7.2vw, 5.95rem);
  line-height: 0.73;
  letter-spacing: -0.055em;
}

.page-contact .contact-location__photo {
  width: min(100%, 421px);
  aspect-ratio: 421 / 510;
  margin-top: 34px;
  background-position: 50% 50%;
  box-shadow: 0 13px 24px rgba(16, 25, 42, 0.18);
}

.page-contact .contact-main__form {
  top: 4.2%;
  right: 0;
  width: min(54.45%, 565px);
  min-height: 66.5%;
  padding: 78px 22px 35px;
  background: rgba(240, 240, 240, 0.96);
  border-radius: 9px;
  box-shadow: 0 6px 10px rgba(16, 25, 42, 0.18);
}

.page-contact .contact-main__form h2 {
  margin: 0 0 16px;
  color: #1f7b9a;
  font-size: 1.78rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-align: right;
  font-weight: 700;
}

.page-contact .contact-main__form > p {
  width: 100%;
  margin: 0 0 14px;
  color: #777777;
  font-size: 0.95rem;
  line-height: 1.55;
  letter-spacing: 0.08em;
  text-align: right;
}

.page-contact .contact-main__form label {
  margin-top: 7px;
}

.page-contact .contact-main__form input,
.page-contact .contact-main__form textarea {
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  padding: 13px 22px;
  color: #777777;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  background: #ffffff;
}

.page-contact .contact-main__form textarea {
  min-height: 96px;
  resize: none;
}

.page-contact .contact-main__captcha {
  width: min(70.5%, 366px);
  min-height: 86px;
  margin: 18px 0 14px auto;
  justify-content: flex-start;
  gap: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(16, 25, 42, 0.18);
  background: #ffffff;
}

.page-contact .contact-main__captcha-box {
  width: 34px;
  height: 34px;
  border: 2px solid #2f2f2f;
}

.page-contact .contact-main__captcha p {
  flex: 1 1 auto;
  color: #777777;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.page-contact .contact-main__captcha strong {
  display: grid;
  min-width: 86px;
  color: #777777;
  font-size: 0.72rem;
  line-height: 1.05;
  text-align: center;
  font-weight: 600;
}

.page-contact .contact-main__captcha strong::before {
  content: "";
  width: 39px;
  height: 34px;
  margin: 0 auto 5px;
  display: block;
  border-radius: 50%;
  background:
    conic-gradient(from 45deg, #4d8df7 0 45%, transparent 45% 62%, #4d8df7 62% 100%);
}

.page-contact .contact-main__captcha small {
  display: block;
  margin-top: 3px;
  font-size: 0.56rem;
  font-weight: 500;
}

.page-contact .contact-main__form button {
  width: min(70.5%, 366px);
  min-height: 34px;
  margin: 0 0 0 auto;
  display: block;
  border-radius: 4px;
  padding: 7px 18px;
  font-size: 1rem;
  letter-spacing: 0.12em;
  background: #e8a044;
}

.page-contact .contact-main__map {
  left: 0.4%;
  right: auto;
  bottom: 3.15%;
  width: 99.2%;
  height: 21.2%;
  border-radius: 8px;
  box-shadow: none;
  pointer-events: none;
}

.page-contact .contact-main__map iframe {
  opacity: 0;
}

.page-contact .contact-info-strip {
  min-height: 270px;
  background:
    linear-gradient(135deg, rgba(5, 44, 58, 0.12) 0 25%, transparent 25% 100%) left top / 360px 270px no-repeat,
    #154e62;
}

.page-contact .contact-info-strip__shell {
  width: min(calc(100% - 112px), 980px);
  min-height: 270px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}

.page-contact .contact-info-strip__item {
  min-height: 120px;
  padding-left: 44px;
}

.page-contact .contact-info-strip__item::before {
  top: 5px;
  width: 28px;
  height: 28px;
}

.page-contact .contact-info-strip__item span {
  font-size: 1rem;
  letter-spacing: 0.09em;
}

.page-contact .contact-info-strip__item h2 {
  margin: 4px 0 17px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: #4ac2da;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.page-contact .contact-info-strip__item p,
.page-contact .contact-info-strip__item a {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.page-contact .site-footer__shell {
  width: min(calc(100% - 66px), 980px);
}

.page-contact .contact-hero__content p {
  margin-top: 48px;
}

.page-contact .contact-main {
  aspect-ratio: auto;
  min-height: auto;
  padding: 64px 0 76px;
  background-size: cover;
}

.page-contact .contact-main__shell {
  width: min(100%, var(--hero-max));
  max-width: var(--hero-max);
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 46px;
  align-items: stretch;
}

.page-contact .contact-location {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.page-contact .contact-location h2 {
  font-size: 60px;
}

.page-contact .contact-location__photo {
  width: 100%;
  max-width: 100%;
  min-height: 335px;
  flex: 1 1 auto;
  aspect-ratio: 421 / 335;
  margin-top: 24px;
  background-size: cover;
}

.page-contact .contact-main__form {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  max-width: none;
  min-height: 0;
  height: auto;
  padding: 40px 22px 22px;
  overflow: visible;
}

.page-contact .contact-main__map {
  position: relative;
  grid-column: 1 / -1;
  left: auto;
  top: auto;
  width: 100%;
  bottom: auto;
  height: 280px;
  margin: 0;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 25, 42, 0.14);
  pointer-events: auto;
}

.page-contact .contact-main__map iframe {
  opacity: 1;
}

.page-contact .hero-nav a,
.page-contact .contact-hero__content p,
.page-contact .contact-main__form > p,
.page-contact .contact-main__form input,
.page-contact .contact-main__form textarea,
.page-contact .contact-main__captcha p,
.page-contact .contact-main__captcha strong,
.page-contact .contact-main__captcha small,
.page-contact .contact-main__form button,
.page-contact .contact-info-strip__item span,
.page-contact .contact-info-strip__item p,
.page-contact .contact-info-strip__item a,
.page-contact .site-footer__contact-row p,
.page-contact .site-footer__contact-row a,
.page-contact .site-footer__group li,
.page-contact .site-footer__group li a {
  font-family: var(--font-sans);
}

.page-contact .contact-hero__content h1,
.page-contact .contact-location h2,
.page-contact .contact-main__form h2,
.page-contact .contact-info-strip__item h2 {
  font-family: var(--font-display);
  font-weight: 400;
}

.page-contact .contact-info-strip__item h2,
.page-contact .site-footer__info h2,
.page-contact .site-footer__company h2 {
  font-family: var(--font-display);
  font-weight: 700;
}

.carrier-career,
.carrier-apply {
  width: min(100%, var(--hero-max));
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.page-carrier .sub-hero--carrier,
.page-carrier .carrier-career,
.page-carrier .carrier-apply,
.page-carrier .site-footer {
  width: 100%;
  max-width: none;
}

.carrier-career {
  aspect-ratio: 1254 / 352;
  background: url("/barkon/assets/images/bg_carrier2.png") center top / 100% 100% no-repeat;
}

.carrier-career__shell {
  width: min(calc(100% - 112px), 1160px);
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.carrier-career__copy {
  position: absolute;
  top: 9%;
  left: 0;
  width: min(64%, 720px);
  display: grid;
  grid-template-rows: auto auto;
  row-gap: 18px;
}

.carrier-career__copy h2,
.carrier-apply__left h2 {
  margin: 0;
  color: #10192a;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.15rem, 3.55vw, 3.35rem);
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  font-weight: 500;
}

.carrier-career__copy h2 {
  font-size: clamp(2.55rem, 4.15vw, 4.05rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.carrier-career__scan {
  margin-top: 0;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  width: min(100%, 640px);
}

.carrier-qr {
  width: 130px;
  height: 130px;
  padding: 10px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(16, 25, 42, 0.22);
}

.carrier-qr span {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, #11173a 11px, transparent 11px) 0 0 / 22px 22px,
    linear-gradient(#11173a 11px, transparent 11px) 0 0 / 22px 22px,
    linear-gradient(90deg, transparent 6px, #11173a 6px 10px, transparent 10px) 0 0 / 16px 16px,
    #ffffff;
}

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

.carrier-career__scan p {
  margin: 0;
  max-width: 420px;
  color: #10192a;
  font-size: clamp(0.92rem, 1.18vw, 1.12rem);
  line-height: 1.28;
  letter-spacing: 0.04em;
  text-align: left;
}

.carrier-apply {
  aspect-ratio: 1277 / 832;
  color: #ffffff;
  background: url("/barkon/assets/images/bg_carrier3.png") center top / 100% 100% no-repeat;
}

.carrier-apply__shell {
  width: min(calc(100% - 112px), 1180px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 35% 65%;
  grid-template-rows: auto auto;
  column-gap: 0;
  row-gap: 6px;
  align-items: start;
  padding-top: 375px;
}

.carrier-apply__flash {
  grid-column: 1 / -1;
  margin: 0 0 18px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.carrier-apply__flash--success {
  color: #ffffff;
  background: rgba(27, 112, 64, 0.92);
  border-color: rgba(120, 215, 164, 0.42);
}

.carrier-apply__flash--error {
  color: #ffffff;
  background: rgba(126, 31, 31, 0.92);
  border-color: rgba(255, 170, 170, 0.34);
}

.carrier-apply__left {
  display: contents;
}

.carrier-apply__info-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: start;
  align-content: start;
  width: 100%;
  height: 92px;
}

.carrier-apply__info-cell {
  min-height: 0;
}

.carrier-apply__left h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 3.05rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.carrier-apply__info-cell--contact {
  position: relative;
  padding-top: 10px;
  padding-left: 42px;
}

.carrier-apply__left p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(0.74rem, 0.9vw, 0.9rem);
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.carrier-apply__white-text,
.carrier-apply__white-text:visited,
.carrier-apply__info-cell p.carrier-apply__white-text {
  display: block;
  margin: 0;
  color: #ffffff;
  font-size: clamp(0.72rem, 0.82vw, 0.84rem);
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.carrier-apply__blue-line,
.carrier-apply__blue-line:visited {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #39b8d6;
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.08vw, 1.08rem);
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.carrier-apply__blue-line + .carrier-apply__white-text {
  margin-top: 4px;
}

.carrier-apply__blue-line img {
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.carrier-apply__form-title {
  grid-column: 1;
  margin-top: 0;
  padding-top: 0;
  transform: translateY(-155px);
}

.carrier-apply__form {
  grid-column: 2;
  align-self: start;
  justify-self: start;
  width: min(100%, 650px);
  margin: 0;
  padding: 0;
  background: transparent;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px 16px;
  transform: translateY(-155px);
}

.carrier-apply__form label {
  display: block;
  font-size: 0;
  letter-spacing: 0;
}

.carrier-apply__form label:nth-of-type(-n + 3) {
  grid-column: 1 / -1;
}

.carrier-apply__form label:nth-of-type(4) {
  grid-column: 1 / 4;
}

.carrier-apply__form input {
  width: 100%;
  height: 31px;
  min-height: 31px;
  border: 0;
  border-radius: 5px;
  padding: 7px 15px;
  background: #ffffff;
  color: #10192a;
  font-size: 0.78rem;
}

.carrier-apply__form input[type="file"] {
  padding: 6px 12px;
  line-height: 1;
}

.carrier-apply__form button {
  grid-column: 4 / 5;
  justify-self: stretch;
  height: 31px;
  min-height: 31px;
  border: 0;
  border-radius: 5px;
  padding: 7px 18px;
  color: #ffffff;
  background: #e2a23c;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-carrier .hero-nav a,
.page-carrier .sub-hero__content p,
.page-carrier .carrier-career__scan p,
.page-carrier .carrier-apply__left p,
.page-carrier .carrier-apply__white-text,
.page-carrier .carrier-apply__blue-line,
.page-carrier .carrier-apply__form input,
.page-carrier .carrier-apply__form button,
.page-carrier .site-footer__contact-row p,
.page-carrier .site-footer__contact-row a,
.page-carrier .site-footer__group li,
.page-carrier .site-footer__group li a {
  font-family: var(--font-sans);
}

.page-carrier .sub-hero__content h1,
.page-carrier .carrier-career__copy h2,
.page-carrier .carrier-apply__left h2 {
  font-family: var(--font-display);
  font-weight: 400;
}

.page-carrier .site-footer__info h2,
.page-carrier .site-footer__company h2 {
  font-family: var(--font-display);
  font-weight: 700;
}

@media (max-width: 1400px) {
  .carrier-apply__shell {
    width: min(calc(100% - 88px), 1120px);
    padding-top: clamp(330px, 28vw, 375px);
    row-gap: 12px;
  }

  .carrier-apply__info-grid {
    height: 112px;
  }

  .carrier-apply__form-title,
  .carrier-apply__form {
    transform: translateY(-82px);
  }

  .carrier-apply__form {
    width: min(100%, 620px);
  }
}

@media (max-width: 1200px) {
  .carrier-apply__shell {
    width: min(calc(100% - 72px), 1040px);
    padding-top: clamp(250px, 31vw, 350px);
    row-gap: 12px;
  }

  .carrier-apply__info-grid {
    height: 108px;
  }

  .carrier-apply__form-title,
  .carrier-apply__form {
    transform: translateY(-78px);
  }

  .carrier-apply__form {
    width: min(100%, 610px);
  }

  .carrier-apply__left h2 {
    font-size: clamp(1.9rem, 3.1vw, 2.9rem);
  }
}

.contact-panel {
  padding: 36px;
  background: #11173a;
  color: #ffffff;
}

.contact-panel h2 {
  color: #ffffff;
}

.contact-panel p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.hero-main__content {
  max-width: 420px;
  padding-top: 118px;
}

.hero-main__title {
  margin: 0;
  font-size: clamp(4.4rem, 9vw, 6.35rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-main__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 38px;
  margin-top: 88px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}

.hero-second {
  width: min(100%, var(--hero-max));
  margin: 0 auto;
  aspect-ratio: 1110 / 408;
  position: relative;
  background: url("/barkon/assets/images/bg_02.png") center top / 100% 100% no-repeat;
}

.hero-second__shell {
  position: relative;
  width: min(calc(100% - 112px), 1160px);
  height: 100%;
  margin: 0 auto;
}

.hero-second__button {
  position: absolute;
  top: -8px;
  left: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(16, 25, 42, 0.18);
  color: rgba(16, 25, 42, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.74);
}

.hero-second__copy {
  position: absolute;
  top: 270px;
  left: 0;
  max-width: 500px;
}

.hero-second__title {
  margin: 0;
  color: #11173a;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.8rem, 7vw, 5.25rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero-second__lead {
  margin: 40px 0 0;
  color: #b7b7bb;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-second__lead span {
  display: block;
  white-space: nowrap;
}

.why-cards-section {
  width: min(100%, var(--hero-max));
  margin: 0 auto;
  padding: 190px 0 80px;
  background: #ffffff;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3px;
  align-items: start;
  transform: skewY(-9deg);
  transform-origin: left center;
}

.why-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 392px;
  padding: 0;
  color: #ffffff;
  background: linear-gradient(180deg, #f0b114, #dea000);
  transform: skewY(9deg);
  clip-path: polygon(0 7.25%, 100% 0, 100% 92.75%, 0 100%);
}

.why-card--dynamic {
  margin-top: 0;
  --copy-offset: 92px;
}

.why-card--visionary {
  margin-top: 0;
  --copy-offset: 58px;
}

.why-card--responsive {
  margin-top: 0;
  --copy-offset: 24px;
}

.why-card--efficient {
  margin-top: 0;
  --copy-offset: -8px;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-image) var(--card-position) / cover no-repeat;
  opacity: 0.58;
  pointer-events: none;
}

.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(241, 180, 0, 0.1), rgba(214, 150, 0, 0.05));
  pointer-events: none;
}

.why-card > * {
  position: relative;
  z-index: 2;
}

.why-card__body {
  padding: 34px 18px 30px 16px;
  transform: translateY(var(--copy-offset, 0));
}

.why-card h3 {
  margin: 0 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 2.35rem;
  line-height: 0.95;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.03em;
}

.why-card p {
  margin: 0;
  max-width: 92%;
  font-size: 0.98rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
}

.section-3b {
  width: min(100%, var(--hero-max));
  margin: 0 auto;
  padding: 28px 0 40px;
  background: #ffffff;
}

.section-3b__grid {
  display: grid;
  grid-template-columns: repeat(4, 275px);
  justify-content: center;
  gap: 0;
}

.section-3b__panel {
  width: 275px;
  height: 546px;
  position: relative;
  overflow: hidden;
}

.section-3b__panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.section-3b__copy {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  color: #ffffff;
  z-index: 1;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}

.section-3b__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.section-3b__icon {
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex: 0 0 auto;
}

.section-3b__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.section-3b__panel--dynamic .section-3b__copy {
  top: 223px;
}

.section-3b__panel--visionary .section-3b__copy {
  top: 186px;
}

.section-3b__panel--responsive .section-3b__copy {
  top: 149px;
}

.section-3b__panel--efficient .section-3b__copy {
  top: 103px;
}

.section-3b__copy h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.section-3b__copy p {
  margin: 0;
  max-width: 95%;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.97);
  font-size: 17px;
  line-height: 1.28;
}

.timeline-section {
  width: min(100%, var(--hero-max));
  margin: 0 auto;
  padding: 80px 0 70px;
  background: #ffffff;
}

.timeline-section__shell {
  position: relative;
  width: min(calc(100% - 56px), 980px);
  margin: 0 auto;
  padding-top: 32px;
}

.timeline-section__heading {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  color: #11173a;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4.2rem, 8vw, 5.9rem);
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-align: right;
  font-weight: 500;
}

.timeline-board {
  position: relative;
  padding-top: 34px;
}

.timeline-board::before {
  content: "";
  position: absolute;
  top: 76px;
  bottom: 28px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: #f0a43b;
}

.timeline-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  align-items: center;
  min-height: 188px;
}

.timeline-step__content {
  max-width: 320px;
}

.timeline-step--left .timeline-step__content {
  justify-self: start;
}

.timeline-step--right .timeline-step__content {
  justify-self: end;
}

.timeline-step__title-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.timeline-step__number {
  color: #f0a43b;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.timeline-step__title-row h3 {
  margin: 2px 0 0;
  color: #214f6d;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.05rem;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 500;
}

.timeline-step__content p {
  margin: 14px 0 0 48px;
  color: #70757f;
  font-size: calc(0.92rem + 2px);
  line-height: 1.75;
}

.timeline-step__center {
  display: grid;
  place-items: center;
}

.timeline-dot {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f0a43b;
}

.timeline-dot::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.72);
  background: #ffffff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.timeline-dot::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #f0a43b;
}

.timeline-step:hover .timeline-dot::before,
.timeline-step:focus-within .timeline-dot::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.timeline-step__empty {
  min-height: 1px;
}

.partners-section {
  position: relative;
  width: min(100%, var(--hero-max));
  margin: 0 auto;
  min-height: 820px;
  overflow: hidden;
  background: #ffffff;
}

.partners-section__media,
.partners-section__overlay {
  position: absolute;
  inset: 0;
}

.partners-section__media {
  background: url("/barkon/assets/images/bg_section4.png") center center / cover no-repeat;
}

.partners-section__overlay {
  background: transparent;
}

.partners-section__shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 60px), 980px);
  margin: 0 auto;
  padding: 118px 0 64px;
  text-align: center;
}

.partners-section__heading {
  margin: 0;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4.2rem, 8vw, 5.8rem);
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.partners-section__subheading {
  margin: 38px 0 52px;
  color: rgba(255, 255, 255, 0.96);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.partners-slider {
  position: relative;
  width: min(100%, 860px);
  margin: 0 auto;
}

.partners-slider__viewport {
  position: relative;
}

.partners-slider [data-partner-page] {
  display: none;
}

.partners-slider [data-partner-page].is-active {
  display: grid;
}

.partners-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

.partners-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #b67d16;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  z-index: 2;
}

.partners-slider__arrow span {
  font-size: 2rem;
  line-height: 1;
}

.partners-slider__arrow--prev {
  left: -18px;
}

.partners-slider__arrow--next {
  right: -18px;
}

.partners-slider__arrow:hover,
.partners-slider__arrow:focus-visible {
  background: #ffffff;
  color: #d69724;
}

.partner-card {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.partner-card img {
  width: 100%;
  height: auto;
}

.testimony-section {
  width: min(100%, var(--hero-max));
  margin: 0 auto;
  padding: 72px 0 86px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(-8deg, transparent 0, transparent 28px, rgba(38, 56, 77, 0.045) 28px, rgba(38, 56, 77, 0.045) 30px);
}

.testimony-section__shell {
  width: min(calc(100% - 56px), 1040px);
  margin: 0 auto;
}

.testimony-section__heading {
  margin: 0 0 40px;
  color: #384554;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4.2rem, 8vw, 5.95rem);
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
}

.testimony-slider {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 84px;
  align-items: center;
  gap: 12px;
}

.testimony-track {
  position: relative;
}

.testimony-card {
  display: none;
  max-width: 610px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.testimony-card.is-active {
  display: block;
}

.testimony-card__media {
  overflow: hidden;
}

.testimony-card__media img {
  width: 100%;
  aspect-ratio: 1.72 / 0.92;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: none;
}

.testimony-card__identity {
  position: relative;
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: -50px;
  padding: 0 28px 0 20px;
  min-height: 96px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(233, 233, 233, 0.92));
  overflow: visible;
}

.testimony-card__identity::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -18px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 0;
}

.testimony-card__avatar {
  position: relative;
  z-index: 1;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 0;
  box-shadow: none;
  background: #ffffff;
}

.testimony-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.26);
}

.testimony-card__person {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.testimony-card__person h3 {
  margin: 0;
  color: #47515d;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.testimony-card__person p {
  margin: 2px 0 0;
  color: #9c9c9c;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
}

.testimony-card__quote {
  padding: 26px 42px 34px;
}

.testimony-card__quote-mark {
  display: inline-block;
  margin-bottom: 10px;
  color: #3cb8d7;
  font-size: 2.2rem;
  line-height: 1;
}

.testimony-card__quote p {
  margin: 0;
  max-width: 94%;
  color: #7b7b7b;
  font-size: 0.96rem;
  line-height: 1.8;
}

.testimony-arrow {
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #c8c8c8;
  font-size: 4.5rem;
  line-height: 1;
  cursor: pointer;
}

.testimony-arrow:hover,
.testimony-arrow:focus-visible {
  color: #7a7a7a;
}

.site-footer {
  width: min(100%, var(--hero-max));
  margin: 0 auto;
  background: #d2d2d2;
  font-family: var(--font-sans);
}

.site-footer__shell {
  width: min(calc(100% - 66px), 980px);
  margin: 0 auto;
  padding: 18px 0 12px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.site-footer__brand {
  display: inline-block;
  margin-bottom: 12px;
}

.site-footer__brand img {
  width: 78px;
  height: auto;
  display: block;
}

.site-footer__left {
  max-width: 156px;
}

.site-footer__company {
  padding-top: 34px;
}

.site-footer__info h2,
.site-footer__company h2 {
  margin: 0 0 6px;
  color: #1e5a80;
  font-family: var(--font-sans);
  font-size: 21px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 700;
}

.site-footer__contact-row {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 8px;
}

.site-footer__contact-icon {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 14px;
  margin-top: 2px;
}

.site-footer__contact-icon--pin::before {
  content: none;
}

.site-footer__contact-icon--pin::after {
  content: none;
}

.site-footer__contact-icon--pin {
  width: 12px;
  height: 16px;
  margin-top: 1px;
}

.site-footer__contact-icon--pin img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.site-footer__contact-icon--phone {
  width: 13px;
  height: 13px;
  margin-top: 1px;
}

.site-footer__contact-icon--phone img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.site-footer__contact-row p,
.site-footer__contact-row a {
  margin: 0;
  color: #646464;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
}

.site-footer__nav-grid {
  display: grid;
  grid-template-columns: 92px 104px 132px 126px 92px 118px;
  justify-content: space-between;
  gap: 8px 12px;
}

.site-footer__group h3 {
  margin: 0 0 8px;
  color: #6d6d6d;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.site-footer__group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__group li {
  margin-top: 5px;
}

.site-footer__group li::before {
  content: "* ";
  color: #7a7a7a;
}

.site-footer__group li,
.site-footer__group li a,
.site-footer__group h3 a {
  color: #6f6f6f;
}

.site-footer__group li a,
.site-footer__group li {
  font-family: var(--font-sans);
  font-size: 10px;
  line-height: 1.3;
  font-weight: 400;
}

.site-footer__bottom {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(80, 80, 80, 0.28);
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  color: #7e7e7e;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
}

.floating-wa {
  position: fixed;
  top: -8px;
  right: clamp(12px, 3vw, 26px);
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #2cc84d;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  z-index: 40;
}

.page-home .hero-nav a {
  font-family: var(--font-sans);
  font-weight: 300;
}

.page-home .hero-main__title,
.page-home .hero-second__title,
.page-home .timeline-section__heading,
.page-home .partners-section__heading,
.page-home .testimony-section__heading {
  font-family: var(--font-display);
  font-weight: 400;
}

.page-home .hero-second__lead,
.page-home .timeline-step__content p,
.page-home .partners-section__subheading,
.page-home .testimony-card__quote p,
.page-home .site-footer__contact-row p,
.page-home .site-footer__contact-row a,
.page-home .site-footer__group li,
.page-home .site-footer__group li a {
  font-family: var(--font-sans);
  font-weight: 400;
}

.page-home .hero-second__lead {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.page-home .timeline-section__heading {
  transform: translateY(-58px);
}

.page-home .timeline-section {
  padding-bottom: 148px;
}

.page-home .partners-section {
  margin-top: -82px;
}

.page-home .partners-section__shell {
  padding-top: 188px;
}

.page-home .section-3b__copy h3,
.page-home .timeline-step__title-row h3,
.page-home .site-footer__info h2,
.page-home .site-footer__company h2 {
  font-family: var(--font-display);
  font-weight: 700;
}

.page-home .section-3b__copy p,
.page-home .testimony-card__person h3,
.page-home .testimony-card__person p,
.page-home .site-footer__group h3 {
  font-family: var(--font-sans);
}

@media (max-width: 1100px) {
  .page-home .hero-nav {
    gap: 10px;
  }

  .page-home .hero-nav a {
    min-width: 126px;
    height: 44px;
    padding: 0 16px;
    font-size: 16px;
    letter-spacing: 0.1em;
  }

  .page-home .hero-main__button {
    margin-top: 48px;
  }
}

@media (hover: none) and (pointer: coarse) and (min-width: 641px) and (max-width: 1600px) {
  .page-home .hero-second__copy {
    top: 252px;
  }

  .page-home .hero-second__lead {
    margin-top: 28px;
    font-size: clamp(1rem, 1.85vw, 1.8rem);
    line-height: 1.12;
  }

  .page-home .partners-section {
    min-height: auto;
    margin-top: -6px;
  }

  .page-home .partners-section__shell {
    width: min(calc(100% - 56px), 920px);
    padding-top: 252px;
    padding-bottom: 76px;
  }

  .page-home .partners-section__heading {
    font-size: clamp(3.4rem, 8vw, 4.7rem);
    line-height: 0.86;
  }

  .page-home .partners-section__subheading {
    max-width: 620px;
    margin: 24px auto 34px;
    font-size: 1.24rem;
    line-height: 1.18;
  }

  .page-home .partners-slider {
    width: min(100%, 660px);
  }

  .page-home .partners-grid {
    max-width: 620px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .page-home .partner-card {
    min-height: 74px;
    padding: 8px;
  }

  .page-home .partners-slider__arrow--prev {
    left: -8px;
  }

  .page-home .partners-slider__arrow--next {
    right: -8px;
  }

  .page-about .about-mission__shell h2 {
    transform: translateY(50px);
  }

  .page-about .about-mission__card {
    padding: 0 14px;
  }

  .page-about .about-mission__text-box {
    margin: 0 auto;
  }

  .page-about .about-mission__card p {
    margin: 0 auto;
    font-size: calc(1.04rem + 2px);
    line-height: 1.26;
    text-align: center;
    text-wrap: balance;
    width: 100%;
  }

  .page-about .about-mission__card:nth-child(1) .about-mission__text-box {
    width: 156px;
    transform: translateX(4px);
  }

  .page-about .about-mission__card:nth-child(2) .about-mission__text-box {
    width: 162px;
  }

  .page-about .about-mission__card:nth-child(3) {
    right: 2.5%;
  }

  .page-about .about-mission__card:nth-child(3) .about-mission__text-box {
    width: 156px;
    transform: translate(-14px, -16px);
  }

  .page-services .services-solution-grid__shell {
    width: min(calc(100% - 56px), 980px);
  }

  .page-services .services-solution-slider {
    width: min(100%, 920px);
    margin: 0 auto;
    padding: 0 34px;
  }

  .page-services .services-solution-grid__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .page-services .services-solution-box {
    aspect-ratio: auto;
    min-height: 358px;
  }

  .page-services .services-solution-box__content {
    inset: 30px 24px 18px 24px;
  }

  .page-services .services-solution-box__content h3 {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .page-services .services-solution-box__section + .services-solution-box__section {
    margin-top: 10px;
  }

  .page-services .services-solution-box__section h4 {
    margin-bottom: 5px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .page-services .services-solution-box__section p {
    font-size: 9px;
    line-height: 1.18;
    letter-spacing: 0.01em;
  }

  .page-services .services-solution-box--partition .services-solution-box__content {
    inset: 38px 24px 18px 24px;
  }

  .page-services .services-solution-box--renovation .services-solution-box__content,
  .page-services .services-solution-box--flooring .services-solution-box__content {
    inset: 34px 24px 18px 24px;
  }
}

@media (min-width: 981px) and (max-width: 1366px) and (hover: hover) and (pointer: fine) {
  .page-about .about-mission__shell h2 {
    transform: translateY(58px);
  }

  .page-about .about-mission__card {
    width: 29%;
    padding: 0 18px;
  }

  .page-about .about-mission__text-box {
    margin: 148px auto 0;
  }

  .page-about .about-mission__card:nth-child(1) {
    left: 4%;
    top: 402px;
  }

  .page-about .about-mission__card:nth-child(2) {
    left: 35.5%;
    top: 356px;
  }

  .page-about .about-mission__card:nth-child(3) {
    right: 4%;
    top: 308px;
  }

  .page-about .about-mission__card p {
    margin: 0;
    max-width: none;
    font-size: calc(0.92rem + 2px);
    line-height: 1.32;
    text-align: center;
    text-wrap: balance;
    width: 100%;
  }

  .page-about .about-mission__card:nth-child(1) .about-mission__text-box {
    width: 174px;
    transform: translateX(12px);
  }

  .page-about .about-mission__card:nth-child(2) .about-mission__text-box {
    width: 184px;
  }

  .page-about .about-mission__card:nth-child(3) .about-mission__text-box {
    width: 196px;
    transform: translateX(-10px);
  }
}

@media (max-width: 980px) {
  .hero-main__shell {
    width: min(calc(100% - 48px), 1160px);
  }

  .hero-header {
    position: relative;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-nav.site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(100%, 430px);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(9, 18, 31, 0.82);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    z-index: 30;
  }

  .hero-nav.site-nav.is-open {
    display: grid;
  }

  .hero-nav a {
    width: 100%;
    min-width: 0;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    letter-spacing: 0.09em;
  }

  .hero-main__content {
    padding-top: 60px;
  }

  .hero-second__shell {
    width: min(calc(100% - 48px), 1160px);
  }

  .hero-second__copy {
    top: 150px;
  }

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

  .section-3b__grid {
    grid-template-columns: repeat(2, minmax(0, 275px));
    gap: 10px;
  }

  .why-card--dynamic,
  .why-card--visionary,
  .why-card--responsive,
  .why-card--efficient {
    margin-top: 0;
  }

  .timeline-section__shell {
    width: min(calc(100% - 40px), 980px);
    padding-top: 140px;
  }

  .timeline-section__heading {
    position: static;
    text-align: left;
    margin-bottom: 20px;
  }

  .timeline-board::before {
    top: 32px;
  }

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

  .partners-slider {
    width: min(100%, 680px);
  }

  .partners-slider__arrow--prev {
    left: -8px;
  }

  .partners-slider__arrow--next {
    right: -8px;
  }

  .testimony-slider {
    grid-template-columns: 1fr;
  }

  .testimony-arrow {
    justify-self: center;
  }

  .about-hero__shell {
    width: min(calc(100% - 48px), 760px);
  }

  .about-hero__content {
    max-width: 440px;
    padding-top: 72px;
  }

  .about-hero__content p {
    max-width: 420px;
    white-space: normal;
    font-size: 1.18rem;
    line-height: 1.1;
  }

  .about-hero__content a {
    min-width: 158px;
    min-height: 40px;
    margin-top: 34px;
    font-size: 14px;
  }

  .about-vision__copy {
    width: min(72%, 560px);
    padding-top: 92px;
    padding-right: 24px;
    padding-bottom: 34px;
    padding-left: 24px;
  }

  .about-company {
    aspect-ratio: auto;
    min-height: 420px;
  }

  .about-company__shell {
    width: min(calc(100% - 48px), 760px);
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .about-company__description {
    max-width: 620px;
  }

  .about-vision {
    aspect-ratio: auto;
    min-height: 460px;
  }

  .about-vision__shell {
    width: min(calc(100% - 48px), 760px);
  }

  .about-vision__copy p {
    font-size: calc(0.88rem + 2px);
    line-height: 1.55;
  }

  .about-mission__shell {
    min-height: 560px;
    padding-top: 60px;
    padding-bottom: 42px;
  }

  .about-mission__shell h2 {
    font-size: clamp(3rem, 9vw, 4.4rem);
    transform: translateY(28px);
  }

  .about-mission__cards {
    min-height: 420px;
    margin-top: 18px;
  }

  .about-mission__card {
    width: 31%;
    padding: 0 12px;
  }

  .about-mission__card:nth-child(1) {
    left: 2.5%;
    top: 296px;
  }

  .about-mission__card:nth-child(2) {
    left: 34.5%;
    top: 252px;
  }

  .about-mission__card:nth-child(3) {
    right: 2.5%;
    top: 208px;
  }

  .about-mission__card p {
    font-size: 0.9rem;
    line-height: 1.33;
  }

  .sub-hero__shell {
    width: min(calc(100% - 48px), 1160px);
  }

  .sub-hero__content {
    padding-top: 74px;
  }

  .services-grid,
  .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-section__shell,
  .contact-section__shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-hero__shell,
  .contact-main__shell,
  .contact-info-strip__shell {
    width: min(calc(100% - 48px), 980px);
  }

  .contact-location {
    width: 45%;
  }

  .contact-main__form {
    width: min(46%, 420px);
  }

  .contact-info-strip__shell {
    gap: 28px;
  }

  .carrier-career__shell,
  .carrier-apply__shell {
    width: min(calc(100% - 48px), 1160px);
  }

  .carrier-career__copy {
    width: min(42%, 330px);
  }

  .carrier-apply__shell {
    column-gap: 20px;
    row-gap: 18px;
    padding-top: clamp(210px, 32vw, 300px);
  }

  .carrier-apply__info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    height: 104px;
  }

  .carrier-apply__form-title,
  .carrier-apply__form {
    transform: translateY(-44px);
  }

  .carrier-apply__form {
    width: 100%;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__nav-grid {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .hero-header {
    padding-top: 10px;
    gap: 14px;
  }

  .hero-brand img {
    width: 70px;
  }

  .hero-nav {
    width: min(100%, 320px);
  }

  .hero-nav.site-nav {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }

  .hero-nav a {
    min-width: 0;
    height: 38px;
    font-size: 11px;
  }

  .hero-main {
    aspect-ratio: auto;
    min-height: 560px;
    background-size: cover;
  }

  .hero-second {
    aspect-ratio: auto;
    min-height: 260px;
    background-size: cover;
  }

  .hero-second__button {
    top: 20px;
    min-width: 136px;
    min-height: 34px;
    font-size: 0.64rem;
  }

  .hero-second__copy {
    top: 132px;
    max-width: 290px;
  }

  .hero-second__title {
    font-size: 3rem;
  }

  .hero-second__lead {
    margin-top: 24px;
    font-size: 1rem;
  }

  .why-cards-section {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .why-cards {
    grid-template-columns: 1fr;
    transform: none;
  }

  .section-3b {
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .section-3b__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .section-3b__copy {
    left: 16px;
    right: 16px;
    bottom: 24px;
  }

  .section-3b__panel--dynamic .section-3b__copy,
  .section-3b__panel--visionary .section-3b__copy,
  .section-3b__panel--responsive .section-3b__copy,
  .section-3b__panel--efficient .section-3b__copy {
    bottom: 24px;
  }

  .section-3b__copy h3 {
    font-size: 1.6rem;
  }

  .section-3b__copy p {
    font-size: 0.82rem;
  }

  .why-card {
    min-height: 280px;
    transform: none;
  }

  .timeline-section {
    padding-top: 40px;
  }

  .timeline-section__shell {
    padding-top: 0;
  }

  .timeline-step {
    grid-template-columns: 1fr 54px;
    gap: 10px;
    min-height: 160px;
  }

  .timeline-step__empty {
    display: none;
  }

  .timeline-step--left .timeline-step__content,
  .timeline-step--right .timeline-step__content {
    grid-column: 1;
    justify-self: start;
    max-width: none;
  }

  .timeline-step__center {
    grid-column: 2;
    grid-row: 1;
  }

  .timeline-board::before {
    left: calc(100% - 27px);
    top: 24px;
    bottom: 24px;
  }

  .timeline-step__title-row h3 {
    font-size: 1.55rem;
  }

  .timeline-step__content p {
    margin-left: 0;
    font-size: 0.86rem;
  }

  .partners-section {
    min-height: auto;
  }

  .partners-section__shell {
    width: min(calc(100% - 28px), 980px);
    padding-top: 82px;
    padding-bottom: 40px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .partner-card {
    min-height: 88px;
  }

  .testimony-section__shell {
    width: min(calc(100% - 28px), 980px);
  }

  .testimony-card__identity {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: -22px;
    padding: 0 18px 14px;
  }

  .testimony-card__identity::before {
    left: 18px;
    top: -12px;
    width: 102px;
    height: 102px;
  }

  .testimony-card__avatar {
    width: 102px;
    height: 102px;
    margin-left: 0;
  }

  .testimony-card__person h3 {
    font-size: 2.2rem;
  }

  .testimony-card__person p {
    font-size: 1.35rem;
  }

  .testimony-card__quote {
    padding: 22px 18px 24px;
  }

  .testimony-card__quote p {
    max-width: none;
    font-size: 0.92rem;
  }

  .site-footer__shell {
    width: min(calc(100% - 28px), 980px);
  }

  .site-footer__nav-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    justify-content: start;
  }

  .hero-nav {
    gap: 14px;
  }

  .hero-nav a {
    min-width: 112px;
    height: 36px;
    font-size: 0.66rem;
  }

  .hero-main__content {
    max-width: 300px;
    padding-top: 44px;
  }

  .hero-main__title {
    font-size: 3.5rem;
  }

  .hero-main__button {
    margin-top: 52px;
  }

  .about-hero {
    min-height: 560px;
    background-position: center top;
  }

  .about-hero__shell {
    min-height: 560px;
  }

  .about-hero::before {
    left: 80px;
    bottom: -140px;
  }

  .about-hero::after {
    right: -210px;
  }

  .about-hero__content h1 {
    font-size: 3.8rem;
  }

  .about-hero__content {
    max-width: 300px;
    padding-top: 54px;
  }

  .about-hero__content p {
    max-width: 270px;
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.18;
    letter-spacing: 0.03em;
  }

  .about-hero__content a {
    min-width: 144px;
    min-height: 36px;
    margin-top: 28px;
    padding: 0 14px;
    font-size: 11px;
  }

  .about-company__shell {
    width: min(calc(100% - 36px), 790px);
    padding-top: 42px;
    padding-bottom: 56px;
  }

  .about-company__shell h2 {
    font-size: clamp(2.6rem, 13vw, 3.8rem);
  }

  .about-company__description,
  .about-company__description strong {
    font-size: calc(0.8rem + 3px);
    line-height: 1.6;
  }

  .about-vision__shell,
  .about-mission__shell {
    width: min(calc(100% - 36px), 940px);
  }

  .about-vision__copy {
    width: 100%;
    padding-top: 76px;
    padding-right: 18px;
    padding-bottom: 42px;
    padding-left: 18px;
    background: rgba(255, 255, 255, 0.82);
  }

  .about-vision__copy h2 {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
  }

  .about-vision__copy p {
    margin-top: 18px;
    font-size: calc(0.78rem + 2px);
    line-height: 1.6;
  }

  .about-mission__shell {
    width: min(calc(100% - 28px), 480px);
    min-height: 430px;
    padding-top: 54px;
    padding-bottom: 26px;
  }

  .about-mission__cards {
    min-height: 250px;
    margin-top: 10px;
  }

  .about-mission__shell h2 {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
  }

  .about-mission__card {
    width: 31.5%;
    padding: 0 6px;
  }

  .about-mission__card:nth-child(1) {
    left: 1%;
    top: 186px;
  }

  .about-mission__card:nth-child(2) {
    left: 34.5%;
    top: 158px;
  }

  .about-mission__card:nth-child(3) {
    right: 1%;
    top: 130px;
  }

  .about-mission__card p {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .services-hero__content a {
    min-width: 158px;
    min-height: 38px;
    margin-top: 28px;
    padding: 0 18px;
    font-size: 14px;
  }

  .services-brief {
    min-height: 500px;
    background-size: 168% auto;
    background-position: 108% top;
  }

  .services-brief__copy {
    width: min(calc(100% - 36px), 360px);
    padding-top: 82px;
  }

  .services-brief__copy p {
    max-width: 350px;
    font-size: calc(0.78rem + 2px);
    line-height: 1.66;
  }

  .services-solution-grid {
    padding: 98px 0 38px;
  }

  .services-solution-grid__shell {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .services-solution-grid h2 {
    width: min(calc(100% - 8px), 280px);
    margin: 0 auto 22px;
    text-align: center;
    font-size: clamp(2.6rem, 13vw, 3.7rem);
    line-height: 0.9;
  }

  .services-solution-slider {
    width: 100%;
    padding: 0 20px;
  }

  .services-solution-grid__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services-solution-box {
    aspect-ratio: auto;
    min-height: 468px;
  }

  .services-solution-box__content {
    inset: 24px 18px 18px 18px;
  }

  .services-solution-box__content h3 {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .services-solution-box__section + .services-solution-box__section {
    margin-top: 8px;
  }

  .services-solution-box__section h4 {
    margin-bottom: 4px;
    font-size: 8px;
    letter-spacing: 0.05em;
  }

  .services-solution-box__section p {
    font-size: 7px;
    line-height: 1.18;
    letter-spacing: 0;
  }

  .services-solution-box--partition .services-solution-box__content {
    inset: 32px 18px 18px 18px;
  }

  .services-solution-box--renovation .services-solution-box__content,
  .services-solution-box--flooring .services-solution-box__content {
    inset: 28px 18px 18px 18px;
  }

  .services-solution-slider__arrow {
    width: 42px;
    height: 42px;
  }

  .services-solution-slider__arrow span {
    font-size: 1.5rem;
  }

  .services-solution-slider__arrow--prev {
    left: -2px;
  }

  .services-solution-slider__arrow--next {
    right: -2px;
  }

  .sub-hero {
    min-height: 560px;
  }

  .sub-hero--carrier {
    aspect-ratio: auto;
    min-height: 560px;
    background-size: cover;
  }

  .sub-hero__shell {
    min-height: 560px;
  }

  .sub-hero--carrier .sub-hero__shell {
    min-height: 560px;
  }

  .sub-hero__content h1 {
    font-size: 3.8rem;
  }

  .sub-hero__content p {
    font-size: 1.1rem;
  }

  .services-intro__shell,
  .project-showcase__shell,
  .career-section__shell,
  .contact-section__shell,
  .services-grid {
    width: min(calc(100% - 36px), 960px);
  }

  .services-grid,
  .project-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 210px;
  }

  .project-card {
    min-height: 300px;
  }

  .services-hero,
  .services-brief,
  .services-solution,
  .project-hero,
  .project-tagline,
  .project-slider,
  .contact-hero,
  .contact-main {
    aspect-ratio: auto;
    min-height: 560px;
    background-size: cover;
  }

  .contact-hero {
    min-height: 600px;
  }

  .contact-main {
    min-height: 980px;
  }

  .services-hero__shell,
  .project-hero__shell,
  .contact-hero__shell,
  .contact-main__shell {
    width: min(calc(100% - 36px), 960px);
  }

  .services-hero__content,
  .project-hero__content,
  .contact-hero__content {
    padding-top: 74px;
  }

  .contact-hero__content h1 {
    font-size: 4.2rem;
  }

  .contact-location,
  .contact-main__form,
  .contact-main__map {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 420px);
    margin-right: auto;
    margin-left: auto;
  }

  .contact-location {
    padding-top: 74px;
  }

  .contact-location h2 {
    font-size: 3.35rem;
  }

  .contact-location__photo {
    width: 100%;
  }

  .contact-main__form {
    margin-top: 34px;
  }

  .contact-main__map {
    height: 220px;
    margin-top: 28px;
  }

  .contact-info-strip__shell {
    width: min(calc(100% - 36px), 960px);
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0;
  }

  .services-brief__copy,
  .services-solution__copy {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: min(calc(100% - 44px), 360px);
    margin: 0 auto;
  }

  .services-brief__copy {
    width: min(calc(100% - 44px), 520px);
    padding-top: 84px;
  }

  .services-solution h2 {
    position: relative;
    top: auto;
    right: auto;
    width: min(calc(100% - 44px), 360px);
    margin: 0 auto 40px;
    padding-top: 80px;
    text-align: left;
  }

  .services-solution__copy {
    text-align: left;
  }

  .services-brief {
    aspect-ratio: auto;
    min-height: 620px;
    background-size: 132% auto;
    background-position: 100% top;
  }

  .services-brief__copy {
    width: min(calc(100% - 56px), 470px);
    padding-top: 90px;
  }

  .services-brief__copy p {
    max-width: 470px;
    font-size: calc(0.84rem + 2px);
    line-height: 1.62;
  }

  .services-solution-grid {
    padding: 118px 0 48px;
    background-size: cover;
    background-position: center top;
  }

  .services-solution-grid__shell {
    width: min(calc(100% - 40px), 820px);
  }

  .services-solution-grid h2 {
    width: min(calc(100% - 16px), 420px);
    margin: 0 auto 28px;
    padding-top: 0;
    text-align: center;
    font-size: clamp(2.9rem, 8.6vw, 4.4rem);
    line-height: 0.9;
  }

  .services-solution-slider {
    width: min(100%, 760px);
    margin: 0 auto;
    padding: 0 34px;
  }

  .services-solution-grid__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .services-solution-box {
    aspect-ratio: auto;
    min-height: 432px;
  }

  .services-solution-box__content {
    inset: 24px 18px 16px 18px;
  }

  .services-solution-box__content h3 {
    margin-bottom: 8px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .services-solution-box__section + .services-solution-box__section {
    margin-top: 8px;
  }

  .services-solution-box__section h4 {
    margin-bottom: 4px;
    font-size: 8px;
    letter-spacing: 0.05em;
  }

  .services-solution-box__section p {
    font-size: 7.25px;
    line-height: 1.14;
    letter-spacing: 0.01em;
  }

  .services-solution-box--partition .services-solution-box__content {
    inset: 34px 18px 16px 18px;
  }

  .services-solution-box--partition .services-solution-box__content h3,
  .services-solution-box--flooring .services-solution-box__content h3 {
    margin-bottom: 12px;
  }

  .services-solution-box--renovation .services-solution-box__content,
  .services-solution-box--flooring .services-solution-box__content {
    inset: 30px 18px 16px 18px;
  }

  .services-solution-slider__arrow {
    width: 52px;
    height: 52px;
  }

  .services-solution-slider__arrow span {
    font-size: 2rem;
  }

  .services-solution-slider__arrow--prev {
    left: -6px;
  }

  .services-solution-slider__arrow--next {
    right: -6px;
  }

  .project-tagline p,
  .project-slider__card {
    position: relative;
    left: auto;
    top: auto;
    width: min(calc(100% - 44px), 360px);
    margin: 0 auto;
  }

  .project-slider__card {
    padding-top: 120px;
  }

  .career-section__shell,
  .contact-section__shell {
    padding-top: 56px;
    padding-bottom: 60px;
  }

  .carrier-career,
  .carrier-apply {
    aspect-ratio: auto;
    min-height: 620px;
    background-size: cover;
  }

  .carrier-career__shell,
  .carrier-apply__shell {
    width: min(calc(100% - 36px), 960px);
  }

  .carrier-career__copy {
    top: 70px;
    width: min(88%, 360px);
  }

  .carrier-career__scan {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .carrier-qr {
    width: 92px;
    height: 92px;
  }

  .carrier-apply {
    min-height: 980px;
  }

  .carrier-apply__shell {
    display: block;
    padding-top: 210px;
  }

  .carrier-apply__info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    height: auto;
  }

  .carrier-apply__info-cell--contact {
    padding-top: 0;
  }

  .carrier-apply__form {
    margin-top: 24px;
    margin-bottom: 0;
  }

  .carrier-apply__form-title {
    margin-top: 34px;
  }

  .carrier-apply__form-title,
  .carrier-apply__form {
    transform: none;
  }

  .career-form,
  .contact-form,
  .contact-panel {
    padding: 22px;
  }

  .carrier-apply__form {
    padding: 0;
    grid-template-columns: 1fr;
  }

  .carrier-apply__form label:nth-of-type(-n + 4),
  .carrier-apply__form button {
    grid-column: 1;
  }
}

@media (min-width: 1366px) {
  .about-mission__shell h2 {
    transform: translateY(24px);
  }

  .about-mission__card:nth-child(1) {
    top: 424px;
  }

  .about-mission__card:nth-child(2) {
    top: 368px;
  }

  .about-mission__card:nth-child(3) {
    top: 316px;
  }
}

@media (max-width: 980px) {
  .page-contact .contact-main {
    padding: 56px 0 64px;
  }

  .page-contact .contact-main__shell {
    width: min(calc(100% - 48px), 760px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-contact .contact-location,
  .page-contact .contact-main__form,
  .page-contact .contact-main__map {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin: 0;
  }

  .page-contact .contact-location {
    padding-top: 0;
    min-height: 0;
    display: block;
  }

  .page-contact .contact-location h2 {
    font-size: 52px;
  }

  .page-contact .contact-location__photo {
    width: 100%;
    min-height: 0;
    flex: none;
    aspect-ratio: 16 / 10;
    margin-top: 22px;
  }

  .page-contact .contact-main__form {
    padding: 34px 24px 26px;
  }

  .page-contact .contact-main__captcha,
  .page-contact .contact-main__form button {
    width: min(100%, 366px);
  }

  .page-contact .contact-main__map {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .page-contact .contact-main {
    padding: 42px 0 52px;
    overflow-x: hidden;
  }

  .page-contact .contact-main__shell {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    gap: 24px;
  }

  .page-contact .contact-location,
  .page-contact .contact-main__form,
  .page-contact .contact-main__map {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .page-contact .contact-main__form,
  .page-contact .contact-main__form * {
    box-sizing: border-box;
    max-width: 100%;
  }

  .page-contact .contact-location h2 {
    font-size: 38px;
    line-height: 0.86;
  }

  .page-contact .contact-location__photo {
    aspect-ratio: 4 / 3;
    margin-top: 18px;
  }

  .page-contact .contact-main__form {
    padding: 26px 16px 20px;
  }

  .page-contact .contact-main__form h2 {
    font-size: 1.35rem;
    text-align: center;
  }

  .page-contact .contact-main__form > p {
    width: 100%;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.82rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
    text-align: center;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .page-contact .contact-main__form input,
  .page-contact .contact-main__form textarea {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 0.86rem;
  }

  .page-contact .contact-main__form textarea {
    min-height: 92px;
  }

  .page-contact .contact-main__captcha {
    width: 100%;
    min-height: 76px;
    margin: 16px 0 12px;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 12px;
    overflow: hidden;
  }

  .page-contact .contact-main__captcha-box {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
  }

  .page-contact .contact-main__captcha p {
    min-width: 0;
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    line-height: 1.25;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .page-contact .contact-main__captcha strong {
    display: none;
  }

  .page-contact .contact-main__captcha strong::before {
    width: 30px;
    height: 26px;
  }

  .page-contact .contact-main__form button {
    width: 100%;
  }

  .page-contact .contact-main__map {
    height: 240px;
  }

  .page-contact .contact-info-strip__shell {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 0;
  }

  .page-contact .contact-info-strip__item {
    min-height: 0;
    padding-left: 40px;
  }

  .page-contact .contact-info-strip__item span {
    font-size: 0.8rem;
  }

  .page-contact .contact-info-strip__item h2 {
    margin-bottom: 10px;
    font-size: 1.3rem;
  }

  .page-contact .contact-info-strip__item p,
  .page-contact .contact-info-strip__item a {
    max-width: calc(100vw - 86px);
    font-size: 0.86rem;
    overflow-wrap: anywhere;
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .page-home {
    overflow-x: hidden;
  }

  .page-home .hero-main__shell,
  .page-home .hero-second__shell,
  .page-home .timeline-section__shell,
  .page-home .partners-section__shell,
  .page-home .testimony-section__shell {
    width: min(calc(100% - 48px), 760px);
  }

  .page-home .hero-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .page-home .nav-toggle {
    display: inline-flex;
    margin-right: 72px;
  }

  .page-home .hero-nav.site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(100%, 430px);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(9, 18, 31, 0.82);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    z-index: 30;
  }

  .page-home .hero-nav.site-nav.is-open {
    display: grid;
  }

  .page-home .hero-nav a {
    width: 100%;
    min-width: 0;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    letter-spacing: 0.09em;
  }

  .page-home .hero-main {
    aspect-ratio: auto;
    min-height: 560px;
    background-size: cover;
    background-position: center top;
  }

  .page-home .hero-main__content {
    max-width: 420px;
    padding-top: 64px;
  }

  .page-home .hero-main__title {
    font-size: clamp(4.2rem, 10vw, 5.9rem);
  }

  .page-home .hero-second {
    aspect-ratio: auto;
    min-height: 360px;
    background-size: cover;
    background-position: center top;
  }

  .page-home .hero-second__copy {
    top: 150px;
    left: 0;
  }

  .page-home .section-3b {
    padding: 42px 0 56px;
  }

  .page-home .section-3b__grid {
    width: min(calc(100% - 48px), 650px);
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .page-home .section-3b__panel {
    width: 100%;
    height: auto;
    aspect-ratio: 275 / 546;
  }

  .page-home .section-3b__copy {
    left: 16px;
    right: 16px;
  }

  .page-home .section-3b__copy h3 {
    font-size: clamp(1.35rem, 3.4vw, 1.7rem);
  }

  .page-home .section-3b__copy p {
    font-size: clamp(0.8rem, 1.9vw, 0.95rem);
  }

  .page-home .timeline-section {
    padding: 62px 0;
  }

  .page-home .timeline-section__shell {
    padding-top: 0;
  }

  .page-home .timeline-section__heading {
    position: static;
    margin-bottom: 34px;
    transform: translateY(-12px);
  }

  .page-home .timeline-board {
    display: grid;
    gap: 22px;
    padding-top: 0;
  }

  .page-home .timeline-board::before {
    display: none;
  }

  .page-home .timeline-step {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 22px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(16, 25, 42, 0.08);
  }

  .page-home .timeline-step__empty {
    display: none;
  }

  .page-home .timeline-step__center {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    margin-top: 4px;
  }

  .page-home .timeline-step--left .timeline-step__content,
  .page-home .timeline-step--right .timeline-step__content {
    grid-column: 2;
    grid-row: 1;
    max-width: none;
    justify-self: stretch;
  }

  .page-home .timeline-step__content p {
    margin-left: 0;
  }

  .page-home .partners-section {
    min-height: auto;
    margin-top: -6px;
  }

  .page-home .partners-section__shell {
    padding-top: 252px;
    padding-bottom: 76px;
  }

  .page-home .partners-grid {
    max-width: 620px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .partners-slider {
    width: min(100%, 660px);
  }

  .page-home .testimony-slider {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page-home .testimony-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .page-home .hero-main,
  .page-home .hero-second,
  .page-home .section-3b,
  .page-home .timeline-section,
  .page-home .partners-section,
  .page-home .testimony-section {
    overflow-x: hidden;
  }

  .page-home .hero-main__shell,
  .page-home .hero-second__shell,
  .page-home .section-3b__grid,
  .page-home .timeline-section__shell,
  .page-home .partners-section__shell,
  .page-home .testimony-section__shell {
    width: min(calc(100% - 28px), 480px);
    max-width: min(calc(100% - 28px), 480px);
  }

  .page-home .hero-header {
    padding-top: 10px;
    gap: 14px;
  }

  .page-home .hero-brand img {
    width: 70px;
  }

  .page-home .hero-nav {
    width: min(100%, 320px);
  }

  .page-home .hero-nav.site-nav {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }

  .page-home .hero-nav a {
    height: 38px;
    font-size: 11px;
  }

  .page-home .hero-main {
    min-height: 620px;
    background-position: 58% top;
  }

  .page-home .hero-main__content {
    max-width: 300px;
    padding-top: 58px;
  }

  .page-home .hero-main__title {
    font-size: clamp(3.4rem, 15vw, 4.3rem);
  }

  .page-home .hero-second {
    min-height: 390px;
    background-position: center top;
  }

  .page-home .hero-second__button {
    top: 24px;
    left: 0;
  }

  .page-home .hero-second__copy {
    top: 150px;
    max-width: calc(100vw - 42px);
  }

  .page-home .hero-second__title {
    max-width: 250px;
    font-size: clamp(2.35rem, 11vw, 3rem);
    line-height: 0.95;
    white-space: normal;
  }

  .page-home .hero-second__lead {
    max-width: 245px;
    margin-top: 20px;
    font-size: 0.94rem;
    line-height: 1.28;
  }

  .page-home .section-3b {
    padding: 34px 0 48px;
  }

  .page-home .section-3b__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page-home .section-3b__panel {
    width: 100%;
    max-width: 315px;
    justify-self: center;
  }

  .page-home .section-3b__panel--dynamic .section-3b__copy,
  .page-home .section-3b__panel--visionary .section-3b__copy,
  .page-home .section-3b__panel--responsive .section-3b__copy,
  .page-home .section-3b__panel--efficient .section-3b__copy {
    bottom: auto;
  }

  .page-home .section-3b__panel--dynamic .section-3b__copy {
    top: 39%;
  }

  .page-home .section-3b__panel--visionary .section-3b__copy {
    top: 33%;
  }

  .page-home .section-3b__panel--responsive .section-3b__copy {
    top: 27%;
  }

  .page-home .section-3b__panel--efficient .section-3b__copy {
    top: 21%;
  }

  .page-home .section-3b__title-row {
    justify-content: flex-start;
    margin-bottom: 7px;
  }

  .page-home .section-3b__copy h3 {
    font-size: 1.6rem;
  }

  .page-home .section-3b__copy p {
    max-width: 100%;
    font-size: 0.86rem;
    line-height: 1.28;
  }

  .page-home .timeline-section {
    padding: 42px 0 48px;
  }

  .page-home .timeline-section__shell {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .page-home .timeline-section__heading,
  .page-home .partners-section__heading,
  .page-home .testimony-section__heading {
    font-size: clamp(3.2rem, 15vw, 4.4rem);
  }

  .page-home .timeline-step {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    box-sizing: border-box;
    overflow: hidden;
    padding: 18px 16px;
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .page-home .timeline-board,
  .page-home .timeline-step__content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .page-home .timeline-step__title-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    align-items: start;
  }

  .page-home .timeline-step__number {
    font-size: 2.25rem;
    line-height: 0.92;
  }

  .page-home .timeline-step__title-row h3 {
    min-width: 0;
    max-width: 240px;
    font-size: 1.12rem;
    line-height: 0.96;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .page-home .timeline-step__content p {
    max-width: 100%;
    font-size: calc(0.86rem + 2px);
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .page-home .partners-section__shell {
    padding-top: 292px;
    padding-bottom: 52px;
  }

  .page-home .partners-section__heading {
    font-size: clamp(3rem, 14vw, 4.2rem);
    line-height: 0.88;
  }

  .page-home .partners-section {
    margin-top: 12px;
  }

  .page-home .partners-section__subheading {
    max-width: 320px;
    margin: 18px auto 28px;
    font-size: 1.08rem;
    line-height: 1.25;
  }

  .page-home .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .page-home .partner-card {
    min-height: 70px;
    padding: 8px;
  }

  .page-home .partners-slider__arrow {
    width: 42px;
    height: 42px;
  }

  .page-home .partners-slider__arrow span {
    font-size: 1.5rem;
  }

  .page-home .partners-slider__arrow--prev {
    left: -4px;
  }

  .page-home .partners-slider__arrow--next {
    right: -4px;
  }

  .page-home .testimony-section {
    padding: 46px 0 58px;
  }

  .page-home .testimony-section__heading {
    margin-bottom: 28px;
  }

  .page-home .testimony-card {
    width: 100%;
    max-width: 100%;
  }

.page-home .testimony-card__identity {
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  padding: 0 16px 14px;
}

.page-home .testimony-card__identity::before {
  left: 10px;
  top: -8px;
  width: 86px;
  height: 86px;
}

.page-home .testimony-card__avatar {
  width: 86px;
  height: 86px;
  margin-left: 0;
}

  .page-home .testimony-card__person h3 {
    font-size: 1.8rem;
  }

  .page-home .testimony-card__person p {
    font-size: 1.05rem;
  }

  .page-home .testimony-card__quote {
    padding: 20px 16px 24px;
  }

  .page-home .site-footer__nav-grid {
    grid-template-columns: 1fr;
  }
}

.project-slider__card.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
