:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --subtle: #f5f5f7;
  --white: #ffffff;
  --line: rgba(0, 0, 0, 0.1);
  --line-strong: rgba(0, 0, 0, 0.16);
  --blue: #0066cc;
  --red: #c8102e;
  --green: #16745f;
  --gold: #8a6200;
  --shadow: 0 28px 76px rgba(0, 0, 0, 0.09);
  --section-scroll-offset: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(0, 102, 204, 0.58);
  outline-offset: 3px;
}

.seo-fallback {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.seo-fallback img {
  width: min(280px, 70vw);
  margin-bottom: 40px;
}

.seo-fallback h1 {
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1.15;
}

.seo-fallback h2 {
  margin-top: 36px;
  font-size: 24px;
}

.seo-fallback p,
.seo-fallback li {
  color: var(--muted);
  font-size: 17px;
}

.seo-fallback nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  color: var(--blue);
  font-weight: 700;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 251, 253, 0.78);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(180%) blur(22px);
}

.nav {
  min-height: 72px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 218px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
}

.nav-toggle {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(29, 29, 31, 0.82);
  font-size: 13px;
  font-weight: 520;
}

.nav-links a {
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.lang-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  width: 108px;
  padding: 3px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: rgba(245, 245, 247, 0.88);
}

.lang-toggle a {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #515154;
  font-size: 12px;
  font-weight: 700;
}

.lang-toggle a.active {
  color: var(--white);
  background: var(--blue);
}

.employee-oa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(0, 102, 204, 0.34);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 102, 204, 0.08);
  font-weight: 700;
}

.hero {
  min-height: min(680px, calc(78vh - 20px));
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: -5vh 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.14) 34%, rgba(0, 0, 0, 0.72)),
    url("/assets/hero-yard.jpeg") center / cover no-repeat;
  transform: translate3d(0, var(--motion-shift, 0), 0) scale(var(--motion-scale, 1.02));
  transition: transform 120ms linear;
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 38%, transparent 0 24%, rgba(0, 0, 0, 0.22) 68%);
}

.hero-inner {
  width: min(1080px, calc(100% - 40px));
  padding: 56px 0 66px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 680;
}

.hero h1 {
  width: min(1040px, 100%);
  margin: 0 auto;
  font-size: 76px;
  font-weight: 760;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-copy {
  width: min(790px, 100%);
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 26px;
  line-height: 1.36;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 560;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
}

.button.secondary {
  color: var(--blue);
  border-color: rgba(0, 102, 204, 0.48);
  background: rgba(255, 255, 255, 0.94);
}

section {
  padding: 112px 0;
}

section[id] {
  scroll-margin-top: var(--section-scroll-offset);
}

.section-alt {
  background: var(--subtle);
}

.section-head {
  width: min(880px, 100%);
  margin: 0 auto 58px;
  text-align: center;
}

.section-head.align-left {
  margin-left: 0;
  text-align: left;
}

.kicker {
  display: inline-block;
  color: var(--red);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.35;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.no-break {
  white-space: nowrap;
}

h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 58px;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.42;
  text-wrap: pretty;
}

.profile-grid,
.split,
.cert-grid,
.customers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.profile-grid {
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
  align-items: stretch;
}

.photo-panel,
.feature-image,
.article-main-image {
  overflow: hidden;
  border-radius: 8px;
  background: var(--subtle);
}

.photo-panel {
  min-height: 560px;
}

.photo-panel img,
.feature-image img,
.article-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, calc(var(--motion-shift, 0px) * -0.45), 0) scale(var(--motion-scale, 1.02));
  transition: transform 120ms linear;
  will-change: transform;
}

.feature-image img {
  aspect-ratio: 4 / 3;
}

.media-depth {
  box-shadow: var(--shadow);
  transform: translateY(calc(var(--motion-shift, 0px) * 0.18));
  transition: box-shadow 120ms linear, transform 120ms linear;
  will-change: transform;
}

.text-panel {
  display: grid;
  gap: 14px;
}

.profile-callout {
  position: relative;
  overflow: hidden;
  min-height: 208px;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 102, 204, 0.82), rgba(22, 116, 95, 0.84)),
    #08263a;
  box-shadow: var(--shadow);
}

.profile-callout::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 5px;
  background: var(--red);
}

.profile-callout span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 760;
}

.profile-callout strong {
  display: block;
  font-size: 42px;
  font-weight: 780;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.profile-callout p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.5;
}

.info-block,
.service,
.customer-group {
  padding: 34px;
  border-radius: 8px;
  background: var(--subtle);
}

.section-alt .service,
.customer-group {
  background: var(--white);
}

.info-block h3,
.service h3,
.timeline-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.22;
}

.info-block p,
.service p,
.timeline-card p {
  margin: 0;
  color: var(--muted);
}

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

.service {
  min-height: 360px;
}

.service-icon {
  margin-bottom: 50px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 700;
}

.service:nth-child(2) .service-icon {
  color: var(--red);
}

.service:nth-child(3) .service-icon {
  color: var(--green);
}

.service:nth-child(4) .service-icon {
  color: var(--gold);
}

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

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.timeline-card {
  padding: 38px;
  background: var(--white);
}

.timeline-card time {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

.customers {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
}

.customers h2 {
  font-size: 52px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag {
  display: flex;
  align-items: center;
  max-width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  color: var(--ink);
  background: var(--subtle);
  font-size: 14px;
  line-height: 1.4;
}

.growth-tags {
  margin-top: 28px;
}

.feature-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.feature-item {
  padding: 22px 0;
  background: var(--white);
}

.feature-item strong {
  display: block;
  margin-bottom: 4px;
}

.feature-item span {
  color: var(--muted);
}

.credential-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.credential-feature {
  display: grid;
  grid-template-columns: minmax(88px, auto) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 34px;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: #111827;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.16);
}

.credential-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  font-size: 44px;
  font-weight: 780;
  line-height: 1;
}

.credential-feature span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 760;
}

.credential-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.42;
}

.credential {
  position: relative;
  overflow: hidden;
  padding: 18px 20px 18px 46px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  color: rgba(29, 29, 31, 0.9);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.045);
  font-weight: 650;
  line-height: 1.42;
}

.credential::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(0, 102, 204, 0.11);
}

.certificate-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: stretch;
}

.certificate-card {
  display: grid;
  grid-template-rows: minmax(150px, 1fr) auto;
  gap: 12px;
  min-height: 252px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.055);
}

.certificate-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--subtle);
}

.certificate-card figcaption {
  color: rgba(29, 29, 31, 0.72);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.32;
}

.train-image {
  background: rgba(245, 245, 247, 0.76);
}

.train-image img {
  height: auto;
  aspect-ratio: 1341 / 611;
  object-fit: contain;
  transform: none;
}

.news-section {
  padding: 96px 0 112px;
  background:
    linear-gradient(90deg, rgba(200, 16, 46, 0.06), transparent 34%),
    var(--white);
}

.news-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.news-heading h2 {
  max-width: 760px;
  font-size: 52px;
}

.text-link,
.read-more,
.back-link {
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.news-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: stretch;
}

.featured-news {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: 8px;
  background: var(--subtle);
  box-shadow: var(--shadow);
}

.featured-news img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.featured-news-body {
  padding: 30px;
  background: var(--white);
  border-top: 4px solid var(--red);
}

.news-meta {
  display: block;
  color: var(--red);
  font-size: 13px;
  font-weight: 760;
}

.featured-news h3,
.archive-card h2 {
  margin: 12px 0 10px;
  font-size: 34px;
  line-height: 1.16;
}

.featured-news p,
.archive-card p,
.news-row span {
  margin: 0;
  color: var(--muted);
}

.news-list {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--line-strong);
  background: var(--white);
}

.news-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.news-row time {
  color: #515154;
  font-size: 14px;
  font-weight: 700;
}

.news-row strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.28;
}

.page-main {
  background: var(--white);
}

.page-hero {
  padding: 110px 0 76px;
  background:
    linear-gradient(90deg, rgba(0, 102, 204, 0.08), transparent 42%),
    var(--subtle);
}

.page-hero-inner {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
}

.page-hero h1 {
  margin: 10px 0 0;
  font-size: 76px;
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.42;
}

.archive-section {
  padding: 76px 0 112px;
}

.archive-list {
  display: grid;
  gap: 24px;
}

.archive-card {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 24px;
  border-top: 1px solid var(--line-strong);
  background: var(--white);
  transition: background 180ms ease;
}

.archive-card:hover {
  background: var(--subtle);
}

.archive-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.archive-card h2 {
  font-size: 40px;
}

.read-more {
  display: inline-block;
  margin-top: 20px;
}

.article-hero {
  padding: 86px 0 78px;
  background: var(--subtle);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.article-title-block h1 {
  margin: 16px 0 0;
  font-size: 66px;
  line-height: 1.08;
  letter-spacing: 0;
}

.article-title-block p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
}

.article-main-image {
  margin: 0;
}

.article-main-image img {
  aspect-ratio: 16 / 10;
}

.article-content-section {
  padding: 72px 0 118px;
}

.article-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 760px);
  gap: 72px;
  align-items: start;
  justify-content: center;
}

.article-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding-top: 6px;
  color: var(--muted);
  font-size: 14px;
  border-top: 3px solid var(--red);
}

.article-side strong {
  color: var(--ink);
  font-size: 16px;
}

.article-body p {
  margin: 0 0 24px;
  color: #2a2a2d;
  font-size: 18px;
  line-height: 1.82;
}

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

.article-gallery figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--subtle);
}

.article-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-gallery figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.contact {
  color: var(--white);
  background: #000000;
}

.contact .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact h2,
.contact .kicker,
.contact .lead {
  color: var(--white);
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-row {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-row strong {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-transform: uppercase;
}

.contact-row span,
.contact-row a {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

footer {
  padding: 22px 0;
  color: #6e6e73;
  background: var(--subtle);
  font-size: 12px;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px) scale(0.988);
  filter: blur(10px);
  transition:
    opacity 850ms cubic-bezier(0.2, 0, 0, 1),
    transform 850ms cubic-bezier(0.2, 0, 0, 1),
    filter 850ms cubic-bezier(0.2, 0, 0, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1080px) {
  :root {
    --section-scroll-offset: 156px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

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

  .news-home-grid,
  .article-hero-grid {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: minmax(0, 760px);
    gap: 34px;
  }

  .article-side {
    position: static;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    border-top: 0;
    border-left: 3px solid var(--red);
    padding: 2px 0 2px 16px;
  }
}

@media (max-width: 920px) {
  .profile-grid,
  .split,
  .customers,
  .cert-grid,
  .contact .wrap {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  :root {
    --section-scroll-offset: 88px;
  }

  .wrap,
  .nav,
  .hero-inner,
  .page-hero-inner {
    width: min(100% - 30px, 1160px);
  }

  .brand img {
    width: 180px;
  }

  .nav {
    min-height: 72px;
    position: relative;
    align-items: center;
    flex-direction: row;
    gap: 16px;
    padding: 10px 0;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    color: var(--ink);
    background: var(--white);
    cursor: pointer;
  }

  .nav-toggle-icon,
  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    width: 20px;
    height: 2px;
    display: block;
    position: relative;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, background 180ms ease;
  }

  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle-icon::before {
    top: -6px;
  }

  .nav-toggle-icon::after {
    top: 6px;
  }

  .nav-toggle.is-open .nav-toggle-icon {
    background: transparent;
  }

  .nav-toggle.is-open .nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle.is-open .nav-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .nav-links {
    width: 100%;
    max-height: calc(100vh - 88px);
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    padding: 10px 16px 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0 0 8px 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
    font-size: 14px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links > a:not(.employee-oa) {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .lang-toggle {
    width: 100%;
    margin-top: 12px;
  }

  .employee-oa {
    width: 100%;
    min-height: 44px;
    margin-top: 10px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-inner {
    padding: 58px 0 54px;
  }

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

  .hero-copy {
    font-size: 20px;
  }

  .services,
  .timeline,
  .article-gallery {
    grid-template-columns: 1fr;
  }

  section {
    padding: 72px 0;
  }

  .news-section {
    padding: 72px 0 80px;
  }

  h2,
  .news-heading h2 {
    font-size: 40px;
  }

  .customers h2 {
    font-size: 40px;
  }

  .lead {
    font-size: 19px;
  }

  .kicker {
    font-size: 14px;
  }

  .tag {
    width: 100%;
    border-radius: 6px;
  }

  .news-heading {
    align-items: start;
    flex-direction: column;
  }

  .news-home-grid {
    gap: 20px;
  }

  .news-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .photo-panel {
    min-height: 360px;
  }

  .profile-callout {
    min-height: auto;
    padding: 28px;
  }

  .profile-callout strong,
  .credential-mark {
    font-size: 36px;
  }

  .credential-feature {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }

  .credential-mark {
    min-height: 62px;
    justify-content: flex-start;
  }

  .service {
    min-height: auto;
  }

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

  .page-hero {
    padding: 80px 0 56px;
  }

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

  .article-title-block h1 {
    font-size: 36px;
  }

  .article-hero {
    padding: 64px 0 58px;
  }

  .article-content-section {
    padding: 58px 0 82px;
  }

  .article-side {
    grid-template-columns: 1fr;
  }

  .article-body p {
    font-size: 17px;
    line-height: 1.78;
  }

  footer .wrap {
    flex-direction: column;
  }
}

@media (min-width: 1440px) {
  .kicker {
    font-size: 17px;
  }
}
