:root {
  --blue-500: #26445e;
  --green-500: #b0e454;
  --green-900: #4a6023;
  --green-100: #e7f7ca;
  --black-500: #0d0d0d;
  --white-50: #fefefe;
  --page-gutter: clamp(16px, 6vw, 96px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--blue-500);
  background: var(--green-100);
  font-family: "Kumbh Sans", Arial, sans-serif;
}

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

img {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 40px var(--page-gutter) 0;
  pointer-events: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 8.9vw, 128px);
  width: min(100%, 1240px);
  padding: 20px 40px;
  border-radius: 100px;
  background: var(--white-50);
  box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
  pointer-events: auto;
}

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

.brand-mark {
  width: 68.5px;
  height: 72px;
}

.brand-text {
  width: 143.9px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

.client-button,
.diagnostic-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green-500);
  color: var(--black-500);
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.client-button {
  padding: 8px 18px;
}

.diagnostic-button {
  gap: 8px;
  min-width: 217px;
  padding: 8px 18px;
  color: var(--blue-500);
}

.diagnostic-button img {
  width: 24px;
  height: 24px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 105px var(--page-gutter) 100px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-family: "Lexend", Arial, sans-serif;
  font-size: clamp(42px, 4.45vw, 64px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0;
}

.solutions,
.identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  padding: 80px var(--page-gutter);
}

.solutions {
  min-height: 659px;
}

.identity {
  min-height: 596px;
}

.solutions h2,
.identity h2 {
  margin: 0;
  font-family: "Lexend", Arial, sans-serif;
  font-size: clamp(30px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 260px);
  gap: 36px;
  justify-content: center;
}

.solution-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 260px;
  height: 120px;
  margin: 0;
  padding: 20px;
  overflow: hidden;
  border-radius: 15px;
  color: var(--black-500);
  background: var(--green-500);
}

.solution-card img {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.solution-card p {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  gap: 28px;
  justify-content: center;
}

.identity-card {
  width: 300px;
  min-height: 400px;
  padding: 56px 40px;
  overflow: hidden;
  border-radius: 26.667px;
  color: var(--black-500);
  background: var(--green-500);
}

.identity-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  object-fit: contain;
}

.identity-card h3 {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}

.identity-card p,
.identity-card li {
  font-size: 16px;
  line-height: 1.16;
}

.identity-card p {
  margin: 0;
}

.identity-card ul {
  margin: 0;
  padding-left: 24px;
}

.footer {
  color: var(--white-50);
  background: var(--green-900);
}

.footer-inner {
  display: grid;
  grid-template-columns: 398px max-content max-content;
  align-items: center;
  justify-content: center;
  gap: clamp(64px, 8.9vw, 128px);
  min-height: 360px;
  padding: 64px var(--page-gutter);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 398px;
  text-align: center;
}

.footer-logo {
  width: 87.5px;
  height: 92px;
  margin-bottom: 6px;
}

.footer-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}

.footer-line img,
.addresses img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.copyright {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.addresses {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.addresses address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .navbar {
    gap: 32px;
  }

  .nav-links {
    gap: 22px;
  }

  .footer-inner {
    grid-template-columns: minmax(260px, 340px) minmax(260px, max-content);
    gap: 56px;
  }

  .footer-links {
    grid-column: 1 / -1;
    align-items: center;
    flex-flow: row wrap;
    justify-content: center;
    gap: 18px 32px;
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding-top: 20px;
  }

  .navbar {
    flex-wrap: wrap;
    border-radius: 32px;
    padding: 18px 28px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 26px;
  }

  .solution-grid {
    grid-template-columns: repeat(2, minmax(240px, 300px));
    width: min(100%, 636px);
  }

  .identity-grid {
    grid-template-columns: repeat(2, minmax(280px, 320px));
    width: min(100%, 668px);
  }

  .solution-card,
  .identity-card {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .addresses address {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    padding: 16px 16px 0;
  }

  .navbar {
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
  }

  .brand-mark {
    width: 48px;
    height: auto;
  }

  .brand-text {
    width: 104px;
  }

  .nav-links {
    justify-content: flex-start;
    font-size: 14px;
  }

  .client-button,
  .diagnostic-button {
    font-size: 14px;
  }

  .hero {
    padding: 64px var(--page-gutter) 72px;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .solutions,
  .identity {
    gap: 32px;
    min-height: auto;
    padding: 56px var(--page-gutter);
  }

  .solution-grid,
  .identity-grid {
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 340px);
  }

  .solution-card,
  .identity-card {
    width: 100%;
  }

  .solution-card {
    justify-content: flex-start;
    min-height: 112px;
    height: auto;
  }

  .solution-card p {
    font-size: 18px;
  }

  .identity-card {
    min-height: auto;
    padding: 40px 32px;
  }

  .footer-inner {
    gap: 44px;
    padding: 56px var(--page-gutter);
  }

  .footer-brand {
    width: 100%;
  }

  .addresses,
  .footer-links {
    width: min(100%, 340px);
  }

  .addresses address {
    white-space: normal;
    text-align: left;
  }

  .footer-links {
    align-items: center;
    flex-direction: column;
    gap: 22px;
  }
}

@media (max-width: 430px) {
  .navbar {
    justify-content: center;
    border-radius: 28px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .client-button {
    order: 2;
  }

  .nav-links {
    order: 3;
    justify-content: center;
    gap: 16px 20px;
  }

  .diagnostic-button {
    width: min(100%, 230px);
    min-width: 0;
  }

  .solution-grid,
  .identity-grid,
  .addresses,
  .footer-links {
    width: 100%;
  }

  .solution-card {
    padding: 18px;
  }

  .identity-card {
    padding: 36px 28px;
  }
}
