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

body {
  margin: 0;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  font-family: 'Inconsolata', monospace
}

.hd-bar {
  position: relative;
  background: linear-gradient(135deg, #26392F 0%, #2D903D 60%, #A7CC85 100%);
  z-index: 100
}

.hd-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffffd1;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: none
}

.hd-bar__pod {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 0
}

.hd-bar__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 10px;
  gap: 40px
}

.hd-bar__brand-cell {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  text-decoration: none
}

.hd-bar__brand-img-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #26392F;
  border-radius: 0;
  box-shadow: 1px 1px 5px 0 #26392f12 1px 6px 28px 0 #26392f14;
  padding: 10px;
  flex-shrink: 0
}

.hd-bar__brand-img-strip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.hd-bar__brand-name {
  font-family: 'Inconsolata', monospace;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  color: #26392F;
  letter-spacing: 0
}

.hd-bar__notice-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #a7cc852e 0%, #2d903d1a 100%);
  border-radius: 16px;
  padding: 10px 20px;
  box-shadow: inset 0 2px 6px 0 #2d903d12;
  flex-shrink: 0
}

.hd-bar__notice-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.hd-bar__notice-icon svg {
  display: block
}

.hd-bar__notice-text {
  font-family: 'Inconsolata', monospace;
  font-size: 16px;
  font-weight: 700;
  color: #26392F;
  line-height: 1.3;
  white-space: nowrap
}

.hd-bar__notice-sub {
  font-weight: 400;
  color: #2D903D;
  display: block;
  font-size: 16px;
  line-height: 1.3
}

.hd-bar__nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 20px;
  border-top: 1px solid #26392f1a;
  gap: 10px;
  flex-wrap: wrap
}

.hd-bar__nav-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0
}

.hd-bar__nav-primary li {
  display: flex
}

.hd-bar__nav-primary li a {
  font-family: 'Inconsolata', monospace;
  font-size: 16px;
  font-weight: 400;
  color: #26392F;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 28px;
  border: 1.5px solid transparent;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  transition: color .12s cubic-bezier(0.4, 0, 1, 1), background .15s cubic-bezier(0.4, 0, 1, 1), border-color .12s cubic-bezier(0.4, 0, 1, 1), box-shadow .15s cubic-bezier(0.4, 0, 1, 1);
  position: relative;
  overflow: hidden
}

.hd-bar__nav-primary li a::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1.5px solid #2D903D;
  opacity: 0;
  transition: opacity .12s cubic-bezier(0.4, 0, 1, 1);
  pointer-events: none
}

.hd-bar__nav-primary li a:hover::after,
.hd-bar__nav-primary li a:focus::after {
  opacity: 1
}

.hd-bar__nav-primary li a:hover,
.hd-bar__nav-primary li a:focus {
  color: #2D903D;
  background: #2d903d12;
  box-shadow: 1px 1px 5px 0 #2d903d12;
  outline: none
}

.hd-bar__nav-primary li a:focus-visible {
  outline: 2px dashed #2D903D;
  outline-offset: 2px
}

.hd-bar__nav-primary li a--active {
  color: #2D903D;
  font-weight: 700
}

.hd-bar__nav-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}

.hd-bar__contact-link {
  font-family: 'Inconsolata', monospace;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: #2D903D;
  border-radius: 28px;
  padding: 10px 20px;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 1px 6px 28px 0 #2d903d14;
  border: 1.5px solid transparent;
  transition: background .15s cubic-bezier(0.4, 0, 1, 1), box-shadow .15s cubic-bezier(0.4, 0, 1, 1), border-color .12s cubic-bezier(0.4, 0, 1, 1);
  position: relative;
  overflow: hidden
}

.hd-bar__contact-link::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1.5px solid #A7CC85;
  opacity: 0;
  transition: opacity .12s cubic-bezier(0.4, 0, 1, 1);
  pointer-events: none
}

.hd-bar__contact-link:hover::after,
.hd-bar__contact-link:focus::after {
  opacity: 1
}

.hd-bar__contact-link:hover,
.hd-bar__contact-link:focus {
  background: #26392F;
  box-shadow: 1px 10px 52px 0 #26392f1a;
  outline: none
}

.hd-bar__contact-link:focus-visible {
  outline: 2px dashed #26392F;
  outline-offset: 2px
}

.ft-base {
  background: #26392F;
  color: #fff;
  font-family: 'Inconsolata', monospace
}

.ft-base__upper-deck {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px
}

.ft-base__brand-pod {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px
}

.ft-base__brand-link {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none
}

.ft-base__logo-strip {
  width: 44px;
  height: 44px;
  background: #A7CC85;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 1px 1px 5px 0 #a7cc8512;
  flex-shrink: 0
}

.ft-base__logo-strip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.ft-base__brand-label {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1
}

.ft-base__tagline {
  font-size: 16px;
  color: #A7CC85;
  line-height: 1.55;
  margin: 0
}

.ft-base__addr-pod {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.ft-base__addr-heading {
  font-size: 18px;
  font-weight: 700;
  color: #A7CC85;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .08em
}

.ft-base__addr-lines {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.ft-base__addr-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #ffffffd1;
  line-height: 1.55
}

.ft-base__addr-item a {
  color: #ffffffd1;
  text-decoration: none;
  transition: color .12s cubic-bezier(0.4, 0, 1, 1)
}

.ft-base__addr-item a:hover,
.ft-base__addr-item a:focus {
  color: #A7CC85;
  outline: none
}

.ft-base__addr-item a:focus-visible {
  outline: 2px dashed #A7CC85;
  outline-offset: 2px
}

.ft-base__addr-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px
}

.ft-base__links-pod {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.ft-base__links-heading {
  font-size: 18px;
  font-weight: 700;
  color: #A7CC85;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .08em
}

.ft-base__links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.ft-base__links-list li a {
  font-size: 16px;
  color: #ffffffd1;
  text-decoration: none;
  line-height: 1.55;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  min-height: 44px;
  transition: color .12s cubic-bezier(0.4, 0, 1, 1)
}

.ft-base__links-list li a:hover,
.ft-base__links-list li a:focus {
  color: #A7CC85;
  outline: none
}

.ft-base__links-list li a:focus-visible {
  outline: 2px dashed #A7CC85;
  outline-offset: 2px
}

.ft-base__lower-row {
  border-top: 1px solid #a7cc852e;
  background: #0000002e
}

.ft-base__lower-cell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

.ft-base__copy-text {
  font-size: 16px;
  color: #ffffff8c;
  line-height: 1.3;
  margin: 0
}

.ft-base__policy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.ft-base__policy-list li a {
  font-size: 16px;
  color: #ffffff8c;
  text-decoration: none;
  line-height: 1.3;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color .12s cubic-bezier(0.4, 0, 1, 1)
}

.ft-base__policy-list li a:hover,
.ft-base__policy-list li a:focus {
  color: #A7CC85;
  outline: none
}

.ft-base__policy-list li a:focus-visible {
  outline: 2px dashed #A7CC85;
  outline-offset: 2px
}

.ck-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: #fff;
  box-shadow: 1px 10px 52px 0 #26392f1a;
  border-top: 2px solid #A7CC85;
  border-radius: 16px 16px 0 0
}

.ck-strip__pod {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.ck-strip__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap
}

.ck-strip__text-cell {
  flex: 1;
  min-width: 0
}

.ck-strip__headline {
  font-family: 'Inconsolata', monospace;
  font-size: 18px;
  font-weight: 700;
  color: #26392F;
  line-height: 1.3;
  margin: 0 0 10px
}

.ck-strip__desc {
  font-family: 'Inconsolata', monospace;
  font-size: 16px;
  color: #26392F;
  line-height: 1.55;
  margin: 0
}

.ck-strip__btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap
}

.ck-strip__btn {
  font-family: 'Inconsolata', monospace;
  font-size: 16px;
  font-weight: 700;
  border-radius: 28px;
  padding: 10px 20px;
  min-height: 44px;
  cursor: pointer;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  transition: background .15s cubic-bezier(0.4, 0, 1, 1), color .12s cubic-bezier(0.4, 0, 1, 1), border-color .12s cubic-bezier(0.4, 0, 1, 1), box-shadow .15s cubic-bezier(0.4, 0, 1, 1)
}

.ck-strip__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1.5px solid #2D903D;
  opacity: 0;
  transition: opacity .12s cubic-bezier(0.4, 0, 1, 1);
  pointer-events: none
}

.ck-strip__btn:hover::after,
.ck-strip__btn:focus::after {
  opacity: 1
}

.ck-strip__btn:focus-visible {
  outline: 2px dashed #26392F;
  outline-offset: 2px
}

.ck-strip__btn--accept {
  background: #2D903D;
  color: #fff;
  border-color: #2D903D
}

.ck-strip__btn--accept:hover,
.ck-strip__btn--accept:focus {
  background: #26392F;
  border-color: #26392F;
  box-shadow: 1px 6px 28px 0 #26392f14;
  outline: none
}

.ck-strip__btn--decline {
  background: transparent;
  color: #26392F;
  border-color: #26392f40
}

.ck-strip__btn--decline:hover,
.ck-strip__btn--decline:focus {
  background: #26392f0f;
  border-color: #26392F;
  outline: none
}

.ck-strip__settings-link {
  font-family: 'Inconsolata', monospace;
  font-size: 16px;
  color: #2D903D;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 0;
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .12s cubic-bezier(0.4, 0, 1, 1)
}

.ck-strip__settings-link:hover,
.ck-strip__settings-link:focus {
  color: #26392F;
  outline: none
}

.ck-strip__settings-link:focus-visible {
  outline: 2px dashed #2D903D;
  outline-offset: 2px
}

.ck-strip__toggles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #a7cc851a;
  border-radius: 16px;
  box-shadow: inset 0 2px 6px 0 #2d903d12
}

.ck-strip__toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.ck-strip__toggle-label {
  font-family: 'Inconsolata', monospace;
  font-size: 16px;
  color: #26392F;
  line-height: 1.3
}

.ck-strip__toggle-input {
  width: 40px;
  height: 22px;
  cursor: pointer;
  accent-color: #2D903D;
  flex-shrink: 0
}

@media (max-width: 1280px) {
  .hd-bar__pod {
    padding: 0 20px
  }

  .ft-base__upper-deck {
    padding: 80px 20px 40px
  }

  .ft-base__lower-cell {
    padding: 20px
  }

  .ck-strip__pod {
    padding: 20px
  }
}

@media (max-width: 768px) {
  .hd-bar__top-row {
    flex-wrap: wrap;
    gap: 20px
  }

  .hd-bar__notice-cell {
    flex: 1 1 100%
  }

  .hd-bar__notice-text {
    white-space: normal
  }

  .ft-base__upper-deck {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px
  }

  .ft-base__lower-cell {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
  }
}

@media (max-width: 480px) {
  .hd-bar__pod {
    padding: 0 10px
  }

  .hd-bar__top-row {
    padding: 10px 0
  }

  .hd-bar__nav-row {
    padding: 10px 0
  }

  .hd-bar__nav-primary li a {
    padding: 10px;
    font-size: 16px
  }

  .hd-bar__brand-name {
    font-size: 22px
  }

  .ft-base__upper-deck {
    padding: 40px 10px
  }

  .ft-base__lower-cell {
    padding: 20px 10px
  }

  .ck-strip__pod {
    padding: 10px
  }

  .ck-strip__top {
    flex-direction: column;
    gap: 20px
  }

  .ck-strip__btn-group {
    width: 100%;
    justify-content: stretch
  }

  .ck-strip__btn {
    flex: 1;
    text-align: center
  }
}

.doc-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 40px
}

.doc-inner p {
  font-size: 18px;
  line-height: 1.75;
  color: #1b2b22;
  margin-bottom: 20px
}

.doc-inner strong,
.doc-inner b {
  font-weight: 700;
  color: #26392F
}

.doc-inner em,
.doc-inner i {
  font-style: italic;
  color: #2D903D
}

.doc-inner a {
  color: #2D903D;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .12s cubic-bezier(0.4, 0, 1, 1), opacity .15s cubic-bezier(0.4, 0, 1, 1)
}

.doc-inner a:hover {
  color: #26392F;
  opacity: .85
}

.doc-inner div {
  margin-bottom: 40px;
  padding: 40px;
  background: #f4f7f5;
  border-radius: 16px;
  box-shadow: 1px 1px 5px 0 #26392f12
}

.doc-inner div p:last-child {
  margin-bottom: 0
}

@media (max-width: 768px) {
  .doc-inner {
    padding: 40px 20px
  }

  .doc-inner p {
    font-size: 16px;
    line-height: 1.55
  }

  .doc-inner div {
    padding: 20px;
    margin-bottom: 20px
  }
}

@media (max-width: 480px) {
  .doc-inner {
    padding: 40px 10px
  }

  .doc-inner div {
    padding: 20px 10px;
    border-radius: 0
  }
}

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

.intv-det .top-anchor {
  position: absolute;
  top: 0;
  left: 0
}

.intv-det .pg-band {
  width: 100%;
  background: linear-gradient(112deg, #26392F 0%, #2D903D 55%, #A7CC85 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden
}

.intv-det .pg-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: .18;
  pointer-events: none
}

.intv-det .pg-band__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px
}

.intv-det .pg-band__left {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.intv-det .pg-band__tag-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px
}

.intv-det .pg-band__tag {
  display: inline-block;
  background: #a7cc8538;
  border: 1px solid #a7cc858c;
  color: #A7CC85;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 0
}

.intv-det .pg-band__read {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #a7cc85bf;
  font-size: 16px
}

.intv-det .pg-band__read-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.intv-det .pg-band__h1 {
  font-size: 40px;
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
  margin: 0
}

.intv-det .pg-band__sub {
  font-size: 18px;
  line-height: 1.55;
  color: #ffffffc7;
  margin: 0
}

.intv-det .pg-band__author-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid #a7cc8540
}

.intv-det .pg-band__author-label {
  font-size: 16px;
  color: #a7cc85b3
}

.intv-det .pg-band__author-name {
  font-size: 16px;
  color: #A7CC85;
  font-weight: 700
}

.intv-det .pg-band__right {
  flex: 0 0 380px;
  max-width: 380px;
  position: relative;
  align-self: flex-end
}

.intv-det .pg-band__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 1px 10px 52px 0 #26392f1a;
  position: relative
}

.intv-det .pg-band__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #26392f73 0%, #2d903d26 100%);
  mix-blend-mode: multiply;
  pointer-events: none
}

.intv-det .pg-band__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.15);
  transition: filter .15s cubic-bezier(0.4, 0, 1, 1)
}

.intv-det .pg-band__img-wrap:hover .pg-band__img {
  filter: grayscale(60%) contrast(1.1)
}

.intv-det .pg-band__diamond {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 48px;
  height: 48px;
  background: #A7CC85;
  transform: rotate(45deg);
  border-radius: 0;
  z-index: 2;
  pointer-events: none
}

.intv-det .divider-a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 20px;
  background: #fff
}

.intv-det .divider-a__line {
  width: 48px;
  height: 2px;
  background: #A7CC85;
  border-radius: 0
}

.intv-det .divider-a__shape {
  width: 10px;
  height: 10px;
  background: #2D903D;
  transform: rotate(45deg);
  border-radius: 0;
  flex-shrink: 0
}

.intv-det .art-body {
  background: #f5f7f4;
  padding: 0 20px 80px
}

.intv-det .art-body__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start
}

.intv-det .art-body__main {
  flex: 1 1 0;
  min-width: 0
}

.intv-det .art-body__aside {
  flex: 0 0 280px;
  max-width: 280px;
  position: sticky;
  top: 40px
}

.intv-det .art-content p {
  font-size: 18px;
  line-height: 1.75;
  color: #1b2a22;
  margin: 0 0 20px
}

.intv-det .art-content h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #26392F;
  font-weight: 800;
  margin: 40px 0 20px;
  padding-top: 10px;
  border-top: 2px solid #A7CC85
}

.intv-det .art-content h4 {
  font-size: 22px;
  line-height: 1.3;
  color: #2D903D;
  font-weight: 700;
  margin: 40px 0 10px
}

.intv-det .art-content small {
  font-size: 16px;
  color: #4a6355;
  line-height: 1.55;
  display: block;
  margin: 0 0 20px
}

.intv-det .art-content blockquote {
  margin: 40px 0;
  padding: 20px 20px 20px 40px;
  background: #fff;
  border-left: 4px solid #2D903D;
  border-radius: 0 16px 16px 0;
  box-shadow: 1px 6px 28px 0 #2d903d14;
  font-size: 18px;
  line-height: 1.55;
  color: #26392F;
  font-style: italic
}

.intv-det .art-content blockquote cite {
  display: block;
  font-size: 16px;
  font-style: normal;
  color: #2D903D;
  font-weight: 700;
  margin-top: 10px
}

.intv-det .art-content figure {
  margin: 40px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 1px 6px 28px 0 #26392f14
}

.intv-det .art-content figure img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .15s cubic-bezier(0.4, 0, 1, 1)
}

.intv-det .art-content figure:hover img {
  transform: scale(1.03)
}

.intv-det .art-content figcaption {
  font-size: 16px;
  color: #4a6355;
  padding: 10px 20px;
  background: #fff;
  line-height: 1.55
}

.intv-det .art-content ol {
  margin: 20px 0 20px 20px;
  padding: 0
}

.intv-det .art-content ol li {
  font-size: 18px;
  line-height: 1.75;
  color: #1b2a22;
  margin-bottom: 10px;
  padding-left: 10px
}

.intv-det .aside-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 1px 6px 28px 0 #26392f14;
  margin-bottom: 20px
}

.intv-det .aside-card__overline {
  font-size: 16px;
  font-weight: 700;
  color: #2D903D;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 10px
}

.intv-det .aside-card__text {
  font-size: 16px;
  line-height: 1.55;
  color: #26392F;
  margin: 0 0 10px
}

.intv-det .aside-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.intv-det .aside-nav__item a {
  font-size: 16px;
  color: #26392F;
  text-decoration: none;
  line-height: 1.55;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 0;
  border: 1px solid transparent;
  transition: color .12s cubic-bezier(0.4, 0, 1, 1), border-color .12s cubic-bezier(0.4, 0, 1, 1), background .12s cubic-bezier(0.4, 0, 1, 1);
  position: relative;
  overflow: hidden
}

.intv-det .aside-nav__item a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #a7cc852e;
  transition: width .15s cubic-bezier(0.4, 0, 1, 1);
  pointer-events: none
}

.intv-det .aside-nav__item a:hover::before {
  width: 100%
}

.intv-det .aside-nav__item a:hover {
  color: #2D903D;
  border-color: #A7CC85
}

.intv-det .aside-nav__dot {
  width: 8px;
  height: 8px;
  background: #A7CC85;
  transform: rotate(45deg);
  flex-shrink: 0
}

.intv-det .aside-cta-btn {
  display: block;
  width: 100%;
  background: #2D903D;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 20px;
  border-radius: 16px;
  border: 2px solid #2D903D;
  box-shadow: 1px 6px 28px 0 #2d903d14;
  transition: background .12s cubic-bezier(0.4, 0, 1, 1), color .12s cubic-bezier(0.4, 0, 1, 1), box-shadow .15s cubic-bezier(0.4, 0, 1, 1);
  position: relative;
  overflow: hidden
}

.intv-det .aside-cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: border-color .12s cubic-bezier(0.4, 0, 1, 1);
  pointer-events: none
}

.intv-det .aside-cta-btn:hover {
  background: #26392F;
  color: #A7CC85;
  box-shadow: 1px 10px 52px 0 #26392f1a
}

.intv-det .aside-cta-btn:hover::after {
  border-color: #A7CC85
}

.intv-det .aside-cta-btn:focus-visible {
  outline: 2px solid #2D903D;
  outline-offset: 3px
}

.intv-det .divider-b {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 20px;
  background: #f5f7f4
}

.intv-det .divider-b__line {
  width: 32px;
  height: 2px;
  background: #26392F;
  border-radius: 0
}

.intv-det .divider-b__circle {
  width: 10px;
  height: 10px;
  border-radius: 28px;
  background: #26392F;
  flex-shrink: 0
}

.intv-det .bottom-strip {
  background: #26392F;
  padding: 40px 20px
}

.intv-det .bottom-strip__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px
}

.intv-det .bottom-strip__left {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.intv-det .bottom-strip__label {
  font-size: 16px;
  color: #A7CC85;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em
}

.intv-det .bottom-strip__text {
  font-size: 18px;
  line-height: 1.55;
  color: #ffffffd1;
  margin: 0;
  max-width: 520px
}

.intv-det .bottom-strip__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0
}

.intv-det .back-top-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #A7CC85;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #a7cc8566;
  border-radius: 0;
  transition: color .12s cubic-bezier(0.4, 0, 1, 1), border-color .12s cubic-bezier(0.4, 0, 1, 1), background .1s ease-in
}

.intv-det .back-top-link:hover {
  color: #fff;
  border-color: #A7CC85;
  background: #a7cc851f
}

.intv-det .back-top-link:focus-visible {
  outline: 2px solid #A7CC85;
  outline-offset: 3px
}

.intv-det .back-top-link__arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.intv-det .contact-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  background: #2D903D;
  padding: 20px 40px;
  border-radius: 28px;
  border: 2px solid #2D903D;
  transition: background .12s cubic-bezier(0.4, 0, 1, 1), color .12s cubic-bezier(0.4, 0, 1, 1), border-color .15s cubic-bezier(0.4, 0, 1, 1);
  position: relative;
  overflow: hidden
}

.intv-det .contact-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 2px solid transparent;
  transition: border-color .12s cubic-bezier(0.4, 0, 1, 1);
  pointer-events: none
}

.intv-det .contact-link:hover {
  background: transparent;
  color: #A7CC85;
  border-color: #A7CC85
}

.intv-det .contact-link:hover::before {
  border-color: #A7CC85
}

.intv-det .contact-link:focus-visible {
  outline: 2px solid #A7CC85;
  outline-offset: 3px
}

@keyframes intv-reveal {
  from {
    opacity: 0;
    transform: rotate(-1.5deg) translateY(24px)
  }

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

.intv-det .pg-band__left {
  animation: intv-reveal .18s cubic-bezier(0.4, 0, 1, 1) both
}

.intv-det .pg-band__right {
  animation: intv-reveal .15s .06s cubic-bezier(0.4, 0, 1, 1) both
}

.intv-det .art-body__main {
  animation: intv-reveal .18s .1s cubic-bezier(0.4, 0, 1, 1) both
}

.intv-det .art-body__aside {
  animation: intv-reveal .15s .14s cubic-bezier(0.4, 0, 1, 1) both
}

@media (max-width: 1280px) {
  .intv-det .pg-band__right {
    flex: 0 0 300px;
    max-width: 300px
  }

  .intv-det .art-body__aside {
    flex: 0 0 240px;
    max-width: 240px
  }
}

@media (max-width: 768px) {
  .intv-det .pg-band__inner {
    flex-direction: column;
    gap: 40px
  }

  .intv-det .pg-band__right {
    flex: none;
    max-width: 100%;
    width: 100%;
    align-self: auto
  }

  .intv-det .pg-band__diamond {
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px
  }

  .intv-det .art-body__inner {
    flex-direction: column;
    gap: 40px
  }

  .intv-det .art-body__aside {
    flex: none;
    max-width: 100%;
    width: 100%;
    position: static
  }

  .intv-det .bottom-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px
  }

  .intv-det .bottom-strip__right {
    align-items: flex-start
  }

  .intv-det .pg-band__h1 {
    font-size: 28px
  }
}

@media (max-width: 480px) {
  .intv-det .pg-band {
    padding: 40px 20px
  }

  .intv-det .pg-band__h1 {
    font-size: 22px
  }

  .intv-det .contact-link {
    padding: 20px
  }

  .intv-det .art-content h2 {
    font-size: 22px
  }

  .intv-det .art-content h4 {
    font-size: 18px
  }
}

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

.spns .pg-strip {
  width: 100%;
  background: #26392F;
  padding: 40px 20px;
  position: relative
}

.spns .pg-strip::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid #a7cc8538;
  pointer-events: none
}

.spns .pg-strip::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid #a7cc851a;
  pointer-events: none
}

.spns .strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px
}

.spns .strip-text {
  flex: 1 1 0;
  min-width: 0
}

.spns .strip-overline {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #A7CC85;
  margin-bottom: 10px
}

.spns .strip-h1 {
  font-size: 40px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 800
}

.spns .strip-h1 .accented-phrase {
  color: #A7CC85;
  display: inline
}

.spns .strip-desc {
  font-size: 18px;
  line-height: 1.55;
  color: #ffffffd1;
  margin: 0;
  max-width: 520px
}

.spns .strip-img-col {
  flex: 0 0 340px;
  width: 340px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 1px 10px 52px 0 #26392f1a
}

.spns .strip-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .16s cubic-bezier(0.4, 0, 1, 1)
}

.spns .strip-img-col:hover img {
  transform: scale(1.04)
}

.spns .strip-img-blur {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #26392f61 0%, #2d903d1a 60%, #a7cc8538 100%);
  pointer-events: none
}

.spns .divider-radial {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #2D903D 30%, #A7CC85 50%, #2D903D 70%, transparent 100%);
  border: none;
  margin: 0
}

.spns .formats-wrap {
  background: #f5f7f5;
  padding: 80px 20px;
  position: relative
}

.spns .formats-inner {
  max-width: 1140px;
  margin: 0 auto
}

.spns .formats-top {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px
}

.spns .formats-heading-col {
  flex: 0 0 340px
}

.spns .formats-overline {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #2D903D;
  margin-bottom: 10px
}

.spns .formats-h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #26392F;
  font-weight: 800;
  margin: 0 0 20px
}

.spns .formats-lead {
  font-size: 16px;
  line-height: 1.55;
  color: #2a3a2e;
  margin: 0
}

.spns .formats-desc-col {
  flex: 1 1 0;
  min-width: 0
}

.spns .formats-body {
  font-size: 16px;
  line-height: 1.55;
  color: #2a3a2e;
  margin: 0 0 20px
}

.spns .formats-body:last-child {
  margin-bottom: 0
}

.spns .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px
}

.spns .fmt-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 1px 6px 28px 0 #26392f14;
  position: relative;
  overflow: hidden;
  transition: box-shadow .14s cubic-bezier(0.4, 0, 1, 1)
}

.spns .fmt-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0px, transparent 18px, #2d903d0f 18px, #2d903d0f 20px);
  opacity: 0;
  transition: opacity .12s cubic-bezier(0.4, 0, 1, 1);
  pointer-events: none;
  border-radius: 16px
}

.spns .fmt-card:hover {
  box-shadow: 1px 10px 52px 0 #26392f1a
}

.spns .fmt-card:hover::after {
  opacity: 1
}

.spns .fmt-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 0;
  background: #2D903D;
  display: inline-block;
  margin-bottom: 10px;
  transform: rotate(45deg)
}

.spns .fmt-card__label {
  font-size: 16px;
  font-weight: 700;
  color: #26392F;
  margin: 0 0 10px;
  display: block
}

.spns .fmt-card__desc {
  font-size: 16px;
  line-height: 1.55;
  color: #2a3a2e;
  margin: 0 0 10px
}

.spns .fmt-card__meta {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px
}

.spns .fmt-card__tag {
  font-size: 16px;
  font-weight: 600;
  color: #2D903D;
  background: #2d903d14;
  border-radius: 0;
  padding: 0 10px;
  line-height: 1.75
}

.spns .res-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px
}

.spns .res-card {
  border-radius: 16px;
  background: #fff;
  border: 1.5px solid #26392f1a;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 1px 1px 5px 0 #26392f12;
  transition: border-color .12s cubic-bezier(0.4, 0, 1, 1), box-shadow .12s cubic-bezier(0.4, 0, 1, 1)
}

.spns .res-card:hover {
  border-color: #2D903D;
  box-shadow: 1px 6px 28px 0 #26392f14
}

.spns .res-card__icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: #26392F;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.spns .res-card__icon-wrap svg {
  width: 22px;
  height: 22px;
  display: block
}

.spns .res-card__type {
  font-size: 16px;
  font-weight: 700;
  color: #26392F;
  margin: 0
}

.spns .res-card__name {
  font-size: 16px;
  line-height: 1.3;
  color: #2a3a2e;
  margin: 0
}

.spns .res-card__size {
  font-size: 16px;
  color: #2D903D;
  font-weight: 600;
  margin: 0
}

.spns .res-card__dl {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #2D903D;
  text-decoration: none;
  margin-top: 10px;
  position: relative;
  transition: color .12s cubic-bezier(0.4, 0, 1, 1)
}

.spns .res-card__dl::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #2D903D;
  transition: width .14s cubic-bezier(0.4, 0, 1, 1)
}

.spns .res-card__dl:hover::after {
  width: 100%
}

.spns .res-card__dl:hover {
  color: #26392F
}

.spns .terms-accent {
  border: 2px dashed #A7CC85;
  border-radius: 16px;
  padding: 20px 40px;
  background: #a7cc8514;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start
}

.spns .terms-accent__heading {
  font-size: 22px;
  line-height: 1.3;
  color: #26392F;
  font-weight: 800;
  margin: 0 0 10px;
  flex-shrink: 0;
  min-width: 180px
}

.spns .terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 0
}

.spns .terms-list__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.55;
  color: #2a3a2e
}

.spns .terms-list__item-dot {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: #2D903D;
  flex-shrink: 0;
  margin-top: 6px;
  transform: rotate(45deg)
}

.spns .icon-cycle {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap
}

.spns .ic-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #2a3a2e;
  font-weight: 500
}

.spns .ic-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: #f0f4f0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  animation: none
}

.spns .ic-item:nth-child(1) .ic-item__icon {
  animation: iconpulse 3.2s cubic-bezier(0.4, 0, 1, 1) 0s infinite
}

.spns .ic-item:nth-child(2) .ic-item__icon {
  animation: iconpulse 3.2s cubic-bezier(0.4, 0, 1, 1) .64s infinite
}

.spns .ic-item:nth-child(3) .ic-item__icon {
  animation: iconpulse 3.2s cubic-bezier(0.4, 0, 1, 1) 1.28s infinite
}

.spns .ic-item:nth-child(4) .ic-item__icon {
  animation: iconpulse 3.2s cubic-bezier(0.4, 0, 1, 1) 1.92s infinite
}

.spns .ic-item:nth-child(5) .ic-item__icon {
  animation: iconpulse 3.2s cubic-bezier(0.4, 0, 1, 1) 2.56s infinite
}

@keyframes iconpulse {

  0%,
  15% {
    background: #f0f4f0
  }

  20%,
  35% {
    background: #2D903D
  }

  40%,
  100% {
    background: #f0f4f0
  }
}

.spns .ic-item__icon svg {
  width: 18px;
  height: 18px;
  display: block
}

@media (max-width: 1280px) {
  .spns .strip-img-col {
    flex: 0 0 260px;
    width: 260px;
    height: 180px
  }

  .spns .card-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .spns .res-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 768px) {
  .spns .strip-inner {
    flex-direction: column;
    gap: 20px
  }

  .spns .strip-img-col {
    flex: none;
    width: 100%;
    height: 180px
  }

  .spns .strip-h1 {
    font-size: 28px
  }

  .spns .formats-top {
    flex-direction: column;
    gap: 20px
  }

  .spns .formats-heading-col {
    flex: none;
    width: 100%
  }

  .spns .card-grid {
    grid-template-columns: 1fr 1fr
  }

  .spns .res-grid {
    grid-template-columns: 1fr 1fr
  }

  .spns .terms-accent {
    flex-direction: column;
    gap: 20px;
    padding: 20px
  }

  .spns .formats-wrap {
    padding: 40px 20px
  }
}

@media (max-width: 480px) {
  .spns .card-grid {
    grid-template-columns: 1fr
  }

  .spns .res-grid {
    grid-template-columns: 1fr
  }

  .spns .strip-h1 {
    font-size: 22px
  }

  .spns .icon-cycle {
    gap: 10px
  }
}

.ctc-pg {
  background: #fff;
  overflow-x: clip;
  position: relative
}

.ctc-pg__schema {
  display: none
}

.ctc-pg__reach {
  padding: 80px 20px;
  position: relative;
  overflow: hidden
}

.ctc-pg__reach::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, #f4f9f0 0%, #e8f2e0 40%, #c8ddb5 100%);
  z-index: 0
}

.ctc-pg__reach-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none
}

.ctc-pg__reach-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 0;
  background: #26392F;
  opacity: .13
}

.ctc-pg__reach-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px
}

.ctc-pg__reach-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #2D903D;
  margin-bottom: 10px;
  border-top: 2px solid #2D903D;
  padding-top: 10px
}

.ctc-pg__reach-heading {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  color: #26392F;
  margin: 0 0 20px
}

.ctc-pg__reach-desc {
  font-size: 18px;
  line-height: 1.55;
  color: #2a3a2e;
  margin: 0 0 40px
}

.ctc-pg__reach-cards {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.ctc-pg__reach-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 1px 6px 28px 0 #2d903d14;
  border-top: 3px solid #A7CC85;
  border-bottom: 3px solid #A7CC85;
  transition: box-shadow .15s cubic-bezier(0.4, 0, 1, 1), opacity .12s cubic-bezier(0.4, 0, 1, 1)
}

.ctc-pg__reach-card:hover {
  box-shadow: 1px 10px 52px 0 #2d903d1a;
  opacity: .92
}

.ctc-pg__reach-card-label {
  font-size: 16px;
  font-weight: 700;
  color: #2D903D;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
  display: block
}

.ctc-pg__reach-card-val {
  font-size: 18px;
  font-weight: 600;
  color: #26392F;
  line-height: 1.3;
  display: block;
  word-break: break-word
}

.ctc-pg__reach-card-val a {
  color: #26392F;
  text-decoration: none;
  position: relative;
  display: inline;
  background-image: linear-gradient(90deg, #A7CC85 0%, #2D903D 50%, #A7CC85 100%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .18s cubic-bezier(0.4, 0, 1, 1)
}

.ctc-pg__reach-card-val a:hover {
  background-size: 100% 2px
}

.ctc-pg__reach-col-left {
  grid-column: 1 / 3
}

.ctc-pg__reach-col-right {
  grid-column: 3 / 5
}

.ctc-pg__reach-rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #26392F 0%, #2D903D 60%, #A7CC85 100%);
  border-radius: 16px
}

.ctc-pg__reach-rating-score {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1
}

.ctc-pg__reach-rating-detail {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.ctc-pg__reach-rating-stars {
  display: flex;
  flex-direction: row;
  gap: 10px
}

.ctc-pg__reach-rating-star {
  width: 16px;
  height: 16px;
  background: #A7CC85;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%)
}

.ctc-pg__reach-rating-text {
  font-size: 16px;
  color: #e0f0d0;
  line-height: 1.3
}

.ctc-pg__form-zone {
  padding: 80px 20px;
  background: #fff;
  position: relative
}

.ctc-pg__form-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #26392F 0%, #2D903D 50%, #A7CC85 100%)
}

.ctc-pg__form-zone::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #A7CC85 0%, #2D903D 50%, #26392F 100%)
}

.ctc-pg__form-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start
}

.ctc-pg__form-side-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #2D903D;
  margin-bottom: 10px;
  border-top: 2px solid #2D903D;
  padding-top: 10px
}

.ctc-pg__form-side-heading {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: #26392F;
  margin: 0 0 20px
}

.ctc-pg__form-side-text {
  font-size: 16px;
  line-height: 1.55;
  color: #2a3a2e;
  margin: 0 0 20px
}

.ctc-pg__form-side-note {
  font-size: 16px;
  line-height: 1.55;
  color: #3a5040;
  margin: 0;
  padding: 20px;
  background: #f0f7ea;
  border-radius: 16px;
  border-left: 4px solid #A7CC85;
  border-right: 4px solid #26392F;
  box-shadow: inset 2px 4px 6px 0 #26392f12
}

.ctc-pg__form-wrap {
  background: #f8fcf5;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 1px 6px 28px 0 #26392f14
}

.ctc-pg__form {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.ctc-pg__field-grp {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.ctc-pg__field-grp--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.ctc-pg__field-lbl {
  font-size: 16px;
  font-weight: 600;
  color: #26392F;
  line-height: 1.3
}

.ctc-pg__field-lbl--req::after {
  content: ' *';
  color: #2D903D;
  font-weight: 700
}

.ctc-pg__input {
  width: 100%;
  padding: 10px 20px;
  border: 2px solid #c5ddb0;
  border-radius: 16px;
  font-size: 16px;
  color: #26392F;
  background: #fff;
  box-shadow: inset 2px 3px 6px 0 #26392f12;
  transition: border-color .15s cubic-bezier(0.4, 0, 1, 1), box-shadow .15s cubic-bezier(0.4, 0, 1, 1);
  box-sizing: border-box;
  outline: none;
  appearance: none
}

.ctc-pg__input::placeholder {
  color: #2d903d66
}

.ctc-pg__input:focus {
  border-color: #2D903D;
  box-shadow: inset 2px 3px 6px 0 #26392f12 1px 1px 5px 0 #2d903d12
}

.ctc-pg__select {
  width: 100%;
  padding: 10px 20px;
  border: 2px solid #c5ddb0;
  border-radius: 16px;
  font-size: 16px;
  color: #26392F;
  background: #fff;
  box-shadow: inset 2px 3px 6px 0 #26392f12;
  transition: border-color .15s cubic-bezier(0.4, 0, 1, 1);
  box-sizing: border-box;
  outline: none;
  appearance: none;
  cursor: pointer;
  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='%2326392F' d='M8 11L2 5h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 40px
}

.ctc-pg__select:focus {
  border-color: #2D903D
}

.ctc-pg__textarea {
  width: 100%;
  padding: 10px 20px;
  border: 2px solid #c5ddb0;
  border-radius: 16px;
  font-size: 16px;
  color: #26392F;
  background: #fff;
  box-shadow: inset 2px 4px 6px 0 #26392f12;
  transition: border-color .15s cubic-bezier(0.4, 0, 1, 1);
  box-sizing: border-box;
  outline: none;
  resize: vertical;
  min-height: 100px
}

.ctc-pg__textarea::placeholder {
  color: #2d903d66
}

.ctc-pg__textarea:focus {
  border-color: #2D903D
}

.ctc-pg__priority-grp {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.ctc-pg__priority-opts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px
}

.ctc-pg__priority-opt {
  position: relative
}

.ctc-pg__priority-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0
}

.ctc-pg__priority-opt-lbl {
  display: block;
  padding: 10px 20px;
  border: 2px solid #c5ddb0;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #26392F;
  text-align: center;
  cursor: pointer;
  transition: background .12s cubic-bezier(0.4, 0, 1, 1), border-color .12s cubic-bezier(0.4, 0, 1, 1), color .12s cubic-bezier(0.4, 0, 1, 1);
  background: #fff;
  line-height: 1.3
}

.ctc-pg__priority-opt input[type="radio"]:checked+.ctc-pg__priority-opt-lbl {
  background: #26392F;
  border-color: #26392F;
  color: #A7CC85
}

.ctc-pg__priority-opt-lbl:hover {
  border-color: #2D903D;
  background: #f0f7ea
}

.ctc-pg__method-grp {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.ctc-pg__method-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.ctc-pg__method-opt {
  position: relative
}

.ctc-pg__method-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0
}

.ctc-pg__method-opt-lbl {
  display: block;
  padding: 10px 20px;
  border: 2px solid #c5ddb0;
  border-radius: 16px;
  font-size: 16px;
  color: #26392F;
  cursor: pointer;
  transition: background .12s cubic-bezier(0.4, 0, 1, 1), border-color .12s cubic-bezier(0.4, 0, 1, 1);
  background: #fff;
  line-height: 1.3;
  text-align: center
}

.ctc-pg__method-opt input[type="radio"]:checked+.ctc-pg__method-opt-lbl {
  background: #2D903D;
  border-color: #2D903D;
  color: #fff
}

.ctc-pg__method-opt-lbl:hover {
  border-color: #2D903D
}

.ctc-pg__privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px
}

.ctc-pg__privacy-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #2D903D;
  border-radius: 0;
  accent-color: #2D903D;
  cursor: pointer;
  margin-top: 2px
}

.ctc-pg__privacy-text {
  font-size: 16px;
  line-height: 1.55;
  color: #2a3a2e
}

.ctc-pg__privacy-text a {
  color: #2D903D;
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(90deg, #A7CC85 0%, #2D903D 100%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .15s cubic-bezier(0.4, 0, 1, 1)
}

.ctc-pg__privacy-text a:hover {
  background-size: 100% 2px
}

.ctc-pg__submit-btn {
  display: block;
  width: 100%;
  padding: 20px 40px;
  background: linear-gradient(135deg, #26392F 0%, #2D903D 70%, #A7CC85 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: opacity .15s cubic-bezier(0.4, 0, 1, 1), box-shadow .15s cubic-bezier(0.4, 0, 1, 1);
  box-shadow: 1px 6px 28px 0 #26392f14
}

.ctc-pg__submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  background: linear-gradient(135deg, #A7CC85, #2D903D, #26392F) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .15s cubic-bezier(0.4, 0, 1, 1)
}

.ctc-pg__submit-btn:hover::before {
  opacity: 1
}

.ctc-pg__submit-btn:hover {
  opacity: .92;
  box-shadow: 1px 10px 52px 0 #26392f1a
}

.ctc-pg__submit-btn:focus {
  outline: 3px solid #A7CC85;
  outline-offset: 3px
}

.ctc-pg__submit-btn:active {
  opacity: .85
}

.ctc-pg__about-zone {
  padding: 80px 20px;
  position: relative;
  overflow: hidden
}

.ctc-pg__about-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, #e8f4e0 0%, #c8ddb5 55%, #26392F 100%);
  z-index: 0
}

.ctc-pg__about-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none
}

.ctc-pg__about-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #a7cc8540;
  transform: translate(-50%, -50%);
  animation: ctc-ring-pulse 4s ease-in infinite
}

.ctc-pg__about-ring--1 {
  width: 200px;
  height: 200px;
  animation-delay: 0s
}

.ctc-pg__about-ring--2 {
  width: 400px;
  height: 400px;
  animation-delay: 1s
}

.ctc-pg__about-ring--3 {
  width: 650px;
  height: 650px;
  animation-delay: 2s
}

.ctc-pg__about-ring--4 {
  width: 900px;
  height: 900px;
  animation-delay: 3s
}

@keyframes ctc-ring-pulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85)
  }

  30% {
    opacity: 1
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1)
  }
}

.ctc-pg__about-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  align-items: start
}

.ctc-pg__about-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #A7CC85;
  margin-bottom: 10px;
  border-top: 2px solid #A7CC85;
  padding-top: 10px
}

.ctc-pg__about-heading {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 20px
}

.ctc-pg__about-text {
  font-size: 16px;
  line-height: 1.55;
  color: #d0e8c0;
  margin: 0 0 20px
}

.ctc-pg__about-text:last-child {
  margin-bottom: 0
}

.ctc-pg__about-stat-card {
  background: #ffffff14;
  border-radius: 16px;
  padding: 20px;
  border-top: 2px solid #A7CC85;
  border-bottom: 2px solid #a7cc854d;
  box-shadow: inset 2px 4px 6px 0 #26392f12;
  transition: background .15s cubic-bezier(0.4, 0, 1, 1)
}

.ctc-pg__about-stat-card:hover {
  background: #ffffff24
}

.ctc-pg__about-stat-num {
  font-size: 40px;
  font-weight: 900;
  color: #A7CC85;
  line-height: 1.1;
  display: block;
  margin-bottom: 10px
}

.ctc-pg__about-stat-desc {
  font-size: 16px;
  line-height: 1.55;
  color: #d0e8c0
}

@media (max-width: 1280px) {
  .ctc-pg__reach-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }

  .ctc-pg__reach-col-left {
    grid-column: 1 / 2
  }

  .ctc-pg__reach-col-right {
    grid-column: 2 / 3
  }

  .ctc-pg__form-inner {
    gap: 40px
  }

  .ctc-pg__about-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }
}

@media (max-width: 768px) {
  .ctc-pg__reach {
    padding: 40px 20px
  }

  .ctc-pg__reach-inner {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .ctc-pg__reach-col-left {
    grid-column: 1 / 2
  }

  .ctc-pg__reach-col-right {
    grid-column: 1 / 2
  }

  .ctc-pg__reach-heading {
    font-size: 28px
  }

  .ctc-pg__form-zone {
    padding: 40px 20px
  }

  .ctc-pg__form-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .ctc-pg__form-wrap {
    padding: 20px
  }

  .ctc-pg__field-grp--row {
    grid-template-columns: 1fr
  }

  .ctc-pg__priority-opts {
    grid-template-columns: 1fr 1fr
  }

  .ctc-pg__about-zone {
    padding: 40px 20px
  }

  .ctc-pg__about-inner {
    grid-template-columns: 1fr;
    gap: 20px
  }
}

@media (max-width: 480px) {
  .ctc-pg__reach-heading {
    font-size: 22px
  }

  .ctc-pg__priority-opts {
    grid-template-columns: 1fr
  }

  .ctc-pg__method-opts {
    grid-template-columns: 1fr
  }

  .ctc-pg__form-wrap {
    padding: 20px;
    border-radius: 16px
  }

  .ctc-pg__about-stat-num {
    font-size: 28px
  }
}

.abt-us {
  overflow-x: clip;
  position: relative
}

.abt-us * {
  box-sizing: border-box
}

.abt-us ::selection {
  background: #26392F;
  color: #fff
}

.abt-us ::-moz-selection {
  background: #26392F;
  color: #fff
}

.abt-us input::placeholder,
.abt-us textarea::placeholder {
  color: #2a903d73
}

.abt-us .title-blk {
  position: relative;
  padding: 80px 20px 40px;
  background-color: #26392F;
  overflow: hidden
}

.abt-us .title-blk__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none
}

.abt-us .title-blk__grain {
  position: absolute;
  inset: 0;
  background: linear-gradient(157deg, #2a903d2e 0%, #26392f00 55%, #a7cc851f 100%);
  pointer-events: none
}

.abt-us .title-blk__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 40px
}

.abt-us .title-blk__text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.abt-us .title-blk__overline {
  display: inline-block;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #A7CC85;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 2px solid #a7cc8559;
  width: fit-content
}

.abt-us .title-blk__h1 {
  font-size: 72px;
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
  margin: 0
}

.abt-us .title-blk__h1 span {
  color: #A7CC85
}

.abt-us .title-blk__desc {
  font-size: 18px;
  line-height: 1.55;
  color: #ffffffd1;
  margin: 0;
  max-width: 520px
}

.abt-us .title-blk__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #26392F;
  background: #A7CC85;
  padding: 10px 20px;
  border-radius: 0;
  text-decoration: none;
  border: 2px solid transparent;
  width: fit-content;
  position: relative;
  transition: color .12s cubic-bezier(0.4, 0, 1, 1), background .12s cubic-bezier(0.4, 0, 1, 1)
}

.abt-us .title-blk__link::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid #A7CC85;
  border-radius: 0;
  opacity: 0;
  transition: opacity .15s cubic-bezier(0.4, 0, 1, 1)
}

.abt-us .title-blk__link:hover {
  background: transparent;
  color: #A7CC85
}

.abt-us .title-blk__link:hover::before {
  opacity: 1
}

.abt-us .title-blk__link:focus-visible {
  outline: 3px solid #A7CC85;
  outline-offset: 3px
}

.abt-us .title-blk__img-col {
  flex: 0 0 380px;
  position: relative;
  align-self: flex-end
}

.abt-us .title-blk__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 1px 10px 52px 0 #26392f1a
}

.abt-us .title-blk__img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .18s cubic-bezier(0.4, 0, 1, 1)
}

.abt-us .title-blk__img-wrap:hover img {
  transform: scale(1.04)
}

.abt-us .title-blk__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, #26392f8c 100%);
  pointer-events: none;
  border-radius: 16px
}

.abt-us .title-blk__dots {
  position: absolute;
  bottom: 20px;
  right: -10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none
}

.abt-us .title-blk__dot {
  border-radius: 50%;
  background: #a7cc8559;
  display: block
}

.abt-us .title-blk__dot--lg {
  width: 18px;
  height: 18px
}

.abt-us .title-blk__dot--md {
  width: 12px;
  height: 12px;
  margin-left: 6px
}

.abt-us .title-blk__dot--sm {
  width: 8px;
  height: 8px;
  margin-left: 3px
}

.abt-us .title-blk__divider {
  width: 100%;
  height: 40px;
  background: linear-gradient(180deg, #26392F 0%, transparent 100%);
  display: block
}

.abt-us .story-blk {
  padding: 80px 20px 40px;
  background: #fff;
  position: relative
}

.abt-us .story-blk__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

.abt-us .story-blk__left {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.abt-us .story-blk__overline {
  display: inline-block;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #2D903D;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 2px solid #2d903d38;
  width: fit-content
}

.abt-us .story-blk__h2 {
  font-size: 40px;
  line-height: 1.1;
  color: #26392F;
  font-weight: 800;
  margin: 0
}

.abt-us .story-blk__para {
  font-size: 18px;
  line-height: 1.55;
  color: #1e2d25;
  margin: 0
}

.abt-us .story-blk__metrics {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 10px
}

.abt-us .story-blk__metric {
  flex: 1 1 0;
  background: linear-gradient(135deg, #26392F 0%, #2D903D 60%, #A7CC85 100%);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 1px 6px 28px 0 #26392f14;
  transition: box-shadow .15s cubic-bezier(0.4, 0, 1, 1);
  animation: metric-rotate-in .16s cubic-bezier(0.4, 0, 1, 1) both
}

@keyframes metric-rotate-in {
  from {
    opacity: 0;
    transform: rotate(-4deg) translateY(20px)
  }

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

.abt-us .story-blk__metric:hover {
  box-shadow: 1px 10px 52px 0 #26392f1a
}

.abt-us .story-blk__metric-num {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff
}

.abt-us .story-blk__metric-label {
  font-size: 16px;
  line-height: 1.3;
  color: #ffffffd9
}

.abt-us .story-blk__right {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.abt-us .story-blk__img-wrap {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 1px 6px 28px 0 #26392f14
}

.abt-us .story-blk__img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .18s cubic-bezier(0.4, 0, 1, 1)
}

.abt-us .story-blk__img-wrap:hover img {
  transform: scale(1.04)
}

.abt-us .story-blk__img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, #26392fc7 0%, transparent 100%);
  padding: 20px;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  font-weight: 600
}

.abt-us .story-blk__values {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.abt-us .story-blk__val-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 16px;
  background: #a7cc851a;
  border: 1.5px solid #a7cc8547;
  transition: background .12s cubic-bezier(0.4, 0, 1, 1), border-color .12s cubic-bezier(0.4, 0, 1, 1);
  cursor: default
}

.abt-us .story-blk__val-item:hover {
  background: #2d903d1a;
  border-color: #2d903d61
}

.abt-us .story-blk__val-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px
}

.abt-us .story-blk__val-text {
  font-size: 16px;
  line-height: 1.55;
  color: #1e2d25
}

.abt-us .story-blk__val-text strong {
  color: #26392F;
  font-weight: 700
}

.abt-us .story-blk__divider {
  width: 100%;
  height: 40px;
  background: linear-gradient(180deg, #fff 0%, transparent 100%);
  display: block
}

.abt-us .team-blk {
  padding: 40px 20px 80px;
  position: relative;
  background: #f3f7f2;
  background-image: url(/graphics_archive/DSCN9349.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed
}

.abt-us .team-blk__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(157deg, #26392fe0 0%, #2d903db3 55%, #a7cc85d1 100%);
  pointer-events: none
}

.abt-us .team-blk__inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px
}

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

.abt-us .team-blk__header-text {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.abt-us .team-blk__overline {
  display: inline-block;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #A7CC85;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 2px solid #a7cc8566;
  width: fit-content
}

.abt-us .team-blk__h2 {
  font-size: 40px;
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
  margin: 0
}

.abt-us .team-blk__subtitle {
  font-size: 18px;
  line-height: 1.55;
  color: #ffffffd9;
  margin: 0;
  max-width: 380px
}

.abt-us .team-blk__approach {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.abt-us .team-blk__step {
  background: #ffffff14;
  border: 1.5px solid #ffffff29;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(6px);
  transition: background .15s cubic-bezier(0.4, 0, 1, 1), border-color .15s cubic-bezier(0.4, 0, 1, 1), box-shadow .15s cubic-bezier(0.4, 0, 1, 1);
  animation: step-rotate-in .16s cubic-bezier(0.4, 0, 1, 1) both
}

@keyframes step-rotate-in {
  from {
    opacity: 0;
    transform: rotate(3deg) translateY(18px)
  }

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

.abt-us .team-blk__step:hover {
  background: #ffffff26;
  border-color: #a7cc8573;
  box-shadow: 1px 6px 28px 0 #26392f14
}

.abt-us .team-blk__step-num {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  color: #A7CC85
}

.abt-us .team-blk__step-title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  margin: 0
}

.abt-us .team-blk__step-desc {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffd1;
  margin: 0
}

.abt-us .team-blk__person-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  background: #ffffff12;
  border: 1.5px solid #ffffff24;
  border-radius: 28px;
  padding: 40px;
  backdrop-filter: blur(8px)
}

.abt-us .team-blk__portrait-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px
}

.abt-us .team-blk__portrait-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #A7CC85;
  box-shadow: 1px 6px 28px 0 #26392f14
}

.abt-us .team-blk__portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .18s cubic-bezier(0.4, 0, 1, 1)
}

.abt-us .team-blk__portrait-wrap:hover img {
  transform: scale(1.06)
}

.abt-us .team-blk__person-name {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  text-align: center
}

.abt-us .team-blk__person-role {
  font-size: 16px;
  line-height: 1.3;
  color: #A7CC85;
  text-align: center
}

.abt-us .team-blk__person-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.abt-us .team-blk__quote-mark {
  width: 36px;
  height: 28px;
  flex-shrink: 0
}

.abt-us .team-blk__quote {
  font-size: 22px;
  line-height: 1.55;
  color: #fff;
  font-weight: 600;
  font-style: italic;
  margin: 0
}

.abt-us .team-blk__person-bio {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffd1;
  margin: 0
}

.abt-us .team-blk__dots {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none
}

.abt-us .team-blk__dot {
  border-radius: 50%;
  background: #a7cc8547;
  display: block
}

.abt-us .team-blk__dot--xl {
  width: 22px;
  height: 22px
}

.abt-us .team-blk__dot--lg {
  width: 14px;
  height: 14px;
  margin-left: 8px
}

.abt-us .team-blk__dot--sm {
  width: 8px;
  height: 8px;
  margin-left: 4px
}

@media (max-width: 1280px) {
  .abt-us .title-blk__h1 {
    font-size: 40px
  }

  .abt-us .title-blk__img-col {
    flex: 0 0 300px
  }

  .abt-us .story-blk__inner {
    grid-template-columns: 1fr 1fr
  }

  .abt-us .team-blk__approach {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (max-width: 768px) {
  .abt-us .title-blk__inner {
    flex-direction: column;
    align-items: flex-start
  }

  .abt-us .title-blk__img-col {
    flex: 0 0 auto;
    width: 100%
  }

  .abt-us .title-blk__img-wrap img {
    height: 220px
  }

  .abt-us .title-blk__h1 {
    font-size: 40px
  }

  .abt-us .story-blk__inner {
    grid-template-columns: 1fr
  }

  .abt-us .story-blk__metrics {
    flex-direction: row
  }

  .abt-us .team-blk__approach {
    grid-template-columns: 1fr 1fr
  }

  .abt-us .team-blk__person-row {
    flex-direction: column;
    align-items: center
  }

  .abt-us .team-blk__header {
    flex-direction: column;
    align-items: flex-start
  }

  .abt-us .team-blk__h2 {
    font-size: 28px
  }
}

@media (max-width: 480px) {
  .abt-us .title-blk {
    padding: 40px 20px 20px
  }

  .abt-us .title-blk__h1 {
    font-size: 28px
  }

  .abt-us .story-blk__metrics {
    flex-direction: column
  }

  .abt-us .team-blk__approach {
    grid-template-columns: 1fr
  }

  .abt-us .story-blk__h2 {
    font-size: 28px
  }

  .abt-us .team-blk__person-row {
    padding: 20px
  }

  .abt-us .story-blk {
    padding: 40px 20px 20px
  }

  .abt-us .team-blk {
    padding: 20px 20px 40px
  }
}

.lnch {
  width: 100%;
  overflow-x: hidden;
  background: #fff
}

.lnch .pg-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px
}

.lnch .tb {
  position: relative;
  padding: 80px 0 40px;
  background: linear-gradient(170deg, transparent 0%, #e8f2e0 40%, #A7CC85 75%, #2D903D 100%)
}

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

.lnch .tb__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: #26392F;
  opacity: .18
}

.lnch .tb__dot--a {
  top: 15%;
  left: 8%
}

.lnch .tb__dot--b {
  top: 25%;
  left: 14%
}

.lnch .tb__dot--c {
  top: 38%;
  left: 10%
}

.lnch .tb__dot--d {
  top: 52%;
  left: 18%
}

.lnch .tb__dot--e {
  top: 65%;
  left: 12%
}

.lnch .tb__dot--f {
  top: 20%;
  right: 10%
}

.lnch .tb__dot--g {
  top: 35%;
  right: 16%
}

.lnch .tb__dot--h {
  top: 50%;
  right: 8%
}

.lnch .tb__dot--i {
  top: 70%;
  right: 14%
}

.lnch .tb__grid {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 40px;
  position: relative;
  z-index: 1
}

.lnch .tb__text {
  flex: 1 1 55%;
  padding-bottom: 20px
}

.lnch .tb__overline {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #26392F;
  margin-bottom: 20px;
  opacity: 0;
  animation: tb-fade-in .16s cubic-bezier(0.4, 0, 1, 1) .1s forwards
}

.lnch .tb__h1 {
  font-size: 72px;
  line-height: 1.1;
  color: #26392F;
  margin: 0 0 20px;
  font-weight: 900;
  opacity: 0;
  animation: tb-bounce-in .18s cubic-bezier(0.4, 0, 1, 1) .18s forwards
}

.lnch .tb__pts {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  animation: tb-fade-in .16s cubic-bezier(0.4, 0, 1, 1) .28s forwards
}

.lnch .tb__pts li {
  font-size: 18px;
  line-height: 1.55;
  color: #26392F;
  padding-left: 20px;
  border-left: 3px solid #2D903D
}

.lnch .tb__img-wrap {
  flex: 0 0 38%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  opacity: 0;
  animation: tb-fade-in .18s cubic-bezier(0.4, 0, 1, 1) .22s forwards
}

.lnch .tb__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .16s cubic-bezier(0.4, 0, 1, 1)
}

.lnch .tb__img-wrap:hover .tb__img {
  transform: scale(1.04)
}

@keyframes tb-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

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

@keyframes tb-bounce-in {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.97)
  }

  70% {
    opacity: 1;
    transform: translateY(-4px) scale(1.01)
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.lnch .div-line {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block
}

.lnch .div-line svg {
  display: block;
  width: 100%
}

.lnch .nofit {
  background: #fff;
  padding: 80px 0 40px
}

.lnch .nofit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

.lnch .nofit__left {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.lnch .nofit__overline {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #2D903D
}

.lnch .nofit__h2 {
  font-size: 40px;
  line-height: 1.1;
  color: #26392F;
  font-weight: 800;
  margin: 0
}

.lnch .nofit__lead {
  font-size: 18px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0
}

.lnch .nofit__img-wrap {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 1px 6px 28px 0 #26392f14
}

.lnch .nofit__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .14s cubic-bezier(0.4, 0, 1, 1)
}

.lnch .nofit__img-wrap:hover .nofit__img {
  transform: scale(1.04)
}

.lnch .nofit__right {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.lnch .nofit__card {
  background: #f4f8f0;
  border-radius: 16px;
  padding: 20px;
  border-top: 3px solid #A7CC85;
  box-shadow: 1px 1px 5px 0 #26392f12;
  transition: box-shadow .12s cubic-bezier(0.4, 0, 1, 1), opacity .12s cubic-bezier(0.4, 0, 1, 1)
}

.lnch .nofit__card:hover {
  box-shadow: 1px 6px 28px 0 #26392f14;
  opacity: .92
}

.lnch .nofit__card-h {
  font-size: 18px;
  font-weight: 700;
  color: #26392F;
  margin: 0 0 10px
}

.lnch .nofit__card-p {
  font-size: 16px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0
}

.lnch .team {
  background: linear-gradient(135deg, #26392F 0%, #2D903D 55%, #A7CC85 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

.lnch .team__bg-anim {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 28px;
  background: #a7cc851f;
  animation: spot-breathe 4s ease-in-out infinite;
  pointer-events: none
}

@keyframes spot-breathe {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .5
  }

  50% {
    transform: translate(-50%, -50%) scale(1.18);
    opacity: 1
  }
}

.lnch .team__inner {
  position: relative;
  z-index: 1
}

.lnch .team__overline {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #A7CC85;
  margin-bottom: 20px
}

.lnch .team__h2 {
  font-size: 40px;
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
  margin: 0 0 40px;
  max-width: 600px
}

.lnch .team__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start
}

.lnch .team__portrait-col {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.lnch .team__portrait-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 1px 10px 52px 0 #2d903d1a
}

.lnch .team__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .14s cubic-bezier(0.4, 0, 1, 1)
}

.lnch .team__portrait-wrap:hover .team__portrait-img {
  transform: scale(1.04)
}

.lnch .team__name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0
}

.lnch .team__role {
  font-size: 16px;
  color: #A7CC85;
  margin: 0;
  line-height: 1.3
}

.lnch .team__bio-col {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.lnch .team__bio-p {
  font-size: 18px;
  line-height: 1.55;
  color: #e8f2e0;
  margin: 0
}

.lnch .team__creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px
}

.lnch .team__cred-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  background: #ffffff14;
  border-radius: 16px;
  padding: 20px;
  border-left: 3px solid #A7CC85;
  border-right: 1px solid #a7cc8533;
  border-top: 1px solid #a7cc8533;
  border-bottom: 1px solid #a7cc8533;
  transition: background .12s cubic-bezier(0.4, 0, 1, 1)
}

.lnch .team__cred-item:hover {
  background: #ffffff24
}

.lnch .team__cred-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px
}

.lnch .team__cred-text {
  font-size: 16px;
  line-height: 1.55;
  color: #fff;
  margin: 0
}

.lnch .scale {
  background: #f4f8f0;
  padding: 80px 0
}

.lnch .scale__top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px
}

.lnch .scale__head {
  flex: 1 1 50%
}

.lnch .scale__overline {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #2D903D;
  margin-bottom: 20px
}

.lnch .scale__h2 {
  font-size: 40px;
  line-height: 1.1;
  color: #26392F;
  font-weight: 800;
  margin: 0
}

.lnch .scale__desc {
  flex: 1 1 40%;
  font-size: 18px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0
}

.lnch .scale__metrics {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border: 2px solid #A7CC85;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 1px 6px 28px 0 #26392f14
}

.lnch .scale__metric {
  flex: 1 1 0;
  padding: 40px 20px;
  text-align: center;
  background: #fff;
  position: relative;
  transition: background .12s cubic-bezier(0.4, 0, 1, 1)
}

.lnch .scale__metric:hover {
  background: #e8f2e0
}

.lnch .scale__metric+.scale__metric::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: #A7CC85
}

.lnch .scale__metric-num {
  font-size: 40px;
  font-weight: 900;
  color: #2D903D;
  line-height: 1.1;
  display: block
}

.lnch .scale__metric-label {
  font-size: 16px;
  color: #26392F;
  line-height: 1.3;
  display: block;
  margin-top: 10px
}

.lnch .scale__img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.lnch .scale__img-wrap {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 1px 1px 5px 0 #26392f12
}

.lnch .scale__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .14s cubic-bezier(0.4, 0, 1, 1)
}

.lnch .scale__img-wrap:hover .scale__img {
  transform: scale(1.04)
}

.lnch .scale__img-caption {
  font-size: 16px;
  color: #26392F;
  line-height: 1.3;
  padding: 10px 20px;
  background: #fff;
  margin: 0
}

.lnch .cases {
  background: #fff;
  padding: 80px 0
}

.lnch .cases__overline {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #2D903D;
  margin-bottom: 20px
}

.lnch .cases__h2 {
  font-size: 40px;
  line-height: 1.1;
  color: #26392F;
  font-weight: 800;
  margin: 0 0 40px
}

.lnch .cases__list {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.lnch .cases__item {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 20px;
  align-items: start;
  background: #f4f8f0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 1px 1px 5px 0 #26392f12;
  border-top: 2px solid #A7CC85;
  transition: box-shadow .12s cubic-bezier(0.4, 0, 1, 1)
}

.lnch .cases__item:hover {
  box-shadow: 1px 6px 28px 0 #26392f14
}

.lnch .cases__avatar {
  width: 80px;
  height: 80px;
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 0
}

.lnch .cases__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.lnch .cases__avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 0;
  background: #26392F;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.lnch .cases__avatar-initials {
  font-size: 22px;
  font-weight: 900;
  color: #A7CC85;
  line-height: 1
}

.lnch .cases__person {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.lnch .cases__person-name {
  font-size: 18px;
  font-weight: 800;
  color: #26392F;
  margin: 0
}

.lnch .cases__person-ctx {
  font-size: 16px;
  color: #2a2a2a;
  line-height: 1.3;
  margin: 0
}

.lnch .cases__person-sit {
  font-size: 16px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0
}

.lnch .cases__outcome {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.lnch .cases__outcome-label {
  font-size: 16px;
  font-weight: 700;
  color: #2D903D;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0
}

.lnch .cases__outcome-text {
  font-size: 16px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0
}

@media (max-width: 1280px) {
  .lnch .tb__h1 {
    font-size: 56px
  }

  .lnch .team__layout {
    grid-template-columns: 220px 1fr
  }
}

@media (max-width: 768px) {
  .lnch .tb__grid {
    flex-direction: column
  }

  .lnch .tb__h1 {
    font-size: 40px
  }

  .lnch .tb__img-wrap {
    flex: 0 0 auto;
    width: 100%
  }

  .lnch .tb__img {
    height: 240px
  }

  .lnch .nofit__grid {
    grid-template-columns: 1fr
  }

  .lnch .team__layout {
    grid-template-columns: 1fr
  }

  .lnch .team__portrait-wrap {
    max-width: 200px
  }

  .lnch .scale__top {
    flex-direction: column;
    align-items: flex-start
  }

  .lnch .scale__metrics {
    flex-direction: column;
    border-radius: 16px
  }

  .lnch .scale__metric+.scale__metric::before {
    left: 20px;
    right: 20px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 2px
  }

  .lnch .scale__img-row {
    grid-template-columns: 1fr
  }

  .lnch .cases__item {
    grid-template-columns: 60px 1fr
  }

  .lnch .cases__outcome {
    grid-column: 1 / -1
  }

  .lnch .cases__avatar {
    width: 60px;
    height: 60px
  }

  .lnch .cases__avatar-placeholder {
    width: 60px;
    height: 60px
  }
}

@media (max-width: 480px) {
  .lnch .tb__h1 {
    font-size: 28px
  }

  .lnch .nofit__h2,
  .lnch .team__h2,
  .lnch .scale__h2,
  .lnch .cases__h2 {
    font-size: 28px
  }

  .lnch .scale__metric-num {
    font-size: 28px
  }

  .lnch .cases__item {
    grid-template-columns: 1fr
  }

  .lnch .cases__avatar,
  .lnch .cases__avatar-placeholder {
    width: 60px;
    height: 60px
  }
}

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

.intv a {
  text-decoration: none
}

.intv__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px
}

.intv__hero {
  background: linear-gradient(158deg, #26392F 0%, #2D903D 55%, #A7CC85 100%);
  padding: 80px 20px;
  position: relative
}

.intv__hero::after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 0;
  right: 0;
  height: 56px;
  background: #f4f7f2;
  border-radius: 50% 50% 0 0 / 28px 28px 0 0;
  z-index: 1
}

.intv__hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center
}

.intv__hero-overline {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #A7CC85;
  margin-bottom: 20px
}

.intv__hero-overline::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #A7CC85;
  vertical-align: middle;
  margin-right: 10px
}

.intv__hero-h1 {
  font-size: 40px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 20px
}

.intv__hero-desc {
  font-size: 18px;
  line-height: 1.55;
  color: #ffffffe0;
  margin: 0 0 40px;
  max-width: 520px
}

.intv__hero-meta {
  display: flex;
  flex-direction: row;
  gap: 40px
}

.intv__hero-stat {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.intv__hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #A7CC85;
  line-height: 1.1
}

.intv__hero-stat-label {
  font-size: 16px;
  color: #ffffffbf;
  line-height: 1.3
}

.intv__hero-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 1px 10px 52px 0 #26392f1a
}

.intv__hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffffff2e 0%, #a3cc8538 100%);
  z-index: 1;
  pointer-events: none
}

.intv__hero-img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .16s cubic-bezier(0.4, 0, 1, 1)
}

.intv__hero-img-wrap:hover .intv__hero-img {
  transform: scale(1.04)
}

.intv__dots-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden
}

.intv__dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 0;
  background: #a7cc852e
}

.intv__posts-area {
  background: #f4f7f2;
  padding: 80px 20px;
  position: relative;
  z-index: 2
}

.intv__posts-area::after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 0;
  right: 0;
  height: 56px;
  background: #fff;
  border-radius: 50% 50% 0 0 / 28px 28px 0 0;
  z-index: 1
}

.intv__posts-head {
  max-width: 1140px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px
}

.intv__posts-overline {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #2D903D;
  margin-bottom: 10px
}

.intv__posts-overline::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #2D903D;
  vertical-align: middle;
  margin-right: 10px
}

.intv__posts-h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #26392F;
  margin: 0
}

.intv__posts-count {
  font-size: 16px;
  color: #26392F;
  opacity: .55;
  white-space: nowrap;
  padding-bottom: 4px
}

.intv__grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.intv__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 1px 6px 28px 0 #2d903d14;
  display: flex;
  flex-direction: column;
  transition: box-shadow .14s cubic-bezier(0.4, 0, 1, 1), opacity .14s cubic-bezier(0.4, 0, 1, 1);
  animation: intv-slide-in-left .15s cubic-bezier(0.4, 0, 1, 1) both
}

.intv__card:nth-child(even) {
  animation-name: intv-slide-in-right
}

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

.intv__card:nth-child(2) {
  animation-delay: .08s
}

.intv__card:nth-child(3) {
  animation-delay: .12s
}

.intv__card:nth-child(4) {
  animation-delay: .16s
}

.intv__card:nth-child(5) {
  animation-delay: .2s
}

.intv__card:nth-child(6) {
  animation-delay: .24s
}

@keyframes intv-slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-32px)
  }

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

@keyframes intv-slide-in-right {
  from {
    opacity: 0;
    transform: translateX(32px)
  }

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

.intv__card:hover {
  box-shadow: 1px 10px 52px 0 #2d903d1a;
  opacity: .93
}

.intv__card-img-box {
  position: relative;
  overflow: hidden;
  height: 180px;
  flex-shrink: 0
}

.intv__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .16s cubic-bezier(0.4, 0, 1, 1)
}

.intv__card:hover .intv__card-img {
  transform: scale(1.05)
}

.intv__card-tag-bar {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2
}

.intv__card-tag {
  display: inline-block;
  background: #26392F;
  color: #A7CC85;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0
}

.intv__card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1
}

.intv__card-h3 {
  font-size: 18px;
  line-height: 1.3;
  color: #26392F;
  margin: 0;
  font-weight: 700
}

.intv__card-desc {
  font-size: 16px;
  line-height: 1.55;
  color: #3a4a3e;
  margin: 0;
  flex: 1
}

.intv__card-foot {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid #26392f17
}

.intv__card-author {
  font-size: 16px;
  color: #26392F;
  font-weight: 600;
  opacity: .75
}

.intv__card-readtime {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #2D903D
}

.intv__card-readtime-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0
}

.intv__card-link {
  display: block;
  margin-top: 10px;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #2D903D;
  border-radius: 0;
  color: #2D903D;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: color .14s cubic-bezier(0.4, 0, 1, 1)
}

.intv__card-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #2D903D;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .14s cubic-bezier(0.4, 0, 1, 1);
  z-index: 0
}

.intv__card-link:hover {
  color: #fff
}

.intv__card-link:hover::before {
  transform: scaleX(1)
}

.intv__card-link span {
  position: relative;
  z-index: 1
}

.intv__about-area {
  background: #fff;
  padding: 80px 20px;
  position: relative;
  z-index: 2
}

.intv__about-area::after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 0;
  right: 0;
  height: 56px;
  background: #26392F;
  border-radius: 50% 50% 0 0 / 28px 28px 0 0;
  z-index: 1
}

.intv__about-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

.intv__about-overline {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #2D903D;
  margin-bottom: 10px
}

.intv__about-overline::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #2D903D;
  vertical-align: middle;
  margin-right: 10px
}

.intv__about-h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #26392F;
  margin: 0 0 20px
}

.intv__about-p {
  font-size: 16px;
  line-height: 1.75;
  color: #2e3e33;
  margin: 0 0 20px
}

.intv__about-p:last-of-type {
  margin-bottom: 0
}

.intv__about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.intv__feat-item {
  background: #f4f7f2;
  border-radius: 16px;
  padding: 20px;
  border-top: 3px solid #A7CC85;
  box-shadow: 1px 1px 5px 0 #26392f12;
  transition: box-shadow .12s ease-in
}

.intv__feat-item:hover {
  box-shadow: 1px 6px 28px 0 #26392f14
}

.intv__feat-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 10px
}

.intv__feat-h4 {
  font-size: 16px;
  font-weight: 700;
  color: #26392F;
  margin: 0 0 10px;
  line-height: 1.3
}

.intv__feat-p {
  font-size: 16px;
  line-height: 1.55;
  color: #3a4a3e;
  margin: 0
}

.intv__cta-area {
  background: #26392F;
  padding: 80px 20px;
  position: relative;
  z-index: 2;
  overflow: hidden
}

.intv__cta-diamonds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.intv__diamond {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1.5px solid #a7cc8521;
  transform: rotate(45deg)
}

.intv__cta-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px
}

.intv__cta-text {
  flex: 1
}

.intv__cta-overline {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #A7CC85;
  margin-bottom: 10px
}

.intv__cta-overline::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #A7CC85;
  vertical-align: middle;
  margin-right: 10px
}

.intv__cta-h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 20px
}

.intv__cta-p {
  font-size: 18px;
  line-height: 1.55;
  color: #fffc;
  margin: 0;
  max-width: 480px
}

.intv__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  flex-shrink: 0
}

.intv__cta-btn-primary {
  display: inline-block;
  padding: 20px 40px;
  background: #2D903D;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: opacity .12s ease-in, box-shadow .12s ease-in;
  box-shadow: 1px 6px 28px 0 #2d903d14
}

.intv__cta-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid #A7CC85;
  border-radius: 0;
  opacity: 0;
  transition: opacity .12s ease-in
}

.intv__cta-btn-primary:hover {
  opacity: .88;
  box-shadow: 1px 10px 52px 0 #2d903d1a
}

.intv__cta-btn-primary:hover::after {
  opacity: 1
}

.intv__cta-btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: #A7CC85;
  font-size: 16px;
  font-weight: 600;
  border: 1.5px solid #a7cc8566;
  border-radius: 0;
  transition: border-color .14s cubic-bezier(0.4, 0, 1, 1), color .14s cubic-bezier(0.4, 0, 1, 1)
}

.intv__cta-btn-secondary:hover {
  border-color: #A7CC85;
  color: #fff
}

@media (max-width: 1280px) {
  .intv__hero-inner {
    grid-template-columns: 1fr 300px
  }

  .intv__grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (max-width: 768px) {
  .intv__hero-inner {
    grid-template-columns: 1fr
  }

  .intv__hero-img-wrap {
    display: none
  }

  .intv__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .intv__about-inner {
    grid-template-columns: 1fr
  }

  .intv__cta-inner {
    flex-direction: column;
    align-items: flex-start
  }

  .intv__posts-head {
    flex-direction: column;
    align-items: flex-start
  }
}

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

  .intv__hero-h1 {
    font-size: 28px
  }

  .intv__about-features {
    grid-template-columns: 1fr
  }

  .intv__hero-meta {
    gap: 20px
  }
}

.success-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: #fff
}

.success-page .success-page__wrapper {
  max-width: 1140px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px
}

.success-page .success-page__card {
  background: #f4f8f2;
  border-radius: 28px;
  padding: 80px;
  max-width: 620px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  box-shadow: 1px 10px 52px 0 #26392f1a;
  border: 1.5px solid #A7CC85
}

.success-page .success-page__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 28px;
  background: #26392F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.success-page .success-page__icon-wrap svg {
  display: block
}

.success-page .success-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center
}

.success-page .success-page__overline {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #2D903D;
  line-height: 1.1
}

.success-page .success-page__heading {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  color: #26392F;
  margin: 0
}

.success-page .success-page__text {
  font-size: 18px;
  line-height: 1.55;
  color: #2a3528;
  margin: 0;
  max-width: 440px
}

.success-page .success-page__divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #26392F 0%, #2D903D 50%, #A7CC85 100%);
  border-radius: 0;
  flex-shrink: 0
}

.success-page .success-page__actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center
}

.success-page .success-page__btn--primary {
  display: inline-block;
  padding: 20px 40px;
  background: #26392F;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  border-radius: 16px;
  text-decoration: none;
  border: 2px solid #26392F;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .15s cubic-bezier(0.4, 0, 1, 1), color .15s cubic-bezier(0.4, 0, 1, 1), box-shadow .12s cubic-bezier(0.4, 0, 1, 1);
  box-shadow: 1px 6px 28px 0 #2d903d14
}

.success-page .success-page__btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid #A7CC85;
  opacity: 0;
  transition: opacity .12s cubic-bezier(0.4, 0, 1, 1);
  pointer-events: none
}

.success-page .success-page__btn--primary:hover {
  background: #2D903D;
  color: #fff;
  box-shadow: 1px 10px 52px 0 #2d903d1a
}

.success-page .success-page__btn--primary:hover::before {
  opacity: 1
}

.success-page .success-page__btn--primary:focus-visible {
  outline: 3px solid #A7CC85;
  outline-offset: 3px
}

.success-page .success-page__btn--secondary {
  display: inline-block;
  padding: 20px 40px;
  background: transparent;
  color: #26392F;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  border-radius: 16px;
  text-decoration: none;
  border: 2px solid #A7CC85;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .17s cubic-bezier(0.4, 0, 1, 1), border-color .13s cubic-bezier(0.4, 0, 1, 1), color .13s cubic-bezier(0.4, 0, 1, 1)
}

.success-page .success-page__btn--secondary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 2px solid #2D903D;
  opacity: 0;
  transition: opacity .14s cubic-bezier(0.4, 0, 1, 1);
  pointer-events: none
}

.success-page .success-page__btn--secondary:hover {
  background: #A7CC85;
  color: #26392F
}

.success-page .success-page__btn--secondary:hover::after {
  opacity: 1
}

.success-page .success-page__btn--secondary:focus-visible {
  outline: 3px solid #26392F;
  outline-offset: 3px
}

.success-page .success-page__note {
  font-size: 16px;
  line-height: 1.55;
  color: #4a5e50;
  text-align: center;
  margin: 0;
  max-width: 480px
}

.success-page .success-page__note strong {
  color: #26392F;
  font-weight: 700
}

@media (max-width: 768px) {
  .success-page .success-page__card {
    padding: 40px 20px;
    gap: 20px
  }

  .success-page .success-page__heading {
    font-size: 28px
  }

  .success-page .success-page__actions {
    flex-direction: column;
    gap: 10px;
    width: 100%
  }

  .success-page .success-page__btn--primary,
  .success-page .success-page__btn--secondary {
    width: 100%;
    text-align: center;
    padding: 20px
  }
}

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

  .success-page .success-page__card {
    padding: 40px 10px
  }

  .success-page .success-page__heading {
    font-size: 22px
  }

  .success-page .success-page__text {
    font-size: 16px
  }
}