:root {
  --color-ink: #151922;
  --color-navy: #07162a;
  --color-blue: #075fa8;
  --color-cyan: #0b86cf;
  --color-accent-blue: #0a6ebd;
  --color-gold: #ff6b2b;
  --color-paper: #ffffff;
  --color-soft: #f3f7fb;
  --color-line: #dbe6ef;
  --color-muted: #5e6b79;
  --shadow-soft: 0 18px 45px rgba(15, 38, 68, 0.13);
  --shadow-card: 0 14px 30px rgba(17, 38, 65, 0.12);
  --radius: 8px;
  --container: min(1720px, calc(100% - 28px));
}

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

html {
  scroll-behavior: smooth;
}

body.oulu-site {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.oulu-site a {
  color: inherit;
  text-decoration: none;
}

body.oulu-site img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.oulu-site button,
body.oulu-site input {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.wide-container {
  width: min(1880px, calc(100% - 16px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(219, 230, 239, 0.7);
  transition: box-shadow 220ms ease, background 220ms ease;
}

body.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(8, 26, 49, 0.1);
}

.nav-shell__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 68px;
}

.site-brand img {
  width: 176px;
  max-height: 56px;
  object-fit: contain;
}

.primary-nav {
  justify-self: end;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav__list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #18283a;
  font-size: 15px;
  font-weight: 700;
}

.primary-nav__list a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--color-cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-nav__list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav__list .current-menu-item a::after,
.primary-nav__list .current_page_item a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav__list a:focus-visible {
  outline: 3px solid rgba(7, 95, 168, 0.36);
  outline-offset: 3px;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  color: #ffffff;
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 4px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.nav-cta:visited {
  color: #ffffff !important;
}

.nav-cta:hover,
.button:hover {
  color: #ffffff;
  background: #075d9f;
  box-shadow: 0 12px 24px rgba(9, 107, 183, 0.25);
  transform: translateY(-2px);
}

.button--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  color: var(--color-ink);
  background: #ffffff;
}

.button--light {
  color: var(--color-blue);
  background: #ffffff;
  border-color: #ffffff;
}

.button--light:hover {
  color: var(--color-ink);
  background: #ffffff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  background: #ffffff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

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

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

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

.hero {
  position: relative;
  height: clamp(420px, 33.84vw, 670px);
  min-height: 0;
  overflow: hidden;
  color: #ffffff;
  background: #ffffff;
}

.hero__slides,
.hero__slide {
  position: absolute;
  inset: 0;
}

.hero__slide {
  background-image: var(--hero-slide-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 720ms ease;
  will-change: opacity;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__controls {
  position: absolute;
  top: 50%;
  right: clamp(22px, 3vw, 58px);
  left: clamp(22px, 3vw, 58px);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.hero__arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: rgba(8, 112, 185, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
  pointer-events: auto;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero__arrow:hover,
.hero__arrow:focus-visible {
  color: #ffffff;
  background: rgba(9, 107, 183, 0.86);
  border-color: rgba(9, 107, 183, 0.9);
  box-shadow: 0 20px 46px rgba(9, 107, 183, 0.28);
  transform: scale(1.06);
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: inherit;
  padding: 64px 0 76px;
}

.hero__content {
  max-width: 820px;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(48px, 4.9vw, 84px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #ff7a35;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  width: 42px;
  height: 2px;
  background: #ff7a35;
  content: "";
}

.hero__content p {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.72;
}

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

.hero-product-stage {
  position: relative;
  width: min(58vw, 980px);
  min-height: 500px;
  margin-left: auto;
}

.hero-product-stage::before {
  position: absolute;
  right: 3%;
  bottom: 24px;
  left: 6%;
  height: 34px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5), transparent 68%);
  content: "";
}

.hero-product-stage__item {
  position: absolute;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
}

.hero-product-stage__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.hero-product-stage__item--1 {
  right: 36%;
  bottom: 58px;
  z-index: 3;
  width: min(34vw, 330px);
}

.hero-product-stage__item--2 {
  right: 7%;
  bottom: 102px;
  z-index: 4;
  width: min(30vw, 290px);
}

.hero-product-stage__item--3 {
  right: 24%;
  bottom: 238px;
  z-index: 2;
  width: min(27vw, 250px);
}

.hero-product-stage__item--4 {
  right: 59%;
  bottom: 224px;
  z-index: 1;
  width: min(25vw, 230px);
}

.category-strip {
  position: relative;
  z-index: 5;
  background: #ffffff;
  border-bottom: 1px solid #e7edf3;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
}

.category-strip__inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  min-height: 104px;
}

.category-strip__arrow,
.category-pill {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.category-strip__arrow {
  color: #8a96a3;
  font-size: 30px;
}

.category-pill {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  padding: 12px 10px 14px;
  color: #1e293b;
  border-right: 1px solid #edf1f5;
  transition: color 160ms ease, background 160ms ease;
}

.category-pill::after {
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 22px;
  height: 2px;
  background: var(--color-gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.category-pill span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
}

.category-pill svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-pill img {
  max-width: 42px;
  max-height: 42px;
  object-fit: contain;
}

.category-pill b {
  overflow: hidden;
  max-width: 100%;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-pill:hover,
.category-pill.is-active {
  color: var(--color-gold);
  background: #fbfcfe;
}

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

.section {
  padding: 76px 0;
}

section[id] {
  scroll-margin-top: 90px;
}

.section--lift {
  position: relative;
  z-index: 2;
  padding: 0 0 56px;
  margin-top: -88px;
}

.section--muted {
  background: var(--color-soft);
}

.section--product-showcase {
  background: #ffffff;
}

.section--product-showcase .wide-container {
  width: min(1540px, calc(100% - 48px));
}

.section--tight-head {
  padding-top: 54px;
}

.section--dark {
  color: #ffffff;
  background: #071b33;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.section-head--left {
  justify-content: flex-start;
  margin-bottom: 24px;
}

.section-head--split {
  justify-content: space-between;
  gap: 22px;
}

.section-head--stack {
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.section-head h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: inherit;
  font-size: clamp(32px, 2.6vw, 46px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.section-head h2::after {
  width: 46px;
  height: 3px;
  background: var(--color-gold);
  content: "";
}

.section-head p {
  max-width: 680px;
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
}

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

.stat {
  min-height: 96px;
  padding: 18px 20px;
  color: var(--color-ink);
  background: rgba(246, 250, 254, 0.88);
  border: 1px solid rgba(219, 230, 239, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(9, 35, 68, 0.1);
  backdrop-filter: blur(8px);
}

.stat:nth-child(2),
.stat:nth-child(4) {
  transform: translateY(36px);
}

.stat:nth-child(3) {
  transform: translateY(22px);
}

.stat strong {
  display: block;
  color: var(--color-blue);
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

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

.category-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-navy);
  box-shadow: var(--shadow-card);
  isolation: isolate;
}

.category-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 20, 38, 0.08), rgba(5, 20, 38, 0.8));
  content: "";
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-card__content {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  color: #ffffff;
}

.category-card h3,
.solution-card h3,
.product-card h3,
.advantage-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.category-card span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.section--product-showcase.section--tight-head {
  padding-top: 0;
}

.product-section-title {
  display: flex;
  justify-content: center;
  width: min(1720px, 100%);
  margin: 0 auto clamp(22px, 3vw, 38px);
  text-align: center;
}

.product-section-title h2 {
  position: relative;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.product-section-title h2::after {
  display: block;
  width: 54px;
  height: 3px;
  margin: 16px auto 0;
  background: var(--color-gold);
  content: "";
}

.product-category-board {
  width: min(1500px, 100%);
  margin: clamp(28px, 3vw, 44px) auto 0;
}

.product-category-hero {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  color: #ffffff;
  background: #101827;
  border-radius: 6px;
  isolation: isolate;
}

.product-category-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-category-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(3, 8, 14, 0.6), rgba(3, 8, 14, 0.1) 38%, rgba(3, 8, 14, 0.74));
}

.product-category-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 44px 38px 36px;
}

.product-category-hero strong {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
}

.product-category-hero p {
  max-width: 310px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.55;
}

.product-category-hero b {
  margin-top: auto;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-category-hero:hover img {
  transform: scale(1.04);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 32px);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 500px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 8px;
  box-shadow: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.product-card::before {
  content: none;
}

.product-card:hover {
  border-color: #ffffff;
  box-shadow: none;
  transform: translateY(-3px);
}

.product-card.is-hidden {
  display: none;
}

.product-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 15px;
  color: #41528b;
  background: #edf3ff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.product-card__badge--hot {
  color: #f05e2d;
  background: #fff0e8;
}

.product-card figure {
  display: grid;
  place-items: center;
  margin: 0;
  height: 330px;
  min-height: 0;
  padding: 30px 24px 18px;
  background: #ffffff;
  border-bottom: 0;
}

.product-card img {
  width: auto;
  max-width: min(315px, 88%);
  max-height: 285px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 0;
  background: transparent;
  transition: transform 360ms ease;
}

.product-card:hover img {
  transform: scale(1.04) translateY(-4px);
}

.product-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  min-height: 168px;
  padding: 0 28px 22px;
  background: transparent;
  pointer-events: auto;
}

.product-card__category {
  display: block;
  margin-bottom: 12px;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.product-card__body h3 {
  position: relative;
  z-index: 2;
  max-width: none;
  margin: 0;
  padding: 0;
  border-left: 0;
  color: #43506a;
  font-size: clamp(16px, 0.96vw, 19px);
  line-height: 1.24;
  font-weight: 650;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card__hover {
  position: static;
  width: 100%;
  padding: 0;
  margin-top: 14px;
  color: var(--color-ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: none;
}

.product-card:hover .product-card__hover {
  opacity: 1;
  transform: none;
}

.product-card__body h3::after {
  content: none;
}

.product-card__description {
  max-width: 330px;
  margin: 10px 0 0;
  color: #69717d;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 520;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.product-card ul {
  padding: 0;
  margin: 0 0 18px;
  color: #69717d;
  list-style: none;
  font-size: 15px;
  line-height: 1.6;
}

.product-card li {
  position: relative;
  padding-left: 13px;
}

.product-card li + li {
  margin-top: 3px;
}

.product-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  background: #ff8756;
  border-radius: 50%;
  content: "";
}

.product-card__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: auto;
}

.product-card__actions b,
.product-card__actions em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: #303944;
  font-size: 15px;
  font-style: normal;
  font-weight: 650;
  line-height: 1;
}

.product-card__actions b {
  flex: 1 1 auto;
  background: #e5e9ef;
  border-radius: 4px;
}

.product-card__actions em {
  gap: 6px;
  color: #6f747b;
  white-space: nowrap;
}

.product-card__actions span {
  margin: 0;
  color: currentColor;
  font-size: 16px;
  line-height: 1;
  text-transform: none;
}

.section--about {
  position: relative;
  overflow: hidden;
  color: var(--color-ink);
  padding: 58px 0 64px;
  background:
    linear-gradient(90deg, rgba(7, 95, 168, 0.06) 0 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.about-profile {
  display: grid;
  gap: 26px;
}

.about-profile__intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  min-height: 250px;
}

.about-profile__title {
  position: relative;
  padding-left: 0;
}

.about-profile__title > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 16px;
  color: var(--color-blue);
  background: rgba(7, 95, 168, 0.08);
  border-left: 3px solid var(--color-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about-profile__title h2 {
  margin: 0;
  color: #05070b;
  font-size: clamp(36px, 3vw, 54px);
  line-height: 1.08;
  font-weight: 900;
}

.about-profile__arrow {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-top: 28px;
  color: #ffffff;
  background: var(--color-blue);
  border: 2px solid var(--color-blue);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.about-profile__arrow:hover {
  color: #ffffff;
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateX(4px);
}

.about-profile__title strong {
  position: absolute;
  right: -20px;
  bottom: -38px;
  z-index: -1;
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(7, 95, 168, 0.16);
  font-size: clamp(86px, 10vw, 172px);
  line-height: 0.76;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
}

.about-profile__copy {
  max-width: 900px;
  padding: 28px 0 28px 34px;
  border-left: 1px solid #dce7f1;
}

.about-profile__copy p {
  margin: 0;
  color: #20242d;
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: 1.52;
  font-weight: 700;
}

.about-profile__copy p + p {
  margin-top: 14px;
}

.about-profile__lower {
  display: grid;
  gap: 22px;
  margin-top: 0;
}

.about-video {
  position: relative;
  display: block;
  overflow: hidden;
  background: #eef4fb;
  border: 1px solid #d6e3ef;
  border-radius: 6px;
}

.about-video > img {
  width: 100%;
  aspect-ratio: 1920 / 520;
  object-fit: cover;
  filter: saturate(1.03) brightness(1.12) contrast(1.04);
}

.about-video::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 36, 69, 0), rgba(5, 36, 69, 0.035));
  content: "";
}

.about-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  padding: 0;
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 200ms ease, background 200ms ease;
}

.about-video:hover .about-video__play {
  background: rgba(7, 95, 168, 0.28);
  transform: translate(-50%, -50%) scale(1.05);
}

.about-video__play img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.about-metrics {
  position: absolute;
  right: clamp(80px, 14vw, 260px);
  bottom: clamp(22px, 3vw, 38px);
  left: clamp(80px, 14vw, 260px);
  z-index: 3;
  transform: none;
}

.about-metric-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  overflow: visible;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(7, 25, 42, 0.08)),
    rgba(5, 14, 24, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(2, 12, 24, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px) saturate(130%);
}

.about-metric {
  min-height: 74px;
  padding: 12px 15px 11px;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.about-metric:first-child {
  border-left: 0;
}

.about-metric + .about-metric {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.about-metric strong {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  color: #ffffff;
  font-size: clamp(24px, 2.15vw, 38px);
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 24, 48, 0.32);
}

.about-metric strong em {
  margin-top: 3px;
  color: #ffffff;
  font-size: 0.45em;
  font-style: normal;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(7, 95, 168, 0.42);
}

.about-metric > span {
  display: block;
  max-width: 180px;
  margin: 6px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  line-height: 1.28;
  font-weight: 800;
  text-transform: uppercase;
}

.section--solutions {
  overflow: hidden;
  color: var(--color-ink);
  background: #f4f6f8;
}

.solutions-display {
  position: relative;
}

.solutions-display__head {
  max-width: 1580px;
  margin: 0 auto clamp(34px, 4vw, 64px);
  padding: 0 clamp(22px, 3vw, 54px);
}

.solutions-display__head span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solutions-display__head h2 {
  margin: 0;
  color: #1f242c;
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.solutions-display__head p {
  max-width: 780px;
  margin: 16px 0 0;
  color: #566171;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.62;
  font-weight: 650;
}

.solutions-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.solutions-viewport::-webkit-scrollbar {
  display: none;
}

.solutions-track {
  display: flex;
  width: max-content;
  gap: clamp(18px, 1.6vw, 28px);
  padding: 0 max(24px, calc((100vw - 1580px) / 2)) 8px;
}

.solution-display-card {
  flex: 0 0 clamp(300px, 25.5vw, 455px);
  height: clamp(380px, 35vw, 560px);
}

.solution-display-card a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #ffffff;
  background: #0b1824;
  border-radius: 8px;
  isolation: isolate;
}

.solution-display-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.solution-display-card a::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 11, 18, 0) 36%, rgba(3, 11, 18, 0.82) 100%),
    linear-gradient(0deg, rgba(5, 45, 82, 0.1), rgba(5, 45, 82, 0.1));
  content: "";
}

.solution-display-card__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(24px, 2.8vw, 38px);
}

.solution-display-card__body span {
  display: block;
  max-width: 340px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.42;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.solution-display-card__body h3 {
  max-width: 360px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.solution-display-card__body p {
  max-width: 350px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
  opacity: 0;
  transition: max-height 260ms ease, margin 260ms ease, opacity 260ms ease;
}

.solution-display-card a:hover img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.055);
}

.solution-display-card a:hover .solution-display-card__body p {
  max-height: 90px;
  margin-top: 14px;
  opacity: 1;
}

.solutions-arrows {
  display: flex;
  max-width: 1580px;
  gap: 14px;
  margin: clamp(26px, 3vw, 42px) auto 0;
  padding: 0 clamp(22px, 3vw, 54px);
}

.solutions-arrows button {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #ffffff;
  background: #aeb6bf;
  border: 0;
  border-radius: 50%;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.solutions-arrows button:hover {
  background: var(--color-blue);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .solutions-display__head {
    margin-bottom: 28px;
  }

  .solution-display-card {
    flex-basis: min(78vw, 360px);
    height: 420px;
  }

  .solution-display-card__body p {
    max-height: 90px;
    margin-top: 12px;
    opacity: 1;
  }

  .solutions-arrows button {
    width: 46px;
    height: 46px;
    font-size: 32px;
  }
}

.customer-services {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.customer-services__hero {
  min-height: 500px;
  padding: 82px 0 154px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 32%, rgba(255, 255, 255, 0.45) 58%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 95, 168, 0.04), rgba(255, 107, 43, 0.08)),
    var(--service-bg) center right / cover;
}

.customer-services__inner {
  position: relative;
}

.customer-services__copy {
  position: relative;
  max-width: 720px;
  padding-left: 26px;
}

.customer-services__copy::before {
  position: absolute;
  top: 6px;
  bottom: 8px;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-blue), var(--color-gold));
  border-radius: 999px;
  content: "";
}

.customer-services__copy > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 16px;
  color: var(--color-blue);
  background: rgba(7, 95, 168, 0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.customer-services h2 {
  margin: 0;
  color: #20264a;
  font-size: clamp(36px, 3vw, 54px);
  line-height: 1.12;
  font-weight: 900;
}

.customer-services h2 mark {
  color: var(--color-gold);
  background: transparent;
}

.customer-services__copy p {
  max-width: 660px;
  margin: 22px 0 0;
  color: #3c4960;
  font-size: 17px;
  line-height: 1.76;
  font-weight: 600;
}

.customer-services__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.customer-services__actions .button {
  min-width: 148px;
  min-height: 52px;
  background: var(--color-gold);
  border-color: var(--color-gold);
  border-radius: 6px;
  box-shadow: none;
}

.customer-services__actions .button:hover {
  background: #f25e21;
}

.customer-services__actions .button--outline {
  color: var(--color-gold);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--color-gold);
}

.customer-services__actions .button--outline:hover {
  color: #ffffff;
  background: var(--color-gold);
}

.customer-services__cards {
  position: relative;
  z-index: 2;
  margin-top: -88px;
}

.customer-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e1e8ef;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 38, 68, 0.12);
}

.customer-service-card {
  position: relative;
  min-height: 190px;
  padding: 32px 28px 30px;
  background:
    linear-gradient(180deg, rgba(7, 95, 168, 0.035), transparent 62%),
    #ffffff;
}

.customer-service-card + .customer-service-card {
  border-left: 1px solid #e1e8ef;
}

.customer-service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--color-blue);
  background: #ffffff;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.customer-service-card h3 {
  margin: 0;
  color: #232a68;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
}

.customer-service-card p {
  margin: 16px 0 0;
  color: #4d5b70;
  font-size: 15px;
  line-height: 1.65;
}

.customer-service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 68px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-gold));
  content: "";
  opacity: 0;
  transition: opacity 180ms ease, width 180ms ease;
}

.customer-service-card:hover::after {
  width: 100%;
  opacity: 1;
}

.solutions-service {
  position: relative;
  min-height: 500px;
  padding: clamp(76px, 7vw, 112px) 0 156px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.8) 34%, rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(7, 95, 168, 0.035), rgba(7, 95, 168, 0.045)),
    var(--solutions-bg) right center / cover;
  transition: background-image 260ms ease;
}

.solutions-service__inner {
  position: relative;
  z-index: 2;
}

.solutions-service__copy {
  position: relative;
  max-width: 740px;
}

.solutions-service__copy > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 16px;
  color: var(--color-blue);
  background: rgba(7, 95, 168, 0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.solutions-service__copy h2 {
  margin: 0;
  color: #252c78;
  font-size: clamp(36px, 3vw, 54px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.solutions-service__copy h2 mark {
  color: var(--color-blue);
  background: transparent;
}

.solutions-service__copy p {
  max-width: 690px;
  margin: 22px 0 0;
  color: #3c4960;
  font-size: 17px;
  line-height: 1.76;
  font-weight: 600;
}

.solutions-service__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.solutions-service__actions .button {
  min-width: 148px;
  min-height: 52px;
  color: #ffffff;
  background: var(--color-blue);
  border-color: var(--color-blue);
  border-radius: 6px;
  box-shadow: none;
}

.solutions-service__actions .button:hover {
  background: #044d8c;
}

.solutions-service__actions .button--outline {
  color: var(--color-blue);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--color-blue);
}

.solutions-service__actions .button--outline:hover {
  color: #ffffff;
  background: var(--color-blue);
}

.solutions-service__cards {
  position: relative;
  z-index: 2;
  margin-top: -88px;
}

.solutions-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e1e8ef;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 38, 68, 0.12);
}

.solutions-service-card {
  position: relative;
  min-height: 220px;
  padding: 32px 28px 30px;
  background:
    linear-gradient(180deg, rgba(7, 95, 168, 0.035), transparent 62%),
    #ffffff;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.solutions-service-card + .solutions-service-card {
  border-left: 1px solid #e1e8ef;
}

.solutions-service-card__title {
  display: flex;
  gap: 10px;
  align-items: center;
}

.solutions-service-card__title span {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 3px solid #29318a;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.solutions-service-card h3 {
  margin: 0;
  color: #29318a;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.solutions-service-card p {
  margin: 22px 0 0;
  color: #4d5b70;
  font-size: 15px;
  line-height: 1.65;
}

.solutions-service-card small {
  display: block;
  margin-top: 14px;
  color: #7b8798;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.solutions-service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 68px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue), #8ebfe7);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease, width 180ms ease;
}

.solutions-service-card:hover::after {
  width: 100%;
  opacity: 1;
}

.solutions-service-card.is-active {
  background:
    linear-gradient(180deg, rgba(7, 95, 168, 0.09), rgba(255, 255, 255, 0) 72%),
    #ffffff;
}

.solutions-service-card.is-active::after {
  width: 100%;
  opacity: 1;
}

.solutions-service-card.is-active .solutions-service-card__title span {
  border-color: var(--color-blue);
  box-shadow: inset 0 0 0 4px #ffffff, 0 0 0 4px rgba(7, 95, 168, 0.12);
}

.section--partners {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 72%),
    #ffffff;
}

.partner-showcase {
  display: grid;
  gap: 34px;
}

.partner-head {
  display: grid;
  justify-items: center;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.partner-head span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  color: var(--color-blue);
  background: rgba(7, 95, 168, 0.08);
  border-left: 3px solid var(--color-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.partner-head h2 {
  margin: 16px 0 0;
  color: #101827;
  font-size: clamp(36px, 3vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.partner-head p {
  max-width: 780px;
  margin: 16px 0 0;
  color: #5b6878;
  font-size: 16px;
  line-height: 1.68;
  font-weight: 650;
}

.partner-grid {
  position: relative;
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: #e4edf5;
  border: 1px solid #dce7f1;
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(12, 45, 78, 0.08);
}

.partner-grid::before,
.partner-grid::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(42px, 7vw, 118px);
  pointer-events: none;
  content: "";
}

.partner-grid::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partner-grid::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partner-row {
  overflow: hidden;
}

.partner-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(210px, 16vw, 276px);
  grid-template-rows: 112px;
  gap: 1px;
  width: max-content;
  animation: partner-marquee-left 28s linear infinite;
}

.partner-grid:hover .partner-track {
  animation-play-state: paused;
}

.partner-row--bottom .partner-track {
  animation-name: partner-marquee-right;
  animation-duration: 32s;
}

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 112px;
  margin: 0;
  padding: 24px 22px;
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.72), rgba(255, 255, 255, 0.96)),
    #ffffff;
}

.partner-logo img {
  display: block;
  width: auto;
  max-width: min(100%, 160px);
  max-height: 58px;
  object-fit: contain;
  filter: saturate(0.9);
}

@keyframes partner-marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes partner-marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.solution-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 620px;
  padding: 34px;
  border: 1px solid rgba(63, 151, 255, 0.34);
  border-radius: 8px;
  background: #071221;
  box-shadow: 0 28px 90px rgba(2, 13, 30, 0.42);
}

.solution-showcase::before,
.solution-showcase::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
}

.solution-showcase::before {
  background-image: linear-gradient(rgba(4, 13, 26, 0.78), rgba(4, 13, 26, 0.84)), var(--solution-bg);
  background-position: center;
  background-size: cover;
  filter: saturate(1.12);
  transform: scale(1.04);
  transition: background-image 260ms ease, filter 260ms ease;
}

.solution-showcase::after {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 50%, rgba(39, 138, 255, 0.24), transparent 29%),
    linear-gradient(90deg, rgba(6, 18, 35, 0.82), rgba(7, 19, 35, 0.46) 50%, rgba(6, 18, 35, 0.82));
}

.solution-grid {
  display: grid;
  position: relative;
  z-index: 2;
  min-height: 552px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 26px 18px;
}

.solution-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 1px solid rgba(55, 149, 255, 0.58);
  border-radius: 8px;
  background: rgba(4, 18, 35, 0.82);
  box-shadow: inset 0 0 0 1px rgba(79, 169, 255, 0.2), 0 0 24px rgba(18, 116, 255, 0.24);
}

.solution-card:nth-child(1) {
  grid-column: 1 / 4;
  grid-row: 1;
}

.solution-card:nth-child(2) {
  grid-column: 5 / 8;
  grid-row: 1;
}

.solution-card:nth-child(3) {
  grid-column: 1 / 4;
  grid-row: 2;
}

.solution-card:nth-child(4) {
  grid-column: 5 / 8;
  grid-row: 2;
}

.solution-card::before {
  position: absolute;
  inset: -1px;
  z-index: 2;
  border: 1px solid rgba(73, 166, 255, 0.86);
  border-radius: inherit;
  box-shadow: inset 0 0 18px rgba(37, 138, 255, 0.48), 0 0 18px rgba(24, 117, 255, 0.5);
  opacity: 0.72;
  content: "";
  pointer-events: none;
  transition: opacity 220ms ease, box-shadow 220ms ease;
}

.solution-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.solution-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 17, 33, 0.08), rgba(4, 14, 29, 0.78)),
    linear-gradient(90deg, rgba(5, 17, 34, 0.62), transparent 62%);
}

.solution-card__content {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 3;
  color: #ffffff;
}

.solution-card:nth-child(2) .solution-card__content,
.solution-card:nth-child(4) .solution-card__content {
  right: 26px;
  left: auto;
  max-width: 300px;
  text-align: right;
}

.solution-card:nth-child(2) .solution-card__shade,
.solution-card:nth-child(4) .solution-card__shade {
  background:
    linear-gradient(180deg, rgba(5, 17, 33, 0.08), rgba(4, 14, 29, 0.78)),
    linear-gradient(270deg, rgba(5, 17, 34, 0.68), transparent 62%);
}

.solution-card__content strong {
  display: inline-flex;
  margin-bottom: 8px;
  color: #79c2ff;
  font-size: 13px;
  font-weight: 900;
}

.solution-card h3 {
  margin-bottom: 8px;
  color: #ffffff;
}

.solution-card p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.solution-card:hover::before,
.solution-card:focus-visible::before,
.solution-card.is-active::before {
  opacity: 1;
  box-shadow: inset 0 0 24px rgba(83, 179, 255, 0.7), 0 0 28px rgba(34, 137, 255, 0.68);
}

.solution-card:hover img,
.solution-card:focus-visible img,
.solution-card.is-active img {
  filter: saturate(1.16) brightness(1.05);
  transform: scale(1.06);
}

.solution-product-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(270px, 31vw, 410px);
  aspect-ratio: 1;
  border: 1px solid rgba(92, 183, 255, 0.76);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(13, 58, 109, 0.9), rgba(4, 16, 32, 0.93) 68%);
  box-shadow: inset 0 0 30px rgba(85, 178, 255, 0.48), 0 0 42px rgba(13, 106, 235, 0.56);
  transform: translate(-50%, -50%);
}

.solution-product-orbit__halo {
  position: absolute;
  inset: -16px;
  border: 2px solid rgba(40, 135, 255, 0.36);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(24, 120, 255, 0.42);
}

.solution-product-stack {
  position: relative;
  width: 74%;
  aspect-ratio: 1;
}

.solution-product {
  position: absolute;
  display: grid;
  place-items: center;
  width: 42%;
  aspect-ratio: 1.35;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.solution-product:nth-child(1) {
  top: 4%;
  left: 28%;
}

.solution-product:nth-child(2) {
  top: 26%;
  right: 2%;
}

.solution-product:nth-child(3) {
  right: 14%;
  bottom: 5%;
}

.solution-product:nth-child(4) {
  bottom: 7%;
  left: 12%;
}

.solution-product:nth-child(5) {
  top: 27%;
  left: 0;
}

.solution-product:nth-child(6) {
  top: 42%;
  left: 29%;
  z-index: 2;
  width: 48%;
}

.solution-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solution-product-orbit__label {
  position: absolute;
  bottom: 20%;
  left: 50%;
  z-index: 3;
  display: grid;
  gap: 3px;
  min-width: 170px;
  padding: 9px 16px;
  border: 1px solid rgba(107, 192, 255, 0.46);
  border-radius: 999px;
  color: #ffffff;
  text-align: center;
  background: rgba(4, 18, 36, 0.72);
  box-shadow: 0 0 18px rgba(38, 139, 255, 0.34);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.solution-product-orbit__label span {
  color: #77c5ff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-product-orbit__label strong {
  font-size: 16px;
  line-height: 1.15;
  font-weight: 900;
}

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

.advantage-card {
  min-height: 246px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 6px 16px rgba(17, 38, 65, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.advantage-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}

.advantage-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #0b78c9, #075d9f);
  border-radius: 50%;
  font-weight: 900;
}

.advantage-card p {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 15px;
}

#news {
  padding: 42px 0 46px;
}

.news-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-direction: column;
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: center;
}

.news-head h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.news-head p {
  max-width: 880px;
  margin: 10px auto 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.news-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  min-height: 44px;
  padding: 0 24px;
  color: #243044;
  border: 1px solid #cddbe8;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.news-head a:hover {
  color: #ffffff;
  background: var(--color-blue);
  border-color: var(--color-blue);
}

.news-carousel {
  position: relative;
  overflow: hidden;
}

.news-viewport {
  overflow: visible;
  width: min(920px, calc(100% - 220px));
  margin: 0 auto;
}

.news-track {
  display: flex;
  gap: clamp(20px, 2.6vw, 34px);
  align-items: stretch;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.news-card {
  flex: 0 0 min(840px, 64vw);
  overflow: hidden;
  min-height: 248px;
  background: #f4f6f8;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 0.38;
  transition: opacity 260ms ease, transform 260ms ease;
}

.news-card.is-active {
  opacity: 1;
}

.news-card a {
  display: grid;
  height: 100%;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  padding: 0;
}

.news-card figure {
  overflow: hidden;
  margin: 0;
  background: #e8eef3;
}

.news-card img {
  width: 100%;
  height: 100%;
  min-height: 248px;
  object-fit: cover;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 2.6vw, 34px);
}

.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  color: var(--color-blue);
  border-bottom: 0;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-card__meta span,
.news-card__meta time {
  padding-left: 0;
}

.news-card h3 {
  max-width: 460px;
  min-height: 0;
  margin: 12px 0 0;
  color: #222832;
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}

.news-card p {
  max-width: 430px;
  margin: 12px 0 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.48;
  font-weight: 600;
}

.news-card b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 136px;
  min-height: 42px;
  margin-top: 18px;
  border: 1px solid #1f2937;
  color: #1f2937;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-card b::after {
  margin-left: 10px;
  content: "\203A";
}

.news-controls {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.news-arrows {
  display: flex;
  gap: 14px;
}

.news-arrows button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #d9e0e8;
  border-radius: 50%;
  color: #1f2937;
  background: #ffffff;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.news-arrows button:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
  transform: translateY(-1px);
}

.section--certificates {
  position: relative;
  overflow: hidden;
  padding-top: clamp(36px, 3vw, 58px);
  padding-bottom: clamp(32px, 2.6vw, 52px);
  background: linear-gradient(180deg, #f7f7f6 0%, #ffffff 54%, #f4f4f2 100%);
}

.section--certificates::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 244, 242, 0.4));
  content: "";
  pointer-events: none;
}

.certificate-showcase {
  position: relative;
  z-index: 1;
  display: block;
  width: min(1580px, calc(100% - clamp(240px, 20vw, 420px)));
  min-height: clamp(845px, 53.5vw, 880px);
  margin: 0 auto;
}

.certificate-copy {
  position: absolute;
  top: clamp(18px, 2vw, 36px);
  left: 0;
  display: block;
  max-width: 570px;
  padding: 0;
  color: var(--color-ink);
}

.certificate-copy span {
  display: inline-flex;
  width: max-content;
  margin-bottom: clamp(28px, 3vw, 48px);
  padding: 0;
  color: var(--color-blue);
  background: transparent;
  border-bottom: 0;
  border-left: 0;
  font-size: clamp(32px, 2.8vw, 52px);
  line-height: 1.02;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.certificate-copy p {
  max-width: 560px;
  margin: 0;
  color: #4b4f58;
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.55;
  font-weight: 520;
}

.certificate-copy p + p {
  margin-top: clamp(18px, 1.6vw, 28px);
}

.certificate-gallery {
  position: absolute;
  top: 0;
  right: clamp(-68px, -3.4vw, -46px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(47vw, 740px);
  gap: clamp(42px, 4.4vw, 82px);
  min-width: 0;
  padding: 0 0 20px;
  background: transparent;
  border-top: 0;
  border-radius: 0;
}

.certificate-gallery::after {
  position: absolute;
  right: -20px;
  bottom: 0;
  left: -20px;
  height: 8px;
  background: linear-gradient(180deg, #e7e9eb, #c9cfd4);
  box-shadow: 0 18px 28px rgba(27, 37, 48, 0.18);
  content: "";
}

.certificate-shelf {
  --certificate-shelf-gap: clamp(42px, 4.2vw, 78px);
  --certificate-control-size: 54px;

  display: block;
  position: absolute;
  top: clamp(460px, 30.5vw, 500px);
  bottom: auto;
  left: 0;
  width: min(86vw, 1320px);
  margin: 0;
  padding: 0 clamp(18px, 2.4vw, 42px) 18px;
}

.certificate-shelf::after {
  position: absolute;
  right: calc(clamp(18px, 2.4vw, 42px) - 20px);
  bottom: 0;
  left: calc(clamp(18px, 2.4vw, 42px) - 20px);
  height: 8px;
  background: linear-gradient(180deg, #e2e5e8, #b8c0c7);
  box-shadow: 0 24px 36px rgba(31, 41, 55, 0.18);
  content: "";
}

.certificate-shelf__viewport {
  overflow: hidden;
  width: 100%;
  padding-bottom: 18px;
}

.certificate-shelf__track {
  display: flex;
  gap: var(--certificate-shelf-gap);
  will-change: transform;
}

.certificate-shelf .certificate-card {
  flex: 0 0 calc((100% - (var(--certificate-shelf-gap) * 3)) / 4);
}

.certificate-controls {
  position: absolute;
  top: calc((clamp(235px, 16.5vw, 294px) / 2) - (var(--certificate-control-size) / 2));
  right: calc(clamp(18px, 2.4vw, 42px) - 76px);
  left: calc(clamp(18px, 2.4vw, 42px) - 76px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.certificate-controls button {
  display: inline-grid;
  width: var(--certificate-control-size);
  height: var(--certificate-control-size);
  place-items: center;
  color: var(--color-blue);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(7, 95, 168, 0.3);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(7, 95, 168, 0.15);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  pointer-events: auto;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.certificate-controls button:hover,
.certificate-controls button:focus-visible {
  transform: translateY(-2px);
  color: #ffffff;
  background: var(--color-blue);
  border-color: var(--color-blue);
}

.certificate-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.certificate-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  transition: transform 220ms ease, border-color 220ms ease;
}

.certificate-card:hover {
  transform: translateY(-4px);
}

.certificate-card img {
  width: 100%;
  height: clamp(235px, 16.5vw, 294px);
  min-height: 0;
  padding: clamp(6px, 0.7vw, 10px);
  background: #ffffff;
  border: 6px solid #d8aa78;
  box-shadow: 14px 16px 22px rgba(31, 41, 55, 0.16);
  object-fit: contain;
}

.certificate-card--featured img {
  height: clamp(295px, 21.5vw, 360px);
}

.inquiry-band {
  padding-top: 0;
}

.inquiry-band__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 38px 34px;
  color: #ffffff;
  background: #143c61;
  border-radius: var(--radius);
  box-shadow: 0 20px 46px rgba(9, 54, 94, 0.18);
}

.inquiry-band h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

.quick-form {
  display: grid;
  grid-template-columns: minmax(150px, 0.95fr) minmax(150px, 0.95fr) minmax(210px, 1.35fr) minmax(160px, 0.95fr);
  gap: 12px;
  align-items: stretch;
}

.quick-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  outline: 0;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quick-form input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.quick-form input:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.13);
}

.quick-form .button {
  min-height: 58px;
  padding-right: 24px;
  padding-left: 24px;
  background: #096bb7;
  border-color: #096bb7;
  white-space: nowrap;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #42526a;
  background: linear-gradient(180deg, #f7fbff 0%, #edf5fb 100%);
  border-top: 1px solid rgba(148, 177, 205, 0.28);
}

.footer-mark {
  position: absolute;
  right: -78px;
  bottom: -132px;
  width: 500px;
  aspect-ratio: 1;
  border: 32px solid rgba(0, 117, 190, 0.08);
  border-radius: 44% 56% 48% 52%;
  transform: rotate(-28deg);
}

.footer-mark::before {
  position: absolute;
  inset: 78px;
  border: 24px solid rgba(0, 117, 190, 0.07);
  border-radius: 50%;
  content: "";
}

.footer-main {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(340px, 1.55fr) repeat(5, minmax(118px, 1fr));
  gap: 28px;
  padding: 54px 0 34px;
}

.footer-main--menu {
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
  align-items: center;
}

.footer-menu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-menu__list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 700;
}

.page-content {
  width: min(100%, 940px);
  margin: 0 auto;
}

.page-content > :first-child {
  margin-top: 0;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  color: var(--color-navy);
  line-height: 1.2;
}

.page-content h1 {
  font-size: clamp(32px, 5vw, 52px);
}

.page-content a {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-brand-panel {
  display: grid;
  align-content: start;
  gap: 20px;
}

.footer-logo {
  display: inline-flex;
  width: min(238px, 100%);
}

.footer-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 98, 180, 0.12));
  opacity: 0.94;
}

.footer-hotline {
  display: inline-flex;
  width: min(100%, 322px);
  min-height: 46px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  color: #075a9a;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(7, 90, 154, 0.22);
  border-radius: 999px;
}

.footer-hotline span,
.footer-contact-list span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #0872b8;
}

.footer-hotline svg,
.footer-contact-list svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-hotline strong,
.footer-hotline b {
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.footer-hotline strong {
  font-weight: 800;
}

.footer-hotline b {
  font-weight: 700;
}

.footer-contact-list {
  display: grid;
  gap: 13px;
  max-width: 380px;
}

.footer-contact-list p {
  display: grid;
  grid-template-columns: 22px auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 0;
  color: #526173;
  font-size: 14px;
  line-height: 1.65;
}

.footer-contact-list strong {
  color: #182b45;
  font-weight: 900;
}

.footer-contact-list em,
.footer-contact-list a {
  color: #526173;
  font-style: normal;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #075a9a;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 90, 154, 0.14);
  border-radius: 5px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-col h3 {
  margin: 0 0 18px;
  color: #162942;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 0 0 11px;
  color: #526173;
  font-size: 14px;
  line-height: 1.45;
}

.footer-col a:hover,
.footer-contact-list a:hover,
.footer-bottom a:hover {
  color: #075a9a;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  color: #6b7888;
  font-size: 14px;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 16px 0 18px;
  border-top: 1px solid rgba(148, 177, 205, 0.34);
}

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

.footer-bottom a {
  color: #526173;
}

.simple-page {
  min-height: 56vh;
}

.post-list {
  display: grid;
  gap: 18px;
}

.post-card {
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.post-card__title {
  margin: 0 0 12px;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease var(--reveal-delay, 0ms), transform 520ms ease var(--reveal-delay, 0ms);
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__slide {
    animation: none !important;
    opacity: 0;
    transition-duration: 1ms !important;
  }

  .hero__slide.is-active,
  .hero__slide:first-child {
    opacity: 1;
  }

  .partner-track {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .primary-nav__list {
    gap: 18px;
  }

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

  .certificate-copy {
    position: static;
    max-width: none;
  }

  .certificate-showcase {
    display: grid;
    width: var(--container);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .certificate-gallery,
  .certificate-shelf {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .certificate-card img {
    height: clamp(220px, 30vw, 300px);
  }

  .certificate-card--featured img {
    height: clamp(250px, 34vw, 330px);
  }

  .certificate-shelf {
    padding-right: 0;
    padding-left: 0;
  }

  .certificate-shelf .certificate-card {
    flex-basis: calc((100% - var(--certificate-shelf-gap)) / 2);
  }

  .partner-track {
    grid-auto-columns: clamp(190px, 22vw, 250px);
  }

  .solution-showcase {
    padding: 26px;
  }

  .solution-product-orbit {
    width: clamp(250px, 34vw, 350px);
  }

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

  .hero-product-stage {
    width: min(72vw, 760px);
    min-height: 410px;
  }

  .category-strip__inner {
    grid-template-columns: repeat(6, minmax(130px, 1fr));
    overflow-x: auto;
  }

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

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

  .product-card:nth-child(-n + 3),
  .product-card:nth-child(n + 4) {
    grid-column: auto;
  }

  .product-card {
    min-height: 480px;
  }

  .product-card__body {
    min-height: 158px;
    padding: 0 24px 20px;
  }

  .product-card figure {
    height: 260px;
    min-height: 0;
    padding: 16px;
  }

  .product-card img {
    max-width: min(250px, 86%);
    max-height: 220px;
  }

  .product-card__body h3 {
    padding: 0;
    font-size: 18px;
  }

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

  .solutions-service-card:nth-child(odd) {
    border-left: 0;
  }

  .solutions-service-card:nth-child(n + 3) {
    border-top: 1px solid #e1e8ef;
  }

  .solutions-board {
    grid-template-columns: 1fr;
  }

  .solutions-feature {
    min-height: 430px;
  }

  .solution-tile {
    min-height: 220px;
  }

  .customer-services__hero {
    min-height: 460px;
    padding: 68px 0 132px;
  }

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

  .customer-service-card:nth-child(odd) {
    border-left: 0;
  }

  .customer-service-card:nth-child(n + 3) {
    border-top: 1px solid #e1e8ef;
  }

  .news-card {
    flex-basis: min(780px, 72vw);
    min-height: 240px;
  }

  .news-viewport {
    width: min(840px, calc(100% - 86px));
  }

  .news-card img {
    min-height: 240px;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 28px, 760px);
  }

  .nav-shell__inner {
    grid-template-columns: auto auto;
    min-height: 68px;
  }

  .site-brand img {
    width: 148px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-cta {
    display: none;
  }

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

  .footer-menu__list {
    justify-content: flex-start;
  }

  .primary-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    padding: 10px 14px 18px;
    background: #ffffff;
    border-top: 1px solid var(--color-line);
    box-shadow: 0 18px 35px rgba(8, 26, 49, 0.12);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav__list {
    display: grid;
    gap: 4px;
  }

  .primary-nav__list a {
    min-height: 42px;
  }

  .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 1980 / 670;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 52px 0 46px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-product-stage {
    width: min(100%, 620px);
    min-height: 300px;
    margin: 0 auto;
  }

  .hero-product-stage__item {
    padding: 12px;
  }

  .hero-product-stage__item--1 {
    right: 48%;
    bottom: 22px;
    width: 210px;
  }

  .hero-product-stage__item--2 {
    right: 14%;
    bottom: 42px;
    width: 190px;
  }

  .hero-product-stage__item--3 {
    right: 34%;
    bottom: 160px;
    width: 150px;
  }

  .hero-product-stage__item--4 {
    right: 64%;
    bottom: 142px;
    width: 140px;
  }

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

  .section-head,
  .section-head--split {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }

  .section-head h2 {
    white-space: normal;
  }

  .section--solutions .section-head--stack {
    align-items: center;
    text-align: center;
  }

  .solution-showcase {
    display: grid;
    min-height: 0;
    gap: 24px;
  }

  .solution-grid {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .solution-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .solution-product-orbit {
    position: relative;
    top: auto;
    left: auto;
    order: -1;
    margin: 0 auto;
    transform: none;
  }

  .product-category-board {
    grid-template-columns: 1fr;
  }

  .solutions-service {
    min-height: 0;
    padding: 60px 0 112px;
  }

  .solutions-service-grid {
    grid-template-columns: 1fr;
  }

  .partner-track {
    grid-auto-columns: minmax(180px, 1fr);
    grid-template-rows: 100px;
  }

  .partner-logo {
    min-height: 100px;
    padding: 20px 18px;
  }

  .solutions-service-card,
  .solutions-service-card:nth-child(n) {
    border-top: 1px solid #e1e8ef;
    border-left: 0;
  }

  .solutions-service-card:first-child {
    border-top: 0;
  }

  .product-category-hero {
    min-height: 320px;
  }

  .product-category-hero__content {
    padding: 30px;
  }

  .solutions-feature {
    min-height: 390px;
  }

  .solutions-list {
    grid-template-columns: 1fr;
  }

  .solution-tile {
    min-height: 0;
  }

  .js-ready #products .product-card.reveal {
    opacity: 1;
    transform: none;
  }

  .about-profile__intro,
  .inquiry-band__inner,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .about-profile {
    gap: 26px;
  }

  .about-profile__title strong {
    right: auto;
    bottom: -30px;
    left: 34px;
    font-size: clamp(70px, 15vw, 118px);
  }

  .about-profile__arrow {
    width: 52px;
    height: 52px;
    margin-top: 22px;
  }

  .about-profile__lower {
    gap: 20px;
    margin-top: 0;
  }

  .about-profile__copy {
    padding: 20px 0 0 34px;
  }

  .about-metrics {
    right: 18px;
    bottom: 14px;
    left: 18px;
    transform: none;
  }

  .footer-main {
    gap: 30px;
  }

  .footer-brand-panel {
    max-width: 520px;
  }

  .about-copy {
    max-width: none;
  }

  .about-metric-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
  }

  .about-metric {
    min-height: 92px;
    padding: 14px 16px;
  }

  .news-head {
    align-items: center;
    flex-direction: column;
  }

  .news-head h2 {
    font-size: 38px;
  }

  .news-viewport {
    width: min(680px, calc(100% - 34px));
  }

  .news-card {
    flex-basis: 100%;
    min-height: 0;
  }

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

  .news-card img {
    min-height: 170px;
  }

  .news-card__body {
    padding: 24px;
  }

}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 24px, 520px);
  }

  .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 1980 / 670;
  }

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

  .hero__content p {
    font-size: 15px;
  }

  .hero-product-stage {
    width: 100%;
    min-height: 235px;
  }

  .partner-showcase {
    gap: 24px;
  }

  .partner-track {
    grid-auto-columns: 160px;
    grid-template-rows: 86px;
  }

  .partner-head {
    justify-items: start;
    text-align: left;
  }

  .partner-head p {
    font-size: 14px;
  }

  .partner-logo {
    min-height: 86px;
    padding: 16px 14px;
  }

  .partner-logo img {
    max-width: min(100%, 132px);
    max-height: 48px;
  }

  .hero-product-stage__item--1 {
    right: 47%;
    bottom: 12px;
    width: 150px;
  }

  .hero-product-stage__item--2 {
    right: 5%;
    bottom: 28px;
    width: 140px;
  }

  .hero-product-stage__item--3 {
    right: 31%;
    bottom: 136px;
    width: 112px;
  }

  .hero-product-stage__item--4 {
    right: 63%;
    bottom: 122px;
    width: 104px;
  }

  .hero__controls {
    right: 14px;
    left: 14px;
  }

  .hero__arrow {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .section-head h2,
  .inquiry-band h2 {
    font-size: 30px;
  }

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

  .button {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .section--tight-head {
    padding-top: 48px;
  }

  .section--lift {
    margin-top: -70px;
    padding-bottom: 30px;
  }

  .stats-grid,
  .category-grid,
  .advantage-grid,
  .quick-form {
    grid-template-columns: 1fr;
  }

  .certificate-gallery {
    padding: 0 0 22px;
    grid-template-columns: 1fr;
  }

  .certificate-shelf {
    --certificate-shelf-gap: 28px;

    gap: 28px;
    padding-bottom: 22px;
  }

  .certificate-shelf .certificate-card {
    flex-basis: 100%;
  }

  .certificate-card img {
    height: clamp(210px, 78vw, 310px);
  }

  .certificate-card--featured img {
    height: clamp(230px, 84vw, 330px);
  }

  .solution-showcase {
    padding: 16px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solution-card:nth-child(2) .solution-card__content,
  .solution-card:nth-child(4) .solution-card__content {
    right: 22px;
    left: 22px;
    max-width: none;
    text-align: left;
  }

  .solutions-feature {
    min-height: 360px;
  }

  .solutions-feature__copy {
    padding: 30px 22px;
  }

  .solutions-feature__copy h2 {
    font-size: 40px;
  }

  .solution-tile {
    padding: 24px 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card {
    min-height: 455px;
  }

  .product-card__body {
    min-height: 160px;
    padding: 0 22px 20px;
  }

  .product-card__body h3 {
    padding: 0;
    font-size: 18px;
  }

  .product-card figure {
    height: 230px;
    min-height: 0;
    padding: 14px;
  }

  .product-card img {
    max-width: min(210px, 86%);
    max-height: 190px;
  }

  .product-card__hover {
    position: static;
    width: 100%;
    padding: 0;
  }

  .customer-services__hero {
    min-height: 0;
    padding: 48px 0 94px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.72)),
      var(--service-bg) center / cover;
  }

  .customer-services__copy {
    padding-left: 18px;
  }

  .customer-services h2 {
    font-size: 32px;
  }

  .customer-services__copy p {
    font-size: 15px;
    line-height: 1.62;
  }

  .customer-services__cards {
    margin-top: -58px;
  }

  .customer-service-grid {
    grid-template-columns: 1fr;
  }

  .customer-service-card,
  .customer-service-card:nth-child(odd),
  .customer-service-card:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px solid #e1e8ef;
  }

  .customer-service-card:first-child {
    border-top: 0;
  }

  .customer-service-card {
    min-height: 0;
    padding: 24px 22px;
  }

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

  .about-video__play img {
    width: 36px;
    height: 36px;
  }

  .about-metrics {
    position: static;
    margin: -4px 0 0;
    transform: none;
  }

  .about-metric-track {
    grid-template-columns: 1fr;
    gap: 8px;
    border-radius: 0 0 6px 6px;
  }

  .about-metric {
    min-height: auto;
    padding: 14px;
  }

  .news-card {
    min-height: 0;
  }

  .news-card a {
    padding: 0;
  }

  .news-card img {
    min-height: 150px;
  }

  .news-card__body {
    padding: 20px;
  }

  .news-card h3 {
    font-size: 24px;
  }

  .news-card p {
    font-size: 13px;
  }

  .news-controls {
    margin-top: 14px;
  }

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

  .solution-card {
    min-height: 270px;
  }

  .solution-product-orbit {
    width: min(100%, 286px);
  }

  .inquiry-band__inner {
    padding: 24px;
  }

  .footer-main {
    padding: 48px 0 32px;
  }

  .footer-hotline {
    width: 100%;
    justify-content: center;
    padding: 0 16px;
  }

  .footer-contact-list p {
    grid-template-columns: 22px 1fr;
  }

  .footer-contact-list em,
  .footer-contact-list a {
    grid-column: 2;
  }

  .footer-social {
    margin-top: 10px;
  }

  .footer-bottom__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }
}
