html {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background-color: #fff;
  color: #1b2a14
}

.pgwrap {
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px
}

.hd {
  background: linear-gradient(135deg, #EDF2EC 0%, #fff 60%, #f4f9f1 100%);
  border-bottom: 2px solid #A9D18D;
  position: relative
}

.hd-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 120px
}

.hd-brand {
  display: flex;
  align-items: center;
  padding: 40px 40px 40px 0;
  flex-shrink: 0;
  position: relative
}

.hd-brand::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #A9D18D 30%, #69A444 70%, transparent)
}

.logohex {
  width: 64px;
  height: 64px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.logohex svg.hexframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px
}

.logohex img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  position: relative;
  z-index: 1
}

.brandname {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.brandname-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  color: #1b2a14;
  letter-spacing: -.5px
}

.brandname-sub {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: #69A444;
  letter-spacing: .4px;
  margin-top: 4px
}

.hd-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0 20px 40px;
  background: linear-gradient(to right, #69a4440f 0%, transparent 80%)
}

.hd-addr {
  font-size: 14px;
  line-height: 1.55;
  color: #3d5c2a;
  letter-spacing: .2px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px
}

.hd-addr .pi {
  color: #69A444;
  font-size: 14px
}

.navlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center
}

.navlist li {
  position: relative
}

.navlist li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  color: #1b2a14;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1), background-color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.navlist li a:hover,
.navlist li a:focus-visible {
  color: #69A444;
  border-color: #69A444;
  background-color: #EDF2EC;
  outline: none
}

.navlist li a:focus-visible {
  outline: 3px solid #69A444;
  outline-offset: 2px
}

.navlist li a .pi {
  font-size: 14px;
  color: #69A444
}

.navitem-parent>a {
  position: relative
}

.navitem-parent>a .chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #69A444;
  border-bottom: 2px solid #69A444;
  transform: rotate(45deg);
  margin-left: 4px;
  transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.navitem-parent:hover>a .chevron,
.navitem-parent:focus-within>a .chevron {
  transform: rotate(-135deg)
}

.subdrop {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 2px solid #A9D18D;
  border-radius: 13px;
  box-shadow: 0 4px 28px -2px #69a44417 0 8px 36px -2px #69a4441f;
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .28s cubic-bezier(0.34, 1.56, 0.64, 1), transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 200
}

.navitem-parent:hover .subdrop,
.navitem-parent:focus-within .subdrop {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0)
}

.subdrop li a {
  font-size: 14px;
  font-weight: 400;
  color: #1b2a14;
  padding: 8px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1), background-color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.subdrop li a:hover,
.subdrop li a:focus-visible {
  color: #69A444;
  background-color: #EDF2EC;
  outline: none
}

.subdrop li a:focus-visible {
  outline: 3px solid #69A444;
  outline-offset: 2px
}

.ft {
  background: #1b2a14;
  padding: 80px 0 40px
}

.ft-card {
  background: #243718;
  border-radius: 22px;
  box-shadow: 0 4px 28px -2px #69a44417;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start
}

.ft-brand {
  flex: 0 0 auto;
  min-width: 180px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.ft-logowrap {
  display: flex;
  align-items: center;
  gap: 20px
}

.ft-hexlogo {
  width: 56px;
  height: 56px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ft-hexlogo svg.hexframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px
}

.ft-hexlogo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  position: relative;
  z-index: 1
}

.ft-bname {
  font-size: 20px;
  font-weight: 700;
  color: #EDF2EC;
  line-height: 1.1
}

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

.ft-contact a,
.ft-contact span {
  font-size: 14px;
  line-height: 1.55;
  color: #A9D18D;
  text-decoration: none;
  letter-spacing: .2px;
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.ft-contact a:hover {
  color: #EDF2EC
}

.ft-contact a:focus-visible {
  outline: 3px solid #A9D18D;
  outline-offset: 2px;
  border-radius: 4px
}

.ft-contact .pi {
  font-size: 14px;
  color: #69A444;
  margin-top: 2px;
  flex-shrink: 0
}

.ft-nav {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-end
}

.ft-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px
}

.ft-col-label {
  font-size: 14px;
  font-weight: 700;
  color: #69A444;
  letter-spacing: .8px;
  text-transform: uppercase;
  line-height: 1.55;
  margin-bottom: 4px
}

.ft-col a {
  font-size: 14px;
  line-height: 1.55;
  color: #A9D18D;
  text-decoration: none;
  letter-spacing: .2px;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ft-col a:hover {
  color: #EDF2EC;
  border-bottom-color: #69A444
}

.ft-col a:focus-visible {
  outline: 3px solid #A9D18D;
  outline-offset: 2px;
  border-radius: 4px
}

.ft-bottom {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid #a9d18d26;
  padding-top: 20px
}

.ft-copy {
  font-size: 14px;
  color: #a9d18d99;
  line-height: 1.55
}

.ck-bar {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  max-width: 760px;
  background: #fff;
  border: 2px solid #A9D18D;
  border-radius: 13px;
  box-shadow: 0 8px 36px -2px #69a4441f;
  padding: 20px 40px;
  z-index: 4000;
  display: none
}

.ck-bar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.ck-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.55;
  color: #1b2a14;
  min-width: 200px
}

.ck-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0
}

.ck-btn {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  padding: 8px 20px;
  border-radius: 8px;
  border: 2px solid #69A444;
  cursor: pointer;
  min-width: 110px;
  min-height: 44px;
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #69A444;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ck-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #69A444;
  transition: height .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0
}

.ck-btn:hover::before,
.ck-btn:focus-visible::before {
  height: 100%
}

.ck-btn:hover,
.ck-btn:focus-visible {
  color: #fff
}

.ck-btn span {
  position: relative;
  z-index: 1
}

.ck-btn:focus-visible {
  outline: 3px solid #1b2a14;
  outline-offset: 2px
}

.ck-btn.decline {
  background: #EDF2EC;
  color: #3d5c2a;
  border-color: #A9D18D
}

.ck-btn.decline::before {
  background: #A9D18D
}

.ck-btn.decline:hover,
.ck-btn.decline:focus-visible {
  color: #1b2a14
}

.ck-settings {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: #69A444;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3900;
  box-shadow: 0 4px 28px -2px #69a44417;
  transition: background-color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ck-settings:hover {
  background: #1b2a14
}

.ck-settings:focus-visible {
  outline: 3px solid #1b2a14;
  outline-offset: 2px
}

.ck-settings .pi {
  color: #fff;
  font-size: 20px
}

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

  .hd-nav {
    padding: 20px 0 20px 20px
  }

  .brandname-title {
    font-size: 20px
  }

  .navlist li a {
    font-size: 14px;
    padding: 8px
  }

  .pgwrap {
    padding-left: 20px;
    padding-right: 20px
  }

  .ft-nav {
    justify-content: flex-start
  }
}

@media (max-width: 576px) {
  .hd-inner {
    flex-direction: column;
    min-height: auto
  }

  .hd-brand::after {
    display: none
  }

  .hd-brand {
    padding: 20px 0;
    border-bottom: 1px solid #A9D18D
  }

  .hd-nav {
    padding: 20px 0
  }

  .hd-addr {
    display: none
  }

  .logohex img {
    display: block
  }

  .ft-card {
    flex-direction: column;
    padding: 20px
  }

  .ft-brand {
    max-width: 100%
  }

  .ft-nav {
    width: 100%
  }

  .ck-bar {
    width: 95%;
    padding: 20px
  }

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

.info-legal {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 40px
}

.info-legal h1 {
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #1b2a10;
  margin-bottom: 40px;
  margin-top: 0;
  padding-bottom: 20px;
  border-bottom: 2px solid #EDF2EC
}

.info-legal h2 {
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -.015em;
  color: #1b2a10;
  margin-top: 80px;
  margin-bottom: 20px
}

.info-legal h3 {
  font-size: 26px;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: #2a3d1a;
  margin-top: 40px;
  margin-bottom: 20px
}

.info-legal h4 {
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -.005em;
  color: #2a3d1a;
  margin-top: 40px;
  margin-bottom: 8px
}

.info-legal h5 {
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: .01em;
  color: #69A444;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 8px
}

.info-legal h6 {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .03em;
  color: #69A444;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 8px
}

.info-legal p {
  font-size: 16px;
  line-height: 2;
  color: #2c3a1e;
  margin-top: 0;
  margin-bottom: 20px;
  max-width: 74ch
}

.info-legal ul,
.info-legal ol {
  font-size: 16px;
  line-height: 2;
  color: #2c3a1e;
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 40px;
  max-width: 74ch
}

.info-legal ul {
  list-style: none;
  padding-left: 20px
}

.info-legal ul li {
  position: relative;
  padding-left: 20px
}

.info-legal ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .85em;
  width: 6px;
  height: 6px;
  border-radius: 48px;
  background: #69A444
}

.info-legal ol {
  list-style: decimal
}

.info-legal ol li {
  padding-left: 8px
}

.info-legal li {
  margin-bottom: 4px
}

.info-legal li:last-child {
  margin-bottom: 0
}

.info-legal ul ul,
.info-legal ol ol,
.info-legal ul ol,
.info-legal ol ul {
  margin-top: 4px;
  margin-bottom: 4px
}

.info-legal strong,
.info-legal b {
  font-weight: 700;
  color: #1b2a10
}

.info-legal em,
.info-legal i {
  font-style: italic;
  color: #3a5225
}

.info-legal a {
  color: #69A444;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1), text-decoration-color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.info-legal a:hover {
  color: #4a7a2e;
  text-decoration-color: #A9D18D
}

.info-legal a:visited {
  color: #5a8c36
}

.info-legal hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #A9D18D, transparent);
  margin-top: 80px;
  margin-bottom: 80px
}

@media (max-width: 992px) {
  .info-legal {
    padding: 80px 40px
  }

  .info-legal h1 {
    font-size: 36px
  }

  .info-legal h2 {
    font-size: 26px;
    margin-top: 40px
  }

  .info-legal h3 {
    font-size: 20px
  }
}

@media (max-width: 576px) {
  .info-legal {
    padding: 40px 20px
  }

  .info-legal h1 {
    font-size: 26px;
    margin-bottom: 20px
  }

  .info-legal h2 {
    font-size: 20px;
    margin-top: 40px
  }

  .info-legal h3 {
    font-size: 16px
  }

  .info-legal h4,
  .info-legal h5,
  .info-legal h6 {
    font-size: 14px
  }

  .info-legal p,
  .info-legal ul,
  .info-legal ol {
    font-size: 14px
  }

  .info-legal hr {
    margin-top: 40px;
    margin-bottom: 40px
  }
}

.expdet {
  max-width: 1366px;
  margin: 0 auto;
  overflow: hidden
}

.expdet .titleblock {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
  padding: 80px 80px 40px;
  position: relative;
  align-items: end
}

.expdet .titleblock .bgnum {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 220px;
  line-height: 1.1;
  color: #A9D18D;
  opacity: .13;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -8px
}

.expdet .imgcol {
  position: relative;
  z-index: 1
}

.expdet .imgwrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 36px -2px #69a4441f
}

.expdet .imgwrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) sepia(0.18) brightness(0.92);
  transition: filter .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.expdet .imgwrap:hover img {
  filter: saturate(1) sepia(0) brightness(1)
}

.expdet .textcol {
  position: relative;
  z-index: 1;
  padding-bottom: 20px
}

.expdet .tagrow {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap
}

.expdet .tag {
  display: inline-block;
  padding: 4px 20px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 2;
  background: #EDF2EC;
  color: #3a6b1e;
  letter-spacing: .04em;
  font-weight: 600
}

.expdet .cattag {
  display: inline-block;
  padding: 4px 20px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 2;
  background: #69A444;
  color: #fff;
  letter-spacing: .04em;
  font-weight: 500
}

.expdet .readtime {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #5a7a3a;
  letter-spacing: .03em;
  margin-bottom: 20px
}

.expdet .readtime .rticon {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}

.expdet .maintitle {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b3a0a;
  letter-spacing: -.02em;
  margin: 0 0 20px
}

.expdet .subtitle {
  font-size: 20px;
  line-height: 1.55;
  color: #4a6a2e;
  font-weight: 300;
  margin: 0 0 20px
}

.expdet .metarow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.expdet .authorname {
  font-size: 16px;
  color: #2d5010;
  font-weight: 600;
  letter-spacing: .01em
}

.expdet .viewcount {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6a8a50
}

.expdet .divdiam {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px 80px;
  gap: 8px;
  overflow: hidden
}

.expdet .divdiam .dm {
  width: 7px;
  height: 7px;
  background: #A9D18D;
  transform: rotate(45deg);
  border-radius: 2px;
  flex-shrink: 0
}

.expdet .divdiam .dm.accent {
  background: #69A444;
  width: 9px;
  height: 9px
}

.expdet .articleblock {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 80px;
  padding: 40px 80px 80px;
  position: relative
}

.expdet .articleblock::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #EDF2EC;
  border-radius: 36px;
  z-index: 0;
  margin: 0 40px;
  box-shadow: 0 2px 2px -2px #69a44412 inset
}

.expdet .sidebar {
  position: relative;
  z-index: 1;
  padding-top: 20px
}

.expdet .sidecard {
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 4px 28px -2px #69a44417;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden
}

.expdet .sidecard::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, #fff0, #edf2ecb3);
  pointer-events: none;
  border-radius: 0 0 22px 22px
}

.expdet .sidecard .schead {
  font-size: 14px;
  font-weight: 700;
  color: #69A444;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 20px
}

.expdet .sidecard .scbody {
  font-size: 16px;
  line-height: 1.55;
  color: #2d4a18;
  margin: 0
}

.expdet .bubblequote {
  background: #69A444;
  border-radius: 22px 22px 22px 8px;
  padding: 20px;
  position: relative;
  margin-bottom: 20px
}

.expdet .bubblequote::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 0 solid transparent;
  border-top: 12px solid #69A444
}

.expdet .bubblequote .bqtext {
  font-size: 16px;
  line-height: 1.55;
  color: #fff;
  margin: 0 0 8px;
  font-style: italic
}

.expdet .bubblequote .bqauthor {
  font-size: 14px;
  color: #c8e8a8;
  font-weight: 600;
  margin: 0
}

.expdet .backbtn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 13px;
  background: #fff;
  color: #2d5010;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #A9D18D;
  box-shadow: 0 2px 2px -2px #69a44412;
  position: relative;
  overflow: hidden;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1
}

.expdet .backbtn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #69A444;
  z-index: -1;
  transition: height .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.expdet .backbtn:hover::before {
  height: 100%
}

.expdet .backbtn:hover {
  color: #fff;
  border-color: #69A444
}

.expdet .backbtn:focus {
  outline: 3px solid #69A444;
  outline-offset: 2px
}

.expdet .bodycol {
  position: relative;
  z-index: 1;
  padding-top: 20px
}

.expdet .bodycol .artbody {
  font-size: 16px;
  line-height: 1.55;
  color: #1e3a0c
}

.expdet .bodycol .artbody p {
  margin: 0 0 20px
}

.expdet .bodycol .artbody h2 {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b3a0a;
  margin: 40px 0 20px;
  letter-spacing: -.01em
}

.expdet .bodycol .artbody mark {
  background: #A9D18D;
  color: #1b3a0a;
  padding: 2px 8px;
  border-radius: 8px
}

.expdet .bodycol .artbody ins {
  text-decoration: none;
  border-bottom: 2px solid #69A444;
  color: #2d5010
}

.expdet .bodycol .artbody blockquote {
  border-top: 3px solid #69A444;
  border-bottom: 1px solid #A9D18D;
  margin: 40px 0;
  padding: 20px;
  background: #fff;
  border-radius: 8px 22px 22px 8px;
  font-size: 20px;
  line-height: 1.55;
  color: #2d5010;
  font-style: italic;
  box-shadow: 0 4px 28px -2px #69a44417
}

.expdet .bodycol .artbody details {
  background: #fff;
  border-radius: 13px;
  margin: 20px 0;
  box-shadow: 0 2px 2px -2px #69a44412;
  overflow: hidden
}

.expdet .bodycol .artbody summary {
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #2d5010;
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.expdet .bodycol .artbody summary::-webkit-details-marker {
  display: none
}

.expdet .bodycol .artbody details[open] summary {
  border-bottom: 1px solid #EDF2EC;
  color: #69A444
}

.expdet .bodycol .artbody details> :not(summary) {
  padding: 20px;
  font-size: 16px;
  line-height: 1.55;
  color: #2d4a18
}

.expdet .stepsline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 40px 0;
  position: relative
}

.expdet .stepsline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, #69A444, #A9D18D);
  z-index: 0
}

.expdet .stepitem {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 1;
  padding: 0 0 20px
}

.expdet .stepitem:last-child {
  padding-bottom: 0
}

.expdet .stepnum {
  width: 40px;
  height: 40px;
  border-radius: 48px;
  background: #69A444;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 28px -2px #69a44417
}

.expdet .steptxt {
  padding-top: 8px;
  font-size: 16px;
  line-height: 1.55;
  color: #1e3a0c
}

.expdet .steptxt strong {
  color: #2d5010;
  display: block;
  font-size: 16px;
  margin-bottom: 4px
}

@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

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

.expdet .tagrow,
.expdet .readtime,
.expdet .maintitle,
.expdet .subtitle,
.expdet .metarow {
  animation: fadeup .32s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

.expdet .tagrow {
  animation-delay: .05s
}

.expdet .readtime {
  animation-delay: .1s
}

.expdet .maintitle {
  animation-delay: .15s
}

.expdet .subtitle {
  animation-delay: .2s
}

.expdet .metarow {
  animation-delay: .25s
}

.expdet .sidecard,
.expdet .bubblequote {
  animation: fadeup .28s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: .3s
}

@media (max-width: 992px) {
  .expdet .titleblock {
    grid-template-columns: 1fr;
    padding: 40px 40px 20px;
    gap: 20px
  }

  .expdet .imgcol {
    display: none
  }

  .expdet .bgnum {
    font-size: 120px
  }

  .expdet .maintitle {
    font-size: 36px
  }

  .expdet .articleblock {
    grid-template-columns: 1fr;
    padding: 20px 40px 40px;
    gap: 40px
  }

  .expdet .articleblock::before {
    margin: 0 20px
  }

  .expdet .divdiam {
    padding: 20px 40px
  }
}

@media (max-width: 576px) {
  .expdet .titleblock {
    padding: 20px
  }

  .expdet .maintitle {
    font-size: 26px
  }

  .expdet .subtitle {
    font-size: 16px
  }

  .expdet .articleblock {
    padding: 20px 20px 40px;
    gap: 20px
  }

  .expdet .articleblock::before {
    margin: 0 8px
  }

  .expdet .divdiam {
    padding: 20px
  }

  .expdet .backbtn {
    font-size: 14px;
    padding: 8px 20px
  }
}

.pod {
  overflow-x: hidden;
  background: #fff
}

.pod .frame {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 40px
}

@media (max-width: 576px) {
  .pod .frame {
    padding: 0 20px
  }
}

.pod ::selection {
  background: #1a1a1a;
  color: #fff
}

.pod .lead {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(158deg, #EDF2EC 0%, #A9D18D 55%, #69A444 100%)
}

.pod .lead .frame {
  position: relative;
  z-index: 2
}

.pod .lead-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 40px
}

.pod .lead-text {
  flex: 1 1 55%;
  padding-bottom: 40px
}

.pod .lead-img {
  flex: 1 1 40%;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 36px -2px #69a4441f
}

.pod .lead-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(0.9)
}

.pod .lead-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #69a44414 0%, #1e3c0a61 100%);
  border-radius: 22px;
  pointer-events: none
}

.pod .lead-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff8c;
  border: 1px solid #69a44440;
  border-radius: 8px;
  padding: 4px 20px;
  font-size: 14px;
  color: #3a6a1e;
  letter-spacing: .08em;
  margin-bottom: 20px
}

.pod .lead-kicker .pi {
  font-size: 14px;
  color: #69A444
}

.pod .lead-h1 {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 800;
  color: #1e3a0e;
  letter-spacing: -.02em;
  margin: 0 0 20px
}

.pod .lead-h1 em {
  font-style: italic;
  font-weight: 300;
  color: #3a6a1e
}

.pod .lead-sub {
  font-size: 20px;
  line-height: 1.55;
  color: #2e4e1a;
  margin: 0 0 40px;
  max-width: 480px
}

.pod .lead-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.pod .btn-prim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 20px 40px;
  background: #69A444;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 13px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 28px -2px #69a44417;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none
}

.pod .btn-prim::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: #3a6a1e;
  border-radius: 13px;
  transition: height .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0
}

.pod .btn-prim:hover::before {
  height: 100%
}

.pod .btn-prim span,
.pod .btn-prim .pi {
  position: relative;
  z-index: 1
}

.pod .btn-prim:hover {
  box-shadow: 0 8px 36px -2px #69a4441f
}

.pod .btn-prim:focus-visible {
  outline: 3px solid #1e3a0e;
  outline-offset: 3px
}

.pod .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 20px 40px;
  background: transparent;
  color: #2e4e1a;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #69A444;
  border-radius: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: background .22s cubic-bezier(0.68, -0.55, 0.27, 1.55), color .22s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.pod .btn-ghost:hover {
  background: #EDF2EC;
  color: #1e3a0e
}

.pod .btn-ghost:focus-visible {
  outline: 3px solid #1e3a0e;
  outline-offset: 3px
}

.pod .lead-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden
}

.pod .lead-deco svg {
  width: 100%;
  height: 100%;
  opacity: .18
}

@media (max-width: 992px) {
  .pod .lead-grid {
    flex-direction: column;
    align-items: stretch
  }

  .pod .lead-img {
    display: none
  }

  .pod .lead-h1 {
    font-size: 36px
  }

  .pod .lead-sub {
    font-size: 16px
  }
}

@media (max-width: 576px) {
  .pod .lead-h1 {
    font-size: 26px
  }

  .pod .btn-prim,
  .pod .btn-ghost {
    padding: 20px;
    font-size: 14px
  }
}

.pod .eps {
  padding: 80px 0;
  background: #fff;
  position: relative
}

.pod .eps-split {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start
}

.pod .eps-left {
  flex: 0 0 340px;
  position: sticky;
  top: 40px
}

.pod .eps-right {
  flex: 1 1 0
}

.pod .sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #69A444;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px
}

.pod .sec-label .pi {
  font-size: 14px
}

.pod .eps-h2 {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  color: #1e3a0e;
  letter-spacing: -.02em;
  margin: 0 0 20px
}

.pod .eps-h2 em {
  font-style: italic;
  font-weight: 300
}

.pod .eps-desc {
  font-size: 16px;
  line-height: 1.55;
  color: #3d5a28;
  margin: 0 0 40px
}

.pod .eps-stat {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.pod .stat-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #EDF2EC;
  border-radius: 13px;
  box-shadow: 0 2px 2px -2px #69a44412
}

.pod .stat-num {
  font-size: 36px;
  font-weight: 800;
  color: #69A444;
  line-height: 1.1;
  min-width: 64px;
  letter-spacing: -.03em
}

.pod .stat-meta {
  font-size: 14px;
  line-height: 1.55;
  color: #3d5a28
}

.pod .stat-meta strong {
  display: block;
  font-size: 16px;
  color: #1e3a0e;
  margin-bottom: 4px
}

.pod .ep-list {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.pod .ep-card {
  background: #fff;
  border: 1.5px solid #EDF2EC;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 4px 28px -2px #69a44417;
  transition: box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default
}

.pod .ep-card:hover {
  box-shadow: 0 8px 36px -2px #69a4441f;
  border-color: #A9D18D
}

.pod .ep-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px
}

.pod .ep-num {
  width: 44px;
  height: 44px;
  border-radius: 48px;
  background: #69A444;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 2px 8px #69a44440
}

.pod .ep-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e3a0e;
  line-height: 1.1;
  margin: 0
}

.pod .ep-dur {
  margin-left: auto;
  font-size: 14px;
  color: #69A444;
  font-weight: 600;
  white-space: nowrap
}

.pod .ep-body {
  font-size: 16px;
  line-height: 1.55;
  color: #3d5a28;
  margin: 0
}

.pod .ep-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px
}

.pod .tag {
  font-size: 14px;
  color: #3a6a1e;
  background: #EDF2EC;
  border-radius: 8px;
  padding: 4px 8px;
  font-weight: 600
}

@media (max-width: 992px) {
  .pod .eps-split {
    flex-direction: column;
    gap: 40px
  }

  .pod .eps-left {
    flex: none;
    position: static;
    width: 100%
  }

  .pod .ep-card {
    padding: 20px
  }
}

.pod .method {
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

.pod .method-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(158deg, #EDF2EC 0%, #c8e0b0 100%);
  animation: bgshift 15s linear infinite;
  z-index: 0
}

@keyframes bgshift {
  0% {
    filter: hue-rotate(0deg) brightness(1)
  }

  50% {
    filter: brightness(1.04)
  }

  100% {
    filter: brightness(1)
  }
}

.pod .method .frame {
  position: relative;
  z-index: 1
}

.pod .method-head {
  max-width: 640px;
  margin: 0 auto 80px;
  text-align: center
}

.pod .method-h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  color: #1e3a0e;
  letter-spacing: -.02em;
  margin: 0 0 20px
}

.pod .method-h2 em {
  font-style: italic;
  font-weight: 300
}

.pod .method-intro {
  font-size: 16px;
  line-height: 1.55;
  color: #3d5a28;
  margin: 0
}

.pod .method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px
}

.pod .mcard {
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 4px 28px -2px #69a44417;
  transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.pod .mcard:hover {
  box-shadow: 0 8px 36px -2px #69a4441f
}

.pod .mcard.anchor {
  grid-column: 1;
  grid-row: 1 / 3;
  background: #69A444;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.pod .mcard.anchor .mcard-h {
  color: #fff
}

.pod .mcard.anchor .mcard-p {
  color: #ffffffe0
}

.pod .mcard.anchor .mcard-icon {
  color: #ffffffb3
}

.pod .mcard-icon {
  font-size: 26px;
  color: #69A444;
  margin-bottom: 20px;
  display: block
}

.pod .mcard-h {
  font-size: 20px;
  font-weight: 700;
  color: #1e3a0e;
  line-height: 1.1;
  margin: 0 0 20px
}

.pod .mcard-p {
  font-size: 16px;
  line-height: 1.55;
  color: #3d5a28;
  margin: 0
}

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

.pod .mcard-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: #ffffffe6
}

.pod .mcard-list li .pi {
  font-size: 14px;
  color: #A9D18D;
  margin-top: 2px;
  flex-shrink: 0
}

.pod .mcard-big {
  font-size: 66px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff38;
  letter-spacing: -.04em;
  margin-top: auto;
  padding-top: 40px
}

.pod .mcard.compact {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 40px
}

.pod .mcard.compact .mcard-icon {
  margin-bottom: 0;
  margin-top: 4px;
  flex-shrink: 0
}

.pod .mcard.compact .mcard-h {
  margin-bottom: 8px;
  font-size: 16px
}

.pod .mcard.compact .mcard-p {
  font-size: 14px
}

@media (max-width: 992px) {
  .pod .method-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }

  .pod .mcard.anchor {
    grid-column: 1;
    grid-row: auto
  }

  .pod .mcard-big {
    font-size: 50px
  }
}

@media (max-width: 576px) {
  .pod .mcard {
    padding: 20px
  }

  .pod .mcard.compact {
    padding: 20px
  }
}

.pod .voices {
  padding: 80px 0;
  background: #fff
}

.pod .voices-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px
}

.pod .voices-h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  color: #1e3a0e;
  letter-spacing: -.02em;
  margin: 0;
  max-width: 460px
}

.pod .voices-h2 em {
  font-style: italic;
  font-weight: 300
}

.pod .voices-note {
  font-size: 16px;
  line-height: 1.55;
  color: #3d5a28;
  max-width: 340px;
  margin: 0
}

.pod .voices-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: stretch
}

.pod .vcard {
  flex: 1 1 0;
  background: #EDF2EC;
  border-radius: 22px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 2px 2px -2px #69a44412;
  transition: box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1), background .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.pod .vcard:hover {
  box-shadow: 0 4px 28px -2px #69a44417;
  background: #deeece
}

.pod .vcard-avatar {
  width: 56px;
  height: 56px;
  border-radius: 48px;
  background: #69A444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: inset 0 2px 8px #69a4444d
}

.pod .vcard-name {
  font-size: 20px;
  font-weight: 700;
  color: #1e3a0e;
  margin: 0;
  line-height: 1.1
}

.pod .vcard-role {
  font-size: 14px;
  color: #69A444;
  font-weight: 600;
  margin: 4px 0 0
}

.pod .vcard-quote {
  font-size: 16px;
  line-height: 1.55;
  color: #3d5a28;
  margin: 0;
  flex: 1 1 auto
}

.pod .vcard-ep {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #69A444;
  font-weight: 600;
  padding-top: 20px;
  border-top: 1.5px solid #69a4442e
}

.pod .vcard-ep .pi {
  font-size: 14px
}

.pod .voices-cta {
  margin-top: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  background: linear-gradient(158deg, #69A444 0%, #3a6a1e 100%);
  border-radius: 36px;
  box-shadow: 0 8px 36px -2px #69a4441f;
  flex-wrap: wrap
}

.pod .cta-text {
  flex: 1 1 320px
}

.pod .cta-h {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 8px
}

.pod .cta-p {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffd9;
  margin: 0
}

.pod .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 20px 40px;
  background: #fff;
  color: #3a6a1e;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 13px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 28px -2px #69a44417;
  transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap
}

.pod .btn-white::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: #EDF2EC;
  border-radius: 13px;
  transition: height .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0
}

.pod .btn-white:hover::before {
  height: 100%
}

.pod .btn-white span,
.pod .btn-white .pi {
  position: relative;
  z-index: 1
}

.pod .btn-white:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px
}

@media (max-width: 992px) {
  .pod .voices-top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px
  }

  .pod .voices-row {
    flex-direction: column
  }

  .pod .voices-cta {
    flex-direction: column;
    text-align: center
  }
}

@media (max-width: 576px) {
  .pod .vcard {
    padding: 20px
  }

  .pod .voices-cta {
    padding: 20px
  }

  .pod .cta-h {
    font-size: 20px
  }
}

.pod .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  gap: 8px
}

.pod .divider-diamond {
  width: 8px;
  height: 8px;
  background: #A9D18D;
  transform: rotate(45deg);
  border-radius: 2px
}

.pod .divider-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, #A9D18D, transparent)
}

@keyframes bgshift {
  0% {
    opacity: 1
  }

  50% {
    opacity: .92
  }

  100% {
    opacity: 1
  }
}

.abt {
  max-width: 1366px;
  margin: 0 auto;
  overflow: hidden
}

.abt .dbl-rule {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0
}

.abt .dbl-rule span {
  display: block;
  height: 1px;
  background: #A9D18D;
  width: 100%
}

.abt ::selection {
  background: #111;
  color: #fff
}

.abt .tb {
  position: relative;
  padding: 80px
}

.abt .tb-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#69a4440f 1px, transparent 1px), linear-gradient(90deg, #69a4440f 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0
}

.abt .tb-strip {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 28px -2px #69a44417
}

.abt .tb-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: blur(2px) brightness(0.88);
  transform: scale(1.04)
}

.abt .tb-text {
  position: relative;
  z-index: 1;
  max-width: 760px
}

.abt .tb-eyebrow {
  font-size: 14px;
  letter-spacing: .12em;
  color: #69A444;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block
}

.abt .tb-h1 {
  font-size: 66px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #1b2a12;
  margin-bottom: 20px
}

.abt .tb-h1 em {
  font-style: italic;
  font-weight: 300;
  color: #69A444
}

.abt .tb-decl {
  font-size: 20px;
  line-height: 1.55;
  color: #2e3d22;
  max-width: 560px;
  margin-bottom: 40px
}

.abt .tb-decl strong {
  font-weight: 700
}

.abt .tb-dots {
  position: absolute;
  bottom: 40px;
  right: 80px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-end;
  pointer-events: none;
  z-index: 1
}

.abt .tb-dots span {
  border-radius: 48px;
  background: #A9D18D;
  display: block
}

.abt .tb-dots span:nth-child(1) {
  width: 8px;
  height: 8px;
  opacity: .5
}

.abt .tb-dots span:nth-child(2) {
  width: 14px;
  height: 14px;
  opacity: .7
}

.abt .tb-dots span:nth-child(3) {
  width: 22px;
  height: 22px;
  opacity: .4
}

.abt .tb-dots span:nth-child(4) {
  width: 10px;
  height: 10px;
  opacity: .6
}

.abt .who {
  padding: 80px;
  background: #EDF2EC;
  position: relative
}

.abt .who-inner {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
  max-width: 1200px
}

.abt .who-img {
  flex: 0 0 420px;
  height: 520px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 36px -2px #69a4441f;
  position: relative
}

.abt .who-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt .who-img:hover img {
  transform: scale(1.04)
}

.abt .who-img-wash {
  position: absolute;
  inset: 0;
  background: #69a44400;
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 22px;
  pointer-events: none
}

.abt .who-img:hover .who-img-wash {
  background: #69a44447
}

.abt .who-body {
  flex: 1;
  padding-top: 20px
}

.abt .who-label {
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #69A444;
  margin-bottom: 20px;
  display: block
}

.abt .who-h2 {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b2a12;
  margin-bottom: 20px;
  letter-spacing: -.02em
}

.abt .who-h2 span {
  font-weight: 300
}

.abt .who-p {
  font-size: 16px;
  line-height: 1.55;
  color: #2e3d22;
  margin-bottom: 20px
}

.abt .who-stats {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #69a44433
}

.abt .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.abt .stat-num {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 800;
  color: #69A444;
  letter-spacing: -.03em
}

.abt .stat-lbl {
  font-size: 14px;
  line-height: 1.55;
  color: #4a6035;
  letter-spacing: .04em
}

.abt .appr {
  padding: 80px;
  background: #fff;
  position: relative
}

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

.abt .appr-h2 {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b2a12;
  letter-spacing: -.02em;
  max-width: 480px
}

.abt .appr-h2 em {
  font-style: italic;
  font-weight: 300;
  color: #69A444
}

.abt .appr-sub {
  font-size: 16px;
  line-height: 1.55;
  color: #4a6035;
  max-width: 340px;
  text-align: right
}

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

.abt .step {
  background: #EDF2EC;
  border-radius: 22px;
  padding: 40px;
  position: relative;
  box-shadow: 0 2px 2px -2px #69a44412;
  transition: box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1), transform .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden
}

.abt .step:hover {
  box-shadow: 0 8px 36px -2px #69a4441f;
  transform: translateY(-4px)
}

.abt .step-num {
  width: 40px;
  height: 40px;
  border-radius: 48px;
  background: #69A444;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0
}

.abt .step-h4 {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b2a12;
  margin-bottom: 8px
}

.abt .step-p {
  font-size: 14px;
  line-height: 1.55;
  color: #3a5028
}

.abt .step-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #69A444, #A9D18D);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt .step:hover .step-bar {
  transform: scaleX(1)
}

.abt .chart-wrap {
  margin-top: 80px;
  background: #EDF2EC;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 4px 28px -2px #69a44417
}

.abt .chart-label {
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #69A444;
  margin-bottom: 20px;
  display: block
}

.abt .chart-h5 {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b2a12;
  margin-bottom: 20px
}

.abt .chart-svg {
  width: 100%;
  height: auto;
  display: block
}

.abt .closing {
  position: relative;
  padding: 80px;
  overflow: hidden
}

.abt .closing-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.abt .closing-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(16px) brightness(0.35) saturate(1.3);
  transform: scale(1.08);
  display: block
}

.abt .closing-bg-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, #1e3212d1 0%, #69a4448c 100%)
}

.abt .closing-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center
}

.abt .closing-eyebrow {
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #A9D18D;
  margin-bottom: 20px;
  display: block
}

.abt .closing-h2 {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 20px
}

.abt .closing-h2 em {
  font-style: italic;
  font-weight: 300;
  color: #A9D18D
}

.abt .closing-p {
  font-size: 20px;
  line-height: 1.55;
  color: #ffffffe0;
  margin-bottom: 40px
}

.abt .closing-team {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  margin-top: 40px
}

.abt .tm-card {
  background: #ffffff1a;
  border: 1px solid #a9d18d4d;
  border-radius: 22px;
  padding: 20px;
  text-align: left;
  width: 200px;
  backdrop-filter: blur(8px);
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt .tm-card:hover {
  background: #ffffff2e;
  border-color: #a9d18db3
}

.abt .tm-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px
}

.abt .tm-role {
  font-size: 14px;
  color: #A9D18D;
  line-height: 1.55
}

.abt .closing-cta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #69A444;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 20px 40px;
  border-radius: 13px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 28px -2px #69a44440;
  transition: box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1), color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt .closing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #A9D18D;
  transform: translateY(100%);
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0
}

.abt .closing-cta:hover::before {
  transform: translateY(0)
}

.abt .closing-cta:hover {
  color: #1b2a12;
  box-shadow: 0 8px 36px -2px #69a44438
}

.abt .closing-cta span,
.abt .closing-cta i {
  position: relative;
  z-index: 1
}

.abt .closing-cta:focus-visible {
  outline: 3px solid #A9D18D;
  outline-offset: 3px
}

@keyframes bgtone {
  0% {
    opacity: .7
  }

  50% {
    opacity: 1
  }

  100% {
    opacity: .7
  }
}

.abt .closing-bg-tint {
  animation: bgtone 6s ease-in-out infinite
}

@media (max-width: 992px) {
  .abt .tb {
    padding: 40px
  }

  .abt .tb-h1 {
    font-size: 50px
  }

  .abt .tb-dots {
    right: 40px;
    bottom: 20px
  }

  .abt .who {
    padding: 80px 40px
  }

  .abt .who-inner {
    flex-direction: column;
    gap: 40px
  }

  .abt .who-img {
    flex: none;
    width: 100%;
    height: 320px
  }

  .abt .appr {
    padding: 80px 40px
  }

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

  .abt .appr-sub {
    text-align: left
  }

  .abt .appr-steps {
    grid-template-columns: 1fr 1fr
  }

  .abt .closing {
    padding: 80px 40px
  }

  .abt .closing-team {
    flex-wrap: wrap
  }
}

@media (max-width: 576px) {
  .abt .tb {
    padding: 40px 20px
  }

  .abt .tb-h1 {
    font-size: 36px
  }

  .abt .tb-strip {
    height: 140px
  }

  .abt .tb-dots {
    display: none
  }

  .abt .who {
    padding: 40px 20px
  }

  .abt .who-img {
    display: none
  }

  .abt .who-stats {
    flex-direction: column;
    gap: 20px
  }

  .abt .stat-num {
    font-size: 36px
  }

  .abt .appr {
    padding: 40px 20px
  }

  .abt .appr-h2 {
    font-size: 26px
  }

  .abt .appr-steps {
    grid-template-columns: 1fr
  }

  .abt .chart-wrap {
    padding: 20px
  }

  .abt .closing {
    padding: 40px 20px
  }

  .abt .closing-h2 {
    font-size: 36px
  }

  .abt .closing-p {
    font-size: 16px
  }

  .abt .closing-team {
    flex-direction: column;
    align-items: center
  }

  .abt .tm-card {
    width: 100%;
    max-width: 280px
  }
}

.ctus {
  max-width: 1366px;
  margin: 0 auto;
  overflow: hidden
}

.ctus .eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  color: #69A444;
  text-transform: uppercase;
  padding: 4px 20px;
  border: 1.5px solid #A9D18D;
  border-radius: 22px;
  margin-bottom: 20px
}

.ctus .serif {
  font-style: italic;
  font-weight: 300
}

.ctus .accentword {
  color: #69A444;
  font-weight: 700
}

.ctus .divider-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 40px 0
}

.ctus .divider-dots .dot-row {
  display: flex;
  flex-direction: row;
  gap: 8px
}

.ctus .divider-dots .dot-row span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 48px;
  background: #A9D18D;
  opacity: .7
}

.ctus .titblock {
  position: relative;
  padding: 80px 80px 40px;
  background: #EDF2EC;
  overflow: hidden
}

.ctus .titblock .topo-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  background-image: repeating-radial-gradient(circle at 30% 60%, transparent 0px, transparent 38px, #69A444 39px, transparent 40px), repeating-radial-gradient(circle at 70% 30%, transparent 0px, transparent 55px, #69A444 56px, transparent 57px), repeating-radial-gradient(circle at 55% 75%, transparent 0px, transparent 28px, #69A444 29px, transparent 30px);
  animation: bgpulse 6s ease-in-out infinite
}

@keyframes bgpulse {

  0%,
  100% {
    opacity: .045
  }

  50% {
    opacity: .09
  }
}

.ctus .titblock .tit-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 40px;
  position: relative;
  z-index: 1
}

.ctus .titblock .tit-text {
  flex: 1 1 0
}

.ctus .titblock .tit-img {
  flex: 0 0 340px;
  width: 340px;
  height: 260px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 36px -2px #69a4441f;
  position: relative
}

.ctus .titblock .tit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1), filter .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: none
}

.ctus .titblock .tit-img:hover img {
  transform: scale(1.06)
}

.ctus .titblock .tit-img .glow-overlay {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(ellipse at 70% 30%, #edf2ec61 0%, transparent 65%);
  pointer-events: none
}

.ctus .titblock h1 {
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 800;
  color: #1e2d13;
  margin: 0 0 20px
}

.ctus .titblock .dir-arrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px
}

.ctus .titblock .dir-arrow .arr-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #69A444, #A9D18D);
  border-radius: 8px
}

.ctus .titblock .dir-arrow .arr-dot {
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #69A444
}

.ctus .titblock .dir-arrow .arr-tip {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #69A444
}

.ctus .titblock .subdesc {
  font-size: 20px;
  line-height: 1.55;
  color: #3a4f2a;
  max-width: 480px;
  margin: 0
}

.ctus .contact-block {
  padding: 80px;
  background: #fff;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start
}

.ctus .contact-block .info-col {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 40px
}

.ctus .contact-block .info-col .info-card {
  border-radius: 13px;
  padding: 20px;
  background: #EDF2EC;
  box-shadow: 0 4px 28px -2px #69a44417;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden
}

.ctus .contact-block .info-col .info-card .dashed-accent {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 60px;
  height: 60px;
  border: 1.5px dashed #A9D18D;
  border-radius: 13px;
  pointer-events: none;
  opacity: .6
}

.ctus .contact-block .info-col .info-card .ic-label {
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #69A444;
  font-weight: 600
}

.ctus .contact-block .info-col .info-card .ic-val {
  font-size: 16px;
  line-height: 1.55;
  color: #1e2d13;
  font-weight: 500;
  word-break: break-word
}

.ctus .contact-block .info-col .info-card .ic-val a {
  color: #1e2d13;
  text-decoration: none;
  border-bottom: 1.5px solid #A9D18D;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ctus .contact-block .info-col .info-card .ic-val a:hover {
  color: #69A444;
  border-color: #69A444
}

.ctus .contact-block .info-col .icon-outline-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px
}

.ctus .contact-block .info-col .icon-outline-wrap .ico {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center
}

.ctus .contact-block .info-col .icon-outline-wrap .ico i {
  font-size: 16px;
  color: #69A444;
  position: relative;
  z-index: 1
}

.ctus .contact-block .info-col .icon-outline-wrap .ico .outline-ring {
  position: absolute;
  inset: 0;
  border-radius: 48px;
  border: 1.5px solid #69A444;
  animation: tracering 2.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite
}

@keyframes tracering {
  0% {
    transform: scale(0.7);
    opacity: 0
  }

  40% {
    transform: scale(1.05);
    opacity: 1
  }

  70% {
    transform: scale(1);
    opacity: 1
  }

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

.ctus .contact-block .info-col .podcast-link-card {
  border-radius: 13px;
  padding: 20px;
  background: linear-gradient(135deg, #69A444 0%, #A9D18D 100%);
  box-shadow: 0 4px 28px -2px #69a4441f;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ctus .contact-block .info-col .podcast-link-card .pl-label {
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fffc;
  font-weight: 600
}

.ctus .contact-block .info-col .podcast-link-card .pl-text {
  font-size: 16px;
  line-height: 1.55;
  color: #fff
}

.ctus .contact-block .info-col .podcast-link-card .pl-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-top: 4px;
  padding: 8px 20px;
  border-radius: 8px;
  border: 1.5px solid #ffffff80;
  align-self: flex-start;
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ctus .contact-block .info-col .podcast-link-card .pl-link:hover {
  background: #ffffff2e;
  border-color: #fff
}

.ctus .contact-block .form-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ctus .contact-block .form-col .form-head {
  margin-bottom: 20px
}

.ctus .contact-block .form-col .form-head h2 {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  color: #1e2d13;
  letter-spacing: -.02em;
  margin: 0 0 8px
}

.ctus .contact-block .form-col .form-head p {
  font-size: 16px;
  line-height: 1.55;
  color: #3a4f2a;
  margin: 0
}

.ctus .cform {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.ctus .cform .field-row {
  display: flex;
  flex-direction: row;
  gap: 20px
}

.ctus .cform .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0
}

.ctus .cform .field label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #3a4f2a;
  text-transform: uppercase
}

.ctus .cform .field input[type="text"],
.ctus .cform .field input[type="email"],
.ctus .cform .field input[type="tel"],
.ctus .cform .field select {
  font-size: 16px;
  line-height: 1.55;
  color: #1e2d13;
  background: #EDF2EC;
  border: 1.5px solid #A9D18D;
  border-radius: 8px;
  padding: 8px 20px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: inset 0 2px 2px -2px #69a44412;
  appearance: none;
  -webkit-appearance: none
}

.ctus .cform .field input::placeholder {
  color: #A9D18D;
  font-style: italic
}

.ctus .cform .field input[type="text"]:focus,
.ctus .cform .field input[type="email"]:focus,
.ctus .cform .field input[type="tel"]:focus,
.ctus .cform .field select:focus {
  border-color: #69A444;
  box-shadow: 0 0 0 3px #69a44421 inset 0 2px 2px -2px #69a44412
}

.ctus .cform .field .sel-wrap {
  position: relative
}

.ctus .cform .field .sel-wrap select {
  width: 100%;
  padding-right: 40px;
  cursor: pointer
}

.ctus .cform .field .sel-wrap .sel-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #69A444
}

.ctus .cform .channel-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ctus .cform .channel-group .cg-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #3a4f2a;
  text-transform: uppercase
}

.ctus .cform .channel-group .cg-opts {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap
}

.ctus .cform .channel-group .cg-opts .ch-opt {
  position: relative
}

.ctus .cform .channel-group .cg-opts .ch-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none
}

.ctus .cform .channel-group .cg-opts .ch-opt label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #3a4f2a;
  background: #EDF2EC;
  border: 1.5px solid #A9D18D;
  border-radius: 22px;
  padding: 8px 20px;
  cursor: pointer;
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1), color .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  user-select: none
}

.ctus .cform .channel-group .cg-opts .ch-opt label:hover {
  border-color: #69A444;
  background: #d8edca
}

.ctus .cform .channel-group .cg-opts .ch-opt input[type="radio"]:checked+label {
  background: #69A444;
  border-color: #69A444;
  color: #fff
}

.ctus .cform .channel-group .cg-opts .ch-opt input[type="radio"]:focus-visible+label {
  outline: 2px solid #69A444;
  outline-offset: 2px
}

.ctus .cform .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.ctus .cform .privacy-row input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
  accent-color: #69A444;
  width: 18px;
  height: 18px;
  cursor: pointer
}

.ctus .cform .privacy-row .priv-text {
  font-size: 14px;
  line-height: 1.55;
  color: #3a4f2a
}

.ctus .cform .privacy-row .priv-text a {
  color: #69A444;
  text-decoration: none;
  border-bottom: 1px solid #A9D18D;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ctus .cform .privacy-row .priv-text a:hover {
  color: #3a4f2a
}

.ctus .cform .submit-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #69A444;
  border: none;
  border-radius: 8px;
  padding: 20px 40px;
  cursor: pointer;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 28px -2px #69a44417;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ctus .cform .submit-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #3a4f2a;
  border-radius: 8px;
  transition: height .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0
}

.ctus .cform .submit-btn:hover::before {
  height: 100%
}

.ctus .cform .submit-btn span,
.ctus .cform .submit-btn i {
  position: relative;
  z-index: 1
}

.ctus .cform .submit-btn:hover {
  box-shadow: 0 8px 36px -2px #69a4441f
}

.ctus .cform .submit-btn:focus-visible {
  outline: 2px solid #3a4f2a;
  outline-offset: 3px
}

.ctus .img-mono-cycle img {
  animation: monocycle 8s ease-in-out infinite
}

@keyframes monocycle {

  0%,
  100% {
    filter: none
  }

  45%,
  55% {
    filter: grayscale(1)
  }
}

@media (max-width: 992px) {
  .ctus .titblock {
    padding: 40px
  }

  .ctus .titblock .tit-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px
  }

  .ctus .titblock .tit-img {
    display: none
  }

  .ctus .titblock h1 {
    font-size: 50px
  }

  .ctus .contact-block {
    padding: 40px;
    flex-direction: column;
    gap: 40px
  }

  .ctus .contact-block .info-col {
    flex: none;
    width: 100%
  }

  .ctus .cform .field-row {
    flex-direction: column;
    gap: 20px
  }
}

@media (max-width: 576px) {
  .ctus .titblock {
    padding: 40px 20px
  }

  .ctus .titblock h1 {
    font-size: 36px
  }

  .ctus .titblock .subdesc {
    font-size: 16px
  }

  .ctus .contact-block {
    padding: 40px 20px;
    gap: 40px
  }

  .ctus .contact-block .form-col .form-head h2 {
    font-size: 26px
  }

  .ctus .cform .cg-opts {
    gap: 8px
  }

  .ctus .cform .submit-btn {
    width: 100%;
    justify-content: center
  }
}

.expop {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden
}

.expop .band-top {
  width: 100%;
  height: 4px;
  background: linear-gradient(105deg, #69A444 0%, #A9D18D 100%)
}

.expop .titblock {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 40px 80px;
  gap: 40px;
  position: relative
}

.expop .titblock-text {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
  clip-path: inset(0 0 0 0);
  animation: revealClip .28s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

.expop .titblock-img {
  flex: 0 0 40%;
  position: relative;
  min-height: 320px
}

.expop .titblock-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  filter: saturate(0.55) brightness(0.96);
  box-shadow: 0 8px 36px -2px #69a4441f;
  display: block;
  transition: filter .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.expop .titblock-img img:hover {
  filter: saturate(1) brightness(1)
}

.expop .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: .08em;
  color: #69A444;
  font-weight: 600;
  text-transform: uppercase
}

.expop .eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 48px;
  background: #69A444;
  display: inline-block
}

.expop .titblock-h {
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #1b2a12;
  font-weight: 800;
  margin: 0
}

.expop .titblock-h em {
  font-style: italic;
  font-weight: 300;
  color: #69A444
}

.expop .titblock-desc {
  font-size: 16px;
  line-height: 1.55;
  color: #3a4a30;
  margin: 0;
  max-width: 480px
}

.expop .titblock-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #69A444;
  border-radius: 13px;
  padding: 8px 20px;
  text-decoration: none;
  align-self: flex-start;
  box-shadow: 0 4px 28px -2px #69a44417;
  position: relative;
  overflow: hidden;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.expop .titblock-link::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: #1b2a12;
  border-radius: 13px;
  transition: height .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0
}

.expop .titblock-link:hover::before {
  height: 100%
}

.expop .titblock-link span,
.expop .titblock-link i {
  position: relative;
  z-index: 1
}

.expop .titblock-link:hover {
  box-shadow: 0 8px 36px -2px #69a4441f
}

.expop .decor-stripe {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #69A444 0%, #A9D18D 100%);
  border-radius: 0 8px 8px 0
}

@keyframes revealClip {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: .2
  }

  to {
    clip-path: inset(0 0% 0 0);
    opacity: 1
  }
}

.expop .posts-zone {
  padding: 80px;
  background: #fff
}

.expop .posts-zone-head {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 40px
}

.expop .posts-zone-head h2 {
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -.015em;
  color: #1b2a12;
  font-weight: 700;
  margin: 0
}

.expop .posts-zone-head .count-badge {
  font-size: 14px;
  color: #69A444;
  background: #EDF2EC;
  border-radius: 36px;
  padding: 4px 8px;
  font-weight: 600
}

.expop .pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.expop .pcard {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 4px 28px -2px #69a44417;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1), transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1.5px solid #EDF2EC
}

.expop .pcard:hover {
  box-shadow: 0 8px 36px -2px #69a4441f;
  transform: translateY(-4px);
  border-color: #A9D18D
}

.expop .pcard-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #EDF2EC;
  flex-shrink: 0
}

.expop .pcard-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.95);
  transition: filter .25s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block
}

.expop .pcard:hover .pcard-thumb img {
  filter: saturate(1) brightness(1);
  transform: scale(1.04)
}

.expop .pcard-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  flex: 1
}

.expop .pcard-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px
}

.expop .ptag {
  font-size: 14px;
  color: #69A444;
  background: #EDF2EC;
  border-radius: 8px;
  padding: 4px 8px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.55
}

.expop .ptag-cat {
  font-size: 14px;
  color: #3a4a30;
  background: transparent;
  border-radius: 8px;
  padding: 4px 8px;
  font-weight: 400;
  border: 1px solid #A9D18D;
  line-height: 1.55
}

.expop .pcard-title {
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: #1b2a12;
  font-weight: 700;
  margin: 0
}

.expop .pcard-sub {
  font-size: 14px;
  line-height: 1.55;
  color: #5a6e4a;
  margin: 0;
  font-weight: 400
}

.expop .pcard-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #3a4a30;
  margin: 0;
  flex: 1
}

.expop .pcard-foot {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px 20px;
  gap: 8px
}

.expop .pcard-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.expop .pcard-avatar {
  width: 32px;
  height: 32px;
  border-radius: 48px;
  background: linear-gradient(135deg, #69A444 0%, #A9D18D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.expop .pcard-avatar svg {
  width: 16px;
  height: 16px;
  fill: #fff
}

.expop .pcard-authorname {
  font-size: 14px;
  color: #3a4a30;
  font-weight: 600
}

.expop .pcard-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.expop .pcard-metaitem {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #7a9060
}

.expop .pcard-metaitem i {
  font-size: 12px
}

.expop .insight {
  padding: 80px;
  background: #EDF2EC;
  position: relative
}

.expop .insight-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 55%, #69a4440f 100%);
  pointer-events: none;
  border-radius: 0
}

.expop .insight-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  z-index: 1
}

.expop .insight-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.expop .insight-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #69A444
}

.expop .insight-label span {
  font-size: 14px;
  font-weight: 600;
  color: #69A444;
  letter-spacing: .07em;
  text-transform: uppercase
}

.expop .insight h2 {
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -.015em;
  color: #1b2a12;
  font-weight: 700;
  margin: 0
}

.expop .insight h2 em {
  font-style: italic;
  font-weight: 300;
  color: #69A444
}

.expop .insight-body {
  font-size: 16px;
  line-height: 1.55;
  color: #3a4a30;
  margin: 0
}

.expop .insight-ranked {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%
}

.expop .rank-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px
}

.expop .rank-num {
  width: 32px;
  height: 32px;
  border-radius: 48px;
  background: #69A444;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.expop .rank-label {
  font-size: 14px;
  color: #1b2a12;
  font-weight: 600;
  min-width: 140px;
  flex-shrink: 0
}

.expop .rank-bar-wrap {
  flex: 1;
  height: 8px;
  background: #A9D18D;
  border-radius: 8px;
  overflow: hidden
}

.expop .rank-bar {
  height: 100%;
  background: #69A444;
  border-radius: 8px;
  transition: width .32s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.expop .about-strip {
  padding: 80px;
  background: #fff;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center
}

.expop .about-text {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.expop .about-text h2 {
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -.015em;
  color: #1b2a12;
  font-weight: 700;
  margin: 0
}

.expop .about-text p {
  font-size: 16px;
  line-height: 1.55;
  color: #3a4a30;
  margin: 0
}

.expop .about-stats {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.expop .stat-card {
  background: #EDF2EC;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 2px -2px #69a44412;
  transition: box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1), transform .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.expop .stat-card:hover {
  box-shadow: 0 8px 36px -2px #69a4441f;
  transform: translateX(4px)
}

.expop .stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #69A444;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.expop .stat-icon i {
  font-size: 20px;
  color: #fff
}

.expop .stat-val {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b2a12
}

.expop .stat-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #5a6e4a
}

.expop .sub-zone {
  padding: 80px;
  background: linear-gradient(105deg, #69A444 0%, #A9D18D 100%);
  position: relative
}

.expop .sub-zone-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1
}

.expop .sub-zone h2 {
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -.015em;
  color: #fff;
  font-weight: 700;
  margin: 0
}

.expop .sub-zone p {
  font-size: 16px;
  line-height: 1.55;
  color: #EDF2EC;
  margin: 0
}

.expop .sub-form {
  display: flex;
  flex-direction: row;
  gap: 8px;
  width: 100%
}

.expop .sub-input {
  flex: 1;
  padding: 8px 20px;
  border-radius: 13px;
  border: 2px solid #ffffff59;
  background: #ffffff2e;
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1), background .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: inset 0 2px 8px #69a44412
}

.expop .sub-input::placeholder {
  color: #ffffffa6
}

.expop .sub-input:focus {
  border-color: #fff;
  background: #ffffff47
}

.expop .sub-btn {
  padding: 8px 20px;
  border-radius: 13px;
  border: none;
  background: #fff;
  color: #69A444;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 28px -2px #69a44417
}

.expop .sub-btn::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: #1b2a12;
  border-radius: 13px;
  transition: height .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0
}

.expop .sub-btn:hover::before {
  height: 100%
}

.expop .sub-btn:hover {
  color: #fff;
  box-shadow: 0 8px 36px -2px #69a4441f
}

.expop .sub-btn span,
.expop .sub-btn i {
  position: relative;
  z-index: 1
}

.expop .sub-decor {
  position: absolute;
  top: -20px;
  right: 40px;
  width: 120px;
  height: 120px;
  border-radius: 48px;
  border: 2px solid #ffffff1f;
  pointer-events: none
}

.expop .sub-decor2 {
  position: absolute;
  bottom: -40px;
  left: 20px;
  width: 80px;
  height: 80px;
  border-radius: 48px;
  border: 2px solid #ffffff14;
  pointer-events: none
}

.expop .sym-pair {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px
}

.expop .sym-icon {
  width: 36px;
  height: 36px;
  border-radius: 48px;
  background: #ffffff2e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.expop .sym-icon i {
  font-size: 16px;
  color: #fff
}

.expop .topo-section {
  position: relative
}

.expop .topo-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  border-radius: 0
}

.expop .topo-bg svg {
  width: 100%;
  height: 100%;
  opacity: .04
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-32px)
  }

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

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(32px)
  }

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

@keyframes slideFromBottom {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

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

.expop .titblock-text {
  animation: slideFromLeft .28s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

.expop .titblock-img {
  animation: slideFromRight .32s cubic-bezier(0.34, 1.56, 0.64, 1) .08s both
}

.expop .pcard:nth-child(1) {
  animation: slideFromBottom .22s cubic-bezier(0.34, 1.56, 0.64, 1) .05s both
}

.expop .pcard:nth-child(2) {
  animation: slideFromBottom .22s cubic-bezier(0.34, 1.56, 0.64, 1) .1s both
}

.expop .pcard:nth-child(3) {
  animation: slideFromBottom .22s cubic-bezier(0.34, 1.56, 0.64, 1) .15s both
}

.expop .pcard:nth-child(4) {
  animation: slideFromBottom .22s cubic-bezier(0.34, 1.56, 0.64, 1) .2s both
}

.expop .pcard:nth-child(5) {
  animation: slideFromBottom .22s cubic-bezier(0.34, 1.56, 0.64, 1) .25s both
}

.expop .pcard:nth-child(6) {
  animation: slideFromBottom .22s cubic-bezier(0.34, 1.56, 0.64, 1) .3s both
}

@media (max-width: 1200px) {
  .expop .titblock {
    padding: 40px
  }

  .expop .posts-zone {
    padding: 80px 40px
  }

  .expop .insight {
    padding: 80px 40px
  }

  .expop .about-strip {
    padding: 80px 40px;
    gap: 40px
  }

  .expop .sub-zone {
    padding: 80px 40px
  }

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

@media (max-width: 992px) {
  .expop .titblock {
    flex-direction: column;
    padding: 40px 20px
  }

  .expop .titblock-img {
    display: none
  }

  .expop .titblock-h {
    font-size: 36px
  }

  .expop .posts-zone {
    padding: 40px 20px
  }

  .expop .pgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
  }

  .expop .insight {
    padding: 40px 20px
  }

  .expop .about-strip {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px
  }

  .expop .about-stats {
    width: 100%
  }

  .expop .sub-zone {
    padding: 40px 20px
  }
}

@media (max-width: 576px) {
  .expop .titblock-h {
    font-size: 26px
  }

  .expop .pgrid {
    grid-template-columns: 1fr
  }

  .expop .sub-form {
    flex-direction: column
  }

  .expop .posts-zone-head {
    flex-direction: column;
    gap: 8px
  }

  .expop .rank-label {
    min-width: 100px;
    font-size: 14px
  }

  .expop .about-strip {
    gap: 20px
  }
}

.prtl {
  background: #f4f7f2;
  overflow-x: clip;
  position: relative
}

.prtl .constrain {
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(32px)
  }

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

@keyframes slideUpFar {
  from {
    opacity: 0;
    transform: translateY(56px)
  }

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

@keyframes arcFill {
  from {
    stroke-dashoffset: 220
  }

  to {
    stroke-dashoffset: 0
  }
}

.prtl .anim1 {
  animation: slideUp .28s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

.prtl .anim2 {
  animation: slideUp .3s cubic-bezier(0.34, 1.56, 0.64, 1) .08s both
}

.prtl .anim3 {
  animation: slideUpFar .32s cubic-bezier(0.34, 1.56, 0.64, 1) .16s both
}

.prtl .anim4 {
  animation: slideUpFar .34s cubic-bezier(0.34, 1.56, 0.64, 1) .24s both
}

.prtl .anim5 {
  animation: slideUp .3s cubic-bezier(0.34, 1.56, 0.64, 1) .32s both
}

.prtl .titlesec {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(138deg, #69A444 0%, #A9D18D 45%, #c8dfc0 70%, #EDF2EC 100%);
  overflow: hidden
}

.prtl .titlesec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 80%, #69a44459 0%, transparent 50%), radial-gradient(circle at 85% 20%, #a9d18d47 0%, transparent 45%), radial-gradient(circle at 60% 60%, #edf2ec66 0%, transparent 40%);
  pointer-events: none
}

.prtl .titlegrid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1
}

.prtl .titletxt {
  flex: 1 1 0;
  min-width: 0
}

.prtl .titlebadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff38;
  border: 1px solid #ffffff73;
  border-radius: 22px;
  padding: 4px 20px;
  font-size: 14px;
  color: #2a4a18;
  letter-spacing: .06em;
  margin-bottom: 20px
}

.prtl .titleh1 {
  font-size: 66px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b3a0d;
  letter-spacing: -.03em;
  margin: 0 0 20px
}

.prtl .titleh1 em {
  font-style: italic;
  font-weight: 300;
  color: #2c5c14
}

.prtl .titledesc {
  font-size: 20px;
  line-height: 1.55;
  color: #2a4a18;
  margin: 0 0 40px;
  max-width: 480px
}

.prtl .titlebtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1b3a0d;
  color: #EDF2EC;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 13px;
  padding: 20px 40px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 28px -2px #69a44417;
  text-decoration: none
}

.prtl .titlebtn::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: #69A444;
  transition: height .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0
}

.prtl .titlebtn:hover::after {
  height: 100%
}

.prtl .titlebtn:hover {
  box-shadow: 0 8px 36px -2px #69a4441f
}

.prtl .titlebtn span,
.prtl .titlebtn i {
  position: relative;
  z-index: 1
}

.prtl .titleimgwrap {
  flex: 0 0 420px;
  position: relative
}

.prtl .titleimgwrap .corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: #1b3a0d;
  border-style: solid;
  z-index: 2
}

.prtl .titleimgwrap .corner.tl {
  top: -8px;
  left: -8px;
  border-width: 3px 0 0 3px;
  border-radius: 8px 0 0 0
}

.prtl .titleimgwrap .corner.tr {
  top: -8px;
  right: -8px;
  border-width: 3px 3px 0 0;
  border-radius: 0 8px 0 0
}

.prtl .titleimgwrap .corner.bl {
  bottom: -8px;
  left: -8px;
  border-width: 0 0 3px 3px;
  border-radius: 0 0 0 8px
}

.prtl .titleimgwrap .corner.br {
  bottom: -8px;
  right: -8px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 8px 0
}

.prtl .titleimg {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  box-shadow: 0 8px 36px -2px #69a4441f;
  filter: saturate(0.85) brightness(0.92);
  position: relative
}

.prtl .titleimgoverlay {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: #69a4442e;
  mix-blend-mode: multiply;
  pointer-events: none
}

.prtl .practsec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
  position: relative
}

.prtl .practsec::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #A9D18D 30%, #69A444 60%, transparent 100%)
}

.prtl .practhead {
  margin-bottom: 40px
}

.prtl .practlabel {
  font-size: 14px;
  letter-spacing: .1em;
  color: #69A444;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px
}

.prtl .practh2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: #1b3a0d;
  letter-spacing: -.02em;
  margin: 0 0 20px
}

.prtl .practh2 em {
  font-style: italic;
  font-weight: 300
}

.prtl .practintro {
  font-size: 16px;
  line-height: 1.55;
  color: #3a5a28;
  max-width: 560px
}

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

.prtl .practimgcol {
  position: relative
}

.prtl .practimgframe {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 36px -2px #69a4441f;
  position: relative
}

.prtl .practimgframe img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: blur(0.5px) brightness(0.96)
}

.prtl .practimgoverlay {
  position: absolute;
  inset: 0;
  background: #69a4441f;
  mix-blend-mode: multiply;
  pointer-events: none
}

.prtl .practcurve {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  pointer-events: none
}

.prtl .practitems {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.prtl .practitem {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 13px;
  background: #EDF2EC;
  box-shadow: 0 2px 2px -2px #69a44412;
  transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), outline .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: 2px solid transparent
}

.prtl .practitem:hover {
  box-shadow: 0 4px 28px -2px #69a44417;
  outline: 2px solid #69A444
}

.prtl .numring {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.prtl .numring svg {
  position: absolute;
  inset: 0;
  width: 44px;
  height: 44px
}

.prtl .numring .nval {
  font-size: 16px;
  font-weight: 700;
  color: #1b3a0d;
  position: relative;
  z-index: 1
}

.prtl .numring svg circle.track {
  fill: none;
  stroke: #A9D18D;
  stroke-width: 2.5
}

.prtl .numring svg circle.fill {
  fill: none;
  stroke: #69A444;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 110;
  stroke-dashoffset: 28;
  transform: rotate(-90deg);
  transform-origin: 50% 50%
}

.prtl .practitemtxt h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1b3a0d;
  margin: 0 0 4px;
  line-height: 1.1
}

.prtl .practitemtxt p {
  font-size: 14px;
  line-height: 1.55;
  color: #3a5a28;
  margin: 0
}

.prtl .approachsec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #EDF2EC;
  position: relative
}

.prtl .approachinner {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: center
}

.prtl .approachtxt h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.1;
  color: #1b3a0d;
  letter-spacing: -.02em;
  margin: 0 0 20px
}

.prtl .approachtxt h2 strong {
  font-weight: 800
}

.prtl .approachpara {
  font-size: 16px;
  line-height: 1.55;
  color: #3a5a28;
  margin: 0 0 20px
}

.prtl .metricrow {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-top: 40px
}

.prtl .metric {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.prtl .metricval {
  font-size: 36px;
  font-weight: 800;
  color: #69A444;
  line-height: 1.1;
  letter-spacing: -.03em
}

.prtl .metriclbl {
  font-size: 14px;
  color: #3a5a28;
  line-height: 1.55;
  letter-spacing: .04em
}

.prtl .approachimgstack {
  position: relative;
  height: 460px
}

.prtl .aimg1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 300px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 8px 36px -2px #69a4441f;
  filter: blur(0.3px)
}

.prtl .aimg2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 240px;
  object-fit: cover;
  border-radius: 13px;
  box-shadow: 0 4px 28px -2px #69a44417;
  filter: blur(0.5px) brightness(0.95)
}

.prtl .aimgoverlay1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 300px;
  border-radius: 22px;
  background: #69a44424;
  mix-blend-mode: multiply;
  pointer-events: none
}

.prtl .longsec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #1b3a0d;
  position: relative;
  overflow: hidden
}

.prtl .longsec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, #a9d18d26 0%, transparent 50%), radial-gradient(circle at 10% 90%, #69a44433 0%, transparent 45%);
  pointer-events: none
}

.prtl .longinner {
  position: relative;
  z-index: 1
}

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

.prtl .longh2 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  color: #EDF2EC;
  letter-spacing: -.03em;
  margin: 0
}

.prtl .longh2 em {
  font-style: italic;
  font-weight: 300;
  color: #A9D18D
}

.prtl .longdesc {
  font-size: 16px;
  line-height: 1.55;
  color: #A9D18D;
  max-width: 360px;
  margin: 0
}

.prtl .longcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.prtl .longcard {
  background: #edf2ec0f;
  border: 1px solid #a9d18d33;
  border-radius: 22px;
  padding: 40px;
  transition: background .28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: inset 0 1px 0 #a9d18d1a
}

.prtl .longcard:hover {
  background: #edf2ec1c;
  border-color: #a9d18d80
}

.prtl .longcard .cardico {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #69a44440;
  border-radius: 13px
}

.prtl .longcard .cardico i {
  font-size: 20px;
  color: #A9D18D
}

.prtl .longcard h4 {
  font-size: 20px;
  font-weight: 700;
  color: #EDF2EC;
  margin: 0 0 8px;
  line-height: 1.1
}

.prtl .longcard p {
  font-size: 14px;
  line-height: 1.55;
  color: #A9D18D;
  margin: 0
}

.prtl .longimgrow {
  margin-top: 40px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  height: 220px
}

.prtl .longimgrow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.6)
}

.prtl .longimgrow .imgcap {
  position: absolute;
  bottom: 20px;
  left: 40px;
  right: 40px;
  font-size: 20px;
  font-weight: 700;
  color: #EDF2EC;
  line-height: 1.55
}

.prtl .avlsec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
  position: relative
}

.prtl .avlhead {
  text-align: center;
  margin-bottom: 40px
}

.prtl .avlh2 {
  font-size: 36px;
  font-weight: 700;
  color: #1b3a0d;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 20px
}

.prtl .avlh2 em {
  font-style: italic;
  font-weight: 300
}

.prtl .avlsub {
  font-size: 16px;
  line-height: 1.55;
  color: #3a5a28;
  max-width: 520px;
  margin: 0 auto
}

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

.prtl .avlcard {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 28px -2px #69a44417;
  background: #EDF2EC;
  transition: box-shadow .3s cubic-bezier(0.34, 1.56, 0.64, 1), outline .22s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  outline: 2px solid transparent;
  display: flex;
  flex-direction: column
}

.prtl .avlcard:hover {
  box-shadow: 0 8px 36px -2px #69a4441f;
  outline: 2px solid #69A444
}

.prtl .avlcardimg {
  position: relative;
  height: 200px;
  overflow: hidden
}

.prtl .avlcardimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(0.4px) brightness(0.93);
  transition: transform .32s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prtl .avlcard:hover .avlcardimg img {
  transform: scale(1.04)
}

.prtl .avlcardimg .avlimgoverlay {
  position: absolute;
  inset: 0;
  background: #69a44429;
  mix-blend-mode: multiply;
  pointer-events: none
}

.prtl .avlcardbody {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.prtl .avlcardtag {
  font-size: 14px;
  color: #69A444;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase
}

.prtl .avlcard h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1b3a0d;
  margin: 0;
  line-height: 1.1
}

.prtl .avlcard p {
  font-size: 14px;
  line-height: 1.55;
  color: #3a5a28;
  margin: 0
}

.prtl .avlcardlink {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #69A444;
  text-decoration: none;
  margin-top: 8px;
  transition: gap .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prtl .avlcardlink:hover {
  gap: 8px
}

.prtl .avlbottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 40px
}

.prtl .avlbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #69A444;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 13px;
  padding: 20px 40px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 28px -2px #69a44417;
  text-decoration: none
}

.prtl .avlbtn::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: #1b3a0d;
  transition: height .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0
}

.prtl .avlbtn:hover::after {
  height: 100%
}

.prtl .avlbtn:hover {
  box-shadow: 0 8px 36px -2px #69a4441f
}

.prtl .avlbtn span,
.prtl .avlbtn i {
  position: relative;
  z-index: 1
}

@media (max-width: 992px) {
  .prtl .constrain {
    padding-left: 20px;
    padding-right: 20px
  }

  .prtl .titlegrid {
    flex-direction: column;
    gap: 40px
  }

  .prtl .titleimgwrap {
    flex: 0 0 auto;
    width: 100%
  }

  .prtl .titleh1 {
    font-size: 50px
  }

  .prtl .practgrid {
    grid-template-columns: 1fr
  }

  .prtl .practimgcol {
    display: none
  }

  .prtl .approachinner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .prtl .approachimgstack {
    display: none
  }

  .prtl .longcards {
    grid-template-columns: 1fr 1fr
  }

  .prtl .longtop {
    flex-direction: column;
    align-items: flex-start
  }

  .prtl .longh2 {
    font-size: 36px
  }

  .prtl .avlgrid {
    grid-template-columns: 1fr 1fr
  }

  .prtl .metricrow {
    gap: 20px
  }
}

@media (max-width: 576px) {
  .prtl .titleh1 {
    font-size: 36px
  }

  .prtl .titledesc {
    font-size: 16px
  }

  .prtl .titleimgwrap {
    display: none
  }

  .prtl .longcards {
    grid-template-columns: 1fr
  }

  .prtl .avlgrid {
    grid-template-columns: 1fr
  }

  .prtl .metricrow {
    flex-direction: column;
    gap: 20px
  }

  .prtl .longh2 {
    font-size: 26px
  }

  .prtl .practh2 {
    font-size: 26px
  }

  .prtl .avlh2 {
    font-size: 26px
  }

  .prtl .titlesec,
  .prtl .practsec,
  .prtl .approachsec,
  .prtl .longsec,
  .prtl .avlsec {
    padding-top: 40px;
    padding-bottom: 40px
  }
}

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

.pgSuccess .wrap {
  max-width: 560px;
  width: 100%;
  text-align: center
}

.pgSuccess .iconRing {
  width: 80px;
  height: 80px;
  border-radius: 48px;
  background: #EDF2EC;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  box-shadow: 0 4px 28px -2px #69a44417
}

.pgSuccess .iconRing svg {
  display: block
}

.pgSuccess .hdg {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #1b2a10;
  margin: 0 0 20px
}

.pgSuccess .hdg em {
  font-style: italic;
  font-weight: 300;
  color: #69A444
}

.pgSuccess .sub {
  font-size: 16px;
  line-height: 1.55;
  color: #3a4a30;
  margin: 0 0 40px
}

.pgSuccess .divLine {
  width: 48px;
  height: 3px;
  border-radius: 8px;
  background: #A9D18D;
  margin: 0 auto 40px
}

.pgSuccess .note {
  font-size: 14px;
  line-height: 1.55;
  color: #5a6e50;
  background: #EDF2EC;
  border-radius: 13px;
  padding: 20px;
  margin: 0 0 40px
}

.pgSuccess .note strong {
  color: #3a4a30
}

.pgSuccess .actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap
}

.pgSuccess .btnPrimary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #69A444;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 28px -2px #69a44417;
  transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.pgSuccess .btnPrimary::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #ffffff26;
  transition: height .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 22px;
  pointer-events: none
}

.pgSuccess .btnPrimary:hover::before {
  height: 100%
}

.pgSuccess .btnPrimary:hover {
  box-shadow: 0 8px 36px -2px #69a4441f;
  transform: translateY(-2px)
}

.pgSuccess .btnPrimary:focus-visible {
  outline: 3px solid #69A444;
  outline-offset: 3px
}

.pgSuccess .btnPrimary:active {
  transform: translateY(0)
}

.pgSuccess .btnSecondary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  color: #3a4a30;
  background: transparent;
  border: 2px solid #A9D18D;
  border-radius: 22px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color .22s cubic-bezier(0.68, -0.55, 0.27, 1.55), color .22s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.pgSuccess .btnSecondary::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #EDF2EC;
  transition: height .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 22px;
  pointer-events: none;
  z-index: 0
}

.pgSuccess .btnSecondary:hover::before {
  height: 100%
}

.pgSuccess .btnSecondary:hover {
  border-color: #69A444;
  color: #1b2a10;
  transform: translateY(-2px)
}

.pgSuccess .btnSecondary:focus-visible {
  outline: 3px solid #69A444;
  outline-offset: 3px
}

.pgSuccess .btnSecondary span,
.pgSuccess .btnSecondary svg {
  position: relative;
  z-index: 1
}

@media (max-width: 576px) {
  .pgSuccess {
    padding: 40px 20px
  }

  .pgSuccess .hdg {
    font-size: 26px
  }

  .pgSuccess .actions {
    flex-direction: column;
    align-items: stretch
  }

  .pgSuccess .btnPrimary,
  .pgSuccess .btnSecondary {
    justify-content: center
  }
}