:root {
  --color-ink: #2d3036;
  --color-muted: #777575;
  --color-line: #d9dee7;
  --color-surface: #f4f8ff;
  --color-panel: #ffffff;
  --color-accent: #0050c0;
  --color-accent-dark: #002561;
  --color-dark: #002561;
  --shadow-soft: 0 4px 12px rgba(1, 58, 143, 0.2);
  --radius: 8px;
  --container: 1280px;
  --font-base: MuseoSansCyrl-300, MuseoSansCyrl, "Museo Sans Cyrl", Arial, Helvetica, sans-serif;
  --font-medium: MuseoSansCyrl-500, MuseoSansCyrl, "Museo Sans Cyrl", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: #fff;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  font-family: var(--font-medium);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, opacity 0.24s ease;
}

a:hover {
  color: var(--color-accent);
}

button,
input[type="button"],
input[type="submit"],
.button,
.nav-menu a,
.solution-row,
.audience-card,
.about-card,
.industries-card,
.services-menu-card,
.services-project-link,
.portfolio-project-card,
.portfolio-nav,
.case-slider-arrow,
.case-related-arrow {
  transition: color 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease, transform 0.24s ease;
}

.solution-row img,
.audience-card > img:first-child,
.about-card > img:first-child,
.industries-card-thumb,
.services-menu-card > img:first-child,
.industries-arrow,
.portfolio-card-arrow {
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.solution-row:hover img,
.audience-card:hover > img:first-child,
.about-card:hover > img:first-child,
.industries-card:hover .industries-card-thumb,
.services-menu-card:hover > img:first-child {
  transform: scale(1.015);
}

.industries-card:hover .industries-arrow,
.services-menu-card:hover .industries-arrow,
.portfolio-project-card:hover .portfolio-card-arrow {
  transform: translate(2px, -2px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.container {
  width: min(calc(100% - 160px), var(--container));
  margin-inline: auto;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--color-ink);
  color: #fff;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 12px;
  left: 50%;
  width: min(calc(100% - 24px), 1416px);
  border-bottom: 1px solid #e7e8eb;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.header-inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 80px;
  width: 100%;
  padding-inline: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
}

.brand-logo {
  width: 160px;
  max-width: 160px;
  max-height: 28px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  display: flex;
  align-items: center;
  min-height: 80px;
  padding: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  color: var(--color-ink);
  font-size: 15px;
  font-family: var(--font-medium);
  font-weight: 400;
  line-height: 24px;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
  background: transparent;
  border-bottom-color: var(--color-accent);
  color: var(--color-accent);
}

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

.header-mega-menus {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  pointer-events: none;
}

.header-mega-menus::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 12px;
  content: "";
}

.header-mega-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 36px 34px;
  border: 1px solid #e7e8eb;
  border-radius: 0 0 18px 18px;
  opacity: 0;
  background: #fff;
  box-shadow: 0 24px 55px rgba(13, 36, 73, 0.16);
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  visibility: hidden;
}

.header-mega-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.header-mega-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.72fr);
  gap: 72px;
  align-items: stretch;
}

.header-mega-list {
  display: grid;
  align-content: start;
  align-self: start;
  grid-auto-rows: max-content;
  gap: 14px;
}

.header-mega-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  height: auto;
  padding: 10px;
  border: 1px solid #e4e5e8;
  border-radius: 8px;
  background: #fff;
  color: #2d3036;
  transition: background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.header-mega-card:hover,
.header-mega-card:focus-visible {
  border-color: #c9dcfb;
  background: #f4f8ff;
  color: #2d3036;
  box-shadow: 0 9px 22px rgba(13, 62, 132, 0.08);
  transform: translateY(-1px);
}

.header-mega-card > img:first-child {
  width: 82px;
  height: 82px;
  border-radius: 7px;
  object-fit: cover;
}

.header-mega-card span,
.header-mega-feature span {
  display: grid;
  gap: 8px;
}

.header-mega-card strong,
.header-mega-feature strong {
  font-family: var(--font-medium);
  font-size: 17px;
  line-height: 1.25;
}

.header-mega-card small,
.header-mega-feature small {
  color: #777575;
  font-size: 14px;
  line-height: 1.4;
}

.header-mega-arrow {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transition: transform 0.24s ease;
}

.header-mega-card:hover .header-mega-arrow {
  transform: translate(2px, -2px);
}

.header-mega-feature {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: #edf3fa;
  color: #fff;
}

.header-mega-feature > img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.header-mega-feature::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(8, 23, 43, 0.72));
  content: "";
}

.header-mega-feature span {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
}

.header-mega-feature strong {
  color: #fff;
  font-size: 22px;
}

.header-mega-feature small {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.header-mega-feature:hover {
  color: #fff;
}

.header-mega-feature:hover > img {
  transform: scale(1.02);
}

.nav-menu a.is-mega-active {
  border-bottom-color: var(--color-accent);
  color: var(--color-accent);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-family: var(--font-medium);
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.language-switch span {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(#0067f3 0 50%, #ffd43b 50% 100%);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  background: #fff;
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--color-ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-medium);
  font-weight: 400;
  line-height: 1.1;
  transition: 0.2s ease;
}

.button-primary,
.button-small {
  background: var(--color-dark);
  color: #fff !important;
  box-shadow: var(--shadow-soft);
}

.button-primary:hover,
.button-small:hover,
.button-primary:focus,
.button-small:focus {
  background: var(--color-accent-dark);
  color: #fff !important;
}

.button-secondary,
.button-ghost {
  border-color: var(--color-line);
  background: #fff;
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.button-small {
  min-height: 40px;
  padding: 8px 16px;
  font-size: 14px;
}

body.consult-modal-open {
  overflow: hidden;
}

.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.consult-modal.is-open {
  display: flex;
}

.consult-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 22, 0.72);
  backdrop-filter: blur(2px);
}

.consult-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 40px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.consult-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f4f8ff;
  color: #00377d;
  cursor: pointer;
  font-family: var(--font-medium);
  font-size: 28px;
  line-height: 1;
}

.consult-modal-head {
  max-width: 480px;
  margin-bottom: 28px;
}

.consult-modal-head h2 {
  margin: 0 0 12px;
  color: #2d3036;
  font-size: 34px;
  line-height: 1.16;
}

.consult-modal-head p {
  margin: 0;
  color: #777575;
  font-size: 17px;
  line-height: 1.5;
}

.consult-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.consult-form label {
  display: grid;
  gap: 8px;
  color: #2d3036;
  font-family: var(--font-medium);
  font-size: 14px;
}

.consult-form-wide,
.consult-submit,
.consult-form-status {
  grid-column: 1 / -1;
}

.consult-form input,
.consult-form textarea {
  width: 100%;
  border: 1px solid #dde2ea;
  border-radius: 8px;
  background: #fff;
  color: #2d3036;
  font: inherit;
  font-family: var(--font-regular);
  font-size: 16px;
}

.consult-form input {
  height: 52px;
  padding: 0 16px;
}

.consult-form textarea {
  min-height: 128px;
  padding: 14px 16px;
  resize: vertical;
}

.consult-form input:focus,
.consult-form textarea:focus {
  outline: 0;
  border-color: #006bd6;
  box-shadow: 0 0 0 3px rgba(0, 107, 214, 0.12);
}

.consult-submit {
  justify-self: start;
}

.consult-form-status {
  margin: 0;
  color: #00613b;
  font-family: var(--font-medium);
  font-size: 15px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  background: #101820;
  background-image: linear-gradient(270deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.6) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero-grid {
  display: flex;
  position: relative;
  align-items: center;
  min-height: 620px;
  padding: 226px 0 120px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 584px;
  color: #fafafa;
  font-family: var(--font-medium);
  font-size: 48px;
  font-weight: 400;
  line-height: 64px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

h2 {
  font-family: var(--font-medium);
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.12;
}

h3 {
  font-size: 22px;
}

.hero-text {
  max-width: 514px;
  margin-top: 16px;
  color: #fafafa;
  font-size: 16px;
  line-height: 24px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

.hero-actions,
.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.hero .button-secondary {
  min-height: 56px;
  padding: 16px 24px;
  border-color: #fff;
  background: #fff;
  color: #2d3036;
}

.hero-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-made-ua {
  position: absolute;
  top: 108px;
  right: 44px;
  display: grid;
  gap: 8px;
  width: 132px;
  padding: 10px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.made-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  height: 44px;
}

.made-bars i {
  display: block;
  background: #006bd6;
}

.made-bars i:nth-child(n + 4) {
  background: #ffd33f;
}

.hero-made-ua strong {
  color: #fff;
  font-family: var(--font-medium);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
  white-space: pre-line;
}

.hero-stat-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 8px 24px 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(9px);
}

.hero-stat-area {
  top: 292px;
  right: 174px;
}

.hero-stat-lifts {
  right: 318px;
  bottom: 126px;
}

.hero-stat-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #e5cfa1;
  color: var(--color-dark);
  font-family: var(--font-medium);
  font-size: 20px;
  line-height: 1;
}

.hero-stat-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.hero-stat-pill strong {
  color: #fff;
  font-family: var(--font-medium);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-badges > span {
  padding: 16px 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--font-medium);
  font-size: 14px;
  backdrop-filter: blur(4px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.hero-stats span,
.spec-item {
  min-height: 74px;
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.hero-media {
  position: relative;
}

.hero-media img,
.media-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.media-placeholder {
  background:
    linear-gradient(135deg, #e8ebf0, #f7f8fa),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(17, 24, 39, 0.06) 18px 20px);
}

.section {
  padding: 88px 0;
}

.section:nth-of-type(even) {
  background: var(--color-surface);
}

.section-solutions-menu {
  padding: 88px 0 96px;
  background: #fff;
}

.solutions-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 429px;
  gap: 72px;
  align-items: start;
}

.solutions-list {
  display: grid;
  gap: 12px;
}

.solution-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 24px;
  gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 12px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  color: #080808;
}

.solution-row:hover {
  border-color: #c8dcff;
  background: #f4f8ff;
  color: #080808;
}

.solution-row img {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
  background: #e8e8e8;
}

.solution-row span {
  display: grid;
  gap: 4px;
}

.solution-row strong {
  font-family: var(--font-medium);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.solution-row small {
  color: #5a5a5a;
  font-size: 14px;
  line-height: 24px;
}

.solution-row em {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--color-dark);
  color: #fff;
  box-shadow: 0 2.4px 3.6px rgba(1, 58, 143, 0.2);
  font-style: normal;
  line-height: 1;
}

.solutions-aside {
  display: grid;
  gap: 48px;
}

.highlight-card {
  position: relative;
  display: block;
  overflow: hidden;
  height: 306px;
  border-radius: 8px;
  background: #283747;
  color: #fff;
}

.highlight-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 166px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.48));
  backdrop-filter: blur(2px);
}

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

.highlight-card span {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 4px;
  width: min(335px, calc(100% - 48px));
}

.highlight-card strong {
  font-family: var(--font-medium);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.highlight-card small {
  color: #fafafa;
  font-size: 14px;
  line-height: 24px;
}

.latest-projects {
  display: grid;
  gap: 12px;
}

.latest-projects p {
  margin: 0 0 4px;
  padding: 0 12px 16px;
  border-bottom: 1px solid #e8e8e8;
  color: #777575;
  font-family: var(--font-medium);
  font-size: 14px;
  line-height: 24px;
}

.latest-projects a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  color: #080808;
  font-family: var(--font-medium);
  font-size: 16px;
  line-height: 24px;
}

.latest-projects span {
  color: var(--color-dark);
  font-size: 24px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.home-section {
  padding: 104px 0;
  background: #fff;
}

.home-section + .home-section {
  padding-top: 72px;
}

.home-section h2 {
  max-width: 720px;
  color: #080808;
  font-size: 48px;
  line-height: 1.14;
}

.home-section h3 {
  color: #080808;
  font-family: var(--font-medium);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.28;
}

.home-section p {
  color: #5a5a5a;
  line-height: 1.5;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  margin-bottom: 24px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  background: #e5cfa1;
  color: #2d3036;
  font-family: var(--font-medium);
  font-size: 14px;
  line-height: 24px;
}

.section-kicker::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--color-ink);
  box-shadow: inset 0 0 0 7px #3c4654;
}

.section-kicker.has-icon::before {
  display: none;
}

.section-kicker img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.split-head {
  display: flex;
  max-width: none;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
}

.split-head > div {
  max-width: 900px;
}

.split-head > p {
  max-width: 420px;
  margin: 0;
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.leader-card,
.why-grid article,
.deadline-grid article,
.sector-card,
.partner-preview-grid article,
.reviews-grid article {
  overflow: hidden;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
}

.feature-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.feature-card-media {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 296 / 258;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.feature-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.feature-card > div:not(.feature-card-media) {
  padding: 18px 0 0;
}

.reviews-grid article {
  padding: 24px;
}

.feature-card p,
.leader-card p,
.sector-card p {
  margin: 10px 0 0;
}

.feature-card a,
.leader-card a,
.sector-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--color-accent);
  font-family: var(--font-medium);
  font-size: 15px;
}

.lift-leader {
  background: #fff;
}

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

.leader-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46%;
  min-height: 464px;
  background: #f8f6f6;
}

.leader-card > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px;
}

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

.leader-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  min-height: 464px;
}

.leader-custom-card {
  display: flex;
  position: relative;
  min-height: 464px;
  align-items: center;
  overflow: hidden;
  border: 0;
  background-image: var(--leader-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.leader-custom-card > div {
  position: relative;
  z-index: 1;
  max-width: 590px;
  padding: 56px;
}

.leader-custom-card h3 {
  font-size: 38px;
  line-height: 1.15;
}

.leader-custom-card p {
  max-width: 540px;
  margin-top: 18px;
  color: #2d3036;
}

.leader-custom-card .button {
  min-height: 56px;
  margin-top: 40px;
  padding: 16px 24px;
  font-size: 16px;
}

.leader-card .button {
  min-height: 40px;
  margin-top: 22px;
  padding: 10px 16px;
  font-size: 13px;
}

.why-section h2 {
  margin-bottom: 40px;
}

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

.why-grid article {
  min-height: 260px;
  padding: 28px;
}

.why-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 52px;
  object-fit: contain;
}

.deadline-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 52px;
  object-fit: contain;
}

.why-grid strong {
  display: block;
  color: #080808;
  font-family: var(--font-medium);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.22;
}

.compensation-block {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 88px;
}

.compensation-block > div {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  border-radius: 8px;
  background: transparent;
}

.compensation-block h3 {
  max-width: 540px;
  font-size: 40px;
  line-height: 1.15;
}

.compensation-block img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 8px;
  object-fit: cover;
}

.deadline-section {
  background: #fff;
}

.deadline-section h2,
.sector-section h2,
.partners-reviews h2 {
  margin-bottom: 40px;
}

.deadline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.deadline-grid article {
  min-height: 220px;
  padding: 24px 56px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.deadline-grid article + article {
  border-left: 1px solid #e8e8e8;
}

.section-lead {
  max-width: 748px;
  margin: -18px 0 40px;
}

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

.sector-card {
  overflow: hidden;
  min-height: 0;
  background: #fff;
}

.sector-card img {
  width: 100%;
  aspect-ratio: 620 / 248;
  object-fit: cover;
}

.sector-card div {
  padding: 24px;
}

.sector-wide {
  grid-column: 1 / -1;
  position: relative;
  min-height: 354px;
}

.sector-wide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1280 / 400;
}

.sector-wide div {
  position: absolute;
  top: 88px;
  left: 56px;
  max-width: 390px;
  padding: 0;
}

.portfolio-strip {
  overflow: hidden;
  background: #fff;
}

.portfolio-strip .split-head {
  align-items: flex-start;
}

.portfolio-strip .button {
  margin-top: 28px;
}

.portfolio-slider {
  position: relative;
  margin-top: 8px;
  overflow: hidden;
  padding-left: max(80px, calc((100vw - var(--container)) / 2));
  padding-right: 80px;
}

.portfolio-track {
  display: flex;
}

.portfolio-slide {
  width: min(296px, 24vw);
  flex-shrink: 0;
}

.portfolio-slide-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
}

.portfolio-slide-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.portfolio-slide img {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  object-fit: cover;
}

.portfolio-slide-link span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: #fff;
  font-family: var(--font-medium);
  font-size: 18px;
  line-height: 1.25;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.portfolio-slide-link:hover::after,
.portfolio-slide-link:hover span,
.portfolio-slide-link:focus-visible::after,
.portfolio-slide-link:focus-visible span {
  opacity: 1;
}

.portfolio-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: none;
}

.portfolio-nav img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.portfolio-prev {
  left: 24px;
  transform: translateY(-50%) rotate(180deg);
}

.portfolio-next {
  right: 24px;
}

.partners-reviews {
  background: #fff;
}

.partners-reviews .section-head {
  margin-bottom: 48px;
}

.partners-reviews .section-head .button {
  margin-top: 28px;
}

.partner-preview-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.partner-preview-grid {
  width: 100vw;
  margin-bottom: 32px;
  margin-left: calc(50% - 50vw);
  padding-inline: 56px;
}

.partner-preview-grid article {
  position: relative;
  min-height: 260px;
  border: 0;
  border-radius: 4px;
  background: #dce4ef;
}

.partner-preview-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0) 35%, rgba(8, 8, 8, 0.58) 100%);
}

.partner-preview-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.partner-preview-grid div {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 28px;
  left: 24px;
  color: #fff;
}

.partner-preview-grid h3 {
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
}

.partner-preview-grid a {
  display: inline-flex;
  margin-top: 14px;
  color: #fff;
  font-family: var(--font-medium);
  font-size: 14px;
}

.reviews-grid article {
  min-height: 230px;
  padding: 28px 32px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.review-author span {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9b98a, #2f465d);
}

.reviews-grid strong,
.reviews-grid small {
  display: block;
}

.reviews-grid strong {
  color: #080808;
  font-family: var(--font-medium);
  font-weight: 400;
}

.reviews-grid small {
  margin-top: 2px;
  color: #8c8c8c;
  font-size: 12px;
}

.reviews-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.25;
}

.section-head p:not(.eyebrow):not(.badge-label) {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 26px;
}

.split-head > p:not(.eyebrow):not(.badge-label) {
  max-width: 420px;
  margin: 0;
}

.badge-label {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0 0 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f4f8ff;
  color: var(--color-accent);
  font-family: var(--font-medium);
  font-size: 14px;
  line-height: 24px;
}

.section-copy {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 18px;
}

.row-head {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.portfolio-page {
  padding: 116px 0 96px;
  background: #fff;
}

.portfolio-hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  padding: 88px 72px;
  border-radius: 12px;
  background: #f4f8ff;
}

.portfolio-hero-scheme {
  position: absolute;
  top: 0;
  right: 0;
  width: min(58%, 760px);
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.75;
}

.portfolio-hero-panel > div {
  position: relative;
  z-index: 1;
  max-width: 530px;
}

.portfolio-hero-panel h1 {
  margin: 0 0 24px;
  color: #2d3036;
  font-size: 42px;
  line-height: 1.16;
}

.portfolio-hero-panel p {
  margin: 0 0 32px;
  color: #6d7480;
  font-size: 16px;
  line-height: 1.6;
}

.portfolio-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 96px;
  align-items: start;
  margin-top: 52px;
}

.portfolio-filters {
  position: sticky;
  top: 112px;
}

.portfolio-filters h2 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
  color: #273244;
  font-size: 24px;
  line-height: 1.2;
}

.portfolio-filters h2 span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
}

.portfolio-filters h2 img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.portfolio-filters button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  border: 0;
  background: transparent;
  color: #273244;
  cursor: pointer;
  font-family: var(--font-medium);
  font-size: 16px;
  text-align: left;
}

.portfolio-filters button > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.portfolio-filters button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.portfolio-filters button img.filter-arrow {
  width: 10px;
  height: 6px;
}

.portfolio-filters button > span:last-child {
  color: #a9adb5;
  font-size: 18px;
  line-height: 1;
}

.portfolio-filter-group {
  margin-bottom: 24px;
  border-bottom: 0;
}

.portfolio-filter-group:last-child {
  margin-bottom: 0;
}

.portfolio-filter-group button {
  border-bottom: 0;
}

.portfolio-filter-group.is-open {
  padding-bottom: 0;
  background: transparent;
}

.portfolio-filter-group.is-open button {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 8px;
  background: #f4f8ff;
}

.portfolio-filter-group.is-open button > span:last-child {
  color: var(--color-dark);
}

.portfolio-filter-group label {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  padding: 0 0 0 12px;
  color: #273244;
  font-family: var(--font-medium);
  font-size: 16px;
  line-height: 1.2;
}

.portfolio-filter-options {
  display: none;
  padding-top: 8px;
}

.portfolio-filter-group.is-open .portfolio-filter-options {
  display: block;
}

.portfolio-filter-group input {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 2px solid #cfcfd2;
  border-radius: 5px;
  appearance: none;
  background: #fff;
}

.portfolio-filter-group input:checked {
  border-color: var(--color-accent);
  background: var(--color-accent);
}

.portfolio-filter-group input:checked::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translateY(-1px) rotate(45deg);
}

.portfolio-results > h2 {
  margin: 0 0 8px;
  color: #2d3036;
  font-size: 34px;
  line-height: 1.2;
}

.portfolio-selected-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.portfolio-selected-filters[hidden] {
  display: none;
}

.portfolio-selected-filters span,
.portfolio-selected-filters button {
  padding: 7px 10px;
  border: 0;
  border-radius: 4px;
  background: #f3f5f8;
  color: #6d7480;
  cursor: pointer;
  font-family: var(--font-medium);
  font-size: 12px;
  line-height: 1;
}

.portfolio-project-card.is-hidden {
  display: none;
}

.portfolio-empty {
  margin: 24px 0 0;
  color: #777d86;
  font-size: 16px;
}

.portfolio-project-list {
  display: grid;
  gap: 32px;
}

.portfolio-project-card {
  position: relative;
  overflow: hidden;
  height: 456px;
  border-radius: 10px;
  background: #dce4ef;
}

.portfolio-project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, 0.72) 100%);
}

.portfolio-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-project-card > a {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  color: #fff;
}

.portfolio-project-summary {
  position: absolute;
  right: 36px;
  bottom: 28px;
  left: 36px;
  transition: opacity 0.2s ease;
}

.portfolio-project-card h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 34px;
  line-height: 1.18;
}

.portfolio-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.portfolio-project-tags span {
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(12, 20, 32, 0.72);
  color: #fff;
  font-family: var(--font-medium);
  font-size: 12px;
  line-height: 1;
}

.portfolio-project-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.engineering-page {
  padding: 116px 0 96px;
  background: #fff;
}

.engineering-hero {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  padding: 78px 64px;
  border-radius: 12px;
  background: #f4f8ff;
}

.engineering-hero > div {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.engineering-hero h1 {
  margin: 0 0 28px;
  color: #2d3036;
  font-size: 52px;
  line-height: 1.18;
}

.engineering-hero p {
  max-width: 520px;
  margin: 0 0 36px;
  color: #777575;
  font-size: 18px;
  line-height: 1.6;
}

.engineering-hero > img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.75;
}

.engineering-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  margin-top: 56px;
}

.engineering-filters {
  position: sticky;
  top: 112px;
}

.engineering-filters h2 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 40px;
  color: #273244;
  font-size: 28px;
  line-height: 1.2;
}

.engineering-filters h2 span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--color-accent);
}

.engineering-filters h2 img,
.engineering-filter-group button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.engineering-filter-group {
  margin-bottom: 28px;
}

.engineering-filter-group button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  border: 0;
  background: transparent;
  color: #273244;
  cursor: pointer;
  font-family: var(--font-medium);
  font-size: 17px;
  text-align: left;
}

.engineering-filter-group button > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.engineering-filter-group button img.filter-arrow {
  width: 10px;
  height: 6px;
}

.engineering-filter-group.is-open button {
  min-height: 48px;
  padding: 0 12px;
  border-radius: 8px;
  background: #f4f8ff;
}

.engineering-filter-group label {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  padding-left: 12px;
  color: #273244;
  font-family: var(--font-medium);
  font-size: 16px;
}

.engineering-filter-group input {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 2px solid #cfcfd2;
  border-radius: 5px;
  appearance: none;
  background: #fff;
}

.engineering-filter-group input:checked {
  border-color: var(--color-accent);
  background: var(--color-accent);
}

.engineering-filter-group input:checked::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translateY(-1px) rotate(45deg);
}

.engineering-docs h2 {
  margin: 0 0 8px;
  color: #2d3036;
  font-size: 48px;
  line-height: 1.15;
}

.engineering-count {
  margin: 0 0 20px;
  color: #777575;
  font-size: 16px;
}

.engineering-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.engineering-tags span {
  padding: 10px 16px;
  border-radius: 6px;
  background: #f6f6f7;
  color: #2d3036;
  font-size: 14px;
}

.engineering-doc-list {
  display: grid;
  gap: 16px;
}

.engineering-doc-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 146px;
  padding: 32px 28px;
  border-radius: 12px;
  background: #f6f4f4;
}

.engineering-doc-card.is-blue {
  background: #f1f6ff;
}

.engineering-doc-card h3 {
  margin: 0 0 20px;
  color: #2d3036;
  font-size: 30px;
  line-height: 1.2;
}

.engineering-specs,
.engineering-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.engineering-specs span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 6px;
  background: #fff;
  color: #2d3036;
  font-size: 14px;
}

.engineering-specs img {
  width: 20px;
  height: 20px;
}

.engineering-downloads a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: #e9e9eb;
  color: var(--color-dark);
  font-family: var(--font-medium);
  font-size: 12px;
}

.engineering-doc-card.is-blue .engineering-downloads a {
  background: #cfe3ff;
}

.audience-page {
  min-height: 100vh;
  padding: 154px 0 120px;
  background-image: linear-gradient(180deg, rgba(8, 17, 30, 0.08), rgba(8, 17, 30, 0.08)), url("../images/hero-original.png");
  background-position: center top;
  background-size: cover;
}

.audience-shell {
  padding: 52px;
  border-radius: 20px;
  background: #fff;
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.52fr);
  gap: 72px;
}

.audience-list {
  display: grid;
  gap: 28px;
}

.audience-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 39px;
  gap: 26px;
  align-items: center;
  min-height: 150px;
  padding: 16px;
  border: 1px solid #e4e5e8;
  border-radius: 10px;
  background: #fff;
  color: #2d3036;
}

.audience-card:hover {
  border-color: #f4f8ff;
  background: #f4f8ff;
}

.audience-card > img:first-child {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
}

.audience-card strong,
.audience-docs strong {
  display: block;
  color: #2d3036;
  font-size: 22px;
  line-height: 1.25;
}

.audience-card small {
  display: block;
  margin-top: 14px;
  color: #777575;
  font-size: 18px;
  line-height: 1.45;
}

.audience-arrow {
  width: 39px;
  height: 39px;
  border-radius: 999px;
  object-fit: contain;
}

.audience-side {
  display: grid;
  gap: 52px;
  align-content: start;
}

.audience-article {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border-radius: 8px;
  color: #fff;
}

.audience-article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.58) 100%);
}

.audience-article > img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.audience-article span {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 42px;
  left: 34px;
}

.audience-article strong {
  display: block;
  color: #fff;
  font-size: 26px;
  line-height: 1.25;
}

.audience-article small {
  display: block;
  max-width: 460px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
  line-height: 1.55;
}

.audience-docs {
  position: relative;
  display: flex;
  min-height: 160px;
  align-items: end;
  overflow: hidden;
  padding: 36px;
  border-radius: 8px;
  background: #f4f8ff;
}

.audience-docs-scheme {
  position: absolute;
  top: -64px;
  left: -28px;
  width: 320px;
  height: 210px;
  object-fit: cover;
  opacity: 0.7;
}

.audience-docs .audience-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
}

.about-page {
  min-height: 100vh;
  padding: 154px 0 120px;
  background-image: linear-gradient(180deg, rgba(8, 17, 30, 0.08), rgba(8, 17, 30, 0.08)), url("../images/hero-original.png");
  background-position: center top;
  background-size: cover;
}

.about-shell {
  padding: 52px;
  border-radius: 20px;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.52fr);
  gap: 72px;
  align-items: start;
}

.about-list {
  display: grid;
  gap: 28px;
}

.about-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 39px;
  gap: 26px;
  align-items: center;
  min-height: 150px;
  padding: 16px;
  border: 1px solid #e4e5e8;
  border-radius: 10px;
  background: #fff;
  color: #2d3036;
}

.about-card:hover {
  border-color: #f4f8ff;
  background: #f4f8ff;
}

.about-card > img:first-child {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
}

.about-card strong {
  display: block;
  color: #1f2329;
  font-size: 22px;
  line-height: 1.25;
}

.about-card small {
  display: block;
  margin-top: 14px;
  color: #777575;
  font-size: 18px;
  line-height: 1.45;
}

.about-arrow {
  width: 39px;
  height: 39px;
  border-radius: 999px;
  object-fit: contain;
}

.about-feature {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 500px;
  border-radius: 8px;
  color: #fff;
}

.about-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44%, rgba(0, 0, 0, 0.58) 100%);
}

.about-feature > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.about-feature span {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 42px;
  left: 34px;
}

.about-feature strong {
  display: block;
  color: #fff;
  font-size: 26px;
  line-height: 1.25;
}

.about-feature small {
  display: block;
  max-width: 520px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
  line-height: 1.55;
}

.industries-page {
  min-height: 100vh;
  padding: 154px 0 120px;
  background-image: linear-gradient(180deg, rgba(8, 17, 30, 0.08), rgba(8, 17, 30, 0.08)), url("../images/hero-original.png");
  background-position: center top;
  background-size: cover;
}

.industry-detail-hero {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: center;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.48) 38%, rgba(0, 0, 0, 0.08) 100%), var(--industry-hero);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.industry-detail-hero .container {
  padding-top: 120px;
}

.industry-detail-hero .product-back {
  color: rgba(255, 255, 255, 0.92);
}

.industry-detail-hero h1 {
  max-width: 720px;
  margin: 30px 0 22px;
  color: #fff;
  font-family: var(--font-medium);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.12;
}

.industry-detail-hero p {
  max-width: 650px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.6;
}

.industry-detail-section {
  padding: 58px 0;
  background: #fff;
}

.industry-detail-section h2 {
  max-width: 760px;
  margin: 0;
  color: #2d3036;
  font-family: var(--font-medium);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.16;
}

.industry-detail-lead {
  max-width: 720px;
  margin: 18px 0 36px;
  color: #777575;
  font-size: 16px;
  line-height: 1.65;
}

.industry-problem-grid,
.industry-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.industry-problem-grid article {
  color: #2d3036;
}

.industry-problem-grid img {
  width: 100%;
  height: 178px;
  border-radius: 8px;
  object-fit: cover;
}

.industry-problem-grid h3,
.industry-feature-grid h3 {
  margin: 18px 0 10px;
  color: #2d3036;
  font-family: var(--font-medium);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.28;
}

.industry-problem-grid p,
.industry-feature-grid p {
  margin: 0;
  color: #777575;
  font-size: 14px;
  line-height: 1.55;
}

.industry-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.industry-service-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 286px;
  border-radius: 8px;
  background: #2d3036;
  color: #fff;
}

.industry-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.62));
}

.industry-service-card img {
  width: 100%;
  height: 286px;
  object-fit: cover;
}

.industry-service-card span {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  color: #fff;
  font-family: var(--font-medium);
  font-size: 18px;
  line-height: 1.3;
}

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

.audience-detail-benefits .industry-feature-grid {
  margin-top: 40px;
}

.industry-feature-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid #e9ebef;
  border-radius: 8px;
  background: #fff;
}

.industry-feature-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: #005bc8;
}

.industry-feature-grid span::before {
  content: "";
  width: 12px;
  height: 7px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.industry-detail-projects {
  padding-top: 54px;
}

.industry-faq-list {
  margin-top: 32px;
  border-top: 1px solid #e8e9ed;
}

.industry-faq-list details {
  border-bottom: 1px solid #e8e9ed;
}

.industry-faq-list details[open] {
  background: #f3f7ff;
}

.industry-faq-list summary {
  display: grid;
  grid-template-columns: 80px 1fr 24px;
  gap: 18px;
  align-items: center;
  padding: 28px;
  color: #2d3036;
  cursor: pointer;
  list-style: none;
}

.industry-faq-list summary::-webkit-details-marker {
  display: none;
}

.industry-faq-list summary::after {
  content: "+";
  color: #002d6f;
  font-size: 22px;
  line-height: 1;
  text-align: right;
}

.industry-faq-list details[open] summary::after {
  content: "×";
}

.industry-faq-list summary span {
  color: #a3a7ae;
  font-size: 14px;
}

.industry-faq-list p {
  max-width: 720px;
  margin: -12px 0 0 108px;
  padding: 0 28px 28px 0;
  color: #777575;
  line-height: 1.6;
}

.industry-order-card {
  margin-top: 64px;
}

.industries-shell {
  padding: 52px;
  border-radius: 20px;
  background: #fff;
}

.industries-hero-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 204px;
  border-radius: 8px;
  color: #fff;
}

.industries-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.4) 44%, rgba(0, 0, 0, 0.22) 100%);
}

.industries-hero-card > img:first-child {
  display: block;
  width: 100%;
  height: 204px;
  object-fit: cover;
}

.industries-hero-card span {
  position: absolute;
  z-index: 1;
  top: 48px;
  left: 34px;
  max-width: 640px;
}

.industries-hero-card strong,
.industries-card strong {
  display: block;
  color: currentColor;
  font-size: 26px;
  line-height: 1.25;
}

.industries-hero-card small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  line-height: 1.55;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 52px;
  margin-top: 28px;
}

.industries-card {
  position: relative;
  display: flex;
  gap: 22px;
  min-height: 174px;
  align-items: center;
  padding: 34px;
  border: 1px solid #e4e5e8;
  border-radius: 10px;
  background: #fff;
  color: #2d3036;
}

.industries-card-thumb {
  flex: 0 0 132px;
  width: 132px;
  height: 112px;
  border-radius: 8px;
  object-fit: cover;
}

.industries-card:hover {
  border-color: #f4f8ff;
  background: #f4f8ff;
}

.industries-card small {
  display: block;
  margin-top: 16px;
  color: #777575;
  font-size: 19px;
  line-height: 1.55;
}

.industries-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 39px;
  height: 39px;
  border-radius: 999px;
  object-fit: contain;
}

.services-page {
  min-height: 100vh;
  padding: 154px 0 120px;
  background-image: linear-gradient(180deg, rgba(8, 17, 30, 0.08), rgba(8, 17, 30, 0.08)), url("../images/hero-original.png");
  background-position: center top;
  background-size: cover;
}

.services-shell {
  padding: 52px;
  border-radius: 20px;
  background: #fff;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.54fr);
  gap: 88px;
  align-items: start;
}

.services-list {
  display: grid;
  gap: 16px;
}

.services-menu-card {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 39px;
  gap: 22px;
  align-items: center;
  min-height: 142px;
  padding: 14px;
  border: 1px solid #e4e5e8;
  border-radius: 8px;
  background: #fff;
  color: #2d3036;
}

.services-menu-card:hover {
  border-color: #f4f8ff;
  background: #f4f8ff;
}

.services-menu-card > img:first-child {
  width: 112px;
  height: 112px;
  border-radius: 8px;
  object-fit: cover;
}

.services-menu-card strong {
  display: block;
  color: #1f2329;
  font-size: 21px;
  line-height: 1.25;
}

.services-menu-card small {
  display: block;
  margin-top: 14px;
  color: #777575;
  font-size: 17px;
  line-height: 1.45;
}

.services-arrow,
.services-feature-arrow {
  width: 39px;
  height: 39px;
  border-radius: 999px;
  object-fit: contain;
}

.services-side {
  display: grid;
  gap: 66px;
}

.services-feature {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 380px;
  border-radius: 8px;
  color: #fff;
}

.services-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0.62) 100%);
}

.services-feature > img:first-child {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.service-category-page {
  padding: 42px 0 120px;
  background: #fff;
}

.service-category-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  min-height: 398px;
  overflow: hidden;
  border-radius: 20px;
  background: #f3f7ff;
}

.service-category-hero > div {
  padding: 56px 0 56px 64px;
}

.service-category-hero h1 {
  max-width: 640px;
  margin: 0;
  color: #2d3036;
  font-family: var(--font-medium);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.18;
}

.service-category-hero p {
  max-width: 610px;
  margin: 28px 0 34px;
  color: #777575;
  font-size: 18px;
  line-height: 1.55;
}

.service-category-hero img {
  width: 100%;
  height: 100%;
  min-height: 398px;
  object-fit: cover;
  opacity: 0.55;
}

.service-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 64px;
}

.service-category-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 412px;
  border-radius: 8px;
  color: #fff;
}

.service-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68));
}

.service-category-card img {
  width: 100%;
  height: 412px;
  object-fit: cover;
}

.service-category-card span {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
  z-index: 1;
}

.service-category-card strong {
  display: block;
  max-width: 320px;
  color: #fff;
  font-family: var(--font-medium);
  font-size: 24px;
  line-height: 1.28;
}

.service-category-card small {
  display: inline-flex;
  max-width: 100%;
  margin-top: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  backdrop-filter: blur(12px);
}

.industry-category-page .service-category-hero {
  min-height: 360px;
}

.industry-category-page .service-category-hero img {
  min-height: 360px;
  object-fit: contain;
  object-position: right center;
}

.industry-category-grid {
  gap: 24px;
  margin-top: 48px;
}

.industry-category-card {
  min-height: 260px;
  border-radius: 8px;
}

.industry-category-card::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.52) 58%, rgba(0, 0, 0, 0.78) 100%);
}

.industry-category-card img {
  height: 260px;
}

.industry-category-card span {
  right: 22px;
  bottom: 22px;
  left: 22px;
}

.industry-category-card strong {
  max-width: 100%;
  font-size: 19px;
}

.industry-category-card small {
  display: block;
  max-width: 100%;
  margin-top: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.45;
  backdrop-filter: none;
}

.services-feature span {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 34px;
  left: 34px;
}

.services-feature strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
}

.services-feature small {
  display: block;
  max-width: 420px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.55;
}

.services-feature-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.services-projects h2 {
  margin: 0 0 28px;
  padding-bottom: 28px;
  border-bottom: 1px dashed #e2e2e2;
  color: #777575;
  font-size: 18px;
  line-height: 1.3;
}

.services-project-link {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-radius: 8px;
  color: #0a57d6;
  font-size: 20px;
  line-height: 1.2;
}

.services-project-link:hover {
  background: #f4f8ff;
}

.services-project-link span:last-child {
  color: #00377d;
  font-size: 34px;
  line-height: 1;
}

.case-hero {
  min-height: 720px;
  padding: 150px 0 92px;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.18)), var(--case-image);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.case-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 112px;
  color: #fff;
  font-family: var(--font-medium);
  font-size: 14px;
}

.case-hero-content {
  max-width: 700px;
}

.case-hero h1 {
  margin: 0 0 26px;
  color: #fff;
  font-size: 58px;
  line-height: 1.1;
}

.case-hero p {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.55;
}

.case-location {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 18px;
  border-radius: 8px;
  background: rgba(29, 31, 37, 0.55);
  color: #fff;
  font-size: 14px;
}

.case-section {
  padding: 72px 0;
  background: #fff;
}

.case-narrow {
  max-width: 780px;
  margin-left: max(80px, calc((100vw - var(--container)) / 2));
}

.case-section h2 {
  margin: 0 0 48px;
  color: #2d3036;
  font-size: 52px;
  line-height: 1.12;
}

.case-about p {
  max-width: 720px;
  margin: 0 0 18px;
  color: #777575;
  font-size: 16px;
  line-height: 1.75;
}

.case-check-list {
  display: grid;
  gap: 18px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.case-check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #2d3036;
  font-family: var(--font-medium);
  font-size: 15px;
}

.case-check-list img {
  width: 24px;
  height: 24px;
}

.case-integration {
  padding-top: 0;
}

.case-gallery {
  position: relative;
  width: calc(100vw - 80px);
  margin-top: 36px;
  margin-left: calc(50% - 50vw + 80px);
  overflow: hidden;
}

.case-gallery-slide {
  width: min(1060px, 62vw);
}

.case-gallery-slide img {
  width: 100%;
  height: 430px;
  border-radius: 8px;
  object-fit: cover;
}

.case-gallery-next,
.case-related-arrow {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.case-gallery-next {
  top: 50%;
  right: 42px;
  transform: translateY(-50%);
}

.case-gallery-next img,
.case-related-arrow img {
  width: 80px;
  height: 80px;
}

.case-related {
  overflow: hidden;
  padding-top: 54px;
  text-align: center;
}

.case-related h2 {
  text-align: left;
}

.case-related-slider {
  position: relative;
  overflow: visible;
  width: 100vw;
  min-height: 610px;
  margin-left: calc(50% - 50vw);
  padding-top: 64px;
}

.case-related-wrapper {
  align-items: flex-start;
}

.case-related-card {
  position: relative;
  z-index: 1;
  width: min(820px, 56vw);
  flex-shrink: 0;
}

.case-related-card-inner {
  opacity: 0.38;
  transform: scale(0.72);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.case-related-card.swiper-slide-active .case-related-card-inner {
  opacity: 1;
  transform: scale(1);
}

.case-related-card-inner > img {
  width: 100%;
  height: 390px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.case-related-card::before,
.case-related-card::after {
  display: none;
}

.case-related-card-inner h3 {
  margin: 38px 0 18px;
  color: #2d3036;
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.case-related-card-inner p {
  max-width: 720px;
  margin: 0 auto 22px;
  color: #777575;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.case-related-card-inner a {
  color: var(--color-accent);
  font-family: var(--font-medium);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.case-related-card.swiper-slide-active h3,
.case-related-card.swiper-slide-active p,
.case-related-card.swiper-slide-active a {
  opacity: 1;
}

.case-related-arrow {
  top: 242px;
  z-index: 5;
}

.case-related-prev {
  left: calc(50% - min(820px, 56vw) / 2 - 148px);
  transform: rotate(180deg);
}

.case-related-next {
  right: calc(50% - min(820px, 56vw) / 2 - 148px);
}

.portfolio-project-hover {
  position: absolute;
  inset: 0;
  padding: 44px 36px 28px;
  opacity: 0;
  background: rgba(110, 87, 65, 0.78);
  backdrop-filter: blur(10px);
  transition: opacity 0.2s ease;
}

.portfolio-project-card:hover .portfolio-project-hover,
.portfolio-project-card:focus-within .portfolio-project-hover {
  opacity: 1;
}

.portfolio-project-card:hover .portfolio-project-summary,
.portfolio-project-card:focus-within .portfolio-project-summary {
  opacity: 0;
}

.portfolio-project-hover h3 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: 24px;
}

.portfolio-project-hover p {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.55;
}

.portfolio-card-arrow {
  position: absolute;
  top: 42px;
  right: 36px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f1d9a5;
  color: var(--color-dark);
  font-family: var(--font-medium);
}

.portfolio-project-hover strong {
  display: block;
  margin: 26px 0 12px;
  color: #fff;
  font-family: var(--font-medium);
  font-size: 14px;
  font-weight: 400;
}

.portfolio-product-thumbs {
  display: flex;
  gap: 10px;
}

.portfolio-product-thumbs img {
  width: 72px;
  height: 72px;
  min-height: 0;
  border-radius: 4px;
  object-fit: cover;
}

.listing-grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.section-product-cards {
  background: #fff;
}

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

.product-card {
  position: relative;
  display: grid;
  min-height: 464px;
  overflow: hidden;
  border-radius: 8px;
  background: #e7e8eb;
}

.product-card-wide {
  grid-column: 1 / -1;
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 37, 97, 0.72));
}

.product-card div {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 32px;
  color: #fff;
}

.product-card h3 {
  font-family: var(--font-medium);
  font-size: 30px;
  font-weight: 400;
  line-height: 38px;
}

.product-card p {
  max-width: 540px;
  margin: 10px 0 0;
  color: #fafafa;
}

.section-partners {
  background: #fff;
}

.section-partners h2 {
  max-width: 1264px;
  margin-bottom: 32px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.partner-grid article {
  min-height: 304px;
  padding: 24px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
}

.partner-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  border-radius: 999px;
  background: #e5cfa1;
  color: #002561;
  font-family: var(--font-medium);
}

.partner-grid h3 {
  font-family: var(--font-medium);
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
}

.partner-grid p {
  margin: 8px 0 0;
  color: #5a5a5a;
}

.listing-card,
.info-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
}

.listing-card {
  display: flex;
  flex-direction: column;
}

.listing-card-media,
.card-media {
  display: block;
  background: var(--color-surface);
}

.listing-card-media img,
.card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.listing-card-body,
.info-card {
  padding: 24px;
}

.listing-card h2 {
  font-size: 24px;
}

.listing-card p,
.info-card p {
  color: var(--color-muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--color-accent);
  font-weight: 800;
}

.card-link::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.split-media img,
.split-media .media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  object-fit: cover;
}

.split-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
}

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

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img,
.gallery-grid .media-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
}

.gallery-grid figcaption {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 14px;
}

.cta-band {
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--color-dark);
  color: #fff;
}

.archive-hero {
  padding: 86px 0 54px;
  border-bottom: 1px solid var(--color-line);
  background: var(--color-surface);
}

.archive-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
}

.archive-description {
  max-width: 720px;
  margin-top: 18px;
  color: var(--color-muted);
}

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

.spec-item span {
  display: block;
  color: var(--color-muted);
  font-size: 13px;
}

.spec-item strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.site-footer {
  padding: 72px 0 58px;
  border-top: 1px solid #e8e8e8;
  background: #fff;
  color: #5a5a5a;
}

.footer-layout {
  max-width: 1280px;
}

.footer-top {
  margin-bottom: 48px;
}

.brand-footer {
  display: inline-flex;
  color: #080808;
}

.brand-footer .brand-logo {
  width: 146px;
  max-width: 146px;
  filter: grayscale(1) brightness(0.42);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: start;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 56px;
}

.footer-column h3 {
  margin: 0 0 24px;
  color: #080808;
  font-size: 16px;
  line-height: 1.2;
}

.footer-column ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  color: #777575;
  font-size: 14px;
  line-height: 1.3;
}

.footer-column a:hover,
.social-links a:hover {
  color: var(--color-accent);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  padding-top: 6px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--color-dark);
  font-family: var(--font-medium);
  font-size: 17px;
  line-height: 1;
}

.footer-info {
  display: grid;
  grid-template-columns: minmax(0, 560px) auto;
  gap: 80px;
  align-items: end;
  margin-top: 72px;
}

.footer-info p {
  margin: 0;
  color: #777575;
  font-size: 14px;
  line-height: 1.55;
}

.footer-awards {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-awards img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  color: #777575;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 42px;
}

.footer-legal a:hover {
  color: var(--color-accent);
}

.pagination {
  margin-top: 36px;
}

@media (max-width: 1024px) {
  .header-mega-menus {
    display: none;
  }

  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .site-header {
    top: 12px;
    width: min(calc(100% - 24px), 1416px);
    border-radius: 8px;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 72px;
    padding-inline: 24px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  .primary-nav.is-open {
    position: absolute;
    top: 72px;
    right: 24px;
    left: 24px;
    display: block;
    padding: 18px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .primary-nav.is-open .nav-menu {
    display: grid;
    gap: 0;
    justify-content: stretch;
  }

  .primary-nav.is-open .nav-menu a {
    min-height: 48px;
    border-bottom-width: 1px;
  }

  .hero {
    min-height: 680px;
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 160px 0 88px;
  }

  .hero-badges {
    display: none;
  }

  .solutions-panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .listing-grid,
  .cards-grid,
  .product-grid,
  .partner-grid,
  .specs-grid,
  .feature-card-grid,
  .why-grid,
  .deadline-grid,
  .partner-preview-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-section {
    padding: 88px 0;
  }

  .home-section h2 {
    font-size: 44px;
  }

  .split-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .leader-grid,
  .sector-grid,
  .compensation-block {
    grid-template-columns: 1fr;
  }

  .leader-card,
  .leader-wide,
  .sector-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .leader-card img {
    min-height: 260px;
  }

  .sector-wide img {
    aspect-ratio: 16 / 10;
  }

  .partner-preview-grid {
    padding-inline: 24px;
  }

  .portfolio-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .portfolio-filters,
  .engineering-filters {
    position: static;
  }

  .engineering-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .portfolio-project-card {
    height: 400px;
  }

  .case-gallery-slide {
    width: 100%;
  }

  .case-narrow {
    max-width: none;
    margin-left: auto;
  }

  .portfolio-slider {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .footer-main,
  .footer-info {
    grid-template-columns: 1fr;
  }

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

  .footer-info {
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .consult-modal {
    padding: 14px;
  }

  .consult-modal-dialog {
    padding: 30px 18px 22px;
    border-radius: 10px;
  }

  .consult-modal-head h2 {
    font-size: 26px;
  }

  .consult-form {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .brand-logo {
    width: 142px;
    max-width: 142px;
  }

  .hero {
    min-height: 620px;
    border-width: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.72)), var(--hero-image);
    background-position: center;
  }

  .hero-grid {
    padding: 132px 0 72px;
  }

  h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .hero-text {
    font-size: 15px;
    line-height: 24px;
  }

  .section-solutions-menu {
    padding-top: 48px;
  }

  .solution-row {
    grid-template-columns: 72px minmax(0, 1fr) 24px;
    min-height: 96px;
  }

  .solution-row img {
    width: 72px;
    height: 72px;
  }

  .solution-row small {
    display: none;
  }

  .highlight-card {
    height: 260px;
  }

  .hero-stats,
  .listing-grid,
  .cards-grid,
  .product-grid,
  .partner-grid,
  .specs-grid,
  .gallery-grid,
  .feature-card-grid,
  .why-grid,
  .deadline-grid,
  .sector-grid,
  .partner-preview-grid,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-main {
    gap: 36px;
  }

  .footer-awards {
    flex-wrap: wrap;
  }

  .partner-preview-grid {
    padding-inline: 14px;
  }

  .portfolio-page {
    padding: 96px 0 64px;
  }

  .portfolio-hero-panel {
    min-height: 320px;
    padding: 42px 24px;
  }

  .portfolio-hero-panel h1 {
    font-size: 34px;
  }

  .engineering-page {
    padding: 96px 0 64px;
  }

  .engineering-hero {
    min-height: 320px;
    padding: 42px 24px;
  }

  .engineering-hero h1,
  .engineering-docs h2 {
    font-size: 34px;
  }

  .engineering-doc-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .audience-page {
    padding: 112px 0 64px;
  }

  .audience-shell {
    padding: 18px;
    border-radius: 14px;
  }

  .audience-card {
    grid-template-columns: 88px minmax(0, 1fr) 39px;
    gap: 16px;
  }

  .audience-card > img:first-child {
    width: 88px;
    height: 88px;
  }

  .audience-card strong,
  .audience-docs strong {
    font-size: 19px;
  }

  .audience-card small,
  .audience-article small {
    font-size: 15px;
  }

  .audience-article,
  .audience-article > img {
    min-height: 320px;
  }

  .about-page {
    padding: 112px 0 64px;
  }

  .about-shell {
    padding: 18px;
    border-radius: 14px;
  }

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

  .about-card {
    grid-template-columns: 88px minmax(0, 1fr) 39px;
    gap: 16px;
  }

  .about-card > img:first-child {
    width: 88px;
    height: 88px;
  }

  .about-card strong {
    font-size: 19px;
  }

  .about-card small,
  .about-feature small {
    font-size: 15px;
  }

  .about-feature,
  .about-feature > img {
    min-height: 320px;
  }

  .industries-page {
    padding: 112px 0 64px;
  }

  .industries-shell {
    padding: 18px;
    border-radius: 14px;
  }

  .industries-hero-card,
  .industries-hero-card > img:first-child {
    min-height: 260px;
    height: 260px;
  }

  .industries-hero-card span {
    top: auto;
    right: 24px;
    bottom: 28px;
    left: 24px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
  }

  .industries-card {
    min-height: 148px;
    padding: 28px 64px 28px 24px;
  }

  .industries-hero-card strong,
  .industries-card strong {
    font-size: 21px;
  }

  .industries-hero-card small,
  .industries-card small {
    font-size: 15px;
  }

  .services-page {
    padding: 112px 0 64px;
  }

  .services-shell {
    padding: 18px;
    border-radius: 14px;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .services-menu-card {
    grid-template-columns: 88px minmax(0, 1fr) 39px;
    gap: 16px;
    min-height: 118px;
  }

  .services-menu-card > img:first-child {
    width: 88px;
    height: 88px;
  }

  .services-menu-card strong {
    font-size: 18px;
  }

  .services-menu-card small,
  .services-feature small {
    font-size: 15px;
  }

  .services-feature,
  .services-feature > img:first-child {
    min-height: 320px;
    height: 320px;
  }

  .portfolio-project-card {
    height: 360px;
  }

  .portfolio-project-summary {
    right: 20px;
    bottom: 22px;
    left: 20px;
  }

  .portfolio-project-hover {
    padding: 32px 20px 22px;
  }

  .case-hero {
    min-height: 560px;
    padding: 124px 0 64px;
  }

  .case-back {
    margin-bottom: 72px;
  }

  .case-hero h1,
  .case-section h2 {
    font-size: 34px;
  }

  .case-section {
    padding: 52px 0;
  }

  .case-gallery-slide img,
  .case-related-card-inner > img {
    height: 280px;
  }

  .case-gallery {
    width: calc(100vw - 28px);
    margin-left: calc(50% - 50vw + 14px);
  }

  .case-gallery-slide {
    width: 100%;
  }

  .case-related-slider {
    min-height: 480px;
    width: 100%;
    margin-left: 0;
    padding-top: 0;
  }

  .case-related-card {
    width: 100%;
  }

  .case-related-card-inner {
    opacity: 1;
    transform: none;
  }

  .case-related-card::before,
  .case-related-card::after,
  .case-related-arrow {
    display: none;
  }

  .portfolio-project-card h3 {
    font-size: 25px;
  }

  .portfolio-project-tags span {
    padding: 7px 9px;
  }

  .home-section {
    padding: 64px 0;
  }

  .home-section h2 {
    font-size: 34px;
    line-height: 1.16;
  }

  .home-section h3 {
    font-size: 21px;
  }

  .leader-card,
  .leader-wide {
    min-height: auto;
  }

  .leader-card > div,
  .deadline-grid article,
  .compensation-block > div {
    padding: 24px;
  }

  .why-icon,
  .deadline-icon {
    margin-bottom: 28px;
  }

  .compensation-block {
    margin-top: 48px;
  }

  .compensation-block > div,
  .compensation-block img {
    min-height: 320px;
  }

  .compensation-block h3 {
    font-size: 28px;
  }

  .sector-wide,
  .leader-wide {
    grid-template-columns: 1fr;
  }

  .portfolio-slide {
    width: min(260px, 72vw);
  }

  .portfolio-slide img {
    height: 280px;
  }

.portfolio-nav {
  display: none;
}

.product-card,
.product-card-wide {
  grid-column: auto;
  min-height: 340px;
}

  .row-head,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }

  .split-panel,
  .cta-band {
    padding: 24px;
  }

  .brand-name {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.case-related-slider .case-related-card:not(.swiper-slide-active) .case-related-card-inner {
  opacity: 0.38;
  transform: scale(0.72);
}

.case-related-slider .case-related-card.swiper-slide-active .case-related-card-inner {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Design mockup pages: blog, contacts, product detail */
.blog-page,
.article-page,
.survey-page,
.product-hero,
.product-section {
  background: #fff;
}

.blog-shell,
.article-shell,
.survey-shell {
  max-width: 1180px;
}

.blog-head {
  padding: 80px 0 48px;
}

.blog-head h1,
.survey-head h1,
.article-page h1,
.product-hero h1,
.product-section h2 {
  margin: 0;
  color: #2d3036;
  font-family: var(--font-medium);
  font-weight: 500;
  letter-spacing: 0;
}

.blog-head h1,
.survey-head h1 {
  font-size: 56px;
  line-height: 1.1;
}

.blog-head p {
  max-width: 640px;
  margin: 24px 0 0;
  color: #7a7f88;
  font-size: 16px;
  line-height: 1.7;
}

.blog-featured-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 340px;
  border-radius: 12px;
  color: #fff;
}

.blog-featured-card > img,
.blog-card > img,
.blog-small-card > img,
.article-hero-image {
  width: 100%;
  object-fit: cover;
}

.blog-featured-card > img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.blog-featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 30, 66, 0.72), rgba(0, 30, 66, 0.08));
}

.blog-featured-card span {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 560px;
  gap: 18px;
  padding: 76px 48px;
}

.blog-featured-card strong {
  font-size: 30px;
  line-height: 1.2;
}

.blog-featured-card small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.6;
}

.blog-featured-card em {
  width: max-content;
  border-radius: 8px;
  background: #fff;
  padding: 12px 18px;
  color: #273244;
  font-style: normal;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 36px;
}

.blog-card,
.blog-small-card {
  overflow: hidden;
  border: 1px solid #e8e8ea;
  border-radius: 8px;
  background: #fff;
  color: #2d3036;
}

.blog-card > img {
  height: 220px;
}

.blog-card span,
.blog-small-card {
  display: grid;
  gap: 14px;
}

.blog-card span {
  padding: 28px 28px 34px;
}

.blog-card strong {
  font-size: 26px;
  line-height: 1.22;
}

.blog-card small,
.blog-small-card small {
  color: #7a7f88;
  font-size: 15px;
  line-height: 1.55;
}

.blog-more {
  padding: 88px 0 100px;
}

.blog-more h2 {
  margin: 0 0 44px;
  color: #2d3036;
  font-size: 48px;
  line-height: 1.1;
}

.blog-small-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.blog-small-card {
  border: 0;
}

.blog-small-card > img {
  height: 170px;
  border-radius: 8px;
}

.blog-small-card strong {
  font-size: 18px;
  line-height: 1.25;
}

.article-shell {
  max-width: 1060px;
  padding: 42px 0 110px;
}

.article-hero-image {
  height: 460px;
  border-radius: 10px;
}

.article-page h1 {
  max-width: 920px;
  margin-top: 56px;
  font-size: 56px;
  line-height: 1.12;
}

.article-meta {
  display: flex;
  gap: 58px;
  margin: 32px 0 56px;
  color: #858a92;
  font-size: 13px;
}

.article-content {
  max-width: 820px;
  color: #535862;
  font-size: 16px;
  line-height: 1.8;
}

.article-content h2 {
  margin: 56px 0 24px;
  color: #273244;
  font-size: 34px;
  line-height: 1.25;
}

.article-content p {
  margin: 0 0 28px;
}

.article-content ul {
  margin: 0 0 36px;
  padding-left: 20px;
}

.article-content li + li {
  margin-top: 12px;
}

.article-content img,
.article-content figure img {
  display: block;
  width: 100%;
  max-width: 680px;
  height: auto;
  margin: 42px 0 52px;
  border-radius: 8px;
}

.article-content figure {
  margin: 42px 0 52px;
}

.article-content figure img {
  margin: 0;
}

.survey-page {
  background: #f3f7ff;
}

.survey-shell {
  padding: 72px 0 110px;
}

.survey-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
}

.survey-form {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 18px;
  background: #fff;
  padding: 52px 68px;
  box-shadow: 0 20px 50px rgba(26, 50, 87, 0.08);
}

.survey-step {
  padding-bottom: 38px;
  margin-bottom: 36px;
  border-bottom: 1px solid #edf0f4;
}

.survey-step h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: #2d3036;
  font-size: 24px;
}

.survey-step h2 span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #2d3036;
  color: #fff;
  font-size: 13px;
}

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

.survey-form label {
  display: grid;
  gap: 8px;
  color: #7a7f88;
  font-size: 13px;
}

.survey-form input,
.survey-form select,
.survey-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #dfe3e9;
  border-radius: 8px;
  background: #fff;
  padding: 0 16px;
  color: #273244;
  font: inherit;
}

.survey-form textarea {
  min-height: 132px;
  padding: 16px;
  resize: vertical;
}

.survey-inline,
.survey-upload,
.survey-checks {
  display: flex;
  gap: 12px;
}

.survey-checks {
  flex-wrap: wrap;
  margin-top: 20px;
}

.survey-checks label {
  display: flex;
  align-items: center;
  color: #273244;
  font-size: 15px;
}

.survey-checks input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--color-accent);
}

.survey-upload button {
  border: 0;
  border-radius: 8px;
  background: #f2d99e;
  padding: 0 22px;
  color: #273244;
}

.survey-submit {
  min-width: 180px;
}

.product-hero {
  overflow: hidden;
  background: linear-gradient(180deg, #f3f8ff 0%, #fff 100%);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 44px;
  align-items: center;
  min-height: 520px;
  padding-top: 54px;
}

.product-back {
  display: inline-flex;
  margin-bottom: 48px;
  color: #0a56c5;
  font-size: 14px;
}

.product-hero h1 {
  font-size: 54px;
  line-height: 1.1;
}

.product-hero p {
  max-width: 560px;
  margin: 24px 0 34px;
  color: #6f7682;
  font-size: 17px;
  line-height: 1.7;
}

.product-hero-grid > img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.product-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
  margin-top: -44px;
  margin-bottom: 72px;
  border: 1px solid #e7e9ee;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 45px rgba(24, 45, 78, 0.1);
  backdrop-filter: blur(8px);
}

.product-badges article {
  display: grid;
  gap: 8px;
  padding: 26px 34px;
  text-align: center;
}

.product-badges article + article {
  border-left: 1px solid #e7e9ee;
}

.product-badges strong {
  color: #273244;
  font-size: 18px;
}

.product-badges small {
  color: #8b9098;
}

.product-section {
  padding: 62px 0;
}

.product-section h2 {
  font-size: 42px;
  line-height: 1.16;
}

.product-section-copy,
.product-section .section-head p {
  max-width: 620px;
  color: #8a8f98;
  line-height: 1.65;
}

.product-tech-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 22px 34px;
  align-items: start;
  min-height: 260px;
  margin-top: 34px;
  border-radius: 10px;
  background: #2d3036;
  color: #fff;
  padding: 32px 32px 28px;
}

.product-tech-card h3 {
  margin: 0;
  font-size: 22px;
}

.product-tech-title {
  position: relative;
  z-index: 1;
  padding-top: 2px;
}

.product-tech-visual {
  position: relative;
  min-height: 156px;
}

.product-tech-visual::before,
.product-tech-visual::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.product-tech-visual::before {
  left: 0;
}

.product-tech-visual::after {
  left: 50%;
}

.product-tech-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 170px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.85) contrast(0.85);
  opacity: 0.34;
}

.product-tech-blueprint {
  position: relative;
  z-index: 1;
  height: 170px;
  opacity: 0.52;
}

.product-tech-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 42px;
  border: 1px solid rgba(194, 218, 255, 0.5);
  border-left: 0;
  border-right: 0;
}

.product-tech-line::before,
.product-tech-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34%;
  height: 1px;
  background: rgba(194, 218, 255, 0.42);
}

.product-tech-line::before {
  left: 3%;
  transform: translateY(-50%) rotate(-12deg);
}

.product-tech-line::after {
  right: 4%;
  transform: translateY(-50%) rotate(12deg);
}

.product-tech-line.is-top {
  top: 28px;
}

.product-tech-line.is-bottom {
  top: 96px;
}

.product-tech-mark {
  position: absolute;
  top: 0;
  color: rgba(239, 216, 155, 0.9);
  font-size: 12px;
  line-height: 1;
}

.product-tech-mark::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 1px;
  height: 118px;
  background: rgba(194, 218, 255, 0.35);
}

.product-tech-mark.is-one {
  left: 18%;
}

.product-tech-mark.is-two {
  left: 50%;
}

.product-tech-mark.is-three {
  right: 6%;
}

.product-tech-specs {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.product-tech-specs span {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  gap: 8px;
  padding: 4px 14px 4px 5px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.product-tech-specs i {
  display: inline-grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 999px;
  background: #efd89b;
  color: #273244;
  font-style: normal;
  font-weight: 700;
}

.product-accordion {
  margin-top: 32px;
  border-top: 1px solid #e8e9ed;
}

.product-accordion details {
  border-bottom: 1px solid #e8e9ed;
  color: #273244;
}

.product-accordion details[open] {
  background: #f4f8ff;
}

.product-accordion summary {
  display: grid;
  grid-template-columns: 90px 1fr;
  cursor: pointer;
  padding: 24px 28px;
  font-size: 18px;
}

.product-accordion p {
  margin: 0;
  padding: 0 28px 24px 118px;
  color: #7a7f88;
}

.product-doc-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 34px 0 52px;
  border-radius: 10px;
  background: #f3f8ff;
  padding: 18px 20px;
}

.product-doc-row strong {
  flex: 1;
}

.product-doc-row span {
  border-radius: 8px;
  background: #cfe3ff;
  padding: 12px 16px;
  color: #002d6f;
  font-size: 12px;
}

.product-order-card {
  min-height: 300px;
  border-radius: 12px;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.88), rgba(255,255,255,0.52)), var(--order-image);
  background-position: center;
  background-size: cover;
  padding: 64px;
}

.product-order-card h3 {
  max-width: 520px;
  margin: 0 0 16px;
  color: #273244;
  font-size: 32px;
}

.product-order-card p {
  max-width: 520px;
  color: #535862;
}

.product-brochure-slider {
  overflow: hidden;
  margin-top: 34px;
}

.product-brochure {
  display: grid;
  align-content: space-between;
  width: 220px;
  min-height: 210px;
  border-radius: 10px;
  padding: 24px;
}

.product-brochure.is-yellow {
  background: #fff5d9;
}

.product-brochure.is-blue {
  background: #eef6ff;
}

.product-brochure span {
  justify-self: end;
  border-radius: 8px;
  background: #d7e8ff;
  padding: 10px;
  color: #002d6f;
  font-size: 11px;
}

.product-brochure strong {
  color: #273244;
  font-size: 16px;
}

.about-company-page {
  background: #fff;
  color: #2f333c;
}

.about-company-hero {
  padding: 92px 0 78px;
  text-align: center;
}

.about-company-hero h1 {
  max-width: 820px;
  margin: 0 auto 22px;
  color: #2d3036;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.12;
}

.about-company-hero p {
  max-width: 760px;
  margin: 0 auto 50px;
  color: #747982;
  font-size: 18px;
  line-height: 1.6;
}

.about-company-hero-image {
  position: relative;
  overflow: visible;
  border-radius: 10px;
}

.about-company-hero-image img {
  display: block;
  width: 100%;
  height: 500px;
  border-radius: 10px;
  object-fit: cover;
}

.about-company-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 210px repeat(3, minmax(0, 1fr));
  width: min(1040px, calc(100% - 96px));
  min-height: 176px;
  margin: -68px auto 0;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 236, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(20, 35, 60, 0.12);
  backdrop-filter: blur(18px);
}

.about-company-stats article {
  display: grid;
  align-content: center;
  gap: 12px;
  justify-items: center;
  padding: 28px 34px;
}

.about-company-stats article + article {
  border-left: 1px solid #e7e9ee;
}

.about-company-stats img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.about-company-award {
  padding-inline: 42px;
}

.about-company-stats strong {
  color: #2d3036;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.about-company-stats span {
  color: #767b84;
  font-size: 18px;
  line-height: 1.35;
}

.about-company-section {
  padding: 72px 0;
}

.about-company-section h2 {
  max-width: 760px;
  margin: 0 0 34px;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.16;
}

.about-company-section p {
  color: #70757f;
  font-size: 17px;
  line-height: 1.65;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-why-grid article {
  min-height: 218px;
  border: 1px solid #e6e8ed;
  border-radius: 8px;
  background: #fff;
  padding: 34px;
}

.about-why-grid article > img {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  object-fit: contain;
}

.about-why-grid h3 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 500;
}

.about-why-grid p {
  margin: 0;
  font-size: 15px;
}

.about-compensation-row,
.about-split-block,
.about-tower-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.about-compensation-row {
  border-radius: 10px;
  padding-top: 56px;
  padding-bottom: 56px;
}

.about-compensation-row > div {
  padding-left: 42px;
}

.about-compensation-row img,
.about-split-block img,
.about-tower-block img {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.about-compensation-row img {
  height: 360px;
}

.about-deadline-row {
  padding: 56px 0 36px;
}

.about-deadline-row h3 {
  margin: 0 0 34px;
  font-size: 28px;
  font-weight: 500;
}

.about-deadline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-deadline-grid article {
  display: grid;
  justify-items: center;
  min-height: 168px;
  padding: 10px 38px;
  text-align: center;
}

.about-deadline-grid article + article {
  border-left: 1px solid #e7e9ee;
}

.about-deadline-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: contain;
}

.about-deadline-grid strong {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 500;
}

.about-deadline-grid p {
  margin: 0;
  color: #7a7f88;
  font-size: 14px;
  line-height: 1.5;
}

.about-split-block {
  margin-top: 26px;
}

.about-split-block img {
  height: 430px;
}

.about-split-block > div {
  border-radius: 10px;
  background: #f7f9fc;
  padding: 56px;
}

.about-split-block h3 {
  margin: 0 0 18px;
  font-size: 34px;
  font-weight: 500;
}

.about-tower-block {
  padding-top: 62px;
}

.about-tower-block img {
  height: 420px;
}

.about-gallery-slider {
  overflow: hidden;
  margin: 26px 0 92px;
  padding-left: max(32px, calc((100vw - var(--container)) / 2));
  padding-right: 32px;
}

.about-gallery-slide {
  width: 520px;
}

.about-gallery-slide img {
  display: block;
  width: 100%;
  height: 320px;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .blog-card-grid,
  .blog-small-grid,
  .survey-grid,
  .product-hero-grid,
  .product-badges,
  .product-tech-card {
    grid-template-columns: 1fr;
  }

  .product-tech-specs {
    grid-column: 1;
  }

  .industry-detail-hero {
    min-height: 520px;
  }

  .industry-detail-hero h1,
  .industry-detail-section h2 {
    font-size: 34px;
  }

  .industry-problem-grid,
  .industry-service-grid,
  .industry-feature-grid {
    grid-template-columns: 1fr;
  }

  .industry-faq-list summary {
    grid-template-columns: 42px 1fr 20px;
    padding: 22px 16px;
  }

  .industry-faq-list p {
    margin-left: 58px;
    padding-right: 16px;
  }

  .survey-form,
  .product-order-card {
    padding: 32px 22px;
  }

  .industries-card {
    align-items: flex-start;
  }

  .industries-card-thumb {
    flex-basis: 96px;
    width: 96px;
    height: 82px;
  }

  .blog-head h1,
  .survey-head h1,
  .article-page h1,
  .product-hero h1 {
    font-size: 38px;
  }

  .survey-head,
  .article-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .about-company-hero {
    padding: 64px 0 50px;
  }

  .about-company-hero h1,
  .about-company-section h2 {
    font-size: 34px;
  }

  .about-company-hero p,
  .about-company-section p {
    font-size: 15px;
  }

  .about-company-hero-image img {
    height: 320px;
  }

  .about-company-stats,
  .about-why-grid,
  .about-deadline-grid,
  .about-compensation-row,
  .about-split-block,
  .about-tower-block {
    grid-template-columns: 1fr;
  }

  .about-company-stats article + article,
  .about-deadline-grid article + article {
    border-top: 1px solid #e7e9ee;
    border-left: 0;
  }

  .about-company-section {
    padding: 48px 0;
  }

  .about-compensation-row {
    padding: 28px 20px;
  }

  .about-compensation-row > div {
    padding-left: 0;
  }

  .about-split-block > div {
    padding: 28px 20px;
  }

  .about-compensation-row img,
  .about-split-block img,
  .about-tower-block img {
    height: 280px;
  }

  .about-gallery-slider {
    margin-bottom: 62px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .about-gallery-slide {
    width: 82vw;
  }

  .about-gallery-slide img {
    height: 240px;
  }
}
