body {
  margin: 0;
  color: var(--primary-black);
  background: var(--primary-white);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.brand img {
  width: 120px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
  border-color: var(--primary-orange);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 6px;
  background: var(--primary-orange);
  color: white;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 400;
}

.btn-std {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  text-decoration: none;
  padding: 8px 14px;
}

.btn-std img {
  width: 28px;
}

.arrow-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex: 0 0 auto;
}

.hero-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-card,
.hero-image {
  min-height: 380px;
  border-radius: 8px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: clamp(28px, 6vw, 72px);
}

.hero-image {
  background-size: cover;
  background-position: center;
}

.center-copy,
.page-intro {
  width: min(760px, calc(100% - 32px));
  margin: 48px auto;
  text-align: center;
}

.page-intro {
  display: grid;
  gap: 20px;
  justify-items: center;
}

.page-intro > img {
  width: min(980px, 90vw);
  border-radius: 8px;
  margin-top: 20px;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.feature,
.split-band,
.solution-banner {
  width: min(1180px, calc(100% - 32px));
  margin: 72px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 6vw, 72px);
}

.feature.reverse {
  direction: rtl;
}

.feature.reverse > * {
  direction: ltr;
}

.feature img {
  max-height: 360px;
  margin: 0 auto;
}

.split-band,
.solution-banner {
  width: 100%;
  box-sizing: border-box;
  padding: clamp(36px, 6vw, 72px) max(16px, calc((100vw - 1180px) / 2));
}

.split-band > *,
.solution-banner > * {
  min-width: 0;
}

.split-band img,
.solution-banner img {
  max-height: 460px;
  justify-self: center;
}

.cta {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  padding: 42px 16px;
}

.cta > img {
  width: 120px;
}

.graphics {
  width: min(980px, calc(100% - 32px));
  margin: 72px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
}

.solutions-strip {
  position: relative;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 32px max(16px, calc((100vw - 1180px) / 2));
}

.solution-card {
  flex: 0 0 256px;
  height: 400px;
  border: 0;
  border-radius: 8px;
  color: white;
  text-align: left;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  cursor: pointer;
}

.solution-card img {
  width: 32px;
}

.solution-card strong {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.solution-card span {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.solution-card small {
  margin-top: 10px;
  font-size: 8px;
  font-weight: 400;
  line-height: 1.35;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.pills span::before {
  content: "+";
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary-orange);
  color: white;
}

.site-footer {
  border-top: 1px solid var(--primary-gray);
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.site-footer strong {
  font-weight: 500;
}

.site-footer > img {
  width: 180px;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials img {
  height: 30px;
}

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
  }

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

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .main-nav.open {
    display: flex;
  }

  .hero-grid,
  .feature,
  .split-band,
  .solution-banner,
  .graphics {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-image {
    min-height: 300px;
  }

  .feature.reverse {
    direction: ltr;
  }
}
