:root {
  --accent: #48c7ec;
  --dark: #2c3038;
  --footer: #222222;
  --footer-bottom: #1d1d1d;
  --text: #222222;
  --muted: #848484;
  --line: #f1f1f1;
  --light: #f7f7f7;
  --white: #ffffff;
  --container: min(1170px, calc(100vw - 40px));
  --body-font: "Hind", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --heading-font: "Poppins", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

@view-transition {
  navigation: auto;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.625;
  animation: page-enter 220ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  transition: opacity 160ms ease, transform 160ms ease;
}

body.nav-open {
  overflow: hidden;
}

body.is-page-leaving {
  opacity: 0.88;
  pointer-events: none;
  transform: translateY(4px);
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 180ms;
  animation-timing-function: cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes page-enter {
  from {
    opacity: 0.92;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a {
  color: inherit;
  display: inline-block;
  text-decoration: none;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

img[data-src] {
  background: var(--white);
  opacity: 0.01;
  transition: opacity 220ms ease;
}

img.is-loaded {
  opacity: 1;
}

@supports (content-visibility: auto) {
  .section,
  .latest-project,
  .content-section,
  .case-band,
  .partners,
  .clients-section,
  .footer-widgets {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
  }
}

button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 9px 14px;
  background: var(--accent);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.12);
}

.top-strip {
  background: var(--dark);
  color: var(--white);
  font-size: 16px;
  line-height: 56px;
}

.site-header.is-scrolled .top-strip {
  display: none;
}

.top-strip__inner {
  display: flex;
  align-items: center;
  gap: 56px;
  min-height: 56px;
}

.top-strip a,
.top-strip span {
  position: relative;
  color: var(--white);
  line-height: 1.2;
  padding-left: 30px;
}

.top-strip a::before,
.top-strip span::before {
  position: absolute;
  top: 50%;
  left: 0;
  color: var(--accent);
  font-size: 20px;
  font-style: normal;
  line-height: 1;
  transform: translateY(-48%);
}

.top-strip a[href^="tel:"]::before {
  content: "☎";
}

.top-strip a[href^="mailto:"]::before {
  content: "✉";
}

.top-strip span::before {
  content: "⌖";
}

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

.navbar {
  display: flex;
  min-height: 114px;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
}

.site-header.is-scrolled .navbar {
  min-height: 114px;
}

.brand img {
  width: 196px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu > a,
.nav-dropdown > a {
  padding: 40px 18px;
  color: var(--text);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.site-header.is-scrolled .nav-menu > a,
.site-header.is-scrolled .nav-dropdown > a {
  padding-block: 40px;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  vertical-align: middle;
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  display: none;
  min-width: 140px;
  border-top: 3px solid var(--accent);
  background: var(--white);
  box-shadow: 0 0 2px #dedede;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  display: block;
}

.nav-dropdown__menu a {
  display: block;
  min-width: 140px;
  padding: 8px 20px;
  border-bottom: 1px solid #f3f3f3;
  color: #333333;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-dropdown__menu a:hover {
  background: rgba(72, 199, 236, 0.1);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
}

.nav-toggle i,
.nav-toggle i::before,
.nav-toggle i::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle i {
  position: relative;
}

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

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

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

.nav-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] i::before {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] i::after {
  transform: translateY(-6px) rotate(-90deg);
}

.hero {
  position: relative;
  min-height: 550px;
  padding: 139px 0 61px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08)),
    url("../images/optimized/hero-960.webp") center center / cover no-repeat;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08)),
    image-set(
      url("../images/optimized/hero-960.avif") type("image/avif"),
      url("../images/optimized/hero-960.webp") type("image/webp")
    ) center center / cover no-repeat;
  color: var(--white);
}

@media (min-width: 961px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08)),
      url("../images/optimized/hero-1440.webp") center center / cover no-repeat;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08)),
      image-set(
        url("../images/optimized/hero-1440.avif") type("image/avif"),
        url("../images/optimized/hero-1440.webp") type("image/webp")
      ) center center / cover no-repeat;
  }
}

@media (min-width: 1441px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08)),
      url("../images/optimized/hero-1920.webp") center center / cover no-repeat;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08)),
      image-set(
        url("../images/optimized/hero-1920.avif") type("image/avif"),
        url("../images/optimized/hero-1920.webp") type("image/webp")
      ) center center / cover no-repeat;
  }
}

.inner-banner {
  position: relative;
  display: flex;
  min-height: 330px;
  align-items: center;
  background:
    linear-gradient(rgba(72, 199, 236, 0.9), rgba(72, 199, 236, 0.9)),
    url("../images/optimized/inner-banner-1920.webp") center center / cover no-repeat;
  background:
    linear-gradient(rgba(72, 199, 236, 0.9), rgba(72, 199, 236, 0.9)),
    image-set(
      url("../images/optimized/inner-banner-1920.avif") type("image/avif"),
      url("../images/optimized/inner-banner-1920.webp") type("image/webp")
    ) center center / cover no-repeat;
  text-align: center;
}

.inner-banner--about {
  background:
    linear-gradient(rgba(72, 199, 236, 0.9), rgba(72, 199, 236, 0.9)),
    url("../images/optimized/banner-about-1920.webp") center center / cover no-repeat;
  background:
    linear-gradient(rgba(72, 199, 236, 0.9), rgba(72, 199, 236, 0.9)),
    image-set(
      url("../images/optimized/banner-about-1920.avif") type("image/avif"),
      url("../images/optimized/banner-about-1920.webp") type("image/webp")
    ) center center / cover no-repeat;
}

.inner-banner--contact {
  background:
    linear-gradient(rgba(72, 199, 236, 0.9), rgba(72, 199, 236, 0.9)),
    url("../images/optimized/banner-contact-1920.webp") center center / cover no-repeat;
  background:
    linear-gradient(rgba(72, 199, 236, 0.9), rgba(72, 199, 236, 0.9)),
    image-set(
      url("../images/optimized/banner-contact-1920.avif") type("image/avif"),
      url("../images/optimized/banner-contact-1920.webp") type("image/webp")
    ) center center / cover no-repeat;
}

.inner-banner--jobs {
  background:
    linear-gradient(rgba(72, 199, 236, 0.9), rgba(72, 199, 236, 0.9)),
    url("../images/optimized/banner-jobs-1920.webp") center center / cover no-repeat;
  background:
    linear-gradient(rgba(72, 199, 236, 0.9), rgba(72, 199, 236, 0.9)),
    image-set(
      url("../images/optimized/banner-jobs-1920.avif") type("image/avif"),
      url("../images/optimized/banner-jobs-1920.webp") type("image/webp")
    ) center center / cover no-repeat;
}

.inner-banner h1 {
  width: 100%;
  color: var(--white);
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  text-shadow: 1px 1px 2px #333333;
}

.breadcrumb {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.breadcrumb .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 18px;
  line-height: 29px;
}

.breadcrumb a {
  color: var(--text);
}

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

.breadcrumb a::after {
  content: "›";
  margin-left: 10px;
  color: var(--muted);
  font-size: 18px;
}

.content-section {
  padding: 70px 0;
  background: var(--white);
}

.content-section--products {
  padding-bottom: 155px;
}

.content-section--jobs {
  padding: 30px 0 70px;
}

.hero__copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 13px;
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0;
}

.section .eyebrow,
.latest-project .eyebrow,
.about-copy .eyebrow,
.partners .eyebrow,
.jobs-card .eyebrow,
.contact .eyebrow {
  display: none;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  color: var(--white);
  font-size: clamp(38px, 4.4vw, 55px);
  line-height: 62px;
}

h1 span {
  display: inline;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 18px;
}

.hero__lead {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}

.hero .eyebrow {
  display: none;
}

.hero__actions {
  margin-top: 175px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

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

.button--ghost {
  border-color: var(--white);
  background: var(--white);
  color: var(--text);
}

.metrics {
  padding: 70px 0 40px;
  background: var(--white);
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 39px;
}

.metrics article {
  padding: 17px 12px 25px;
  background: var(--light);
  text-align: center;
}

.metrics strong {
  position: relative;
  display: block;
  padding-bottom: 23px;
  color: var(--text);
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}

.metrics strong::after {
  content: "+";
}

.metrics strong::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 50px;
  height: 1px;
  margin-left: -25px;
  background: var(--accent);
}

.metrics span {
  display: block;
  color: var(--text);
  font-size: 18px;
  font-weight: 300;
}

.section {
  padding: 70px 0;
}

.section-heading {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 15px;
}

.section-heading h2 {
  position: relative;
  line-height: 35.2px;
}

.section-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--accent);
}

#advantages .section-heading {
  text-align: center;
}

#advantages .section-heading::before {
  left: 50%;
  margin-left: -25px;
}

.section-heading--center {
  text-align: center;
}

.section-heading--center::before {
  left: 50%;
  margin-left: -25px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.image-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  background: var(--text);
}

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

.image-card > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 60px;
  min-height: 60px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  transition: inset 260ms ease, padding 260ms ease, background 260ms ease;
}

.image-card > div::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60px;
  width: 60px;
  background: var(--accent);
}

.image-card span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60px;
  z-index: 1;
  display: grid;
  width: 60px;
  place-items: center;
  color: var(--white);
  font-size: 33px;
  line-height: 1;
}

.icon-graphic::before {
  content: "↗";
}

.icon-layers::before {
  content: "▣";
}

.icon-computer::before {
  content: "⌘";
}

[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-rendering: auto;
}

.image-card h3 {
  color: var(--white);
  font-size: 18px;
  line-height: 28px;
}

.image-card p {
  max-height: 0;
  overflow: hidden;
  color: var(--white);
  opacity: 0;
  transition: max-height 260ms ease, opacity 260ms ease, margin 260ms ease;
}

.image-card:hover > div {
  top: 0;
  left: 60px;
  padding-top: 78px;
  background: rgba(0, 0, 0, 0.75);
}

.image-card:hover p {
  max-height: 180px;
  margin-top: 10px;
  opacity: 1;
}

.latest-project {
  background: var(--white);
}

.latest-project .section-heading {
  margin-bottom: 37px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 30px;
  align-items: start;
}

.product-intro p {
  margin-bottom: 15px;
}

.text-link {
  color: var(--accent);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.text-link::after {
  content: "›";
  margin-left: 5px;
  font-size: 18px;
  line-height: 20px;
  vertical-align: top;
}

.product-grid {
  display: flex;
  gap: 30px;
  overflow: hidden;
}

.sidebar-page {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

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

.listing-card {
  margin-bottom: 50px;
  border: 0;
  background: var(--white);
  transition: box-shadow 200ms cubic-bezier(0.4, 0, 1, 1);
}

.listing-card:hover {
  box-shadow: 0 15px 16px rgba(0, 0, 0, 0.03), 0 0 82px rgba(0, 0, 0, 0.02);
}

.listing-card img {
  display: block;
  width: 100%;
  height: auto;
}

.listing-card__body {
  padding: 30px 20px 0;
  border: 1px solid #f4f4f4;
}

.post-meta {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
}

.listing-card h2 {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.listing-card h2 a:hover {
  color: var(--accent);
}

.blog-sidebar {
  position: relative;
  display: block;
  padding-left: 30px;
  border-left: 1px solid #f4f4f4;
}

.sidebar-box {
  border: 0;
  background: var(--white);
}

.sidebar-box h2 {
  margin: 45px 0 20px;
  padding: 0;
  border-bottom: 0;
  font-size: 22px;
}

.sidebar-box ul {
  margin-top: 22px;
  margin-bottom: 35px;
  padding: 20px 30px;
  background: #f7f7f7;
}

.sidebar-box a {
  display: block;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid #eaeaea;
  color: var(--muted);
  font-weight: 300;
  line-height: 40px;
  transition: color 500ms ease;
}

.sidebar-box li:last-child a {
  border-bottom: 0;
}

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

.product-card {
  position: relative;
  flex: 0 0 calc((100% - 60px) / 3);
  overflow: hidden;
  min-height: 220px;
  background: var(--light);
}

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

.product-card .project-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  color: var(--white);
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 100px, 0);
  transition: transform 400ms ease, opacity 400ms ease, visibility 400ms ease;
}

.product-card:hover .project-overlay {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.project-link {
  align-self: center;
  justify-self: center;
  width: 25px;
  height: 25px;
  color: var(--white);
  font-size: 18px;
  line-height: 25px;
  text-align: center;
}

.project-link::before {
  content: "↗";
}

.product-card h3 {
  padding: 16px 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}

.detail-layout {
  display: grid;
  grid-template-columns: 370fr 770fr;
  gap: 30px;
  align-items: start;
}

.side-nav {
  margin-top: 0;
  margin-bottom: 35px;
  padding: 20px 30px;
  border: 0;
  background: #f7f7f7;
}

.side-nav a {
  display: block;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid #eaeaea;
  color: var(--muted);
  font-weight: 300;
  line-height: 40px;
  transition: color 500ms ease;
}

.side-nav a:last-child {
  border-bottom: 0;
}

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

.detail-content .section-heading {
  margin-bottom: 30px;
}

.detail-content > p {
  margin-bottom: 24px;
}

.article-detail {
  text-align: center;
}

.article-detail h2 {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 12px;
  font-size: 24px;
}

.article-detail h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 4px;
  margin-left: -25px;
  background: var(--accent);
}

.article-detail .detail-image {
  margin-inline: auto;
  margin-bottom: 72px;
}

.article-detail .detail-slices {
  margin-inline: auto;
  margin-bottom: 72px;
}

.article-detail .payment-case-image {
  border: 0;
}

.article-detail .erp-detail-image,
.article-detail .payment-case-image {
  margin-bottom: 46px;
}

.article-detail .detail-slices--compact {
  margin-bottom: 46px;
}

.detail-image {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  background: var(--white);
}

.detail-slices {
  display: block;
  width: 100%;
  line-height: 0;
  background: var(--white);
}

.detail-slices img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border: 0;
  background-color: var(--white);
  color: transparent;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 28px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

.case-band {
  padding: 70px 0;
  background: var(--white);
}

.case-band__grid {
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: 45px;
  align-items: center;
}

.case-band h2 {
  position: relative;
  margin-bottom: 35px;
  padding-bottom: 15px;
  color: var(--text);
  font-size: 32px;
}

.case-band h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--accent);
}

.case-band p {
  margin-bottom: 22px;
}

.case-band__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 300;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

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

.about-copy h2 {
  margin-bottom: 23px;
  font-size: 18px;
  line-height: 20px;
}

.about-copy p {
  margin-bottom: 24px;
  line-height: 26px;
}

.border-bottom {
  border-bottom: 1px solid #f7f7f7;
}

.accordion-list {
  border: 1px solid var(--line);
}

.accordion {
  border-bottom: 1px solid var(--line);
}

.accordion:last-child {
  border-bottom: 0;
}

.accordion button {
  position: relative;
  width: 100%;
  padding: 20px 58px 20px 30px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.accordion button::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 30px;
  color: var(--text);
  font-size: 18px;
  line-height: 1;
  transform: translateY(-50%);
}

.accordion.is-open button {
  color: var(--accent);
}

.accordion.is-open button::after {
  content: "⌄";
  color: var(--accent);
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.accordion__panel p {
  min-height: 0;
  overflow: hidden;
}

.accordion.is-open .accordion__panel {
  grid-template-rows: 1fr;
}

.accordion.is-open .accordion__panel p {
  padding: 0 30px 24px;
}

.job-list {
  display: grid;
  gap: 10px;
}

.job-card {
  border: 1px solid #f7f7f7;
  background: var(--white);
}

.job-card button {
  display: grid;
  grid-template-columns: 1fr 72px 72px;
  gap: 0;
  align-items: center;
  min-height: 54px;
  padding: 14px 58px 14px 30px;
  background: #f7f7f7;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  line-height: 25.7143px;
}

.job-card button em {
  justify-self: end;
  color: var(--muted);
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
}

.job-card .accordion__panel > div {
  min-height: 0;
  overflow: hidden;
}

.job-card.is-open .accordion__panel > div {
  margin: 0 30px;
  padding: 15px 0;
}

.job-card.is-open button {
  color: var(--text);
}

.job-card.is-open .accordion__panel p {
  padding: 0;
}

.job-card p br {
  display: none;
}

.job-card p b::after {
  content: "\A";
  white-space: pre;
}

.job-card p + p {
  margin-top: 18px;
}

.job-card b {
  color: var(--text);
  font-weight: 600;
}

.job-card .button {
  margin-top: 18px;
}

.about-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.about-page .section-heading {
  margin-bottom: 0;
  padding-bottom: 0;
}

.about-page .section-heading::before {
  display: none;
}

.about-page .section-heading h2 {
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 20px;
}

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

.about-page .button {
  margin-top: 24px;
}

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

.about-photo-grid figure {
  margin: 0;
}

.about-photo-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-photo-grid figcaption {
  margin-top: 22px;
  color: var(--text);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.value-grid h2 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 28px;
}

.section--cases {
  padding-top: 70px;
  padding-bottom: 14px;
  background: #f7f7f7;
}

.case-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 30px;
}

.case-card {
  background: var(--white);
  margin-bottom: 56px;
}

.case-card__image {
  position: relative;
  max-width: 370px;
  margin: 0;
}

.case-card__image a {
  position: relative;
  display: block;
}

.case-card__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.case-card__count {
  position: absolute;
  bottom: -16px;
  left: 0;
  padding: 5px 24px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.case-card__text {
  padding: 20px 0 0;
}

.case-card h3 {
  margin: 17px 0 0;
  overflow: hidden;
  color: var(--text);
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section--cases .section-heading h2,
.growth-service .section-heading h2 {
  line-height: 35.2px;
}

.case-card h3 a:hover {
  color: var(--accent);
}

.growth-service {
  background: var(--white);
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.growth-card {
  padding: 45px 15px;
  background: var(--white);
  text-align: center;
  transition: background-color 500ms ease;
}

.growth-card > span {
  display: inline-block;
  color: var(--accent);
  font-size: 70px;
  line-height: 1;
  transition: color 500ms ease;
}

.growth-card h3 {
  margin-bottom: 18px;
  padding-top: 20px;
  font-size: 20px;
  transition: color 500ms ease;
}

.growth-card p {
  transition: color 500ms ease;
}

.growth-card:hover {
  background-color: var(--accent);
}

.growth-card:hover > span,
.growth-card:hover h3,
.growth-card:hover p {
  color: var(--white);
}

.partners,
.clients-section {
  padding: 70px 0;
  background: var(--white);
}

.clients-section .section-heading {
  margin-bottom: 10px;
}

.split-heading {
  position: relative;
  margin-bottom: 45px;
  padding-bottom: 15px;
}

.split-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--accent);
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  display: none;
}

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

.partner-grid img {
  width: 100%;
  height: 77px;
  padding: 0 10px;
  object-fit: contain;
  border: 0;
  background: var(--white);
}

.jobs-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 44px;
  background: var(--light);
}

.jobs-card h2 {
  margin-bottom: 15px;
}

.contact {
  padding: 70px 0;
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 50px;
  align-items: start;
}

.contact h2 {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 15px;
  color: var(--text);
}

.contact h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--accent);
}

.contact-card {
  display: grid;
  gap: 15px;
  padding: 28px;
  border: 1px solid var(--line);
}

.contact-card a,
.contact-card p {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 12px;
  color: var(--muted);
}

.contact-card a:hover strong {
  color: var(--accent);
}

.contact-card span {
  color: var(--text);
  font-weight: 600;
}

.contact-card strong {
  color: var(--muted);
  font-weight: 300;
}

.contact-page-grid,
.contact-details-layout {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 50px;
  align-items: start;
}

.contact-details-layout {
  grid-template-columns: minmax(300px, 370px) 1fr;
  gap: 30px;
}

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

.contact-list li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-list strong {
  color: var(--text);
}

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

.consult-card {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--light);
}

.consult-card h2 {
  margin-bottom: 16px;
  font-size: 24px;
}

.consult-card .button {
  margin-top: 24px;
}

.contact-accordion {
  border: 0;
}

.contact-infos {
  display: grid;
  gap: 0;
  min-height: 0;
  overflow: hidden;
}

.contact-accordion .accordion.is-open .accordion__panel .contact-infos {
  padding: 15px 30px;
}

.contact-infos li {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0;
  min-height: 44px;
  padding: 0;
  color: var(--muted);
}

.contact-infos li + li {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid #f1f1f1;
}

.contact-infos li::before {
  content: none;
}

.contact-infos .icon_box {
  width: 40px;
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

.contact-infos .icon_box i {
  position: relative;
  top: 7px;
}

.contact-infos .text-box {
  display: grid;
  gap: 2px;
}

.contact-accordion .accordion {
  margin-bottom: 10px;
  border: 1px solid #f7f7f7;
}

.contact-accordion .accordion button {
  min-height: 54px;
  padding: 14px 58px 14px 30px;
  background: #f7f7f7;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

.contact-accordion .accordion.is-open button {
  color: var(--text);
}

.contact-infos strong {
  color: var(--text);
}

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

.home-google-map {
  min-height: 455px;
  border: 0;
  background: #f7f7f7;
}

.home-google-map img,
.map-canvas img {
  max-width: none;
}

.map-canvas {
  position: relative;
  min-height: 455px;
  overflow: hidden;
}

.map-fallback {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: var(--text);
}

.map-fallback img {
  display: block;
  width: 100%;
  height: 455px;
  object-fit: cover;
}

.map-load-button {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 10px 18px;
  border-radius: 3px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.map-load-button:hover,
.map-load-button:focus-visible {
  background: #2aa9cf;
}

.map-caption {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 280px;
  padding: 14px 18px;
  border: 1px solid rgba(72, 199, 236, 0.36);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  text-align: center;
  transform: translate(-50%, -50%);
}

.map-caption strong,
.map-caption span {
  display: block;
}

.map-caption span {
  margin-top: 10px;
  color: var(--muted);
}

.map-canvas.is-loaded .map-fallback {
  display: none;
}

.map-canvas > div:not(.map-fallback) {
  position: relative;
  z-index: 1;
}

.map-placeholder {
  display: grid;
  min-height: 455px;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(72, 199, 236, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(72, 199, 236, 0.12) 1px, transparent 1px),
    #f6fbfd;
  background-size: 46px 46px;
  color: var(--text);
  text-align: center;
}

.map-placeholder div {
  max-width: 380px;
  padding: 30px;
  border: 1px solid rgba(72, 199, 236, 0.28);
  background: rgba(255, 255, 255, 0.88);
}

.map-placeholder strong,
.map-placeholder span {
  display: block;
}

.map-placeholder span {
  margin-top: 10px;
  color: var(--muted);
}

.site-footer {
  background: var(--footer);
  color: var(--muted);
}

.footer-widgets {
  padding: 70px 0 25px;
}

.footer-widgets__grid,
.footer__grid {
  display: grid;
  grid-template-columns: 270px 270px;
  gap: 330px;
}

.footer__grid img {
  width: 160px;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

.footer__grid p {
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 11px 24px;
}

.footer-heading {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 15px;
}

.footer-heading::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--accent);
}

.footer-heading h2 {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 11px;
}

.contact-widget {
  min-height: 130px;
  background: url("../images/footer-map.png") left bottom / 207px 105px no-repeat;
}

.footer-nav a,
.footer-contact,
.footer-contact a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
}

.footer-nav a {
  line-height: 22.75px;
}

.footer-contact li {
  position: relative;
  padding-left: 30px;
  white-space: nowrap;
}

.footer-contact li::before {
  position: absolute;
  top: 3px;
  left: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
}

.footer-contact li:nth-child(1)::before {
  content: "⌖";
}

.footer-contact li:nth-child(2)::before {
  content: "✉";
}

.footer-contact li:nth-child(3)::before {
  content: "☎";
}

.footer-nav a {
  position: relative;
  padding-left: 15px;
}

.footer-nav a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #2e2e2e;
  transition: background 180ms ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-nav a:hover::before {
  background: var(--accent);
}

.footer-bottom {
  padding: 26px 0;
  background: var(--footer-bottom);
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--muted);
  font-size: 14px;
}

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

.footer-links a {
  position: relative;
  padding-left: 15px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
}

.footer-links a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #2e2e2e;
  transition: background 180ms ease;
}

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

.footer-links a:hover::before {
  background: var(--accent);
}

.to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  display: none;
  width: 50px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  font-size: 0;
  text-align: center;
}

.to-top::before {
  content: "↑";
  font-size: 27px;
  line-height: 40px;
}

.to-top::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 5%;
  z-index: -1;
  width: 90%;
  height: 10px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.to-top.is-visible {
  display: flex;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--white);
}

.error-card {
  max-width: 760px;
}

.error-card h1 {
  color: var(--text);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

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

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

@media (max-width: 1060px) {
  .nav-menu > a,
  .nav-dropdown > a {
    padding-inline: 10px;
  }

  .product-showcase,
  .sidebar-page,
  .product-listing,
  .detail-layout,
  .case-band__grid,
  .about-grid,
  .about-page,
  .contact__grid,
  .contact-page-grid,
  .contact-details-layout {
    grid-template-columns: 1fr;
  }

  .product-grid {
    flex-wrap: wrap;
    overflow: visible;
  }

  .product-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }

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

  .value-grid,
  .case-card-grid,
  .growth-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-sidebar {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100vw - 28px, 720px);
  }

  html {
    scroll-padding-top: 78px;
  }

  .top-strip {
    display: none;
  }

  .navbar,
  .site-header.is-scrolled .navbar {
    min-height: 78px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  }

  .brand img {
    width: 150px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    top: 78px;
    right: 14px;
    left: 14px;
    display: none;
    max-height: calc(100vh - 100px);
    overflow: auto;
    border-top: 3px solid var(--accent);
    background: var(--white);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
  }

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

  .nav-menu > a,
  .nav-dropdown > a,
  .site-header.is-scrolled .nav-menu > a,
  .site-header.is-scrolled .nav-dropdown > a {
    display: block;
    padding: 13px 18px;
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown__menu {
    position: static;
    display: block;
    border-top: 0;
    box-shadow: none;
  }

  .nav-dropdown__menu a {
    padding-left: 34px;
  }

  .hero {
    min-height: 390px;
    padding: 78px 0 60px;
  }

  h1 {
    font-size: 38px;
    line-height: 48px;
  }

  .hero__lead {
    font-size: 16px;
    line-height: 26px;
  }

  .hero__actions {
    margin-top: 52px;
  }

  .metrics__grid,
  .advantage-grid,
  .partner-grid,
  .footer-widgets__grid,
  .growth-grid,
  .footer__grid,
  .jobs-card {
    grid-template-columns: 1fr;
  }

  .product-grid {
    flex-direction: column;
  }

  .product-card {
    flex-basis: auto;
  }

  .metrics__grid,
  .advantage-grid,
  .product-grid,
  .partner-grid,
  .about-photo-grid {
    gap: 18px;
  }

  .section,
  .latest-project,
  .content-section,
  .case-band,
  .partners,
  .clients-section,
  .contact {
    padding: 58px 0;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .top-strip__inner {
    gap: 12px;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    min-height: 360px;
    padding-top: 68px;
  }

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

  h2 {
    font-size: 28px;
  }

  .button {
    width: 136px;
  }

  .inner-banner {
    min-height: 190px;
  }

  .inner-banner h1 {
    font-size: 30px;
    line-height: 38px;
  }

  .metrics {
    padding-top: 46px;
  }

  .image-card img,
  .image-card {
    min-height: 250px;
  }

  .image-card img {
    height: 250px;
  }

  .contact-card a,
  .contact-card p,
  .contact-list li,
  .job-card button,
  .footer-bottom__inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom__inner {
    display: grid;
    justify-items: start;
  }

  .product-listing,
  .value-grid,
  .case-card-grid,
  .growth-grid,
  .about-photo-grid,
  .footer-widgets__grid {
    grid-template-columns: 1fr;
  }
}
