:root {
  --ink: #1f2a2d;
  --muted: #687477;
  --paper: #fbfaf7;
  --warm: #f1eee7;
  --line: #d9ded9;
  --deep: #17383a;
  --deep-2: #24494a;
  --mint: #d8e8e1;
  --mint-strong: #7eb7a3;
  --accent: #e6ad61;
  --accent-dark: #b76d3d;
  --white: #fffefa;
  --shadow: 0 18px 50px rgba(25, 47, 45, 0.1);
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", "Noto Serif SC", serif;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

body.is-loading #app {
  opacity: 0;
  transform: translateY(8px);
}

body #app {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 240ms ease, transform 240ms ease;
}

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

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

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

button {
  border: 0;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 16px;
  z-index: 100;
  padding: 8px 14px;
  color: var(--deep);
  background: var(--accent);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

[data-icon] {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

[data-icon] svg,
.lucide-icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.utility-bar {
  color: #d7e6dd;
  background: var(--deep);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}

.utility-note,
.utility-links,
.utility-links a {
  display: flex;
  align-items: center;
}

.utility-note {
  gap: 8px;
  margin: 0;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--mint-strong);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(126, 183, 163, 0.14);
}

.utility-links {
  gap: 20px;
}

.utility-links a {
  gap: 7px;
  color: #d7e6dd;
  transition: color 160ms ease;
}

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

.utility-links [data-icon] {
  color: var(--accent);
  font-size: 14px;
}

.nav-shell {
  position: relative;
  background: rgba(251, 250, 247, 0.98);
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
}

.site-header.is-scrolled .nav-shell {
  box-shadow: 0 8px 24px rgba(24, 45, 44, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--deep);
  border: 1px solid var(--deep);
  border-radius: 50%;
}

.brand-orbit {
  position: absolute;
  width: 22px;
  height: 10px;
  border: 1px solid var(--accent-dark);
  border-radius: 50%;
  transform: rotate(-42deg);
}

.brand-cross {
  position: relative;
  z-index: 1;
  color: var(--accent-dark);
  font-size: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 78px;
  padding: 0;
  color: #465456;
  background: transparent;
  font-size: 14px;
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--accent-dark);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--deep);
}

.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-parent svg {
  width: 14px;
  height: 14px;
  transition: transform 160ms ease;
}

.nav-parent[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  width: 330px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown.is-open .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-label {
  margin: 8px 12px 7px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.dropdown-menu a {
  display: grid;
  grid-template-columns: 28px 1fr 16px;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-top: 1px solid #edf0eb;
  transition: background 160ms ease, color 160ms ease;
}

.dropdown-menu a:hover {
  color: var(--deep);
  background: var(--warm);
}

.dropdown-menu a > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.dropdown-menu strong {
  font-size: 13px;
  font-weight: 650;
}

.dropdown-menu small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.dropdown-menu .menu-index {
  align-self: start;
  color: var(--accent-dark);
  font-family: Georgia, serif;
  font-size: 12px;
}

.dropdown-menu a > [data-icon] {
  color: var(--accent-dark);
  font-size: 16px;
}

.dropdown-menu-company {
  width: 280px;
}

.dropdown-menu-company a {
  grid-template-columns: 1fr 16px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 30px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--deep);
  background: transparent;
  border: 1px solid transparent;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.icon-button:hover {
  background: var(--warm);
  border-color: var(--line);
}

.icon-button svg {
  width: 18px;
  height: 18px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.lang-switch .is-active {
  color: var(--deep);
  font-weight: 700;
}

.lang-divider {
  color: #b1bab5;
}

.menu-trigger {
  display: none;
}

.mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 16px;
  height: 16px;
}

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

.button-dark {
  color: var(--white);
  background: var(--deep);
}

.button-dark:hover {
  background: var(--deep-2);
}

.button-accent {
  color: var(--deep);
  background: var(--accent);
}

.button-accent:hover {
  background: #efbe79;
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 254, 250, 0.45);
}

.button-outline-light:hover {
  background: rgba(255, 254, 250, 0.1);
  border-color: var(--white);
}

.button-outline-dark {
  color: var(--deep);
  background: transparent;
  border-color: #9baaa4;
}

.button-outline-dark:hover {
  background: var(--warm);
  border-color: var(--deep);
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 100ms ease;
}

.hero-section {
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  min-height: 646px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 78px 70px 76px 0;
}

.eyebrow,
.modal-kicker {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
}

.eyebrow-light {
  color: var(--accent);
}

.hero-title {
  max-width: 600px;
  margin: 25px 0 22px;
  color: var(--white);
  font-size: 66px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero-title em {
  color: var(--accent);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.hero-lead {
  max-width: 490px;
  margin: 0;
  color: #d2ded8;
  font-size: 16px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 58px;
  padding-top: 18px;
  color: #a7b9b1;
  border-top: 1px solid rgba(223, 239, 230, 0.23);
  font-size: 11px;
}

.hero-meta strong {
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 400;
}

.hero-visual {
  position: relative;
  min-height: 646px;
  margin: 0;
  background: #1d3435;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(12, 35, 35, 0.18);
  content: "";
  pointer-events: none;
}

.hero-visual::after {
  position: absolute;
  inset: 20px;
  z-index: 2;
  border: 1px solid rgba(255, 254, 250, 0.36);
  content: "";
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 646px;
  object-fit: cover;
  object-position: center;
}

.hero-image-caption {
  position: absolute;
  right: 42px;
  bottom: 42px;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 250px;
  padding: 17px 18px;
  color: var(--deep);
  background: rgba(255, 254, 250, 0.94);
  border-left: 3px solid var(--accent);
}

.hero-image-caption [data-icon] {
  margin-top: 2px;
  color: var(--accent-dark);
  font-size: 17px;
}

.hero-image-caption p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.hero-image-caption strong {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
}

.signal-strip {
  color: var(--deep);
  background: var(--mint);
  border-bottom: 1px solid #c3d9d0;
}

.signal-inner {
  display: grid;
  grid-template-columns: 1.05fr repeat(4, 1fr);
  align-items: stretch;
}

.signal-lead,
.signal-item {
  min-height: 105px;
  padding: 25px 22px;
}

.signal-lead {
  display: flex;
  align-items: center;
  padding-left: 0;
  font-size: 15px;
  font-weight: 650;
}

.signal-item {
  display: grid;
  align-content: center;
  gap: 3px;
  border-left: 1px solid rgba(23, 56, 58, 0.14);
}

.signal-item span:first-child {
  color: var(--accent-dark);
  font-family: Georgia, serif;
  font-size: 13px;
}

.signal-item span:last-child {
  font-size: 13px;
}

.section {
  padding: 120px 0;
}

.section-warm {
  background: var(--warm);
}

.section-deep {
  color: var(--white);
  background: var(--deep);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 50px;
}

.section-heading h2,
.statement-copy h2,
.quality-copy h2,
.page-hero h1,
.cta-copy h2 {
  margin: 14px 0 0;
  font-size: 46px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.18;
}

.section-deep .section-heading h2 {
  color: var(--white);
}

.section-heading p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-deep .section-heading p {
  color: #b7c8c1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  color: var(--accent-dark);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--deep);
}

.text-link svg {
  width: 16px;
  height: 16px;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.98fr);
  gap: 90px;
  align-items: center;
}

.statement-copy h2 {
  max-width: 540px;
  color: var(--deep);
}

.statement-copy h2 em {
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.statement-copy > p {
  max-width: 490px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
}

.statement-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 30px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.statement-points li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink);
  font-size: 13px;
}

.statement-points [data-icon] {
  margin-top: 3px;
  color: var(--accent-dark);
  font-size: 16px;
}

.statement-visual {
  position: relative;
  padding: 0 0 28px 28px;
}

.statement-visual::before {
  position: absolute;
  top: 28px;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid var(--line);
  content: "";
}

.statement-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.image-label {
  position: absolute;
  right: 18px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: var(--deep);
  background: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.image-label svg {
  width: 14px;
  height: 14px;
}

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

.capability-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 25px 24px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--deep);
  border-radius: 3px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.capability-card:hover {
  border-top-color: var(--accent-dark);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.card-number {
  color: var(--accent-dark);
  font-family: Georgia, serif;
  font-size: 14px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--deep);
  background: var(--mint);
  border-radius: 50%;
}

.card-icon svg {
  width: 19px;
  height: 19px;
}

.capability-card h3 {
  margin: 35px 0 10px;
  color: var(--deep);
  font-size: 19px;
  font-weight: 650;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.capability-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 26px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.card-link svg {
  width: 15px;
  height: 15px;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.55fr);
  gap: 85px;
  align-items: start;
}

.process-intro p {
  max-width: 270px;
  margin: 24px 0 0;
  color: #b7c8c1;
  font-size: 14px;
  line-height: 1.9;
}

.process-intro .text-link {
  margin-top: 31px;
  color: var(--accent);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(224, 239, 229, 0.32);
}

.process-step {
  position: relative;
  min-height: 225px;
  padding: 23px 17px 20px 0;
  border-right: 1px solid rgba(224, 239, 229, 0.18);
}

.process-step:not(:first-child) {
  padding-left: 17px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  content: "";
}

.process-step span {
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 13px;
}

.process-step h3 {
  margin: 38px 0 9px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

.process-step p {
  margin: 0;
  color: #9eb3aa;
  font-size: 12px;
  line-height: 1.7;
}

.quality-section {
  overflow: hidden;
}

.quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 80px;
  align-items: center;
}

.quality-media {
  position: relative;
  min-height: 550px;
}

.quality-media img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center;
}

.quality-stamp {
  position: absolute;
  right: -26px;
  bottom: 31px;
  width: 160px;
  padding: 18px;
  color: var(--deep);
  background: var(--accent);
}

.quality-stamp strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.quality-stamp span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.45;
}

.quality-copy h2 {
  color: var(--deep);
}

.quality-copy > p {
  max-width: 490px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.quality-list {
  display: grid;
  gap: 0;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.quality-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.quality-list [data-icon] {
  color: var(--accent-dark);
  font-size: 17px;
}

.quality-copy .button {
  margin-top: 32px;
}

.numbers-section {
  padding: 0;
  background: var(--mint);
}

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

.number-item {
  min-height: 178px;
  padding: 32px 28px;
  border-right: 1px solid rgba(23, 56, 58, 0.15);
}

.number-item:first-child {
  padding-left: 0;
}

.number-item:last-child {
  border-right: 0;
}

.number-item strong {
  display: block;
  color: var(--deep);
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.number-item span {
  display: block;
  max-width: 150px;
  margin-top: 14px;
  color: #4c6965;
  font-size: 12px;
  line-height: 1.5;
}

.news-list {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
}

.news-card {
  display: flex;
  flex-direction: column;
  min-height: 370px;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

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

.news-card:first-child {
  grid-row: span 1;
}

.news-image {
  width: 100%;
  height: 162px;
  object-fit: cover;
}

.news-card:first-child .news-image {
  height: 188px;
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 23px 20px;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
}

.news-tag {
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.news-card h3 {
  margin: 16px 0 0;
  color: var(--deep);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.5;
}

.news-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.news-card .text-link {
  margin-top: auto;
  padding-top: 20px;
}

.cta-section {
  padding: 80px 0;
  background: var(--warm);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
  min-height: 275px;
  color: var(--white);
  background: var(--deep);
}

.cta-copy {
  padding: 44px 60px 42px;
}

.cta-copy h2 {
  max-width: 560px;
  color: var(--white);
}

.cta-copy p {
  max-width: 480px;
  margin: 18px 0 0;
  color: #b7c8c1;
  line-height: 1.8;
}

.cta-copy .button {
  margin-top: 27px;
}

.cta-image {
  min-height: 275px;
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  opacity: 0.82;
}

.page-hero {
  padding: 78px 0 72px;
  color: var(--white);
  background: var(--deep);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 70px;
  align-items: end;
}

.page-hero h1 {
  max-width: 660px;
  color: var(--white);
  font-size: 54px;
}

.page-hero h1 em {
  color: var(--accent);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.page-hero-copy > p {
  max-width: 440px;
  margin: 23px 0 0;
  color: #c3d2cc;
  font-size: 15px;
  line-height: 1.85;
}

.page-hero-side {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.page-hero-side p {
  max-width: 265px;
  margin: 0;
  padding-left: 20px;
  color: #a8bcb3;
  border-left: 1px solid var(--accent);
  font-size: 12px;
  line-height: 1.8;
}

.page-hero-side strong {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 400;
}

.page-content {
  padding: 92px 0 120px;
}

.page-content-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 42px;
}

.page-content-intro h2 {
  max-width: 600px;
  margin: 14px 0 0;
  color: var(--deep);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.28;
}

.page-content-intro > p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.solution-list {
  display: grid;
  gap: 15px;
}

.solution-row {
  display: grid;
  grid-template-columns: 64px minmax(200px, 0.65fr) minmax(0, 1.25fr) 50px;
  gap: 20px;
  align-items: center;
  min-height: 144px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.solution-row:hover {
  border-color: #a9c2b6;
  box-shadow: 0 12px 30px rgba(25, 47, 45, 0.07);
  transform: translateX(5px);
}

.solution-row .row-number {
  align-self: start;
  color: var(--accent-dark);
  font-family: Georgia, serif;
  font-size: 20px;
}

.solution-row h3 {
  margin: 0;
  color: var(--deep);
  font-size: 21px;
  font-weight: 600;
}

.solution-row h3 small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.solution-row > [data-icon] {
  justify-self: end;
  color: var(--accent-dark);
  font-size: 22px;
}

.solution-detail {
  display: none;
  margin-top: 17px;
  padding: 20px 24px 22px;
  background: var(--warm);
  border-left: 3px solid var(--accent);
}

.solution-detail.is-open {
  display: block;
}

.solution-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.solution-detail .detail-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.detail-tag {
  padding: 4px 8px;
  color: var(--deep);
  background: var(--mint);
  font-size: 11px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 33px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.filter-button {
  padding: 8px 13px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  font-size: 12px;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--deep);
  background: var(--mint);
  border-color: #b9d2c7;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.product-card-image {
  height: 190px;
  overflow: hidden;
  background: var(--mint);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 21px 21px;
}

.product-code {
  color: var(--accent-dark);
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.product-card h3 {
  margin: 12px 0 8px;
  color: var(--deep);
  font-size: 18px;
  font-weight: 650;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.product-card .card-link {
  margin-top: auto;
  padding-top: 21px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 48px 20px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed #b9c4be;
}

.article-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.article-row {
  display: grid;
  grid-template-columns: 100px minmax(160px, 0.55fr) minmax(0, 1.15fr) 22px;
  gap: 24px;
  align-items: center;
  min-height: 142px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 160ms ease, background 160ms ease;
}

.article-row:hover {
  padding-right: 12px;
  padding-left: 12px;
  background: var(--warm);
}

.article-date strong {
  display: block;
  color: var(--deep);
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.article-date span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}

.article-kind {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.article-row h3 {
  margin: 0;
  color: var(--deep);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.5;
}

.article-row p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.article-row > [data-icon] {
  color: var(--accent-dark);
  font-size: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.about-copy h2 {
  max-width: 500px;
  margin: 14px 0 0;
  color: var(--deep);
  font-size: 39px;
  font-weight: 500;
  line-height: 1.25;
}

.about-copy > p {
  max-width: 500px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image::after {
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 120px;
  height: 120px;
  border-right: 1px solid var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
  content: "";
}

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

.value-item {
  min-height: 230px;
  padding: 27px 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent-dark);
}

.value-item > [data-icon] {
  color: var(--deep);
  font-size: 23px;
}

.value-item h3 {
  margin: 28px 0 9px;
  color: var(--deep);
  font-size: 18px;
}

.value-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid var(--line);
}

.timeline-item {
  position: relative;
  padding: 28px 22px 0 0;
}

.timeline-item:not(:first-child) {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.timeline-item::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--accent-dark);
  border-radius: 50%;
  content: "";
}

.timeline-item strong {
  display: block;
  color: var(--deep);
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.timeline-item h3 {
  margin: 16px 0 7px;
  color: var(--deep);
  font-size: 15px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: start;
}

.support-copy h2 {
  margin: 14px 0 0;
  color: var(--deep);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.24;
}

.support-copy > p {
  max-width: 430px;
  margin: 23px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.contact-details {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.contact-detail {
  display: grid;
  grid-template-columns: 24px 100px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.contact-detail [data-icon] {
  color: var(--accent-dark);
  font-size: 17px;
}

.contact-detail span:nth-child(2) {
  color: var(--muted);
  font-size: 12px;
}

.contact-detail a {
  color: var(--deep);
  font-weight: 650;
}

.support-form-wrap {
  padding: 31px;
  background: var(--white);
  border: 1px solid var(--line);
}

.support-form-wrap h3 {
  margin: 0 0 22px;
  color: var(--deep);
  font-size: 21px;
  font-weight: 600;
}

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

.support-form label,
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

.support-form input,
.support-form select,
.support-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea,
.search-input-wrap input {
  width: 100%;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #cfd8d2;
  border-radius: 1px;
  font-size: 13px;
}

.support-form input,
.support-form select,
.contact-form input,
.contact-form select {
  height: 44px;
}

.support-form textarea,
.contact-form textarea {
  min-height: 105px;
  resize: vertical;
}

.support-form input::placeholder,
.support-form textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder,
.search-input-wrap input::placeholder {
  color: #9aa6a0;
}

.support-form .field-full {
  grid-column: 1 / -1;
}

.support-form .button {
  margin-top: 4px;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #8a9690;
  font-size: 11px;
  line-height: 1.5;
}

.form-note svg {
  width: 14px;
  height: 14px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 35, 35, 0.66);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-panel {
  position: relative;
  width: min(100%, 620px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 38px;
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  transform: translateY(14px);
  transition: transform 180ms ease;
}

.modal-backdrop.is-open .modal-panel {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
}

.modal-panel h2 {
  max-width: 470px;
  margin: 12px 0 9px;
  color: var(--deep);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
}

.modal-panel > p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 27px;
}

.contact-form .field-full {
  grid-column: 1 / -1;
}

.contact-form .button {
  width: 100%;
  margin-top: 3px;
}

.form-success {
  padding: 28px 0 5px;
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--deep);
  background: var(--accent);
  border-radius: 50%;
  font-size: 23px;
}

.form-success h3 {
  margin: 20px 0 7px;
  color: var(--deep);
  font-size: 21px;
  font-weight: 650;
}

.form-success p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 13px;
}

.search-panel {
  width: min(100%, 700px);
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 25px;
  padding: 0 13px;
  background: var(--white);
  border: 1px solid var(--line);
}

.search-input-wrap [data-icon] {
  color: var(--accent-dark);
  font-size: 18px;
}

.search-input-wrap input {
  height: 50px;
  padding: 0;
  background: transparent;
  border: 0;
  outline: none;
}

.search-results {
  min-height: 80px;
  margin-top: 14px;
}

.search-empty {
  margin: 0;
  padding: 18px 0;
  color: var(--muted);
  font-size: 13px;
}

.search-result {
  display: grid;
  grid-template-columns: 55px 1fr 18px;
  gap: 13px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.search-result-number {
  color: var(--accent-dark);
  font-family: Georgia, serif;
  font-size: 13px;
}

.search-result strong {
  display: block;
  color: var(--deep);
  font-size: 14px;
}

.search-result small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.search-result > [data-icon] {
  color: var(--accent-dark);
}

.detail-panel {
  width: min(100%, 760px);
}

.detail-header {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 23px;
}

.detail-index {
  color: var(--accent-dark);
  font-family: Georgia, serif;
  font-size: 27px;
}

.detail-header h2 {
  margin: 0;
  font-size: 29px;
}

.detail-header p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.detail-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 25px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.detail-body img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.detail-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.detail-body h3 {
  margin: 0 0 10px;
  color: var(--deep);
  font-size: 15px;
}

.detail-bullets {
  display: grid;
  gap: 9px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.detail-bullets li {
  display: flex;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
}

.detail-bullets [data-icon] {
  margin-top: 3px;
  color: var(--accent-dark);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  max-width: 330px;
  padding: 13px 16px;
  color: var(--white);
  background: var(--deep);
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  color: #c3d2cc;
  background: #102c2e;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 0.72fr 0.72fr 1.05fr;
  gap: 54px;
  padding-top: 68px;
  padding-bottom: 53px;
}

.brand-footer .brand-mark {
  color: var(--white);
  border-color: var(--white);
}

.brand-footer .brand-copy strong {
  color: var(--white);
}

.brand-footer .brand-copy small {
  color: #9eb3aa;
}

.footer-brand-block > p {
  max-width: 250px;
  margin: 22px 0 18px;
  color: #a9beb4;
  font-size: 13px;
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  gap: 9px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  color: #c3d2cc;
  border: 1px solid rgba(195, 210, 204, 0.34);
  transition: color 160ms ease, border-color 160ms ease;
}

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

.footer-socials svg {
  width: 15px;
  height: 15px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column h3 {
  margin: 2px 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #a9beb4;
  font-size: 12px;
  line-height: 1.6;
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-contact p {
  max-width: 190px;
}

.footer-contact .text-link {
  margin-top: 7px;
  color: var(--accent);
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: space-between;
  padding-top: 19px;
  padding-bottom: 21px;
  color: #7d9990;
  border-top: 1px solid rgba(195, 210, 204, 0.15);
  font-size: 10px;
}

.footer-bottom a:hover {
  color: var(--white);
}

@media (max-width: 1160px) {
  .desktop-nav {
    gap: 17px;
  }

  .nav-actions {
    gap: 7px;
    margin-left: 17px;
  }

  .hero-copy {
    padding-right: 45px;
  }

  .hero-title {
    font-size: 57px;
  }

  .statement-grid,
  .quality-grid,
  .support-grid,
  .about-grid {
    gap: 55px;
  }

  .process-layout {
    gap: 45px;
  }
}

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

  .desktop-nav {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .menu-trigger {
    display: inline-flex;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    background: var(--paper);
    border-bottom: 0 solid var(--line);
    opacity: 0;
    pointer-events: none;
    transition: max-height 280ms ease, opacity 180ms ease, border-bottom-width 180ms ease;
  }

  .mobile-nav.is-open {
    max-height: calc(100vh - 114px);
    overflow: auto;
    border-bottom-width: 1px;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-inner {
    display: grid;
    gap: 0;
    padding-top: 12px;
    padding-bottom: 20px;
  }

  .mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 49px;
    padding: 0;
    color: var(--deep);
    background: transparent;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    text-align: left;
  }

  .mobile-parent svg {
    width: 17px;
    height: 17px;
    color: var(--accent-dark);
    transition: transform 160ms ease;
  }

  .mobile-parent[aria-expanded="true"] svg {
    transform: rotate(45deg);
  }

  .mobile-submenu {
    display: grid;
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease;
  }

  .mobile-submenu.is-open {
    max-height: 280px;
  }

  .mobile-submenu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 13px;
    color: var(--muted);
    background: var(--warm);
    border-bottom: 1px solid #e3e1da;
    font-size: 13px;
  }

  .mobile-submenu small {
    color: var(--accent-dark);
    font-family: Georgia, serif;
    font-size: 11px;
  }

  .mobile-nav-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 21px;
  }

  .mobile-hotline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 12px;
  }

  .mobile-hotline svg {
    width: 15px;
    height: 15px;
    color: var(--accent-dark);
  }

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

  .hero-copy {
    min-height: 520px;
    padding: 68px 0 55px;
  }

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

  .hero-visual img {
    min-height: 440px;
    max-height: 500px;
  }

  .signal-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .signal-lead {
    display: none;
  }

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

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

  .process-intro p {
    max-width: 500px;
  }

  .process-intro .text-link {
    margin-top: 21px;
  }

  .quality-grid,
  .statement-grid,
  .about-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .statement-visual {
    max-width: 600px;
  }

  .quality-media {
    max-width: 600px;
    order: 2;
  }

  .quality-copy {
    order: 1;
  }

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

  .news-card:first-child {
    grid-column: 1 / -1;
  }

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

  .number-item:nth-child(2) {
    border-right: 0;
  }

  .number-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(23, 56, 58, 0.15);
  }

  .number-item:first-child {
    padding-left: 28px;
  }

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

  .footer-main {
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

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

  .utility-note {
    max-width: none;
    line-height: 1.35;
  }

  .utility-links {
    display: none;
  }

  .nav-inner {
    position: relative;
    min-height: 70px;
  }

  .nav-actions {
    position: fixed;
    top: 71px;
    right: 17px;
    flex: 0 0 auto;
    margin-left: 0;
    gap: 2px;
    transform: translateY(-50%);
    z-index: 4;
  }

  .nav-actions .icon-button[data-open-search] {
    display: none;
  }

  .nav-actions .lang-switch,
  .nav-actions .menu-trigger {
    display: inline-flex;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .search-trigger,
  .nav-contact {
    display: none;
  }

  .hero-copy {
    min-height: 510px;
    padding: 58px 0 51px;
  }

  .hero-title {
    margin-top: 20px;
    font-size: 43px;
    line-height: 1.16;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-meta {
    margin-top: 39px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 330px;
    height: 330px;
  }

  .hero-visual::after {
    inset: 12px;
  }

  .hero-image-caption {
    right: 24px;
    bottom: 24px;
    width: 215px;
    padding: 13px 14px;
  }

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

  .signal-item {
    min-height: 80px;
    padding: 18px 15px;
  }

  .signal-item:nth-child(odd) {
    border-left: 0;
  }

  .signal-item:nth-child(n + 4) {
    border-top: 1px solid rgba(23, 56, 58, 0.14);
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 33px;
  }

  .section-heading h2,
  .statement-copy h2,
  .quality-copy h2,
  .cta-copy h2 {
    font-size: 34px;
  }

  .section-heading p {
    margin-top: 15px;
  }

  .statement-grid,
  .quality-grid,
  .about-grid,
  .support-grid {
    gap: 47px;
  }

  .statement-points {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .statement-visual {
    padding: 0 0 18px 15px;
  }

  .statement-visual img {
    height: 320px;
  }

  .image-label {
    right: 9px;
    bottom: 1px;
  }

  .capability-grid,
  .news-list,
  .product-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

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

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 0;
  }

  .process-step,
  .process-step:not(:first-child) {
    min-height: 190px;
    padding: 28px 14px 20px 0;
    border-top: 1px solid rgba(224, 239, 229, 0.28);
    border-right: 0;
  }

  .process-step:nth-child(even) {
    padding-left: 14px;
    border-left: 1px solid rgba(224, 239, 229, 0.18);
  }

  .process-step::before {
    top: -5px;
  }

  .process-step:nth-child(odd)::before {
    left: 0;
  }

  .process-step:nth-child(even)::before {
    left: 14px;
  }

  .process-step h3 {
    margin-top: 27px;
  }

  .quality-media,
  .quality-media img {
    min-height: 340px;
    height: 340px;
  }

  .quality-stamp {
    right: -1px;
    bottom: 17px;
  }

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

  .number-item,
  .number-item:first-child {
    min-height: 145px;
    padding: 25px 16px;
  }

  .number-item strong {
    font-size: 33px;
  }

  .number-item span {
    margin-top: 9px;
  }

  .news-card,
  .news-card:first-child {
    min-height: 350px;
    grid-column: auto;
  }

  .cta-section {
    padding: 55px 0;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-copy {
    padding: 34px 25px 37px;
  }

  .cta-image {
    min-height: 180px;
  }

  .page-hero {
    padding: 57px 0 52px;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 29px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .page-hero-side {
    justify-content: flex-start;
  }

  .page-content {
    padding: 66px 0 84px;
  }

  .page-content-intro {
    display: block;
    margin-bottom: 31px;
  }

  .page-content-intro h2 {
    font-size: 31px;
  }

  .page-content-intro > p {
    margin-top: 16px;
  }

  .solution-row {
    grid-template-columns: 42px 1fr 27px;
    gap: 14px;
    padding: 20px 16px;
  }

  .solution-row p {
    grid-column: 2 / -1;
  }

  .solution-row .row-number {
    grid-row: span 2;
  }

  .solution-row > [data-icon] {
    grid-column: 3;
    grid-row: 1;
  }

  .article-row {
    grid-template-columns: 69px 1fr 17px;
    gap: 13px;
    padding: 18px 0;
  }

  .article-kind {
    grid-column: 2;
    grid-row: 1;
  }

  .article-row h3,
  .article-row p {
    grid-column: 2 / -1;
  }

  .article-row > [data-icon] {
    grid-column: 3;
    grid-row: 1;
  }

  .article-date {
    grid-row: span 3;
    align-self: start;
  }

  .about-copy h2,
  .support-copy h2 {
    font-size: 34px;
  }

  .about-image img {
    height: 340px;
  }

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

  .timeline-item,
  .timeline-item:not(:first-child) {
    min-height: 190px;
    padding: 25px 14px 0 0;
    border-left: 0;
  }

  .timeline-item:nth-child(even) {
    padding-left: 14px;
    border-left: 1px solid var(--line);
  }

  .support-form-wrap {
    padding: 23px 18px;
  }

  .support-form,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .support-form .field-full,
  .contact-form .field-full {
    grid-column: auto;
  }

  .modal-backdrop {
    align-items: flex-end;
    padding: 0;
  }

  .modal-panel {
    width: 100%;
    max-height: calc(100vh - 22px);
    padding: 30px 20px 25px;
  }

  .detail-header {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

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

  .detail-body img {
    height: 190px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 37px 24px;
    padding-top: 51px;
    padding-bottom: 42px;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    justify-content: flex-start;
    gap: 8px 17px;
  }
}

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