@import "https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;1,300;0,400;1,400;0,500;1,500;0,700;1,700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,300;1,300;0,400;1,400;0,500;1,500;0,700;1,700&display=swap";

* {
  box-sizing: border-box
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: 'Archivo', 'Rubik', sans-serif
}

.brand-bar {
  background: #B7C258;
  padding: 8px 0
}

.brand-bar__plate {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.brand-bar__descriptor {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2a2a18;
  line-height: 1.15;
  letter-spacing: .04em;
  text-transform: uppercase
}

.brand-bar__contact-pod {
  display: flex;
  align-items: center;
  gap: 24px
}

.brand-bar__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #2a2a18;
  font-weight: 400;
  line-height: 1.15;
  text-decoration: none;
  transition: color .18s ease-out
}

.brand-bar__contact-item:hover {
  color: #1a1500
}

.brand-bar__contact-item:focus {
  outline: 2px solid #2a2a18;
  outline-offset: 2px;
  color: #fff;
  background: #2a2a18
}

.brand-bar__contact-item .typcn {
  font-size: 16px
}

.site-header {
  background: #fff;
  border-bottom: 2px solid #B7C258;
  box-shadow: 2px 7px 28px 1px #b7c2581a;
  position: relative
}

.site-header__plate {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  gap: 40px;
  min-height: 96px
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid #DEC7AE;
  border-radius: 8px;
  box-shadow: 2px 1px 6px 1px #b7c2580f;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  align-self: center;
  padding: 8px
}

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

.primary-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end
}

.primary-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  justify-content: flex-end
}

.primary-nav__item {
  display: flex
}

.primary-nav__link {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #2d2d1a;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid transparent;
  transition: background .15s ease-out, border-color .15s ease-out, color .15s ease-out;
  white-space: nowrap
}

.primary-nav__link:hover {
  background: #f5f5ee;
  border-color: #B7C258;
  color: #1a1500
}

.primary-nav__link:focus {
  outline: none;
  background: #2d2d1a;
  color: #fff;
  border-color: #2d2d1a
}

.primary-nav__link--active {
  background: #B7C258;
  color: #1a1500;
  border-color: #B7C258
}

.primary-nav__link--active:hover {
  background: #a3ae4d;
  border-color: #a3ae4d
}

@media (max-width: 768px) {
  .brand-bar__contact-pod {
    display: none
  }

  .site-header__plate {
    flex-wrap: wrap;
    min-height: auto;
    padding: 16px 24px;
    gap: 16px;
    align-items: center
  }

  .primary-nav {
    width: 100%;
    justify-content: flex-start
  }

  .primary-nav__list {
    justify-content: flex-start;
    gap: 8px
  }

  .primary-nav__link {
    font-size: 14px;
    padding: 8px 12px
  }
}

@media (max-width: 360px) {
  .primary-nav__link {
    font-size: 14px;
    padding: 8px
  }

  .brand-bar__descriptor {
    font-size: 14px
  }
}

.site-footer {
  background: #1e1e0f;
  color: #DEC7AE
}

.footer-upper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px
}

.footer-column__heading {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #B7C258;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #2e2e18
}

.footer-column__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-column__link {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #c9b49a;
  text-decoration: none;
  line-height: 1.7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .18s ease-out
}

.footer-column__link:hover {
  color: #B7C258
}

.footer-column__link:focus {
  outline: 2px solid #B7C258;
  outline-offset: 2px;
  color: #fff
}

.footer-column__address {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #c9b49a;
  line-height: 1.7;
  font-style: normal;
  margin: 0
}

.footer-column__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-column__contact-link {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #c9b49a;
  text-decoration: none;
  line-height: 1.7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .18s ease-out
}

.footer-column__contact-link:hover {
  color: #B7C258
}

.footer-column__contact-link:focus {
  outline: 2px solid #B7C258;
  outline-offset: 2px;
  color: #fff
}

.footer-column__contact-link .typcn {
  font-size: 16px;
  color: #B7C258;
  flex-shrink: 0
}

.footer-divider {
  border: none;
  border-top: 1px solid #2e2e18;
  margin: 0
}

.footer-lower {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.footer-lower__copy {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #7a6e5e;
  line-height: 1.15;
  margin: 0
}

.footer-lower__legal {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.footer-lower__legal-link {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #7a6e5e;
  text-decoration: none;
  line-height: 1.15;
  transition: color .14s ease-out
}

.footer-lower__legal-link:hover {
  color: #B7C258
}

.footer-lower__legal-link:focus {
  outline: 2px solid #B7C258;
  outline-offset: 2px;
  color: #fff
}

.footer-logo-pod {
  display: flex;
  justify-content: center;
  padding: 0 24px 40px
}

.footer-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid #DEC7AE;
  border-radius: 8px;
  box-shadow: 2px 1px 6px 1px #dec7ae0f;
  width: 72px;
  height: 72px;
  padding: 8px
}

.footer-logo-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

@media (max-width: 768px) {
  .footer-upper {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 40px 24px 24px
  }
}

@media (max-width: 360px) {
  .footer-upper {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .footer-lower {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }
}

.consent-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1500;
  background: #fff;
  border-bottom: 2px solid #B7C258;
  box-shadow: 2px 7px 28px 1px #b7c2581a;
  display: none;
  opacity: 0;
  transition: opacity .26s ease-out
}

.consent-bar--visible {
  opacity: 1
}

.consent-bar__plate {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap
}

.consent-bar__text {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #2d2d1a;
  line-height: 1.7;
  margin: 0;
  flex: 1;
  min-width: 200px
}

.consent-bar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0
}

.consent-bar__button {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1.5px solid #2d2d1a;
  background: transparent;
  color: #2d2d1a;
  cursor: pointer;
  line-height: 1.15;
  min-height: 44px;
  transition: background .15s ease-out, color .15s ease-out
}

.consent-bar__button:hover {
  background: #2d2d1a;
  color: #fff
}

.consent-bar__button:focus {
  outline: 2px solid #B7C258;
  outline-offset: 2px
}

.consent-bar__button--accept {
  background: #2d2d1a;
  color: #fff
}

.consent-bar__button--accept:hover {
  background: #1a1500;
  border-color: #1a1500
}

.consent-mini {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 1500;
  display: none
}

.consent-mini__toggle {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 48px;
  border: 1.5px solid #B7C258;
  background: #fff;
  color: #2d2d1a;
  cursor: pointer;
  line-height: 1.15;
  min-height: 44px;
  box-shadow: 2px 7px 28px 1px #b7c2581a;
  transition: background .18s ease-out, color .18s ease-out
}

.consent-mini__toggle:hover {
  background: #B7C258;
  color: #1a1500
}

.consent-mini__toggle:focus {
  outline: 2px solid #2d2d1a;
  outline-offset: 2px
}

@media (max-width: 768px) {
  .consent-bar__plate {
    flex-direction: column;
    align-items: flex-start
  }

  .consent-bar__actions {
    width: 100%;
    justify-content: flex-end
  }
}

.policy-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  color: #2a2a2e
}

.policy-layout p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: #2a2a2e
}

.policy-layout strong,
.policy-layout b {
  font-weight: 700;
  color: #1e1e22
}

.policy-layout em,
.policy-layout i {
  font-style: italic;
  color: #3a3a40
}

.policy-layout a {
  color: #7a8a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .18s ease-out, text-decoration-color .14s ease-out
}

.policy-layout a:hover {
  color: #5a6a0a;
  text-decoration-color: #B7C258
}

.policy-layout a:focus-visible {
  outline: 2px solid #B7C258;
  outline-offset: 2px;
  border-radius: 8px
}

.policy-layout table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 40px;
  box-shadow: 2px 1px 6px 1px #b7c2580f;
  border-radius: 8px;
  overflow: hidden
}

.policy-layout thead {
  background-color: #B7C258
}

.policy-layout thead th {
  color: #1e1e22;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  padding: 16px 24px;
  text-align: left;
  letter-spacing: .02em;
  border-bottom: 2px solid #9aaa3a
}

.policy-layout tbody tr {
  border-bottom: 1px solid #e8e4dc;
  transition: background-color .12s ease-out
}

.policy-layout tbody tr:last-child {
  border-bottom: none
}

.policy-layout tbody tr:nth-child(even) {
  background-color: #f7f5f0
}

.policy-layout tbody tr:hover {
  background-color: #f0eee6
}

.policy-layout td {
  padding: 16px 24px;
  font-size: 14px;
  line-height: 1.7;
  color: #2a2a2e;
  vertical-align: top;
  border-right: 1px solid #e8e4dc
}

.policy-layout td:last-child {
  border-right: none
}

.policy-layout th {
  border-right: 1px solid #9aaa3a
}

.policy-layout th:last-child {
  border-right: none
}

.policy-layout hr {
  border: none;
  border-top: 1px solid #DEC7AE;
  margin: 40px 0;
  opacity: .7
}

.policy-layout div {
  margin-bottom: 24px
}

@media (max-width: 1024px) {
  .policy-layout {
    padding: 80px 24px
  }
}

@media (max-width: 768px) {
  .policy-layout {
    padding: 40px 16px
  }

  .policy-layout p {
    font-size: 16px
  }

  .policy-layout table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px
  }

  .policy-layout thead th {
    padding: 16px;
    white-space: nowrap
  }

  .policy-layout td {
    padding: 16px;
    min-width: 140px
  }
}

@media (max-width: 360px) {
  .policy-layout {
    padding: 24px 8px
  }

  .policy-layout p {
    font-size: 14px
  }

  .policy-layout td,
  .policy-layout thead th {
    padding: 8px 16px;
    font-size: 14px
  }
}

.methodology {
  background: #fff;
  color: #1b1b18;
  overflow-x: clip;
  padding: 0
}

.methodology .band-strip {
  width: 100%;
  background: linear-gradient(173deg, #B7C258 0%, #c9d47a 18%, #f5f2ec 38%, #FCFCFB 100%);
  padding: 40px 0 0;
  position: relative
}

.methodology .band-strip__corners {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 80px;
  height: 80px;
  pointer-events: none;
  overflow: hidden
}

.methodology .band-strip__corners span {
  display: block;
  position: absolute;
  border: 1.5px solid #b7c25859;
  border-radius: 8px
}

.methodology .band-strip__corners span:nth-child(1) {
  inset: 0
}

.methodology .band-strip__corners span:nth-child(2) {
  inset: 10px
}

.methodology .band-strip__corners span:nth-child(3) {
  inset: 20px
}

.methodology .band-strip__corners span:nth-child(4) {
  inset: 30px
}

.methodology .band-strip__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 40px
}

.methodology .band-strip__text {
  flex: 1 1 0;
  padding-bottom: 40px
}

.methodology .band-strip__label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px
}

.methodology .band-strip__dot {
  width: 10px;
  height: 10px;
  border-radius: 48px;
  background: #B7C258;
  flex-shrink: 0;
  border: 1.5px solid #b7c25880
}

.methodology .band-strip__category {
  font-size: 14px;
  line-height: 1.15;
  color: #4a4a40;
  letter-spacing: .04em;
  text-transform: uppercase
}

.methodology .band-strip__heading {
  font-size: 62px;
  line-height: 1.15;
  color: #1b1b18;
  margin: 0 0 16px;
  font-weight: 800
}

.methodology .band-strip__heading em {
  font-style: normal;
  color: #B7C258
}

.methodology .band-strip__sub {
  font-size: 19px;
  line-height: 1.7;
  color: #3a3a30;
  max-width: 520px;
  margin: 0
}

.methodology .band-strip__image-col {
  flex: 0 0 320px;
  position: relative;
  align-self: flex-end
}

.methodology .band-strip__image-frame {
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid #b7c2584d;
  box-shadow: 2px 7px 28px 1px #b7c2581a;
  position: relative
}

.methodology .band-strip__image-frame::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: #fcfcfb14;
  pointer-events: none;
  border-radius: 8px
}

.methodology .band-strip__image-frame img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: blur(2px) grayscale(0.12);
  transition: filter .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.methodology .band-strip__image-frame:hover img {
  filter: blur(0) grayscale(0)
}

.methodology .band-strip__grain {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay
}

.methodology .band-strip__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 8px;
  overflow: hidden
}

.methodology .band-strip__shapes span {
  display: block;
  position: absolute;
  border-radius: 48px;
  border: 1.5px solid #b7c2582e
}

.methodology .band-strip__shapes span:nth-child(1) {
  width: 140px;
  height: 140px;
  top: -40px;
  left: -40px
}

.methodology .band-strip__shapes span:nth-child(2) {
  width: 80px;
  height: 80px;
  bottom: 16px;
  right: -24px
}

.methodology .process-grid {
  width: 100%;
  background: #FCFCFB;
  padding: 80px 0;
  position: relative
}

.methodology .process-grid__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px
}

.methodology .process-grid__columns {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start
}

.methodology .process-grid__sidebar {
  flex: 0 0 260px;
  position: sticky;
  top: 40px
}

.methodology .process-grid__sidebar-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px
}

.methodology .process-grid__sidebar-dot {
  width: 10px;
  height: 10px;
  border-radius: 48px;
  background: #DEC7AE;
  flex-shrink: 0
}

.methodology .process-grid__sidebar-tag {
  font-size: 14px;
  line-height: 1.15;
  color: #6a5c4a;
  text-transform: uppercase;
  letter-spacing: .04em
}

.methodology .process-grid__sidebar-heading {
  font-size: 33px;
  line-height: 1.15;
  color: #1b1b18;
  margin: 0 0 16px;
  font-weight: 700
}

.methodology .process-grid__sidebar-body {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a30;
  margin: 0 0 24px
}

.methodology .process-grid__sidebar-stat {
  background: #1b1b18;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 2px 9px 40px 1px #b7c2581a
}

.methodology .process-grid__stat-number {
  font-size: 33px;
  line-height: 1.15;
  color: #B7C258;
  font-weight: 800;
  display: block;
  margin-bottom: 8px
}

.methodology .process-grid__stat-label {
  font-size: 14px;
  line-height: 1.7;
  color: #DEC7AE
}

.methodology .process-grid__steps {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.methodology .step-card {
  border-radius: 8px;
  border: 1.5px solid #b7c2582e;
  padding: 24px;
  background: #fff;
  box-shadow: inset 2px 1px 6px 1px #b7c2580f 2px 1px 6px 1px #b7c2580f;
  position: relative;
  overflow: hidden;
  transition: box-shadow .16s cubic-bezier(0.4, 0, 0.6, 1), border-color .14s ease-out
}

.methodology .step-card:hover {
  box-shadow: inset 2px 1px 6px 1px #b7c2580f 2px 7px 28px 1px #b7c2581a;
  border-color: #b7c25866
}

.methodology .step-card__number {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 62px;
  line-height: 1.15;
  font-weight: 800;
  color: #b7c2581a;
  pointer-events: none;
  user-select: none
}

.methodology .step-card__icon-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px
}

.methodology .step-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #B7C258 0%, #d4da8a 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 2px 1px 6px 1px #b7c2580f
}

.methodology .step-card__icon .typcn {
  font-size: 22px;
  color: #fff;
  line-height: 1
}

.methodology .step-card__step-label {
  font-size: 14px;
  line-height: 1.15;
  color: #6a5c4a;
  text-transform: uppercase;
  letter-spacing: .04em
}

.methodology .step-card__heading {
  font-size: 24px;
  line-height: 1.15;
  color: #1b1b18;
  margin: 0 0 16px;
  font-weight: 700
}

.methodology .step-card__body {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a30;
  margin: 0 0 16px
}

.methodology .step-card__body--large {
  font-size: 19px;
  line-height: 1.7;
  color: #2a2a22;
  margin: 0 0 16px
}

.methodology .step-card__detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.methodology .step-card__detail-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a30
}

.methodology .step-card__detail-list li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 48px;
  background: #B7C258;
  flex-shrink: 0;
  margin-top: 6px;
  font-size: 16px
}

.methodology .step-card__accent {
  display: inline;
  color: #B7C258
}

.methodology .step-card__bracket {
  display: inline;
  color: #B7C258
}

.methodology .feature-grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px
}

.methodology .feature-cell {
  border-radius: 8px;
  background: #FCFCFB;
  border: 1.5px solid #dec7ae4d;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  box-shadow: inset 2px 1px 6px 1px #dec7ae0f;
  animation: scale-in .22s cubic-bezier(0.4, 0, 0.6, 1) both
}

.methodology .feature-cell:nth-child(1) {
  animation-delay: .04s
}

.methodology .feature-cell:nth-child(2) {
  animation-delay: .1s
}

.methodology .feature-cell:nth-child(3) {
  animation-delay: .17s
}

@keyframes scale-in {
  from {
    transform: scale(0.93);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.methodology .feature-cell__icon {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center
}

.methodology .feature-cell__icon .typcn {
  font-size: 24px;
  color: #B7C258
}

.methodology .feature-cell__label {
  font-size: 14px;
  line-height: 1.15;
  color: #1b1b18;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em
}

.methodology .feature-cell__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #5a5a50;
  margin: 0
}

.methodology .cycle-band {
  animation: tone-cycle 7s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate
}

@keyframes tone-cycle {
  0% {
    background: #b7c25812
  }

  100% {
    background: #dec7ae1f
  }
}

@media (max-width: 1024px) {
  .methodology .band-strip__heading {
    font-size: 33px
  }

  .methodology .band-strip__image-col {
    flex: 0 0 220px
  }

  .methodology .process-grid__columns {
    gap: 40px
  }

  .methodology .process-grid__sidebar {
    flex: 0 0 200px
  }

  .methodology .feature-grid-row {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 768px) {
  .methodology .band-strip__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 24px
  }

  .methodology .band-strip__image-col {
    flex: 0 0 auto;
    width: 100%
  }

  .methodology .band-strip__image-frame img {
    height: 180px
  }

  .methodology .band-strip__text {
    padding-bottom: 0
  }

  .methodology .band-strip__heading {
    font-size: 33px
  }

  .methodology .process-grid__container {
    padding: 0 24px
  }

  .methodology .process-grid__columns {
    flex-direction: column;
    gap: 40px
  }

  .methodology .process-grid__sidebar {
    position: static;
    flex: 0 0 auto;
    width: 100%
  }

  .methodology .feature-grid-row {
    grid-template-columns: 1fr
  }

  .methodology .process-grid {
    padding: 40px 0
  }
}

@media (max-width: 360px) {
  .methodology .band-strip__container {
    padding: 0 16px
  }

  .methodology .band-strip__heading {
    font-size: 24px
  }

  .methodology .process-grid__container {
    padding: 0 16px
  }

  .methodology .band-strip__sub {
    font-size: 16px
  }

  .methodology .step-card {
    padding: 16px
  }

  .methodology .step-card__heading {
    font-size: 19px
  }
}

.entry {
  background: #fff;
  overflow-x: clip
}

.entry .pitch {
  background: #1b1e14;
  padding: 80px 24px 56px;
  position: relative
}

.entry .pitch::after {
  border-top: 3px solid #B7C258;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%
}

.entry .pitch__grid {
  align-items: end;
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin: 0 auto;
  max-width: 1100px
}

.entry .pitch__text {
  flex: 1 1 0;
  min-width: 0
}

.entry .pitch__label {
  border: 1px solid #B7C258;
  border-radius: 8px;
  color: #B7C258;
  display: inline-block;
  font-size: 14px;
  letter-spacing: .08em;
  line-height: 1.15;
  margin-bottom: 24px;
  padding: 8px 16px;
  text-transform: uppercase
}

.entry .pitch__heading {
  color: #FCFCFB;
  font-size: 62px;
  line-height: 1.15;
  margin: 0 0 24px
}

.entry .pitch__heading em {
  color: #B7C258;
  font-style: normal
}

.entry .pitch__sub {
  color: #b0b8a0;
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 40px;
  max-width: 520px
}

.entry .pitch__actions {
  display: flex;
  flex-direction: row;
  gap: 16px
}

.entry .pitch__button--primary {
  background: #B7C258;
  border: none;
  border-radius: 8px;
  color: #1b1e14;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  padding: 16px 40px;
  position: relative;
  transition: background .18s ease-out, color .14s ease-out
}

.entry .pitch__button--primary:hover {
  background: #c9d46a
}

.entry .pitch__button--primary:focus {
  outline: 2px solid #B7C258;
  outline-offset: 3px
}

.entry .pitch__button--secondary {
  background: transparent;
  border: 1px solid #4a5040;
  border-radius: 8px;
  color: #FCFCFB;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.15;
  padding: 16px 40px;
  transition: border-color .16s cubic-bezier(0.4, 0, 0.6, 1), color .16s cubic-bezier(0.4, 0, 0.6, 1)
}

.entry .pitch__button--secondary:hover {
  border-color: #B7C258;
  color: #B7C258
}

.entry .pitch__button--secondary:focus {
  outline: 2px solid #B7C258;
  outline-offset: 3px
}

.entry .pitch__aside {
  flex: 0 0 340px;
  position: relative
}

.entry .pitch__image-frame {
  border: 2px solid #3a3f2e;
  border-radius: 8px;
  overflow: hidden;
  position: relative
}

.entry .pitch__image-frame::before {
  background: linear-gradient(160deg, #b7c2582e 0%, #0000008c 100%);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1
}

.entry .pitch__image {
  display: block;
  filter: sepia(0.32) contrast(1.08) brightness(0.88);
  height: 380px;
  object-fit: cover;
  width: 100%
}

.entry .pitch__diamond {
  background: #B7C258;
  bottom: -16px;
  height: 28px;
  pointer-events: none;
  position: absolute;
  right: -14px;
  transform: rotate(45deg);
  width: 28px;
  z-index: 2
}

.entry .outcomes {
  background: #FCFCFB;
  padding: 80px 24px
}

.entry .outcomes__container {
  margin: 0 auto;
  max-width: 1100px
}

.entry .outcomes__top {
  align-items: start;
  display: flex;
  flex-direction: row;
  gap: 80px;
  margin-bottom: 56px
}

.entry .outcomes__label {
  color: #B7C258;
  font-size: 14px;
  letter-spacing: .1em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase
}

.entry .outcomes__heading {
  color: #1b1e14;
  font-size: 33px;
  line-height: 1.15;
  margin: 0 0 16px
}

.entry .outcomes__lead {
  color: #2e3326;
  font-size: 19px;
  line-height: 1.7;
  margin: 0
}

.entry .outcomes__body {
  color: #3a4030;
  font-size: 16px;
  line-height: 1.7;
  margin: 16px 0 0
}

.entry .outcomes__text-column {
  flex: 1 1 0;
  min-width: 0
}

.entry .outcomes__image-column {
  flex: 0 0 320px
}

.entry .outcomes__photo {
  border: 2px solid #d4d9be;
  border-radius: 8px;
  box-shadow: 2px 7px 28px 1px #b7c2581a;
  display: block;
  height: 260px;
  object-fit: cover;
  width: 100%
}

.entry .outcomes__items {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr)
}

.entry .outcomes__item {
  background: #fff;
  border: 1px solid #e8ecda;
  border-radius: 8px;
  box-shadow: inset 2px 1px 6px 1px #b7c2580f;
  padding: 24px;
  position: relative
}

.entry .outcomes__num {
  align-items: center;
  background: #B7C258;
  border-radius: 48px;
  color: #1b1e14;
  display: flex;
  flex-direction: row;
  font-size: 14px;
  font-weight: 700;
  height: 32px;
  justify-content: center;
  line-height: 1.15;
  margin-bottom: 16px;
  width: 32px
}

.entry .outcomes__item-heading {
  color: #1b1e14;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 8px
}

.entry .outcomes__item-text {
  color: #3a4030;
  font-size: 14px;
  line-height: 1.7;
  margin: 0
}

.entry .conditions {
  background: #DEC7AE;
  padding: 80px 24px
}

.entry .conditions__container {
  margin: 0 auto;
  max-width: 1100px
}

.entry .conditions__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr
}

.entry .conditions__left {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.entry .conditions__label {
  color: #6b4f2e;
  font-size: 14px;
  letter-spacing: .1em;
  line-height: 1.15;
  text-transform: uppercase
}

.entry .conditions__heading {
  color: #1b1e14;
  font-size: 33px;
  line-height: 1.15;
  margin: 0
}

.entry .conditions__lead {
  color: #2e2218;
  font-size: 19px;
  line-height: 1.7;
  margin: 0
}

.entry .conditions__photo-wrap {
  border: 2px solid #c4a882;
  border-radius: 8px;
  box-shadow: 2px 9px 40px 1px #dec7ae1a;
  overflow: hidden;
  position: relative
}

.entry .conditions__photo {
  display: block;
  height: 240px;
  object-fit: cover;
  width: 100%
}

.entry .conditions__right {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.entry .conditions__card {
  background: #fff;
  border-left: 4px solid #B7C258;
  border-radius: 8px;
  border-right: 1px solid #e0d4c4;
  border-top: 1px solid #e0d4c4;
  border-bottom: 1px solid #e0d4c4;
  box-shadow: 2px 1px 6px 1px #b7c2580f;
  padding: 16px 24px
}

.entry .conditions__card-heading {
  color: #1b1e14;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 8px
}

.entry .conditions__card-text {
  color: #3a2e22;
  font-size: 14px;
  line-height: 1.7;
  margin: 0
}

.entry .gap-view {
  background: #fff;
  padding: 80px 24px
}

.entry .gap-view__container {
  margin: 0 auto;
  max-width: 1100px
}

.entry .gap-view__header {
  margin-bottom: 56px;
  max-width: 640px
}

.entry .gap-view__label {
  color: #B7C258;
  font-size: 14px;
  letter-spacing: .1em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase
}

.entry .gap-view__heading {
  color: #1b1e14;
  font-size: 33px;
  line-height: 1.15;
  margin: 0 0 16px
}

.entry .gap-view__lead {
  color: #2e3326;
  font-size: 19px;
  line-height: 1.7;
  margin: 0
}

.entry .gap-view__layout {
  align-items: start;
  display: flex;
  flex-direction: row;
  gap: 56px
}

.entry .gap-view__visual {
  flex: 0 0 300px
}

.entry .gap-view__photo {
  border: 2px solid #d4d9be;
  border-radius: 8px;
  box-shadow: 2px 7px 28px 1px #b7c2581a;
  display: block;
  height: 360px;
  object-fit: cover;
  width: 100%
}

.entry .gap-view__steps {
  flex: 1 1 0;
  min-width: 0
}

.entry .gap-view__step {
  border-bottom: 1px solid #e8ecda;
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 24px 0
}

.entry .gap-view__step:first-child {
  padding-top: 0
}

.entry .gap-view__step:last-child {
  border-bottom: none
}

.entry .gap-view__step-num {
  align-items: center;
  background: #1b1e14;
  border-radius: 48px;
  color: #B7C258;
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  line-height: 1.15;
  width: 36px
}

.entry .gap-view__step-body {
  flex: 1 1 0;
  min-width: 0
}

.entry .gap-view__step-heading {
  color: #1b1e14;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 8px
}

.entry .gap-view__step-text {
  color: #3a4030;
  font-size: 14px;
  line-height: 1.7;
  margin: 0
}

.entry .gap-view__accent {
  background: linear-gradient(170deg, #B7C258 0%, #DEC7AE 100%);
  border-radius: 8px;
  margin-top: 40px;
  padding: 24px 40px
}

.entry .gap-view__accent-text {
  color: #1b1e14;
  font-size: 19px;
  line-height: 1.7;
  margin: 0
}

.entry .gap-view__accent-text span {
  color: #3a2e00;
  font-weight: 700
}

@keyframes entry-rise {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

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

.entry .pitch__label {
  animation: entry-rise .22s ease-out both;
  animation-delay: .05s
}

.entry .pitch__heading {
  animation: entry-rise .22s ease-out both;
  animation-delay: .12s
}

.entry .pitch__sub {
  animation: entry-rise .2s ease-out both;
  animation-delay: .2s
}

.entry .pitch__actions {
  animation: entry-rise .18s ease-out both;
  animation-delay: .28s
}

.entry .pitch__aside {
  animation: entry-rise .22s ease-out both;
  animation-delay: .18s
}

@media (max-width: 1024px) {
  .entry .pitch__heading {
    font-size: 42px
  }

  .entry .pitch__aside {
    flex: 0 0 260px
  }

  .entry .outcomes__items {
    grid-template-columns: 1fr 1fr
  }

  .entry .outcomes__top {
    gap: 40px
  }

  .entry .conditions__grid {
    grid-template-columns: 1fr
  }

  .entry .gap-view__layout {
    gap: 40px
  }

  .entry .gap-view__visual {
    flex: 0 0 240px
  }
}

@media (max-width: 768px) {
  .entry .pitch {
    padding: 56px 16px 40px
  }

  .entry .pitch__grid {
    flex-direction: column;
    gap: 40px
  }

  .entry .pitch__heading {
    font-size: 33px
  }

  .entry .pitch__aside {
    flex: none;
    width: 100%
  }

  .entry .pitch__image {
    height: 240px
  }

  .entry .outcomes {
    padding: 56px 16px
  }

  .entry .outcomes__top {
    flex-direction: column;
    gap: 24px
  }

  .entry .outcomes__image-column {
    flex: none;
    width: 100%
  }

  .entry .outcomes__items {
    grid-template-columns: 1fr
  }

  .entry .conditions {
    padding: 56px 16px
  }

  .entry .gap-view {
    padding: 56px 16px
  }

  .entry .gap-view__layout {
    flex-direction: column;
    gap: 24px
  }

  .entry .gap-view__visual {
    flex: none;
    width: 100%
  }

  .entry .gap-view__photo {
    height: 220px
  }

  .entry .pitch__actions {
    flex-direction: column
  }
}

@media (max-width: 360px) {
  .entry .pitch__heading {
    font-size: 24px
  }

  .entry .outcomes__heading,
  .entry .conditions__heading,
  .entry .gap-view__heading {
    font-size: 24px
  }

  .entry .gap-view__accent {
    padding: 16px
  }
}

.roadmap {
  max-width: 100%;
  overflow-x: hidden
}

.roadmap__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px
}

.roadmap__title-band {
  background: #232320;
  padding: 40px 0;
  position: relative
}

.roadmap__title-band::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid #b7c25847;
  pointer-events: none
}

.roadmap__title-frame {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px
}

.roadmap__title-text {
  flex: 1 1 0
}

.roadmap__label {
  display: inline-block;
  font-size: 14px;
  line-height: 1.15;
  color: #B7C258;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid #b7c25866;
  padding: 4px 16px;
  border-radius: 48px
}

.roadmap__h1 {
  font-size: 62px;
  line-height: 1.15;
  color: #FCFCFB;
  margin: 0 0 16px
}

.roadmap__subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: #b0afa8;
  margin: 0;
  max-width: 520px
}

.roadmap__title-image {
  flex: 0 0 260px;
  width: 260px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #b7c25833;
  box-shadow: 2px 7px 28px 1px #b7c2581a
}

.roadmap__title-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.3) saturate(0.8) brightness(0.82)
}

.roadmap__title-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, transparent 40%, #2323208c 100%);
  pointer-events: none
}

.roadmap__steps-section {
  background: #FCFCFB;
  padding: 80px 0 40px;
  position: relative
}

.roadmap__steps-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #B7C258 0%, #DEC7AE 60%, #FCFCFB 100%)
}

.roadmap__steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  position: relative
}

.roadmap__step {
  background: #fff;
  border-radius: 8px;
  padding: 40px 24px 24px;
  position: relative;
  box-shadow: 2px 1px 6px 1px #b7c2580f inset 0 2px 8px 0 #dec7ae17;
  border: 1px solid #b7c25821;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  animation: step-appear .18s ease-out forwards
}

.roadmap__step:nth-child(1) {
  animation-delay: .04s
}

.roadmap__step:nth-child(2) {
  animation-delay: .1s
}

.roadmap__step:nth-child(3) {
  animation-delay: .16s
}

.roadmap__step:nth-child(4) {
  animation-delay: .22s
}

.roadmap__step:nth-child(5) {
  animation-delay: .28s
}

.roadmap__step:nth-child(6) {
  animation-delay: .34s
}

@keyframes step-appear {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

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

.roadmap__step-number {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 62px;
  line-height: 1.15;
  color: #b7c2581a;
  font-weight: 900;
  pointer-events: none;
  user-select: none
}

.roadmap__step-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #B7C258;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.roadmap__step-icon .typcn {
  font-size: 22px;
  color: #232320
}

.roadmap__step-phase {
  font-size: 14px;
  line-height: 1.15;
  color: #B7C258;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700
}

.roadmap__step-heading {
  font-size: 19px;
  line-height: 1.15;
  color: #232320;
  margin: 0
}

.roadmap__step-body {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a44;
  margin: 0
}

.roadmap__step-detail {
  font-size: 14px;
  line-height: 1.7;
  color: #6a6a62;
  margin: 0
}

.roadmap__step-duration {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.15;
  color: #232320;
  background: #b7c2581a;
  border-radius: 48px;
  padding: 4px 16px;
  margin-top: 8px;
  border: 1px solid #b7c25838;
  align-self: flex-start
}

.roadmap__step--accent {
  background: #232320;
  border-color: #b7c25840
}

.roadmap__step--accent .roadmap__step-heading {
  color: #FCFCFB
}

.roadmap__step--accent .roadmap__step-body {
  color: #b0afa8
}

.roadmap__step--accent .roadmap__step-detail {
  color: #888880
}

.roadmap__step--accent .roadmap__step-duration {
  background: #b7c25824;
  color: #B7C258
}

.roadmap__step--accent .roadmap__step-number {
  color: #b7c25812
}

.roadmap__step--wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px
}

.roadmap__step--wide .roadmap__step-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.roadmap__step--wide .roadmap__step-aside {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px
}

.roadmap__step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.roadmap__step-list li {
  font-size: 14px;
  line-height: 1.7;
  color: #4a4a44;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.roadmap__step--accent .roadmap__step-list li {
  color: #b0afa8
}

.roadmap__step-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 48px;
  background: #B7C258;
  flex-shrink: 0;
  margin-top: 5px
}

.roadmap__step-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 3px solid #B7C258;
  padding-left: 16px;
  border-radius: 0 8px 8px 0
}

.roadmap__step-metric strong {
  font-size: 33px;
  line-height: 1.15;
  color: #B7C258
}

.roadmap__step-metric span {
  font-size: 14px;
  line-height: 1.7;
  color: #6a6a62
}

.roadmap__step--accent .roadmap__step-metric span {
  color: #888880
}

.roadmap__step-tooltip-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.roadmap__step-tooltip-wrap:focus-within .roadmap__tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-4px)
}

.roadmap__tooltip-trigger {
  background: none;
  border: 1px solid #b7c25880;
  border-radius: 48px;
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #B7C258;
  font-size: 14px;
  line-height: 1.15;
  transition: background .14s ease-out, border-color .14s ease-out
}

.roadmap__tooltip-trigger:hover,
.roadmap__tooltip-trigger:focus {
  background: #b7c2581f;
  border-color: #B7C258;
  outline: none
}

.roadmap__tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: #232320;
  color: #FCFCFB;
  font-size: 14px;
  line-height: 1.7;
  padding: 8px 16px;
  border-radius: 8px;
  width: 220px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .16s ease-out, transform .16s ease-out;
  box-shadow: 2px 7px 28px 1px #b7c2581a;
  z-index: 10
}

.roadmap__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #232320
}

.roadmap__summary-section {
  background: #FCFCFB;
  padding: 40px 0 80px
}

.roadmap__summary-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch
}

.roadmap__summary-left {
  background: linear-gradient(160deg, #B7C258 0%, #DEC7AE 100%);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden
}

.roadmap__summary-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: #ffffff12;
  pointer-events: none
}

.roadmap__rings-pattern {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  pointer-events: none
}

.roadmap__summary-heading {
  font-size: 33px;
  line-height: 1.15;
  color: #232320;
  margin: 0
}

.roadmap__summary-body {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a30;
  margin: 0
}

.roadmap__summary-body--large {
  font-size: 19px;
  line-height: 1.7;
  color: #2a2a22;
  margin: 0
}

.roadmap__metrics-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap
}

.roadmap__metric-pill {
  background: #2323201f;
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 0;
  min-width: 80px
}

.roadmap__metric-pill strong {
  font-size: 33px;
  line-height: 1.15;
  color: #232320
}

.roadmap__metric-pill span {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a30
}

.roadmap__summary-right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.roadmap__checklist-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid #b7c25829;
  box-shadow: 2px 1px 6px 1px #b7c2580f;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.roadmap__checklist-heading {
  font-size: 19px;
  line-height: 1.15;
  color: #232320;
  margin: 0
}

.roadmap__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.roadmap__checklist li {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a44;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.roadmap__checklist li .typcn {
  font-size: 19px;
  color: #B7C258;
  flex-shrink: 0;
  margin-top: 2px
}

.roadmap__note-card {
  background: #232320;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #b7c2582e;
  box-shadow: 2px 9px 40px 1px #b7c2581a
}

.roadmap__note-heading {
  font-size: 19px;
  line-height: 1.15;
  color: #FCFCFB;
  margin: 0
}

.roadmap__note-body {
  font-size: 16px;
  line-height: 1.7;
  color: #b0afa8;
  margin: 0
}

.roadmap__dashed-accent {
  border: 2px dashed #b7c25873;
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.roadmap__dashed-accent .typcn {
  font-size: 24px;
  color: #B7C258;
  flex-shrink: 0
}

.roadmap__dashed-text {
  font-size: 14px;
  line-height: 1.7;
  color: #b0afa8;
  margin: 0
}

.roadmap__circle-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 48px;
  background: #B7C258;
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 8px
}

@media (max-width: 1024px) {
  .roadmap__steps-grid {
    grid-template-columns: 1fr 1fr
  }

  .roadmap__step--wide {
    grid-column: span 2;
    flex-direction: column;
    gap: 24px
  }

  .roadmap__step--wide .roadmap__step-aside {
    flex: none;
    flex-direction: row;
    flex-wrap: wrap
  }

  .roadmap__h1 {
    font-size: 33px
  }

  .roadmap__title-image {
    flex: 0 0 200px;
    width: 200px;
    height: 160px
  }

  .roadmap__summary-split {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {
  .roadmap__title-frame {
    flex-direction: column;
    padding: 0 24px;
    gap: 24px
  }

  .roadmap__title-image {
    width: 100%;
    flex: none;
    height: 180px
  }

  .roadmap__steps-grid {
    grid-template-columns: 1fr
  }

  .roadmap__step--wide {
    grid-column: span 1
  }

  .roadmap__metrics-row {
    flex-direction: column
  }

  .roadmap__summary-left {
    padding: 24px
  }

  .roadmap__h1 {
    font-size: 33px
  }
}

@media (max-width: 360px) {
  .roadmap__title-band {
    padding: 24px 0
  }

  .roadmap__steps-section {
    padding: 40px 0 24px
  }

  .roadmap__summary-section {
    padding: 24px 0 40px
  }

  .roadmap__h1 {
    font-size: 24px
  }

  .roadmap__summary-heading {
    font-size: 24px
  }
}

.about-us {
  background-color: #fff;
  color: #1b1b1b;
  overflow-x: clip;
  position: relative
}

.about-us .page-schema {
  display: none
}

.about-us .entry {
  padding: 80px 24px 40px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  position: relative
}

.about-us .entry__text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1
}

.about-us .entry__label {
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5c5c3d;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.about-us .entry__label-bar {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #B7C258
}

.about-us .entry__heading {
  font-size: 62px;
  line-height: 1.15;
  color: #1b1b1b;
  margin: 0;
  max-width: 520px
}

.about-us .entry__heading span {
  color: #B7C258
}

.about-us .entry__action {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.15;
  color: #1b1b1b;
  text-decoration: none;
  border-bottom: 2px solid #B7C258;
  padding-bottom: 4px;
  transition: color .18s ease-out, border-color .15s ease-out;
  width: fit-content
}

.about-us .entry__action:hover {
  color: #5c5c3d;
  border-color: #5c5c3d
}

.about-us .entry__action:focus-visible {
  outline: 2px solid #B7C258;
  outline-offset: 4px;
  border-radius: 8px
}

.about-us .entry__shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  border-radius: 8px
}

.about-us .entry__card {
  flex: 0 0 320px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 2px 7px 28px 1px #b7c2581a
}

.about-us .entry__card img {
  display: block;
  width: 320px;
  height: 380px;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.85)
}

.about-us .entry__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #b7c25847 0%, #dec7ae2e 100%);
  border-radius: 8px
}

.about-us .entry__card-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, transparent 40%, #1b1b1b61 100%);
  border-radius: 8px;
  pointer-events: none
}

.about-us .entry__card-border {
  position: absolute;
  inset: 0;
  border: 1px solid #b7c25859;
  border-radius: 8px;
  pointer-events: none
}

.about-us .divider-triangle {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.about-us .divider-triangle svg {
  display: block;
  width: 100%
}

.about-us .identity {
  background: linear-gradient(175deg, #f5f5ef 0%, #eeede5 60%, #f5f5ef 100%);
  padding: 80px 24px;
  position: relative
}

.about-us .identity__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start
}

.about-us .identity__aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative
}

.about-us .identity__number {
  font-size: 62px;
  line-height: 1.15;
  color: #b7c2582e;
  font-weight: 700;
  position: absolute;
  top: -24px;
  left: -16px;
  pointer-events: none;
  user-select: none
}

.about-us .identity__stat-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px
}

.about-us .identity__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #b7c25838;
  box-shadow: 2px 1px 6px 1px #b7c2580f;
  transition: box-shadow .16s ease-out
}

.about-us .identity__stat:hover {
  box-shadow: 2px 7px 28px 1px #b7c2581a
}

.about-us .identity__stat-value {
  font-size: 33px;
  line-height: 1.15;
  color: #1b1b1b;
  font-weight: 700
}

.about-us .identity__stat-label {
  font-size: 14px;
  line-height: 1.7;
  color: #5c5c3d;
  text-transform: uppercase;
  letter-spacing: .06em
}

.about-us .identity__body {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.about-us .identity__heading {
  font-size: 33px;
  line-height: 1.15;
  color: #1b1b1b;
  margin: 0;
  position: relative
}

.about-us .identity__heading-accent {
  color: #B7C258
}

.about-us .identity__lead {
  font-size: 19px;
  line-height: 1.7;
  color: #2a2a1e;
  margin: 0
}

.about-us .identity__text {
  font-size: 16px;
  line-height: 1.7;
  color: #3d3d2a;
  margin: 0
}

.about-us .identity__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.about-us .identity__list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #3d3d2a
}

.about-us .identity__bullet {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: #B7C258;
  border-radius: 48px;
  margin-top: 8px;
  display: inline-block
}

.about-us .divider-line {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.about-us .divider-line__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #B7C258 40%, #DEC7AE 70%, transparent)
}

.about-us .divider-line__mark {
  width: 8px;
  height: 8px;
  background: #B7C258;
  border-radius: 48px;
  flex-shrink: 0
}

.about-us .reach {
  padding: 80px 24px;
  background: #fff
}

.about-us .reach__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px
}

.about-us .reach__header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px
}

.about-us .reach__heading {
  font-size: 33px;
  line-height: 1.15;
  color: #1b1b1b;
  margin: 0;
  max-width: 480px
}

.about-us .reach__sub {
  font-size: 16px;
  line-height: 1.7;
  color: #5c5c3d;
  max-width: 380px;
  margin: 0;
  text-align: right
}

.about-us .reach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.about-us .reach__feature {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #dec7ae80;
  background: #FCFCFB;
  box-shadow: inset 2px 1px 6px 1px #dec7ae0f;
  transition: border-color .14s ease-out, box-shadow .18s ease-out;
  position: relative;
  overflow: hidden
}

.about-us .reach__feature:hover {
  border-color: #b7c25873;
  box-shadow: 2px 7px 28px 1px #b7c2581a inset 2px 1px 6px 1px #dec7ae0f
}

.about-us .reach__feature-number {
  font-size: 62px;
  line-height: 1.15;
  color: #b7c2581f;
  font-weight: 700;
  position: absolute;
  top: -8px;
  right: 16px;
  pointer-events: none;
  user-select: none
}

.about-us .reach__feature-icon {
  width: 40px;
  height: 40px;
  background: #B7C258;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.about-us .reach__feature-icon .typcn {
  font-size: 22px;
  color: #fff;
  line-height: 1
}

.about-us .reach__feature-heading {
  font-size: 19px;
  line-height: 1.15;
  color: #1b1b1b;
  margin: 0
}

.about-us .reach__feature-text {
  font-size: 16px;
  line-height: 1.7;
  color: #3d3d2a;
  margin: 0
}

.about-us .reach__image-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: stretch
}

.about-us .reach__image-frame {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #b7c25833;
  box-shadow: 2px 7px 28px 1px #b7c2581a
}

.about-us .reach__image-frame img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover
}

.about-us .reach__image-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 35%, #1b1b1b52 100%);
  pointer-events: none
}

.about-us .reach__image-border {
  position: absolute;
  inset: 0;
  border: 1px solid #b7c25840;
  border-radius: 8px;
  pointer-events: none
}

.about-us .reach__callout {
  background: linear-gradient(135deg, #B7C258 0%, #9aaa3a 100%);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  box-shadow: 2px 9px 40px 1px #b7c2581a
}

.about-us .reach__callout-value {
  font-size: 33px;
  line-height: 1.15;
  color: #fff;
  font-weight: 700
}

.about-us .reach__callout-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffffe6;
  margin: 0
}

.about-us .divider-band {
  height: 8px;
  background: linear-gradient(90deg, #DEC7AE 0%, #B7C258 50%, #DEC7AE 100%);
  opacity: .45
}

.about-us .team {
  padding: 80px 24px;
  background: #FCFCFB;
  position: relative
}

.about-us .team__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden
}

.about-us .team__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1
}

.about-us .team__primary {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.about-us .team__heading-group {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.about-us .team__heading {
  font-size: 33px;
  line-height: 1.15;
  color: #1b1b1b;
  margin: 0
}

.about-us .team__heading-sub {
  font-size: 19px;
  line-height: 1.7;
  color: #5c5c3d;
  margin: 0
}

.about-us .team__profiles {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.about-us .team__profile {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #b7c2582e;
  box-shadow: 2px 1px 6px 1px #b7c2580f;
  transition: box-shadow .2s cubic-bezier(0.4, 0, 0.6, 1), border-color .15s ease-out;
  position: relative;
  overflow: hidden
}

.about-us .team__profile:hover {
  box-shadow: 2px 7px 28px 1px #b7c2581a;
  border-color: #b7c25861
}

.about-us .team__profile-border-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #B7C258 0%, #DEC7AE 100%);
  border-radius: 8px 0 0 8px
}

.about-us .team__profile-image {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 48px;
  overflow: hidden;
  border: 2px solid #b7c25859;
  position: relative
}

.about-us .team__profile-image img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: cover
}

.about-us .team__profile-image-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, #1b1b1b47 100%);
  pointer-events: none;
  border-radius: 48px
}

.about-us .team__profile-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1
}

.about-us .team__profile-name {
  font-size: 19px;
  line-height: 1.15;
  color: #1b1b1b;
  margin: 0
}

.about-us .team__profile-role {
  font-size: 14px;
  line-height: 1.15;
  color: #B7C258;
  text-transform: uppercase;
  letter-spacing: .07em
}

.about-us .team__profile-bio {
  font-size: 16px;
  line-height: 1.7;
  color: #3d3d2a;
  margin: 0
}

.about-us .team__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.about-us .team__sidebar-image {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #dec7ae66;
  box-shadow: 2px 9px 40px 1px #b7c2581a
}

.about-us .team__sidebar-image img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover
}

.about-us .team__sidebar-image-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 30%, #1b1b1b59 100%);
  pointer-events: none
}

.about-us .team__sidebar-image-border {
  position: absolute;
  inset: 0;
  border: 1px solid #b7c25838;
  border-radius: 8px;
  pointer-events: none
}

.about-us .team__fact-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid #dec7ae73;
  box-shadow: inset 2px 1px 6px 1px #dec7ae0f 2px 1px 6px 1px #b7c2580f;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.about-us .team__fact-heading {
  font-size: 16px;
  line-height: 1.15;
  color: #1b1b1b;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .06em
}

.about-us .team__fact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.about-us .team__fact-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #3d3d2a
}

.about-us .team__fact-bullet {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: #DEC7AE;
  border-radius: 48px;
  margin-top: 8px
}

.about-us .dashed-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden
}

@keyframes about-bg-zoom {
  0% {
    transform: scale(1)
  }

  100% {
    transform: scale(1.06)
  }
}

.about-us .identity {
  overflow: hidden
}

.about-us .identity__bg-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, #f5f5ef 0%, #eeede5 60%, #f5f5ef 100%);
  animation: about-bg-zoom 14s ease-out alternate infinite;
  z-index: 0
}

.about-us .identity__inner {
  position: relative;
  z-index: 1
}

.about-us .reach__feature::before,
.about-us .reach__feature::after {
  content: "";
  position: absolute;
  background: #B7C258;
  transition: width .18s ease-out, height .18s ease-out
}

.about-us .reach__feature::before {
  top: -1px;
  left: 24px;
  right: 24px;
  height: 2px;
  width: calc(100% - 48px)
}

.about-us .reach__feature::after {
  bottom: -1px;
  left: 24px;
  right: 24px;
  height: 2px;
  width: calc(100% - 48px)
}

.about-us .reach__feature:hover::before,
.about-us .reach__feature:hover::after {
  width: 0;
  left: 50%
}

@media (max-width: 1024px) {
  .about-us .entry {
    gap: 24px
  }

  .about-us .entry__card {
    flex: 0 0 260px
  }

  .about-us .entry__card img {
    width: 260px;
    height: 320px
  }

  .about-us .entry__heading {
    font-size: 33px
  }

  .about-us .identity__inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .about-us .identity__number {
    font-size: 33px
  }

  .about-us .team__inner {
    grid-template-columns: 1fr
  }

  .about-us .team__sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .about-us .reach__header {
    flex-direction: column;
    align-items: flex-start
  }

  .about-us .reach__sub {
    text-align: left
  }
}

@media (max-width: 768px) {
  .about-us .entry {
    flex-direction: column-reverse;
    padding: 40px 16px 24px
  }

  .about-us .entry__card {
    flex: none;
    width: 100%
  }

  .about-us .entry__card img {
    width: 100%;
    height: 240px
  }

  .about-us .entry__heading {
    font-size: 33px
  }

  .about-us .reach__grid {
    grid-template-columns: 1fr
  }

  .about-us .reach__image-row {
    grid-template-columns: 1fr
  }

  .about-us .team__inner {
    grid-template-columns: 1fr
  }

  .about-us .team__sidebar {
    display: flex;
    flex-direction: column
  }

  .about-us .team__profile {
    flex-direction: column
  }

  .about-us .identity__inner {
    gap: 24px
  }

  .about-us .identity,
  .about-us .reach,
  .about-us .team {
    padding: 40px 16px
  }
}

@media (max-width: 360px) {
  .about-us .entry__heading {
    font-size: 24px
  }

  .about-us .identity__heading,
  .about-us .reach__heading,
  .about-us .team__heading {
    font-size: 24px
  }

  .about-us .identity__stat-value {
    font-size: 24px
  }
}

.contact-us {
  background-color: #fff;
  overflow-x: clip;
  position: relative
}

.contact-us .reach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  align-items: start
}

.contact-us .reach__visual {
  position: relative
}

.contact-us .reach__image-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #b7c25838;
  box-shadow: 2px 7px 28px 1px #b7c2581a
}

.contact-us .reach__image-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: saturate(0.72);
  transition: filter .18s ease-out
}

.contact-us .reach__image-frame:hover img {
  filter: saturate(1)
}

.contact-us .reach__circles {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  pointer-events: none;
  overflow: hidden
}

.contact-us .reach__circles svg {
  width: 100%;
  height: 100%;
  opacity: .07
}

.contact-us .reach__tag {
  display: inline-block;
  font-size: 14px;
  line-height: 1.15;
  color: #6a6a5e;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 8px 16px;
  border: 1px solid #b7c25859;
  border-radius: 48px;
  background-color: #b7c25812
}

.contact-us .reach__heading {
  font-size: 33px;
  line-height: 1.15;
  color: #1e1e18;
  margin: 0 0 24px;
  position: relative
}

.contact-us .reach__heading-prefix {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #B7C258;
  border-radius: 8px;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -2px
}

.contact-us .reach__description {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a30;
  margin: 0 0 40px
}

.contact-us .reach__description--large {
  font-size: 19px;
  line-height: 1.7;
  color: #2a2a22;
  margin: 0 0 16px
}

.contact-us .reach__detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-us .reach__detail-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background-color: #fcfcfbe6;
  border: 1px solid #dec7ae4d;
  box-shadow: inset 2px 1px 6px 1px #dec7ae0f;
  transition: box-shadow .15s ease-out
}

.contact-us .reach__detail-item:hover {
  box-shadow: 2px 1px 6px 1px #b7c2580f inset 2px 1px 6px 1px #dec7ae0f
}

.contact-us .reach__detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #b7c2581f;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center
}

.contact-us .reach__detail-icon .typcn {
  font-size: 19px;
  color: #7a8a2a
}

.contact-us .reach__detail-text {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact-us .reach__detail-label {
  font-size: 14px;
  line-height: 1.15;
  color: #6a6a5e;
  text-transform: uppercase;
  letter-spacing: .05em
}

.contact-us .reach__detail-value {
  font-size: 16px;
  line-height: 1.7;
  color: #1e1e18
}

.contact-us .reach__detail-value a {
  color: #1e1e18;
  text-decoration: none;
  border-bottom: 1px solid #b7c25880;
  transition: border-color .12s ease-out, color .12s ease-out
}

.contact-us .reach__detail-value a:hover {
  color: #7a8a2a;
  border-bottom-color: #B7C258
}

.contact-us .form__panel {
  background: linear-gradient(158deg, #b7c2580f 0%, #fcfcfbff 38%, #dec7ae14 100%);
  border-radius: 8px;
  border: 1px solid #b7c2582e;
  box-shadow: 2px 7px 28px 1px #b7c2581a;
  padding: 40px;
  position: relative
}

.contact-us .form__panel-label {
  font-size: 14px;
  line-height: 1.15;
  color: #6a6a5e;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
  display: block
}

.contact-us .form__panel-heading {
  font-size: 24px;
  line-height: 1.15;
  color: #1e1e18;
  margin: 0 0 8px
}

.contact-us .form__panel-sub {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a30;
  margin: 0 0 40px
}

.contact-us .form__row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 16px
}

.contact-us .form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1
}

.contact-us .form__field--full {
  flex: 1 1 100%;
  margin-bottom: 16px
}

.contact-us .form__label {
  font-size: 14px;
  line-height: 1.15;
  color: #3a3a30;
  letter-spacing: .02em
}

.contact-us .form__input {
  font-size: 16px;
  line-height: 1.7;
  color: #1e1e18;
  background-color: #fff;
  border: 1px solid #b7c25859;
  border-radius: 8px;
  padding: 16px;
  outline: none;
  transition: border-color .15s ease-out, box-shadow .15s ease-out;
  width: 100%;
  box-sizing: border-box
}

.contact-us .form__input::placeholder {
  color: #9a9a8a;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .04em
}

.contact-us .form__input:focus {
  border-color: #B7C258;
  box-shadow: 2px 1px 6px 1px #b7c2580f
}

.contact-us .form__input:hover {
  border-color: #b7c25899
}

.contact-us .form__select {
  font-size: 16px;
  line-height: 1.7;
  color: #1e1e18;
  background-color: #fff;
  border: 1px solid #b7c25859;
  border-radius: 8px;
  padding: 16px;
  outline: none;
  transition: border-color .15s ease-out, box-shadow .15s ease-out;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%237a8a2a' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer
}

.contact-us .form__select:focus {
  border-color: #B7C258;
  box-shadow: 2px 1px 6px 1px #b7c2580f
}

.contact-us .form__select:hover {
  border-color: #b7c25899
}

.contact-us .form__time-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px
}

.contact-us .form__time-label {
  font-size: 14px;
  line-height: 1.15;
  color: #3a3a30;
  letter-spacing: .02em
}

.contact-us .form__time-options {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap
}

.contact-us .form__time-option {
  position: relative
}

.contact-us .form__time-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none
}

.contact-us .form__time-option label {
  display: block;
  font-size: 14px;
  line-height: 1.15;
  color: #3a3a30;
  padding: 8px 16px;
  border: 1px solid #b7c25859;
  border-radius: 48px;
  cursor: pointer;
  transition: background-color .14s ease-out, border-color .14s ease-out, color .14s ease-out;
  background-color: #fff;
  user-select: none
}

.contact-us .form__time-option label:hover {
  background-color: #b7c2581a;
  border-color: #B7C258
}

.contact-us .form__time-option input[type="radio"]:checked+label {
  background-color: #B7C258;
  border-color: #B7C258;
  color: #1e1e18;
  font-weight: 600
}

.contact-us .form__time-option input[type="radio"]:focus-visible+label {
  outline: 2px solid #7a8a2a;
  outline-offset: 2px
}

.contact-us .form__privacy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 8px;
  background-color: #dec7ae14;
  border: 1px solid #dec7ae40
}

.contact-us .form__privacy input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #B7C258;
  cursor: pointer
}

.contact-us .form__privacy-text {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a30
}

.contact-us .form__privacy-text a {
  color: #7a8a2a;
  text-decoration: none;
  border-bottom: 1px solid #b7c25880;
  transition: border-color .12s ease-out
}

.contact-us .form__privacy-text a:hover {
  border-bottom-color: #7a8a2a
}

.contact-us .form__submit {
  width: 100%;
  padding: 16px 40px;
  font-size: 16px;
  line-height: 1.15;
  color: #1e1e18;
  background-color: #B7C258;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: background-color .14s ease-out, box-shadow .14s ease-out;
  box-shadow: 2px 1px 6px 1px #b7c2580f;
  letter-spacing: .03em
}

.contact-us .form__submit:hover {
  background-color: #a3ae48;
  box-shadow: 2px 7px 28px 1px #b7c2581a
}

.contact-us .form__submit:focus-visible {
  outline: 2px solid #7a8a2a;
  outline-offset: 3px
}

.contact-us .form__submit:active {
  background-color: #8f9a3c
}

.contact-us .form__submit-text {
  display: inline-block
}

.contact-us .form__submit:active .form__submit-text {
  opacity: 0
}

.contact-us .legend__panel {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px
}

.contact-us .legend__strip {
  background-color: #1e1e18;
  border-radius: 8px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  overflow: hidden
}

.contact-us .legend__strip-bg {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  pointer-events: none;
  overflow: hidden
}

.contact-us .legend__strip-bg svg {
  width: 100%;
  height: 100%;
  opacity: .05
}

.contact-us .legend__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px
}

.contact-us .legend__dot {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center
}

.contact-us .legend__dot--green {
  background-color: #b7c2582e
}

.contact-us .legend__dot--tan {
  background-color: #dec7ae2e
}

.contact-us .legend__dot--light {
  background-color: #fcfcfb1a
}

.contact-us .legend__dot .typcn {
  font-size: 19px
}

.contact-us .legend__dot--green .typcn {
  color: #B7C258
}

.contact-us .legend__dot--tan .typcn {
  color: #DEC7AE
}

.contact-us .legend__dot--light .typcn {
  color: #FCFCFB
}

.contact-us .legend__text {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact-us .legend__item-heading {
  font-size: 16px;
  line-height: 1.15;
  color: #f0f0e8;
  margin: 0
}

.contact-us .legend__item-body {
  font-size: 14px;
  line-height: 1.7;
  color: #9a9a8a;
  margin: 0
}

.contact-us .legend__item-body a {
  color: #B7C258;
  text-decoration: none;
  border-bottom: 1px solid #b7c25866;
  transition: border-color .12s ease-out
}

.contact-us .legend__item-body a:hover {
  border-bottom-color: #B7C258
}

@media (max-width: 1024px) {
  .contact-us .reach__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 24px
  }

  .contact-us .reach__visual {
    order: 2
  }

  .contact-us .reach__image-frame img {
    height: 280px
  }

  .contact-us .legend__strip {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .contact-us .legend__panel {
    padding: 0 24px 80px
  }
}

@media (max-width: 768px) {
  .contact-us .reach__grid {
    padding: 40px 16px;
    gap: 40px
  }

  .contact-us .form__row {
    flex-direction: column;
    gap: 16px
  }

  .contact-us .form__panel {
    padding: 24px 16px
  }

  .contact-us .legend__strip {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px
  }

  .contact-us .legend__panel {
    padding: 0 16px 40px
  }

  .contact-us .reach__heading {
    font-size: 24px
  }
}

@media (max-width: 360px) {
  .contact-us .form__time-options {
    flex-direction: column
  }

  .contact-us .reach__grid {
    padding: 40px 8px
  }

  .contact-us .legend__panel {
    padding: 0 8px 40px
  }
}

.success-page {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60vh;
  padding: 80px 24px
}

.success-page .success-panel {
  background: #fff;
  border: 1px solid #DEC7AE;
  border-radius: 8px;
  box-shadow: 2px 7px 28px 1px #b7c2581a;
  max-width: 560px;
  padding: 80px 40px;
  text-align: center;
  width: 100%
}

.success-page .success-panel__icon-wrapper {
  align-items: center;
  background: #FCFCFB;
  border: 2px solid #B7C258;
  border-radius: 48px;
  box-shadow: inset 2px 1px 6px 1px #b7c2580f;
  display: flex;
  flex-direction: row;
  height: 72px;
  justify-content: center;
  margin: 0 auto 40px;
  width: 72px
}

.success-page .success-panel__icon-wrapper .icon-shape {
  display: block;
  height: 36px;
  width: 36px
}

.success-page .success-panel__heading {
  color: #1b1b18;
  font-size: 33px;
  line-height: 1.15;
  margin: 0 0 16px
}

.success-page .success-panel__subtext {
  color: #3a3a34;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 40px
}

.success-page .success-panel__detail {
  background: #FCFCFB;
  border: 1px solid #DEC7AE;
  border-radius: 8px;
  box-shadow: inset 2px 1px 6px 1px #dec7ae0f;
  color: #3a3a34;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 40px;
  padding: 16px 24px;
  text-align: left
}

.success-page .success-panel__detail strong {
  color: #1b1b18
}

.success-page .success-panel__action {
  background: #B7C258;
  border: none;
  border-radius: 8px;
  color: #1b1b18;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.15;
  padding: 16px 40px;
  text-decoration: none;
  transition: background-color .18s ease-out, box-shadow .14s ease-out
}

.success-page .success-panel__action:hover {
  background: #a3ae4a;
  box-shadow: 2px 7px 28px 1px #b7c2581a
}

.success-page .success-panel__action:focus {
  box-shadow: 0 0 0 3px #b7c25866;
  outline: none
}

.success-page .success-panel__action:active {
  background: #929d42;
  box-shadow: inset 2px 1px 6px 1px #b7c2580f
}

.success-page .success-panel__footer-note {
  color: #5a5a50;
  font-size: 14px;
  line-height: 1.7;
  margin: 24px 0 0
}

.success-page .success-panel__footer-note a {
  color: #3a3a34;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .12s ease-out
}

.success-page .success-panel__footer-note a:hover {
  color: #1b1b18
}

@media (max-width: 768px) {
  .success-page {
    padding: 40px 16px
  }

  .success-page .success-panel {
    padding: 40px 24px
  }

  .success-page .success-panel__heading {
    font-size: 24px
  }
}

@media (max-width: 360px) {
  .success-page .success-panel {
    padding: 40px 16px
  }

  .success-page .success-panel__action {
    padding: 16px 24px;
    width: 100%
  }
}