:root {
  --brand-blue: #0053ff;
  --brand-blue-dark: #1647ac;
  --ink: #333;
  --muted: #666;
  --soft: #f6f7fb;
  --footer: #25284c;
  --container-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.site-container {
  max-width: var(--container-width);
  min-width: 0;
}

.site-navbar .site-container {
  position: relative;
}

.site-navbar {
  min-height: 101px;
  background: #f6f7fa;
  transition: box-shadow .2s ease, min-height .2s ease;
}

.site-navbar.is-scrolled {
  min-height: 76px;
  box-shadow: 0 8px 24px rgba(21, 57, 140, .08);
}

.navbar-brand {
  gap: 14px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, #003bb3 0%, #2064f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-logo {
  width: 57px;
  height: 40px;
}

.navbar-nav {
  gap: 38px;
}

.site-navbar .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 53px;
  padding: 10px 18px;
  border: 1.5px solid transparent;
  color: rgba(55, 55, 55, .85);
  font-size: 20px;
  font-weight: 500;
}

.site-navbar .nav-link.active {
  border-color: var(--brand-blue-dark);
  color: var(--brand-blue);
  font-weight: 700;
  background: linear-gradient(180deg, var(--brand-blue-dark), var(--brand-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-section {
  position: relative;
  min-height: 537px;
  margin-top: 101px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, var(--brand-blue-dark) 0%, var(--brand-blue) 100%);
}

.hero-section::before,
.team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 24% 35%, rgba(117, 255, 237, .75) 0 4px, transparent 6px),
    radial-gradient(circle at 39% 61%, rgba(117, 255, 237, .7) 0 5px, transparent 8px),
    radial-gradient(circle at 78% 24%, rgba(117, 255, 237, .55) 0 4px, transparent 7px),
    radial-gradient(circle at 83% 68%, rgba(117, 255, 237, .8) 0 7px, transparent 12px);
  opacity: .75;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 134px;
}

.hero-section h1 {
  margin: 0 0 34px;
  font-size: clamp(42px, 4.2vw, 63px);
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.35;
}

.hero-orbit {
  position: relative;
  width: 430px;
  height: 430px;
  margin-right: 40px;
}

.orbit-ring,
.orbit-core,
.orbit-dot {
  position: absolute;
  border-radius: 50%;
}

.orbit-ring {
  inset: 52px;
  border: 1px solid rgba(112, 220, 255, .45);
}

.ring-b {
  inset: 82px;
  transform: rotate(44deg) scaleX(1.45);
}

.ring-c {
  inset: 116px;
  transform: rotate(-32deg) scaleX(1.75);
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 100%;
  background: rgba(126, 223, 255, .35);
  transform-origin: top;
}

.orbit-ring::after {
  transform: rotate(65deg);
}

.orbit-core {
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0 0 30px 13px rgba(54, 236, 255, .8);
}

.orbit-dot {
  width: 10px;
  height: 10px;
  background: #6dfcff;
  box-shadow: 0 0 16px 6px rgba(54, 236, 255, .65);
}

.dot-a { left: 96px; top: 74px; }
.dot-b { right: 80px; top: 136px; }
.dot-c { left: 148px; bottom: 84px; }
.dot-d { right: 116px; bottom: 104px; }

.features-section {
  margin-top: -96px;
  position: relative;
  z-index: 2;
}

.feature-panel {
  min-height: 296px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 5px 12px -4px rgba(0, 0, 0, .35);
}

.feature-item {
  display: flex;
  min-width: 0;
  min-height: 296px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 24px 30px;
  border-right: 1px solid #e6eaf2;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 26px;
}

.feature-item h2 {
  max-width: 100%;
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.feature-item p {
  max-width: 100%;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.about-section {
  padding: 90px 0 124px;
}

.about-list {
  display: grid;
  gap: 36px;
  min-width: 0;
}

.about-list p {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 25px 7%;
  border-bottom: 3px solid #a7c4ff;
  border-radius: 10px;
  background: var(--soft);
  color: #444;
  font-size: 20px;
  line-height: 2;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.team-section {
  position: relative;
  min-height: 653px;
  overflow: hidden;
  padding: 108px 0 86px;
  background:
    linear-gradient(180deg, rgba(22, 71, 172, .94), rgba(0, 83, 255, .94)),
    url("assets/team-bg.png") center/cover;
}

.section-title {
  position: relative;
  z-index: 1;
  margin: 0 0 118px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.stats-row {
  position: relative;
  z-index: 1;
}

.stat-item {
  color: #fff;
}

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

.stat-icon-lg {
  width: 152px;
  height: 152px;
  margin-top: -10px;
  margin-bottom: 42px;
}

.stat-item p {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.35;
}

.stat-item strong {
  display: block;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
}

.services-section {
  padding: 128px 0 163px;
}

.gradient-title {
  margin-bottom: 114px;
  background: linear-gradient(180deg, var(--brand-blue-dark), var(--brand-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-card {
  min-height: 426px;
  padding: 52px 30px 38px;
  border-radius: 12px;
  background: var(--soft);
  box-shadow: 0 4px 6px rgba(0, 0, 0, .25);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 24px rgba(0, 38, 120, .18);
}

.service-icon {
  width: 114px;
  height: 114px;
  object-fit: contain;
  margin-bottom: 44px;
}

.service-card h3 {
  margin: 0 0 44px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 68px 0 48px;
  background: var(--footer);
  color: #fff;
}

.site-footer h2 {
  margin: 0 0 34px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.35;
}

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

.footer-list a,
.contact-list a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
}

.footer-list a:hover,
.contact-list a:hover {
  color: #fff;
}

.contact-list {
  margin: 0;
}

.contact-list dt {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 600;
}

.contact-list dd {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .85);
  font-size: 19px;
  line-height: 1.9;
}

.copyright {
  margin: 62px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
}

.about-page {
  background: #fff;
}

.about-hero {
  position: relative;
  min-height: 435px;
  margin-top: 101px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(0, 65, 220, .72), rgba(0, 98, 255, .68)),
    url("assets/about/image.png") center/cover;
}

.about-hero h1 {
  margin: 0 0 40px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.about-hero p {
  margin: 0;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 1.6;
}

.about-culture-section {
  padding: 112px 0 120px;
}

.about-copy {
  max-width: 540px;
}

.about-copy h2,
.about-section-heading h2 {
  margin: 0;
  color: var(--brand-blue);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
}

.about-copy h2 {
  margin-bottom: 48px;
}

.about-copy p {
  margin: 0;
  color: #666;
  font-size: 19px;
  line-height: 2;
}

.culture-image {
  display: block;
  width: 100%;
  max-width: 594px;
  border-radius: 10px;
}

.support-team-section {
  padding: 32px 0 128px;
}

.about-section-heading {
  margin-bottom: 68px;
  text-align: center;
}

.about-section-heading p {
  margin: 15px 0 0;
  color: #8a8a8a;
  font-size: 17px;
  line-height: 1.6;
}

.team-card-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 96px 108px;
  max-width: 1180px;
  margin: 0 auto;
}

.team-card {
  position: relative;
  grid-column: span 2;
  min-height: 502px;
  overflow: hidden;
  border-radius: 8px;
  background: #e8edf6;
  box-shadow: 0 8px 18px rgba(20, 64, 150, .08);
}

.team-card:nth-child(1) {
  grid-column: 2 / span 2;
}

.team-card:nth-child(2) {
  grid-column: 4 / span 2;
}

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

.team-card-body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  min-height: 188px;
  padding: 54px 28px 24px;
  color: #fff;
  background: linear-gradient(120deg, rgba(0, 78, 255, .9), rgba(0, 82, 224, .86));
  clip-path: polygon(0 0, 100% 22%, 100% 100%, 0 100%);
}

.team-card-body h3 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.team-card-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.regions-section {
  padding: 86px 0 104px;
  background: #f5f7fc;
}

.regions-section .about-section-heading {
  margin-bottom: 48px;
}

.regions-map {
  display: block;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.technology-section {
  padding: 138px 0 148px;
}

.technology-section .about-section-heading {
  margin-bottom: 80px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-card {
  min-height: 420px;
  padding: 48px 28px 34px;
  border-radius: 7px;
  background: #1c4dac;
  color: #fff;
}

.tech-card-bright {
  background: #2c70ed;
}

.tech-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tech-card h3 {
  margin: 0 0 28px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.tech-card p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.75;
}

.tech-card p:last-child {
  margin-bottom: 0;
}

.service-page {
  background: #fff;
}

.service-hero {
  position: relative;
  min-height: 440px;
  margin-top: 101px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 70, 214, .9), rgba(0, 103, 255, .86)),
    url("assets/service/image (14).png") center/cover;
}

.service-hero .site-container {
  position: relative;
  z-index: 1;
}

.service-hero-copy {
  max-width: 560px;
  margin-left: 72px;
}

.service-hero h1 {
  margin: 0 0 42px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.service-hero-copy p {
  margin: 0;
  max-width: 520px;
  font-size: 19px;
  line-height: 1.85;
}

.product-types {
  max-width: 560px;
}

.product-types h2 {
  margin: 0 0 42px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.35;
}

.product-types ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 54px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-types li {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  font-size: 22px;
  line-height: 1.35;
}

.product-types span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
}

.product-types span img {
  max-width: 28px;
  max-height: 28px;
  object-fit: contain;
}

.service-detail-section {
  padding: 132px 0 154px;
}

.service-detail-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 580px;
  gap: 132px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto 140px;
}

.service-detail-row:last-child {
  margin-bottom: 0;
}

.service-detail-row-reverse {
  grid-template-columns: 580px minmax(0, 1fr);
}

.service-detail-row-reverse .service-detail-copy {
  grid-column: 2;
}

.service-detail-row-reverse .service-detail-image {
  grid-column: 1;
  grid-row: 1;
}

.service-detail-copy h2 {
  margin: 0 0 42px;
  color: var(--brand-blue);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
}

.service-detail-copy p {
  margin: 0;
  color: #737373;
  font-size: 18px;
  line-height: 2.05;
}

.service-detail-image {
  width: 100%;
  min-height: 365px;
  border-radius: 8px;
}

.service-detail-image {
  display: block;
  object-fit: cover;
}

.service-promise-section {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .52)),
    url("assets/service/image (11).png") center/cover;
}

.service-promise-section h2 {
  margin: 0 0 50px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
}

.service-promise-section p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.9;
}

.connect-page {
  background: #fff;
}

.connect-hero {
  position: relative;
  min-height: 770px;
  margin-top: 101px;
  padding: 118px 0 0;
  overflow: hidden;
  text-align: center;
}

.connect-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 130vw;
  height: 260px;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: linear-gradient(180deg, #1e4fbd 0%, var(--brand-blue) 100%);
}

.connect-hero .site-container {
  position: relative;
  z-index: 1;
}

.connect-hero h1 {
  margin: 0;
  color: var(--brand-blue);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.35;
}

.connect-map {
  display: block;
  width: min(840px, 82vw);
  margin: 32px auto 0;
  opacity: .12;
}

.connect-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  justify-content: center;
  gap: 178px;
  margin-top: -64px;
}

.connect-card {
  position: relative;
  min-height: 158px;
  padding: 54px 26px 28px;
  border: 1px solid #d9dce5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 22px rgba(22, 71, 172, .08);
}

.connect-card-icon {
  position: absolute;
  left: 50%;
  top: 0;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--brand-blue);
}

.connect-card-icon img {
  max-width: 32px;
  max-height: 32px;
}

.connect-card h2 {
  margin: 0 0 22px;
  color: #3f3f3f;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.connect-card p {
  margin: 0;
  color: #6b6b6b;
  font-size: 18px;
  line-height: 1.5;
}

.connect-card a {
  color: inherit;
  text-decoration: none;
}

.jobs-section {
  padding: 118px 0 138px;
}

.connect-section-title {
  margin: 0 0 70px;
  color: var(--brand-blue);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1096px;
  margin: 0 auto;
}

.job-card {
  min-height: 378px;
  padding: 28px 22px 28px;
  border: 1px solid #8c8c8c;
  border-radius: 8px;
  background: #fff;
}

.job-card h3 {
  margin: 0 0 34px;
  color: #262626;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
}

.job-block {
  margin-bottom: 18px;
}

.job-block:last-child {
  margin-bottom: 0;
}

.job-block h4 {
  margin: 0 0 4px;
  color: #444;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.job-block p {
  margin: 0 0 18px;
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

.job-block p:last-child {
  margin-bottom: 0;
}

.why-section {
  max-width: 920px;
  margin: 78px auto 0;
  text-align: center;
}

.why-section h2 {
  margin: 0 0 52px;
  color: var(--brand-blue);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
}

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

.why-list h3 {
  margin: 0 0 6px;
  color: #575757;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
}

.why-list p {
  margin: 0;
  color: #666;
  font-size: 19px;
  line-height: 1.7;
}

@media (max-width: 1199.98px) {
  .navbar-nav {
    gap: 18px;
  }

  .site-navbar .nav-link {
    min-width: 82px;
    font-size: 18px;
  }

  .feature-item h2 {
    font-size: 24px;
  }

  .feature-item p {
    font-size: 19px;
  }

  .stat-item strong {
    font-size: 48px;
  }

  .team-card-grid {
    gap: 56px 48px;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
  }

  .service-hero-copy {
    margin-left: 24px;
  }

  .service-detail-row,
  .service-detail-row-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: 72px;
  }

  .service-detail-row-reverse {
    grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
  }

  .connect-card-grid {
    gap: 96px;
  }

  .job-grid {
    max-width: 960px;
  }

  .job-card h3 {
    font-size: 21px;
  }

  .job-block p {
    font-size: 15px;
  }
}

@media (max-width: 991.98px) {
  .site-navbar,
  .site-navbar.is-scrolled {
    min-height: 76px;
  }

  .hero-section {
    margin-top: 76px;
  }

  .about-hero {
    min-height: 340px;
    margin-top: 76px;
  }

  .service-hero {
    min-height: auto;
    margin-top: 76px;
    padding: 76px 0;
  }

  .connect-hero {
    min-height: 680px;
    margin-top: 76px;
    padding-top: 82px;
  }

  .connect-card-grid {
    gap: 44px;
  }

  .navbar-collapse {
    padding: 18px 0 12px;
  }

  .navbar-toggler {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    right: 16px;
    margin-left: auto;
    border: 0;
    box-shadow: none;
  }

  .navbar-toggler::before,
  .navbar-toggler::after {
    content: "";
    position: absolute;
    left: 8px;
    width: 28px;
    height: 2px;
    background: var(--brand-blue-dark);
  }

  .navbar-toggler::before {
    top: 13px;
    box-shadow: 0 9px 0 var(--brand-blue-dark);
  }

  .navbar-toggler::after {
    top: 31px;
  }

  .navbar-toggler-icon {
    width: 28px;
    height: 20px;
    background-image: linear-gradient(#1647ac, #1647ac), linear-gradient(#1647ac, #1647ac), linear-gradient(#1647ac, #1647ac);
    background-repeat: no-repeat;
    background-size: 28px 2px, 28px 2px, 28px 2px;
    background-position: 0 0, 0 9px, 0 18px;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 83, 255, .16);
  }

  .navbar-nav {
    align-items: stretch !important;
    gap: 8px;
  }

  .site-navbar .nav-link {
    justify-content: flex-start;
    min-height: 48px;
  }

  .hero-content {
    padding-top: 120px;
  }

  .feature-panel {
    min-height: auto;
  }

  .feature-item {
    min-height: 240px;
  }

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

  .feature-item:nth-child(-n+2) {
    border-bottom: 1px solid #e6eaf2;
  }

  .section-title,
  .gradient-title {
    margin-bottom: 72px;
  }

  .stat-item {
    margin-bottom: 56px;
  }

  .stat-item:last-child {
    margin-bottom: 0;
  }

  .services-section {
    padding-bottom: 112px;
  }

  .about-culture-section {
    padding: 82px 0 92px;
  }

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

  .culture-image {
    margin: 0 auto;
  }

  .team-card-grid {
    grid-template-columns: repeat(2, minmax(0, 392px));
    justify-content: center;
  }

  .team-card,
  .team-card:nth-child(1),
  .team-card:nth-child(2) {
    grid-column: auto;
  }

  .team-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(392px, 100%);
  }

  .service-hero-copy {
    margin-left: 0;
    margin-bottom: 48px;
  }

  .product-types {
    max-width: none;
  }

  .service-detail-section {
    padding: 86px 0 104px;
  }

  .service-detail-row,
  .service-detail-row-reverse {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 84px;
  }

  .service-detail-row-reverse .service-detail-copy,
  .service-detail-row-reverse .service-detail-image {
    grid-column: auto;
    grid-row: auto;
  }

  .service-detail-row-reverse .service-detail-copy {
    order: 1;
  }

  .service-detail-row-reverse .service-detail-image {
    order: 2;
  }

  .jobs-section {
    padding: 86px 0 104px;
  }

  .job-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    gap: 22px;
  }

  .job-card {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 22px;
  }

  .brand-logo {
    width: 46px;
  }

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

  .hero-content {
    padding-top: 104px;
  }

  .hero-section h1 {
    margin-bottom: 24px;
  }

  .features-section {
    margin-top: -68px;
  }

  .feature-item {
    min-height: 210px;
    padding: 26px 12px;
  }

  .feature-panel > [class*="col-"] {
    width: 100%;
  }

  .feature-item,
  .feature-item:nth-child(2),
  .feature-item:nth-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid #e6eaf2;
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .feature-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
  }

  .feature-item h2 {
    font-size: 18px;
    word-break: break-all;
  }

  .feature-item p {
    font-size: 15px;
    word-break: break-all;
  }

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

  .about-list {
    gap: 18px;
  }

  .about-list p {
    padding: 18px;
    font-size: 16px;
    text-align: left;
    word-break: break-all;
  }

  .team-section {
    padding: 72px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .stat-icon,
  .stat-icon-lg {
    width: 104px;
    height: 104px;
    margin: 0 0 24px;
  }

  .stat-item p {
    font-size: 22px;
  }

  .stat-item strong {
    font-size: 40px;
  }

  .services-section {
    padding: 80px 0;
  }

  .service-card {
    min-height: auto;
    padding: 38px 24px;
  }

  .service-card h3 {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .service-card p {
    font-size: 16px;
  }

  .site-footer {
    padding: 54px 0 38px;
  }

  .copyright {
    margin-top: 44px;
    font-size: 15px;
    text-align: left;
  }

  .section-title {
    font-size: 30px;
  }

  .about-hero {
    min-height: 280px;
    padding: 54px 0;
  }

  .service-hero {
    padding: 54px 0;
  }

  .connect-hero {
    min-height: 690px;
    padding-top: 58px;
  }

  .connect-hero::after {
    width: 170vw;
    height: 250px;
  }

  .connect-hero h1 {
    font-size: 28px;
  }

  .connect-map {
    width: 760px;
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .connect-card-grid {
    grid-template-columns: minmax(0, 280px);
    gap: 54px;
    margin-top: -42px;
  }

  .connect-card {
    min-height: 144px;
    padding: 48px 18px 24px;
  }

  .connect-card h2 {
    font-size: 21px;
  }

  .connect-card p {
    font-size: 16px;
  }

  .jobs-section {
    padding: 66px 0 78px;
  }

  .connect-section-title {
    margin-bottom: 38px;
    font-size: 28px;
  }

  .job-card {
    padding: 24px 18px;
  }

  .job-card h3 {
    margin-bottom: 24px;
    font-size: 21px;
  }

  .job-block h4,
  .job-block p {
    font-size: 15px;
  }

  .why-section {
    margin-top: 56px;
  }

  .why-section h2 {
    margin-bottom: 34px;
    font-size: 24px;
  }

  .why-list {
    gap: 24px;
  }

  .why-list h3,
  .why-list p {
    font-size: 16px;
  }

  .service-hero h1 {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .service-hero-copy p {
    font-size: 16px;
    line-height: 1.75;
  }

  .product-types h2 {
    margin-bottom: 24px;
    font-size: 22px;
  }

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

  .product-types li {
    gap: 12px;
    font-size: 17px;
  }

  .product-types span {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .service-detail-section {
    padding: 64px 0 74px;
  }

  .service-detail-row,
  .service-detail-row-reverse {
    gap: 24px;
    margin-bottom: 60px;
  }

  .service-detail-copy h2 {
    margin-bottom: 20px;
    font-size: 26px;
  }

  .service-detail-copy p {
    font-size: 16px;
    line-height: 1.9;
  }

  .service-detail-image {
    min-height: 220px;
  }

  .service-promise-section {
    min-height: 260px;
    padding: 60px 0;
  }

  .service-promise-section h2 {
    margin-bottom: 26px;
    font-size: 28px;
  }

  .service-promise-section p {
    font-size: 16px;
    line-height: 1.8;
  }

  .about-hero h1 {
    margin-bottom: 22px;
    font-size: 32px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-copy h2,
  .about-section-heading h2 {
    font-size: 28px;
  }

  .about-copy h2 {
    margin-bottom: 22px;
  }

  .about-copy p {
    font-size: 16px;
    line-height: 1.9;
  }

  .about-culture-section .row {
    --bs-gutter-x: 1.5rem;
  }

  .support-team-section {
    padding: 10px 0 82px;
  }

  .about-section-heading {
    margin-bottom: 42px;
  }

  .team-card-grid {
    grid-template-columns: minmax(0, 392px);
    gap: 28px;
  }

  .team-card,
  .team-card:last-child {
    width: 100%;
  }

  .team-card-body {
    min-height: 170px;
    padding: 48px 22px 22px;
  }

  .team-card-body h3 {
    font-size: 20px;
  }

  .team-card-body p {
    font-size: 14px;
  }

  .regions-section {
    padding: 64px 0 70px;
  }

  .technology-section {
    padding: 78px 0 84px;
  }

  .technology-section .about-section-heading {
    margin-bottom: 42px;
  }

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

  .tech-card {
    min-height: auto;
    padding: 34px 24px 30px;
  }

  .tech-icon {
    margin-bottom: 24px;
  }
}
