html,
body {
  margin: 0;
  padding: 0
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  font-family: 'Karla', sans-serif
}

.top-bar {
  background: #2D6A4A;
  padding: 6px 24px
}

.top-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.top-bar__contacts {
  display: flex;
  align-items: center;
  gap: 24px
}

.top-bar__link {
  color: #F2F6F8;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s ease-out
}

.top-bar__link:hover {
  color: #EDAD30
}

.top-bar__link:focus {
  outline: 2px solid #EDAD30;
  outline-offset: 2px
}

.top-bar__link svg {
  flex-shrink: 0
}

.top-bar__addr {
  color: #F2F6F8;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  gap: 6px
}

.top-bar__addr svg {
  flex-shrink: 0
}

.top-bar__lang {
  display: flex;
  align-items: center;
  gap: 6px
}

.top-bar__lang-btn {
  background: none;
  border: 1px solid #f2f6f84d;
  color: #F2F6F8;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .22s ease-out, border-color .22s ease-out;
  min-height: 44px
}

.top-bar__lang-btn:hover {
  background: #edad302e;
  border-color: #EDAD30
}

.top-bar__lang-btn:focus {
  outline: 2px solid #EDAD30;
  outline-offset: 2px
}

.top-bar__lang-btn--active {
  background: #EDAD30;
  border-color: #EDAD30;
  color: #2D6A4A;
  font-weight: 700
}

.hd {
  background: #F2F6F8;
  padding: 24px 24px 0;
  position: relative
}

.hd__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px
}

.hd__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px
}

.hd__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  padding: 12px 24px;
  border-right: 4px solid #EDAD30;
  box-shadow: 0 1px 6px -2px #edad3014 0 7px 18px -2px #edad3014
}

.hd__logo-wrap img {
  display: block;
  object-fit: contain
}

.hd__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #2d6a4a26;
  border-radius: 20px;
  padding: 6px 12px;
  box-shadow: 0 1px 6px -2px #2d6a4a14
}

.hd__badge-stars {
  display: flex;
  gap: 2px
}

.hd__badge-star {
  width: 14px;
  height: 14px
}

.hd__badge-text {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #2D6A4A;
  font-weight: 700
}

.hd__badge-sub {
  font-size: 14px;
  line-height: 1.6;
  color: #3a3a3a;
  letter-spacing: .01em
}

.hd__nav-strip {
  width: 100%;
  background: #2D6A4A;
  border-radius: 12px 12px 0 0;
  padding: 0 12px;
  box-shadow: 0 9px 44px -2px #2d6a4a24
}

.hd__nav {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0
}

.hd__nav-item {
  position: relative
}

.hd__nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #F2F6F8;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .02em;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  min-height: 44px;
  position: relative;
  transition: color .18s ease-out, background .18s ease-out
}

.hd__nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: #EDAD30;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s ease-out;
  transform-origin: left center
}

.hd__nav-link:hover {
  color: #EDAD30;
  background: #edad3014
}

.hd__nav-link:hover::after {
  transform: scaleX(1)
}

.hd__nav-link:focus {
  outline: 2px solid #EDAD30;
  outline-offset: 2px
}

.hd__nav-link--home {
  color: #EDAD30
}

@media (max-width: 640px) {
  .top-bar__addr {
    display: none
  }

  .top-bar__inner {
    flex-wrap: wrap;
    gap: 6px
  }

  .hd__nav-link {
    font-size: 14px;
    padding: 12px
  }

  .hd__nav-link::after {
    left: 12px;
    right: 12px
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .hd__nav-link {
    padding: 12px 16px
  }
}

.ft {
  background: #2D6A4A;
  padding: 48px 24px
}

.ft__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start
}

.ft__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px
}

.ft__logo-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 12px 24px;
  border-right: 4px solid #EDAD30;
  box-shadow: 0 1px 6px -2px #edad3014;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.ft__logo-wrap img {
  display: block;
  object-fit: contain
}

.ft__brand-name {
  color: #F2F6F8;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .01em
}

.ft__brand-desc {
  color: #f2f6f8bf;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em
}

.ft__nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.ft__nav-label {
  color: #EDAD30;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.6;
  text-transform: uppercase
}

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

.ft__nav-item-link {
  color: #f2f6f8d9;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .01em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  transition: color .2s ease-out;
  min-height: 44px
}

.ft__nav-item-link:hover {
  color: #EDAD30
}

.ft__nav-item-link:focus {
  outline: 2px solid #EDAD30;
  outline-offset: 2px;
  border-radius: 2px
}

.ft__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.ft__contacts-label {
  color: #EDAD30;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.6;
  text-transform: uppercase
}

.ft__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: #f2f6f8d9;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em
}

.ft__contact-link {
  color: #f2f6f8d9;
  text-decoration: none;
  transition: color .2s ease-out;
  min-height: 44px;
  display: inline-flex;
  align-items: center
}

.ft__contact-link:hover {
  color: #EDAD30
}

.ft__contact-link:focus {
  outline: 2px solid #EDAD30;
  outline-offset: 2px;
  border-radius: 2px
}

.ft__bottom {
  max-width: 1280px;
  margin: 48px auto 0;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid #f2f6f81f
}

.ft__copy {
  color: #f2f6f88c;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em
}

.ft__legal-link {
  color: #f2f6f88c;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em;
  text-decoration: none;
  transition: color .2s ease-out;
  min-height: 44px;
  display: inline-flex;
  align-items: center
}

.ft__legal-link:hover {
  color: #EDAD30
}

.ft__legal-link:focus {
  outline: 2px solid #EDAD30;
  outline-offset: 2px;
  border-radius: 2px
}

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

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

@media (min-width: 641px) and (max-width: 1024px) {
  .ft__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }
}

.doc-block {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  color: #2a2a2a;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: .01em
}

.doc-block h1 {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1b1b1b;
  margin-bottom: 24px;
  margin-top: 0
}

.doc-block h2 {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1b1b1b;
  margin-top: 48px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #EDAD30
}

.doc-block h3 {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #2D6A4A;
  margin-top: 48px;
  margin-bottom: 12px;
  font-weight: 700
}

.doc-block h4 {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #2D6A4A;
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 700
}

.doc-block h5 {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #2a2a2a;
  margin-top: 24px;
  margin-bottom: 6px;
  font-weight: 700;
  text-transform: uppercase
}

.doc-block h6 {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #555;
  margin-top: 24px;
  margin-bottom: 6px;
  font-weight: 600
}

.doc-block p {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 24px;
  color: #2a2a2a
}

.doc-block strong,
.doc-block b {
  font-weight: 700;
  color: #1b1b1b
}

.doc-block em,
.doc-block i {
  font-style: italic;
  color: #3a3a3a
}

.doc-block a {
  color: #2D6A4A;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease-out, text-decoration-color .2s ease-out
}

.doc-block a:hover {
  color: #EDAD30;
  text-decoration-color: #EDAD30
}

.doc-block ul,
.doc-block ol {
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 24px;
  line-height: 1.6
}

.doc-block li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 6px;
  color: #2a2a2a
}

.doc-block blockquote {
  margin: 24px 0;
  padding: 12px 24px;
  background: #F2F6F8;
  border-radius: 6px;
  box-shadow: inset 0 1px 6px -2px #edad3014;
  font-size: 16px;
  line-height: 1.6;
  color: #3a3a3a
}

.doc-block div {
  margin-bottom: 24px
}

.doc-block table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 48px;
  font-size: 14px;
  line-height: 1.6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 7px 18px -2px #edad3014
}

.doc-block thead {
  background: #2D6A4A;
  color: #fff
}

.doc-block thead th {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: left;
  color: #fff
}

.doc-block tbody tr {
  border-bottom: 1px solid #e8eef1;
  transition: background .2s ease-out
}

.doc-block tbody tr:last-child {
  border-bottom: none
}

.doc-block tbody tr:nth-child(even) {
  background: #F2F6F8
}

.doc-block tbody tr:hover {
  background: #edad3012
}

.doc-block th,
.doc-block td {
  padding: 12px 24px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.6;
  color: #2a2a2a
}

.doc-block td {
  border-right: 1px solid #e8eef1
}

.doc-block td:last-child {
  border-right: none
}

.doc-block hr {
  border: none;
  border-top: 1px solid #d4dde2;
  margin: 48px 0
}

.doc-block code {
  background: #F2F6F8;
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 14px;
  color: #2D6A4A;
  letter-spacing: .01em
}

.doc-block pre {
  background: #F2F6F8;
  padding: 24px;
  border-radius: 6px;
  overflow-x: auto;
  margin-bottom: 24px;
  box-shadow: 0 1px 6px -2px #2d6a4a14
}

.doc-block pre code {
  background: none;
  padding: 0;
  font-size: 14px
}

@media (max-width: 1024px) {
  .doc-block {
    padding: 48px 24px
  }

  .doc-block h1 {
    font-size: 33px
  }

  .doc-block h2 {
    font-size: 19px;
    margin-top: 48px
  }
}

@media (max-width: 640px) {
  .doc-block {
    padding: 24px 12px
  }

  .doc-block h1 {
    font-size: 33px
  }

  .doc-block h2 {
    font-size: 19px;
    margin-top: 24px
  }

  .doc-block h3 {
    margin-top: 24px
  }

  .doc-block table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }

  .doc-block th,
  .doc-block td {
    padding: 12px;
    min-width: 120px
  }
}

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

.edu-detail .top-bar {
  background: linear-gradient(203deg, #2D6A4A, #F2F6F8);
  padding: 48px 24px 24px;
  position: relative;
  overflow: hidden
}

.edu-detail .top-bar__dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none
}

.edu-detail .top-bar__dot {
  position: absolute;
  border-radius: 20px;
  background: #edad302e
}

.edu-detail .top-bar__dot--a {
  width: 8px;
  height: 8px;
  top: 30px;
  left: 12%
}

.edu-detail .top-bar__dot--b {
  width: 5px;
  height: 5px;
  top: 55px;
  left: 18%
}

.edu-detail .top-bar__dot--c {
  width: 10px;
  height: 10px;
  top: 20px;
  right: 20%
}

.edu-detail .top-bar__dot--d {
  width: 6px;
  height: 6px;
  top: 70px;
  right: 30%
}

.edu-detail .top-bar__dot--e {
  width: 4px;
  height: 4px;
  top: 40px;
  right: 10%
}

.edu-detail .top-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.edu-detail .top-bar__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.edu-detail .top-bar__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #edad3026;
  border: 1px solid #edad3066;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #2D6A4A;
  letter-spacing: .02em
}

.edu-detail .top-bar__tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background: #EDAD30;
  display: inline-block;
  flex-shrink: 0
}

.edu-detail .top-bar__heading {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fff;
  font-weight: 800;
  max-width: 820px
}

.edu-detail .top-bar__desc {
  font-size: 19px;
  line-height: 1.6;
  color: #ffffffe0;
  max-width: 640px;
  letter-spacing: .01em
}

.edu-detail .top-bar__stats {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap
}

.edu-detail .top-bar__stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #ffffffbf;
  letter-spacing: .01em
}

.edu-detail .top-bar__stat-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

@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)
  }
}

.edu-detail .top-bar__tag {
  animation: slideFromLeft .25s ease-out both;
  animation-delay: .05s
}

.edu-detail .top-bar__heading {
  animation: slideFromLeft .35s ease-out both;
  animation-delay: .12s
}

.edu-detail .top-bar__desc {
  animation: slideFromRight .4s ease-out both;
  animation-delay: .2s
}

.edu-detail .top-bar__stats {
  animation: slideFromBottom .3s ease-out both;
  animation-delay: .28s
}

.edu-detail .divider-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 24px 0
}

.edu-detail .divider-dots__dot {
  width: 6px;
  height: 6px;
  border-radius: 20px;
  background: #EDAD30;
  opacity: .5
}

.edu-detail .divider-dots__dot--mid {
  opacity: 1;
  background: #2D6A4A
}

.edu-detail .body-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start
}

.edu-detail .body-grid__main {
  display: flex;
  flex-direction: column;
  gap: 48px
}

.edu-detail .body-grid__aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 24px
}

.edu-detail .img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 7px 18px -2px #2d6a4a14;
  position: relative
}

.edu-detail .img-wrap__img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: blur(6px);
  transition: filter .45s ease-out
}

.edu-detail .img-wrap__img.loaded {
  filter: blur(0)
}

.edu-detail .img-wrap__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(203deg, transparent, #2d6a4a8c);
  pointer-events: none
}

.edu-detail .desc-block {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.edu-detail .desc-block__accent-line {
  width: 36px;
  height: 3px;
  background: #EDAD30;
  border-radius: 2px
}

.edu-detail .desc-block__heading {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1a2e22;
  font-weight: 700
}

.edu-detail .desc-block__body {
  font-size: 16px;
  line-height: 1.6;
  color: #2c3e30;
  letter-spacing: .01em
}

.edu-detail .desc-block__body p:first-child {
  font-size: 19px;
  line-height: 1.6
}

.edu-detail .desc-block__body p .first-word {
  font-weight: 700;
  color: #EDAD30;
  text-transform: uppercase;
  font-size: .88em;
  letter-spacing: .02em
}

.edu-detail .desc-block__body ul,
.edu-detail .desc-block__body ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  padding-left: 0;
  list-style: none
}

.edu-detail .desc-block__body li {
  font-size: 16px;
  line-height: 1.6;
  color: #2c3e30;
  padding-left: 12px;
  position: relative
}

.edu-detail .desc-block__body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 20px;
  background: #2D6A4A
}

.edu-detail .desc-block__body blockquote {
  border-top: 2px solid #EDAD30;
  border-radius: 2px;
  background: #F2F6F8;
  padding: 12px 24px;
  margin: 0;
  font-size: 19px;
  line-height: 1.6;
  color: #2D6A4A;
  font-style: italic
}

.edu-detail .desc-block__body h2 {
  font-size: 33px;
  line-height: 1.2;
  color: #1a2e22;
  font-weight: 700;
  letter-spacing: .01em
}

.edu-detail .desc-block__body h3 {
  font-size: 19px;
  line-height: 1.2;
  color: #1a2e22;
  font-weight: 700;
  letter-spacing: .01em
}

.edu-detail .desc-block__body details {
  border: 1px solid #2d6a4a33;
  border-radius: 6px;
  padding: 12px
}

.edu-detail .desc-block__body summary {
  font-size: 16px;
  font-weight: 600;
  color: #2D6A4A;
  cursor: pointer;
  letter-spacing: .01em
}

.edu-detail .program-block {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.edu-detail .program-block__accent-line {
  width: 36px;
  height: 3px;
  background: #EDAD30;
  border-radius: 2px
}

.edu-detail .program-block__heading {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1a2e22;
  font-weight: 700
}

.edu-detail .program-block__body {
  font-size: 16px;
  line-height: 1.6;
  color: #2c3e30;
  letter-spacing: .01em
}

.edu-detail .program-block__body p {
  font-size: 16px;
  line-height: 1.6
}

.edu-detail .program-block__body h2 {
  font-size: 33px;
  line-height: 1.2;
  color: #1a2e22;
  font-weight: 700
}

.edu-detail .program-block__body h3 {
  font-size: 19px;
  line-height: 1.2;
  color: #1a2e22;
  font-weight: 700
}

.edu-detail .program-block__body ul,
.edu-detail .program-block__body ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  padding-left: 0;
  list-style: none
}

.edu-detail .program-block__body li {
  font-size: 16px;
  line-height: 1.6;
  color: #2c3e30;
  padding-left: 12px;
  position: relative
}

.edu-detail .program-block__body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 20px;
  background: #EDAD30
}

.edu-detail .price-card {
  background: #fff;
  border: 1px solid #2d6a4a2e;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 9px 44px -2px #2d6a4a24;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden
}

.edu-detail .price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #EDAD30, #2D6A4A);
  border-radius: 12px 12px 0 0
}

.edu-detail .price-card__label {
  font-size: 14px;
  color: #2D6A4A;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase
}

.edu-detail .price-card__amount {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 800;
  color: #1a2e22;
  letter-spacing: .01em
}

.edu-detail .price-card__note {
  font-size: 14px;
  color: #5a7a63;
  line-height: 1.6;
  letter-spacing: .01em
}

.edu-detail .price-card__terms {
  font-size: 14px;
  color: #2c3e30;
  line-height: 1.6;
  background: #F2F6F8;
  border-radius: 6px;
  padding: 12px
}

.edu-detail .price-card__meta {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.edu-detail .price-card__meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: #2c3e30;
  letter-spacing: .01em
}

.edu-detail .price-card__meta-key {
  color: #5a7a63
}

.edu-detail .price-card__seats {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #edad301f;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 700;
  color: #a07010
}

.edu-detail .price-card__seats-dot {
  width: 7px;
  height: 7px;
  border-radius: 20px;
  background: #EDAD30;
  flex-shrink: 0
}

.edu-detail .price-card__btn {
  display: block;
  width: 100%;
  background: #2D6A4A;
  color: #fff;
  border: 2px solid #2D6A4A;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease-out, color .2s ease-out, border-color .2s ease-out;
  position: relative;
  overflow: hidden
}

.edu-detail .price-card__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 2px solid #EDAD30;
  opacity: 0;
  transition: opacity .25s ease-out
}

.edu-detail .price-card__btn:hover {
  background: #fff;
  color: #2D6A4A;
  border-color: #2D6A4A
}

.edu-detail .price-card__btn:hover::after {
  opacity: 1
}

.edu-detail .price-card__btn:focus {
  outline: 3px solid #EDAD30;
  outline-offset: 2px
}

.edu-detail .price-card__btn:active {
  background: #F2F6F8
}

.edu-detail .report-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #5a7a63;
  text-decoration: none;
  letter-spacing: .01em;
  padding: 6px 0;
  transition: color .2s ease-out
}

.edu-detail .report-link:hover {
  color: #2D6A4A
}

.edu-detail .report-link__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0
}

.edu-detail .premium-strip {
  background: #1a2e22;
  padding: 48px 24px;
  position: relative;
  overflow: hidden
}

@keyframes colorWave {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(200%)
  }
}

.edu-detail .premium-strip__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #edad3012, transparent);
  animation: colorWave 6s ease-out infinite;
  pointer-events: none
}

.edu-detail .premium-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.edu-detail .premium-strip__accent-line {
  width: 36px;
  height: 3px;
  background: #EDAD30;
  border-radius: 2px
}

.edu-detail .premium-strip__heading {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fff;
  font-weight: 700;
  max-width: 640px
}

.edu-detail .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.edu-detail .faq-card {
  background: #ffffff0d;
  border: 1px solid #edad3033;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: inset 0 1px 6px -2px #edad301a;
  transition: border-color .2s ease-out, box-shadow .2s ease-out
}

.edu-detail .faq-card:hover {
  border-color: #edad3080;
  box-shadow: 0 7px 18px -2px #edad3014 inset 0 1px 6px -2px #edad3026
}

.edu-detail .faq-card__q {
  font-size: 16px;
  font-weight: 700;
  color: #EDAD30;
  line-height: 1.2;
  letter-spacing: .01em
}

.edu-detail .faq-card__a {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffffc7;
  letter-spacing: .01em
}

.edu-detail .reaction-strip {
  background: #F2F6F8;
  padding: 48px 24px
}

.edu-detail .reaction-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center
}

.edu-detail .reaction-strip__accent-line {
  width: 36px;
  height: 3px;
  background: #2D6A4A;
  border-radius: 2px
}

.edu-detail .reaction-strip__heading {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  color: #1a2e22;
  letter-spacing: .01em;
  text-align: center
}

.edu-detail .reaction-strip__sub {
  font-size: 14px;
  color: #5a7a63;
  text-align: center;
  letter-spacing: .01em
}

.edu-detail .reactions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center
}

.edu-detail .reactions__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none
}

.edu-detail .reactions__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border: 2px solid #2d6a4a33;
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  transition: border-color .2s ease-out, background-color .2s ease-out, box-shadow .2s ease-out;
  font-size: 14px;
  color: #2c3e30;
  letter-spacing: .01em;
  user-select: none
}

.edu-detail .reactions__label:hover {
  border-color: #EDAD30;
  box-shadow: 0 1px 6px -2px #edad3014
}

.edu-detail .reactions__label:focus-within {
  outline: 3px solid #EDAD30;
  outline-offset: 2px
}

.edu-detail .reactions__icon {
  display: block
}

.edu-detail .reactions__icon svg {
  display: block
}

.edu-detail .reactions__input:checked+.reactions__label {
  border-color: #2D6A4A;
  background: #2d6a4a14;
  box-shadow: inset 0 1px 6px -2px #2d6a4a1f;
  color: #2D6A4A;
  font-weight: 700
}

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

  .edu-detail .body-grid__aside {
    position: static
  }

  .edu-detail .faq-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 640px) {
  .edu-detail .top-bar__heading {
    font-size: 33px
  }

  .edu-detail .top-bar {
    padding: 48px 12px 24px
  }

  .edu-detail .body-grid {
    padding: 24px 12px
  }

  .edu-detail .premium-strip {
    padding: 48px 12px
  }

  .edu-detail .reaction-strip {
    padding: 48px 12px
  }

  .edu-detail .desc-block__body ul,
  .edu-detail .desc-block__body ol,
  .edu-detail .program-block__body ul,
  .edu-detail .program-block__body ol {
    grid-template-columns: 1fr
  }

  .edu-detail .reactions {
    gap: 6px
  }

  .edu-detail .reactions__label {
    padding: 12px
  }
}

.edu-biz {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  overflow: hidden
}

.edu-biz .pg-top {
  padding: 48px 0 24px;
  position: relative
}

.edu-biz .pg-top__dec {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  border-radius: 12px
}

.edu-biz .pg-top__dec-dot {
  position: absolute;
  border-radius: 20px;
  background: #EDAD30;
  opacity: .07
}

.edu-biz .pg-top__dec-dot--a {
  width: 80px;
  height: 80px;
  top: 12px;
  right: 120px
}

.edu-biz .pg-top__dec-dot--b {
  width: 40px;
  height: 40px;
  top: 48px;
  right: 60px;
  border-radius: 6px
}

.edu-biz .pg-top__dec-dot--c {
  width: 24px;
  height: 24px;
  bottom: 24px;
  left: 80px
}

.edu-biz .pg-top__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F2F6F8;
  border: 1px solid #EDAD30;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
  color: #2D6A4A;
  letter-spacing: .02em;
  margin-bottom: 12px
}

.edu-biz .pg-top__label-dot {
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background: #EDAD30;
  display: inline-block
}

.edu-biz .pg-top__heading {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1b2a22;
  margin: 0 0 12px;
  max-width: 700px
}

.edu-biz .pg-top__sub {
  font-size: 19px;
  line-height: 1.6;
  color: #3a4a40;
  max-width: 600px;
  margin: 0
}

.edu-biz .pg-top__sub span:first-word,
.edu-biz .pg-top__sub-accent {
  color: #EDAD30;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em
}

.edu-biz .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0 48px
}

.edu-biz .prog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 7px 18px -2px #edad3014;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow .25s ease-out, transform .2s ease-out;
  position: relative
}

.edu-biz .prog-card:hover {
  box-shadow: 0 9px 44px -2px #edad3024;
  transform: translateY(-3px)
}

.edu-biz .prog-card__img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  flex-shrink: 0
}

.edu-biz .prog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease-out
}

.edu-biz .prog-card:hover .prog-card__img {
  transform: scale(1.04)
}

.edu-biz .prog-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(203deg, #2d6a4a2e 0%, #f2f6f800 60%);
  pointer-events: none
}

.edu-biz .prog-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #EDAD30;
  color: #1b2a22;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 6px;
  padding: 6px 12px;
  line-height: 1.2;
  z-index: 2
}

.edu-biz .prog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1
}

.edu-biz .prog-card__name {
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1b2a22;
  margin: 0
}

.edu-biz .prog-card__name::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: #EDAD30;
  border-radius: 2px;
  margin-bottom: 12px
}

.edu-biz .prog-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #3a4a40;
  margin: 0
}

.edu-biz .prog-card__meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px
}

.edu-biz .prog-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #2D6A4A;
  line-height: 1.2
}

.edu-biz .prog-card__meta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.edu-biz .prog-card__price-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #F2F6F8
}

.edu-biz .prog-card__price {
  font-size: 33px;
  line-height: 1.2;
  font-weight: 700;
  color: #1b2a22;
  letter-spacing: .01em
}

.edu-biz .prog-card__price-terms {
  font-size: 14px;
  line-height: 1.6;
  color: #5a6a60;
  flex: 1
}

.edu-biz .prog-card__note {
  font-size: 14px;
  color: #2D6A4A;
  line-height: 1.6;
  background: #F2F6F8;
  border-radius: 6px;
  padding: 6px 12px
}

.edu-biz .prog-card__seats {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #b85c00;
  font-weight: 600;
  letter-spacing: .01em
}

.edu-biz .prog-card__seats-dot {
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background: #EDAD30;
  display: inline-block;
  box-shadow: inset 0 1px 3px #edad3066
}

.edu-biz .prog-card__btn {
  display: block;
  text-align: center;
  margin: 0 24px 24px;
  padding: 12px 24px;
  background: #2D6A4A;
  color: #fff;
  font-size: 16px;
  letter-spacing: .02em;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color .2s ease-out;
  border: 2px solid #2D6A4A
}

.edu-biz .prog-card__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #EDAD30;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease-out;
  border-radius: 4px;
  z-index: 0
}

.edu-biz .prog-card__btn:hover::before {
  transform: scaleX(1)
}

.edu-biz .prog-card__btn:hover {
  color: #1b2a22;
  border-color: #EDAD30
}

.edu-biz .prog-card__btn-text {
  position: relative;
  z-index: 1
}

.edu-biz .prog-card__btn:focus-visible {
  outline: 3px solid #EDAD30;
  outline-offset: 2px
}

.edu-biz .stat-strip {
  background: linear-gradient(203deg, #2D6A4A 0%, #F2F6F8 100%);
  border-radius: 12px;
  padding: 48px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden
}

.edu-biz .stat-strip__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 12px
}

.edu-biz .stat-strip__bg-shape {
  position: absolute;
  border-radius: 20px;
  background: #EDAD30;
  opacity: .06
}

.edu-biz .stat-strip__bg-shape--a {
  width: 120px;
  height: 120px;
  right: 24px;
  top: -24px
}

.edu-biz .stat-strip__bg-shape--b {
  width: 60px;
  height: 60px;
  right: 80px;
  bottom: 12px;
  border-radius: 6px
}

.edu-biz .stat-strip__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  background: #ffffff1f;
  border-radius: 12px;
  border: 1px solid #ffffff2e;
  box-shadow: inset 0 1px 6px #edad3014
}

.edu-biz .stat-strip__num {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 700;
  color: #EDAD30;
  letter-spacing: .01em
}

.edu-biz .stat-strip__label {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  letter-spacing: .01em
}

.edu-biz .stat-strip__divider {
  width: 1px;
  background: #ffffff26;
  flex-shrink: 0;
  align-self: stretch;
  display: none
}

.edu-biz .about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  margin-bottom: 48px;
  position: relative
}

.edu-biz .about-row::after {
  content: '';
  position: absolute;
  right: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  background: linear-gradient(203deg, #EDAD30, #2D6A4A);
  border-radius: 2px
}

.edu-biz .about-row__img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 9px 44px -2px #2d6a4a24;
  position: relative
}

.edu-biz .about-row__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.edu-biz .about-row__img-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(203deg, #edad301f 0%, transparent 55%);
  pointer-events: none
}

.edu-biz .about-row__txt {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.edu-biz .about-row__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #2D6A4A;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase
}

.edu-biz .about-row__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background: #EDAD30;
  display: inline-block
}

.edu-biz .about-row__h {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1b2a22;
  margin: 0
}

.edu-biz .about-row__h::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: #EDAD30;
  border-radius: 2px;
  margin-bottom: 12px
}

.edu-biz .about-row__p {
  font-size: 16px;
  line-height: 1.6;
  color: #3a4a40;
  margin: 0
}

.edu-biz .about-row__p-lg {
  font-size: 19px;
  line-height: 1.6;
  color: #1b2a22;
  margin: 0
}

.edu-biz .about-row__p-lg .acc {
  color: #EDAD30;
  font-weight: 700;
  text-transform: uppercase
}

.edu-biz .about-row__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  list-style: none;
  padding: 0;
  margin: 0
}

.edu-biz .about-row__list-item {
  font-size: 14px;
  line-height: 1.6;
  color: #2D6A4A;
  display: flex;
  align-items: flex-start;
  gap: 6px
}

.edu-biz .about-row__list-item::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #EDAD30;
  margin-top: 5px;
  flex-shrink: 0
}

.edu-biz .faq-band {
  background: #F2F6F8;
  border-radius: 12px;
  padding: 48px;
  margin-bottom: 48px;
  position: relative
}

.edu-biz .faq-band__edge {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(203deg, #EDAD30, #2D6A4A);
  border-radius: 2px 0 0 2px
}

.edu-biz .faq-band__head {
  margin-bottom: 24px
}

.edu-biz .faq-band__h {
  font-size: 33px;
  line-height: 1.2;
  color: #1b2a22;
  margin: 0 0 12px;
  letter-spacing: .01em
}

.edu-biz .faq-band__h::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: #EDAD30;
  border-radius: 2px;
  margin-bottom: 12px
}

.edu-biz .faq-band__sub {
  font-size: 16px;
  line-height: 1.6;
  color: #3a4a40;
  margin: 0
}

.edu-biz .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0
}

.edu-biz .faq-item {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 6px -2px #2d6a4a14
}

.edu-biz .faq-item__q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  color: #1b2a22;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  letter-spacing: .01em;
  transition: color .2s ease-out
}

.edu-biz .faq-item__q:hover {
  color: #2D6A4A
}

.edu-biz .faq-item__q:focus-visible {
  outline: 3px solid #EDAD30;
  outline-offset: 2px;
  border-radius: 6px
}

.edu-biz .faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0
}

.edu-biz .faq-item__a {
  font-size: 14px;
  line-height: 1.6;
  color: #3a4a40;
  padding: 0 24px 24px;
  margin: 0
}

.edu-biz .cta-band {
  background: #1b2a22;
  border-radius: 12px;
  padding: 48px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden
}

.edu-biz .cta-band__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 12px
}

.edu-biz .cta-band__bg-geo {
  position: absolute;
  border-radius: 20px;
  background: #EDAD30;
  opacity: .05
}

.edu-biz .cta-band__bg-geo--a {
  width: 160px;
  height: 160px;
  right: 80px;
  top: -40px
}

.edu-biz .cta-band__bg-geo--b {
  width: 60px;
  height: 60px;
  right: 200px;
  bottom: 12px;
  border-radius: 6px
}

.edu-biz .cta-band__txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.edu-biz .cta-band__h {
  font-size: 33px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  letter-spacing: .01em
}

.edu-biz .cta-band__h::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: #EDAD30;
  border-radius: 2px;
  margin-bottom: 12px
}

.edu-biz .cta-band__p {
  font-size: 16px;
  line-height: 1.6;
  color: #b8ccc0;
  margin: 0
}

.edu-biz .cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0
}

.edu-biz .cta-band__btn {
  display: inline-block;
  padding: 12px 24px;
  background: #EDAD30;
  color: #1b2a22;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background .22s ease-out, color .22s ease-out;
  border: 2px solid #EDAD30
}

.edu-biz .cta-band__btn:hover {
  background: transparent;
  color: #EDAD30
}

.edu-biz .cta-band__btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px
}

.edu-biz .cta-band__contact {
  font-size: 14px;
  color: #b8ccc0;
  text-align: center;
  letter-spacing: .01em
}

.edu-biz .cta-band__contact a {
  color: #EDAD30;
  text-decoration: none;
  transition: color .18s ease-out
}

.edu-biz .cta-band__contact a:hover {
  color: #fff
}

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

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

.edu-biz .anim-up {
  animation: slideUp .45s ease-out both
}

.edu-biz .anim-up--d1 {
  animation-delay: .08s
}

.edu-biz .anim-up--d2 {
  animation-delay: .16s
}

.edu-biz .anim-up--d3 {
  animation-delay: .22s
}

.edu-biz .anim-up--d4 {
  animation-delay: .28s
}

.edu-biz .anim-up--d5 {
  animation-delay: .34s
}

@media (max-width: 1024px) {
  .edu-biz .cards-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .edu-biz .stat-strip {
    flex-direction: column;
    padding: 24px
  }

  .edu-biz .about-row {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .edu-biz .about-row::after {
    display: none
  }

  .edu-biz .cta-band {
    flex-direction: column;
    padding: 24px;
    gap: 24px
  }

  .edu-biz .faq-band {
    padding: 24px
  }
}

@media (max-width: 640px) {
  .edu-biz .cards-grid {
    grid-template-columns: 1fr
  }

  .edu-biz .pg-top__heading {
    font-size: 33px
  }

  .edu-biz .stat-strip__num {
    font-size: 33px
  }

  .edu-biz .about-row__list {
    grid-template-columns: 1fr
  }

  .edu-biz .cta-band__h {
    font-size: 19px
  }

  .edu-biz .about-row__h {
    font-size: 19px
  }

  .edu-biz .faq-band__h {
    font-size: 19px
  }

  .edu-biz .pg-top {
    padding: 24px 0 12px
  }
}

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

.lp-prog__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px
}

.lp-prog ::selection {
  background: #2D6A4A;
  color: #F2F6F8;
  font-weight: 700
}

.lp-prog__arrows-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 0
}

.lp-prog__arrow-item {
  width: 10px;
  height: 10px;
  border-top: 2px solid #EDAD30;
  border-right: 2px solid #EDAD30;
  transform: rotate(45deg);
  opacity: .5
}

.lp-prog__arrow-item--mid {
  opacity: .75
}

.lp-prog__arrow-item--full {
  opacity: 1
}

.lp-prog__top-line {
  display: block;
  width: 36px;
  height: 3px;
  background: #EDAD30;
  margin-bottom: 12px;
  border-radius: 2px
}

.lp-prog__title-blk {
  position: relative;
  padding: 48px 0 96px;
  background: #F2F6F8;
  overflow: hidden
}

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

.lp-prog__curved-bg svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.lp-prog__title-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1
}

.lp-prog__title-text {
  flex: 1 1 0;
  min-width: 0
}

.lp-prog__label {
  display: inline-block;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #2D6A4A;
  background: #2d6a4a14;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 24px
}

.lp-prog__h1 {
  font-size: 62px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1a2e22;
  margin: 0 0 24px
}

.lp-prog__h1 em {
  font-style: normal;
  color: #2D6A4A
}

.lp-prog__lead {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #2a3a2e;
  margin: 0 0 24px
}

.lp-prog__lead--first-word::first-line {
  font-size: 19px
}

.lp-prog__lead span.lp-prog__accent-word {
  text-transform: uppercase;
  color: #EDAD30;
  font-weight: 700
}

.lp-prog__meta-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px
}

.lp-prog__meta-chip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #2a3a2e;
  background: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  box-shadow: 0 1px 6px -2px #edad3014
}

.lp-prog__meta-chip svg {
  flex-shrink: 0
}

.lp-prog__img-side {
  flex: 0 0 440px;
  position: relative
}

.lp-prog__img-shape {
  width: 440px;
  height: 520px;
  position: relative;
  border-radius: 20px 20px 80px 20px;
  overflow: hidden;
  box-shadow: 0 9px 44px -2px #2d6a4a24;
  transition: box-shadow .35s ease-out
}

.lp-prog__img-shape:hover {
  box-shadow: 0 9px 44px -2px #2d6a4a38
}

.lp-prog__img-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease-out
}

.lp-prog__img-shape:hover img {
  transform: scale(1.04)
}

.lp-prog__img-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 80px 20px;
  background: radial-gradient(ellipse at 0% 0%, #2d6a4a61 0%, transparent 55%), radial-gradient(ellipse at 100% 100%, #2d6a4a52 0%, transparent 55%);
  pointer-events: none
}

.lp-prog__img-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: #EDAD30;
  color: #1a2e22;
  border-radius: 12px;
  padding: 12px 24px;
  box-shadow: 0 7px 18px -2px #edad3014;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em;
  font-weight: 700;
  z-index: 2;
  animation: lp-badge-pulse 3.2s ease-out infinite
}

@keyframes lp-badge-pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.02)
  }
}

.lp-prog__dots-corner {
  position: absolute;
  bottom: 48px;
  right: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  pointer-events: none;
  z-index: 0
}

.lp-prog__dot {
  border-radius: 20px;
  background: #2D6A4A;
  opacity: .12
}

.lp-prog__detail-blk {
  padding: 48px 0;
  background: #fff;
  position: relative
}

.lp-prog__detail-blk-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(203deg, #2D6A4A 0%, #F2F6F8 100%);
  opacity: .04;
  pointer-events: none
}

.lp-prog__detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.lp-prog__detail-left {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.lp-prog__h2 {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1a2e22;
  margin: 0 0 12px
}

.lp-prog__body-lg {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #2a3a2e;
  margin: 0
}

.lp-prog__body-lg .lp-prog__accent-word {
  text-transform: uppercase;
  color: #EDAD30;
  font-weight: 700
}

.lp-prog__body {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #3a4a3e;
  margin: 0
}

.lp-prog__body .lp-prog__accent-word {
  text-transform: uppercase;
  color: #EDAD30;
  font-weight: 700
}

.lp-prog__two-col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  list-style: none;
  margin: 0;
  padding: 0
}

.lp-prog__two-col-list li {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #2a3a2e;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6px
}

.lp-prog__list-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #EDAD30;
  margin-top: 7px
}

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

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

.lp-prog__icon-grid-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  pointer-events: none;
  z-index: 0
}

.lp-prog__icon-card {
  background: #F2F6F8;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  box-shadow: 0 1px 6px -2px #edad3014;
  transition: box-shadow .25s ease-out, transform .25s ease-out;
  cursor: default
}

.lp-prog__icon-card:hover {
  box-shadow: 0 7px 18px -2px #2d6a4a14;
  transform: translateY(-2px)
}

.lp-prog__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 6px -2px #edad302e;
  transition: background .2s ease-out
}

.lp-prog__icon-card:hover .lp-prog__icon-wrap {
  background: #EDAD30
}

.lp-prog__icon-wrap svg {
  transition: opacity .2s ease-out
}

.lp-prog__icon-card:hover .lp-prog__icon-wrap svg path,
.lp-prog__icon-card:hover .lp-prog__icon-wrap svg circle,
.lp-prog__icon-card:hover .lp-prog__icon-wrap svg rect {
  stroke: #fff
}

.lp-prog__icon-label {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1a2e22;
  font-weight: 700;
  margin: 0
}

.lp-prog__icon-desc {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #4a5a4e;
  margin: 0
}

.lp-prog__cta-strip {
  background: linear-gradient(203deg, #2D6A4A 0%, #1a4a32 100%);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  box-shadow: 0 9px 44px -2px #2d6a4a24
}

.lp-prog__cta-text {
  flex: 1 1 0;
  min-width: 0
}

.lp-prog__cta-h {
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #F2F6F8;
  margin: 0 0 6px
}

.lp-prog__cta-sub {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #f2f6f8bf;
  margin: 0
}

.lp-prog__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .02em;
  font-weight: 700;
  color: #1a2e22;
  background: #EDAD30;
  border: 2px solid #EDAD30;
  border-radius: 6px;
  padding: 12px 24px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color .2s ease-out, background .2s ease-out
}

.lp-prog__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #2D6A4A;
  transition: right .35s ease-out;
  z-index: 0
}

.lp-prog__btn:hover::before {
  right: 0
}

.lp-prog__btn:hover {
  color: #F2F6F8;
  border-color: #2D6A4A
}

.lp-prog__btn span {
  position: relative;
  z-index: 1
}

.lp-prog__btn:focus-visible {
  outline: 3px solid #EDAD30;
  outline-offset: 3px
}

.lp-prog__icon-card {
  animation: lp-card-in .4s ease-out both
}

.lp-prog__icon-card:nth-child(1) {
  animation-delay: .05s
}

.lp-prog__icon-card:nth-child(2) {
  animation-delay: .12s
}

.lp-prog__icon-card:nth-child(3) {
  animation-delay: .19s
}

.lp-prog__icon-card:nth-child(4) {
  animation-delay: .26s
}

@keyframes lp-card-in {
  from {
    opacity: 0;
    transform: rotate(-2deg) scale(0.96)
  }

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

@media (max-width: 1024px) {
  .lp-prog__title-row {
    gap: 24px
  }

  .lp-prog__img-side {
    flex: 0 0 340px
  }

  .lp-prog__img-shape {
    width: 340px;
    height: 400px
  }

  .lp-prog__h1 {
    font-size: 46px
  }

  .lp-prog__detail-grid {
    gap: 24px
  }
}

@media (max-width: 640px) {
  .lp-prog__title-blk {
    padding: 24px 0 48px
  }

  .lp-prog__title-row {
    flex-direction: column
  }

  .lp-prog__img-side {
    flex: none;
    width: 100%
  }

  .lp-prog__img-shape {
    width: 100%;
    height: 260px
  }

  .lp-prog__img-badge {
    left: 12px;
    bottom: 12px
  }

  .lp-prog__h1 {
    font-size: 33px
  }

  .lp-prog__h2 {
    font-size: 33px
  }

  .lp-prog__meta-row {
    gap: 12px
  }

  .lp-prog__detail-blk {
    padding: 24px 0
  }

  .lp-prog__detail-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .lp-prog__icon-grid {
    grid-template-columns: 1fr
  }

  .lp-prog__two-col-list {
    grid-template-columns: 1fr
  }

  .lp-prog__cta-strip {
    flex-direction: column;
    align-items: flex-start
  }

  .lp-prog__dots-corner {
    display: none
  }
}

.ld {
  overflow-x: hidden
}

.ld .top {
  padding: 48px 24px 24px;
  max-width: 1280px;
  margin: 0 auto
}

.ld .top__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative
}

.ld .top__circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.ld .top__circle--a {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #EDAD30;
  opacity: .06;
  top: -80px;
  right: -60px
}

.ld .top__circle--b {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #2D6A4A;
  opacity: .05;
  bottom: 0;
  left: 20px
}

.ld .top__text {
  padding-top: 48px;
  position: relative;
  z-index: 1
}

.ld .top__label {
  display: inline-block;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #2D6A4A;
  border: 1px dashed #2D6A4A;
  border-radius: 2px;
  padding: 6px 12px;
  margin-bottom: 24px
}

.ld .top__h1 {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1a2e20;
  margin-bottom: 24px
}

.ld .top__h1 .top__punct {
  color: #EDAD30
}

.ld .top__desc {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #2c3e30;
  margin-bottom: 24px
}

.ld .top__desc .top__first {
  font-size: 19px;
  font-weight: 700;
  color: #EDAD30;
  text-transform: uppercase
}

.ld .top__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap
}

.ld .top__btn--primary {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #fff;
  background: #2D6A4A;
  border: 2px solid #2D6A4A;
  border-radius: 6px;
  padding: 12px 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .25s ease-out, background .25s ease-out
}

.ld .top__btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 2px solid #EDAD30;
  opacity: 0;
  transition: opacity .2s ease-out
}

.ld .top__btn--primary:hover::after {
  opacity: 1
}

.ld .top__btn--primary:hover {
  background: #1e4f35
}

.ld .top__btn--secondary {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #2D6A4A;
  background: transparent;
  border: 2px solid #2D6A4A;
  border-radius: 6px;
  padding: 12px 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .35s ease-out, background .35s ease-out
}

.ld .top__btn--secondary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 2px solid #EDAD30;
  opacity: 0;
  transition: opacity .22s ease-out
}

.ld .top__btn--secondary:hover::after {
  opacity: 1
}

.ld .top__btn--secondary:hover {
  background: #F2F6F8
}

.ld .top__img-col {
  position: relative;
  z-index: 1
}

.ld .top__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 9px 44px -2px #edad3024
}

.ld .top__img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease-out, brightness .4s ease-out
}

.ld .top__img-wrap:hover img {
  transform: scale(1.03);
  filter: brightness(1.05)
}

.ld .top__stat-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 24px
}

.ld .top__stat {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ld .top__stat-num {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #EDAD30;
  font-weight: 700
}

.ld .top__stat-lbl {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #2c3e30
}

.ld .top__arrow-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  margin-top: 6px
}

.ld .top__arrow-num--a {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  color: #2D6A4A
}

.ld .top__arrow-icon {
  width: 28px;
  height: 14px;
  display: flex;
  align-items: center
}

.ld .top__arrow-icon svg {
  width: 28px;
  height: 14px
}

.ld .top__arrow-num--b {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  color: #EDAD30
}

.ld .mirror {
  background: #F2F6F8;
  padding: 48px 24px;
  position: relative
}

.ld .mirror__dashed-frame {
  max-width: 1280px;
  margin: 0 auto;
  border: 2px dashed #2d6a4a38;
  border-radius: 12px;
  padding: 48px
}

.ld .mirror__accent-line {
  width: 36px;
  height: 3px;
  background: #EDAD30;
  border-radius: 2px;
  margin-bottom: 12px
}

.ld .mirror__h2 {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1a2e20;
  margin-bottom: 24px
}

.ld .mirror__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.ld .mirror__cards {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ld .mirror__card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 6px -2px #edad3014;
  transition: box-shadow .28s ease-out, transform .28s ease-out
}

.ld .mirror__card:hover {
  box-shadow: 0 7px 18px -2px #edad3014;
  transform: translateY(-2px)
}

.ld .mirror__card-name {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: .01em;
  color: #1a2e20;
  margin-bottom: 6px
}

.ld .mirror__card-role {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #2D6A4A;
  margin-bottom: 12px
}

.ld .mirror__card-text {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #2c3e30
}

.ld .mirror__card-text .mirror__first {
  font-weight: 700;
  color: #EDAD30;
  text-transform: uppercase
}

.ld .mirror__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 7px 18px -2px #2d6a4a14;
  position: sticky;
  top: 24px
}

.ld .mirror__img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .38s ease-out
}

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

.ld .method {
  background: #fff;
  padding: 48px 24px
}

.ld .method__inner {
  max-width: 1280px;
  margin: 0 auto
}

.ld .method__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px
}

.ld .method__accent-line {
  width: 36px;
  height: 3px;
  background: #2D6A4A;
  border-radius: 2px;
  margin-bottom: 12px
}

.ld .method__h2 {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1a2e20;
  margin-bottom: 24px
}

.ld .method__lead {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #2c3e30
}

.ld .method__lead .method__first {
  font-weight: 700;
  color: #EDAD30;
  text-transform: uppercase
}

.ld .method__body {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #2c3e30;
  margin-top: 12px
}

.ld .method__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 9px 44px -2px #2d6a4a24
}

.ld .method__img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform .42s ease-out, filter .42s ease-out
}

.ld .method__img-wrap:hover img {
  transform: scale(1.03);
  filter: brightness(1.04)
}

.ld .method__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.ld .method__pillar {
  background: #F2F6F8;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transition: box-shadow .32s ease-out, background .32s ease-out
}

.ld .method__pillars:has(.method__pillar:hover) .method__pillar:not(:hover) {
  transform: scale(0.97);
  transition: transform .22s ease-out
}

.ld .method__pillar:hover {
  box-shadow: 0 7px 18px -2px #edad3014;
  background: #fff
}

.ld .method__pillar-num {
  font-size: 33px;
  line-height: 1.2;
  font-weight: 700;
  color: #EDAD30;
  margin-bottom: 12px
}

.ld .method__pillar-h {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: .01em;
  color: #1a2e20;
  margin-bottom: 6px
}

.ld .method__pillar-p {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #2c3e30
}

.ld .fit {
  background: linear-gradient(203deg, #2D6A4A, #F2F6F8);
  padding: 48px 24px
}

.ld .fit__inner {
  max-width: 1280px;
  margin: 0 auto
}

.ld .fit__accent-line {
  width: 36px;
  height: 3px;
  background: #EDAD30;
  border-radius: 2px;
  margin-bottom: 12px
}

.ld .fit__h2 {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fff;
  margin-bottom: 24px;
  max-width: 640px
}

.ld .fit__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.ld .fit__col-left {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ld .fit__lead {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #e8f5ee
}

.ld .fit__lead .fit__first {
  font-weight: 700;
  color: #EDAD30;
  text-transform: uppercase
}

.ld .fit__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0
}

.ld .fit__list-item {
  background: #ffffff1a;
  border-radius: 6px;
  padding: 12px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6px
}

.ld .fit__list-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EDAD30;
  margin-top: 6px;
  flex-shrink: 0
}

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

.ld .fit__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 9px 44px -2px #2d6a4a24
}

.ld .fit__img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease-out
}

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

.ld .fit__note {
  background: #ffffff1f;
  border-radius: 12px;
  padding: 24px;
  box-shadow: inset 0 1px 8px #edad301a
}

.ld .fit__note-h {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: .01em;
  color: #EDAD30;
  margin-bottom: 12px
}

.ld .fit__note-p {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #e8f5ee
}

.ld .fit__link {
  display: inline-block;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #1a2e20;
  background: #EDAD30;
  border: 2px solid #EDAD30;
  border-radius: 6px;
  padding: 12px 24px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background .28s ease-out, color .28s ease-out;
  align-self: flex-start
}

.ld .fit__link::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 2px solid #fff;
  opacity: 0;
  transition: opacity .18s ease-out
}

.ld .fit__link:hover::after {
  opacity: 1
}

.ld .fit__link:hover {
  background: #d49a1e
}

@keyframes ld-clip-reveal {
  from {
    clip-path: inset(50% 50% 50% 50% round 12px);
    opacity: 0
  }

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

.ld .top__grid {
  animation: ld-clip-reveal .55s ease-out both
}

.ld .mirror__dashed-frame {
  animation: ld-clip-reveal .48s ease-out .12s both
}

@media (max-width: 1024px) {
  .ld .top__grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .ld .top__text {
    padding-top: 12px
  }

  .ld .top__img-wrap img {
    height: 360px
  }

  .ld .mirror__grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .ld .method__top {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .ld .method__pillars {
    grid-template-columns: 1fr 1fr
  }

  .ld .fit__layout {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

@media (max-width: 640px) {
  .ld .top__h1 {
    font-size: 33px
  }

  .ld .top__stat-row {
    flex-direction: column;
    gap: 12px
  }

  .ld .mirror__dashed-frame {
    padding: 24px
  }

  .ld .method__pillars {
    grid-template-columns: 1fr
  }

  .ld .fit__list {
    grid-template-columns: 1fr
  }

  .ld .top__actions {
    flex-direction: column
  }
}

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

.abt__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px
}

.abt a {
  color: #2D6A4A;
  text-decoration: none;
  transition: color .25s ease-out
}

.abt a:hover {
  color: #EDAD30
}

.abt ::selection {
  background: #2D6A4A;
  color: #fff;
  font-weight: 700
}

.abt__divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 48px 0
}

.abt__divider-line {
  width: 60px;
  height: 1px;
  background: #2D6A4A;
  opacity: .3
}

.abt__divider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #EDAD30
}

.abt__accent-line {
  display: block;
  width: 32px;
  height: 2px;
  background: #EDAD30;
  border-radius: 2px;
  margin-bottom: 12px
}

@keyframes blurIn {
  from {
    filter: blur(8px);
    opacity: 0
  }

  to {
    filter: blur(0);
    opacity: 1
  }
}

.abt__animate-blur {
  animation: blurIn .45s ease-out both
}

.abt__animate-blur--delay1 {
  animation-delay: .1s
}

.abt__animate-blur--delay2 {
  animation-delay: .22s
}

.abt__animate-blur--delay3 {
  animation-delay: .34s
}

.abt__top {
  background: #1a2e22;
  position: relative;
  padding: 48px 0
}

.abt__top-bg-num {
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  font-size: 220px;
  font-weight: 900;
  color: #fff;
  opacity: .03;
  line-height: 1.2;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em
}

.abt__top-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center
}

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

.abt__top-label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: .12em;
  color: #EDAD30;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.6
}

.abt__top-h1 {
  font-size: 62px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fff;
  margin: 0 0 24px;
  font-weight: 800
}

.abt__top-h1 span {
  color: #EDAD30
}

.abt__top-desc {
  font-size: 19px;
  line-height: 1.6;
  color: #ffffffb8;
  margin: 0;
  letter-spacing: .01em
}

.abt__top-img-wrap {
  flex: 0 0 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 9px 44px -2px #2d6a4a24
}

.abt__top-img-wrap img {
  width: 420px;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: saturate(0.45) brightness(0.92);
  transition: filter .38s ease-out
}

.abt__top-img-wrap:hover img {
  filter: saturate(0.7) brightness(1.0)
}

@media (max-width: 1024px) {
  .abt__top-h1 {
    font-size: 46px
  }

  .abt__top-img-wrap {
    flex: 0 0 320px
  }

  .abt__top-img-wrap img {
    width: 320px;
    height: 260px
  }
}

@media (max-width: 640px) {
  .abt__top-inner {
    flex-direction: column;
    gap: 24px
  }

  .abt__top-h1 {
    font-size: 33px
  }

  .abt__top-img-wrap {
    flex: none;
    width: 100%
  }

  .abt__top-img-wrap img {
    width: 100%;
    height: 220px
  }

  .abt__top-bg-num {
    display: none
  }
}

.abt__who {
  background: #F2F6F8;
  padding: 48px 0;
  position: relative
}

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

.abt__who-leaf svg {
  position: absolute;
  top: -24px;
  right: -48px;
  opacity: .04;
  width: 480px;
  height: 480px
}

.abt__who-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px
}

.abt__who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.abt__who-h2 {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1a2e22;
  margin: 0 0 24px;
  font-weight: 700
}

.abt__who-para {
  font-size: 16px;
  line-height: 1.6;
  color: #2a3a30;
  margin: 0 0 24px;
  letter-spacing: .01em
}

.abt__who-para--large {
  font-size: 19px;
  line-height: 1.6;
  color: #1a2e22;
  font-weight: 500
}

.abt__who-para .abt__first-word {
  color: #EDAD30;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .08em;
  margin-right: 4px
}

.abt__who-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px
}

.abt__stat {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 6px -2px #edad3014;
  transition: box-shadow .22s ease-out, transform .22s ease-out
}

.abt__stat:hover {
  box-shadow: 0 7px 18px -2px #edad3014;
  transform: translateY(-2px)
}

.abt__stat-num {
  font-size: 46px;
  font-weight: 800;
  color: #2D6A4A;
  line-height: 1.2;
  letter-spacing: -.01em
}

.abt__stat-label {
  font-size: 14px;
  color: #4a6655;
  line-height: 1.6;
  margin-top: 6px;
  letter-spacing: .01em
}

.abt__img-pair {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.abt__img-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 7px 18px -2px #2d6a4a14;
  transition: box-shadow .35s ease-out
}

.abt__img-card:hover {
  box-shadow: 0 9px 44px -2px #2d6a4a24
}

.abt__img-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: filter .35s ease-out;
  filter: saturate(0.8) brightness(0.96)
}

.abt__img-card:hover img {
  filter: saturate(1) brightness(1)
}

.abt__img-card--small img {
  height: 180px
}

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

  .abt__who-h2 {
    font-size: 33px
  }
}

@media (max-width: 640px) {
  .abt__who-stats {
    grid-template-columns: 1fr
  }

  .abt__who-h2 {
    font-size: 33px
  }
}

.abt__dark {
  background: #1a2e22;
  padding: 48px 0;
  position: relative
}

.abt__dark-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px
}

.abt__dark-top {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px
}

.abt__dark-h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
  letter-spacing: .01em;
  margin: 0 0 24px
}

.abt__dark-accent-line {
  display: block;
  width: 32px;
  height: 2px;
  background: #EDAD30;
  border-radius: 2px;
  margin-bottom: 12px
}

.abt__dark-para {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffffb8;
  margin: 0 0 24px;
  letter-spacing: .01em
}

.abt__dark-para .abt__first-word {
  color: #EDAD30;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .08em;
  margin-right: 4px
}

.abt__dark-aside {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.abt__value-item {
  background: #ffffff0f;
  border-radius: 12px;
  padding: 24px;
  box-shadow: inset 0 1px 0 #edad301f;
  transition: background .28s ease-out
}

.abt__value-item:hover {
  background: #edad3014
}

.abt__value-icon {
  width: 36px;
  height: 36px;
  background: #EDAD30;
  border-radius: 6px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 7px 18px -2px #edad3014
}

.abt__value-icon svg {
  width: 18px;
  height: 18px;
  fill: #1a2e22
}

.abt__value-h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: .01em;
  line-height: 1.2
}

.abt__value-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff9e;
  margin: 0;
  letter-spacing: .01em
}

.abt__team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.abt__team-h3 {
  font-size: 33px;
  color: #fff;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.2;
  margin: 0 0 24px;
  grid-column: 1 / -1
}

.abt__person {
  background: #ffffff0d;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 6px -2px #2d6a4a14;
  transition: box-shadow .32s ease-out, background .32s ease-out
}

.abt__person:hover {
  box-shadow: 0 9px 44px -2px #2d6a4a24;
  background: #ffffff17
}

.abt__person-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: saturate(0.5) brightness(0.88);
  transition: filter .38s ease-out
}

.abt__person:hover .abt__person-img {
  filter: saturate(0.75) brightness(0.95)
}

.abt__person-info {
  padding: 12px
}

.abt__person-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.2;
  letter-spacing: .01em
}

.abt__person-role {
  font-size: 14px;
  color: #EDAD30;
  margin: 0 0 6px;
  line-height: 1.6;
  letter-spacing: .01em
}

.abt__person-bio {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff94;
  margin: 0;
  letter-spacing: .01em
}

.abt__details-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.abt__details-h3 {
  font-size: 33px;
  color: #fff;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.2;
  margin: 0 0 24px
}

.abt__detail-item {
  background: #ffffff0a;
  border-radius: 6px;
  overflow: hidden
}

.abt__detail-summary {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  list-style: none;
  transition: background .2s ease-out;
  gap: 12px
}

.abt__detail-summary::-webkit-details-marker {
  display: none
}

.abt__detail-summary:hover {
  background: #edad3012
}

.abt__detail-q {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .01em;
  line-height: 1.6
}

.abt__detail-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: transform .22s ease-out
}

.abt__detail-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #EDAD30;
  fill: none;
  stroke-width: 2
}

.abt__detail-item[open] .abt__detail-arrow {
  transform: rotate(180deg)
}

.abt__detail-body {
  padding: 0 24px 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffffa6;
  letter-spacing: .01em
}

@media (max-width: 1024px) {
  .abt__dark-top {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .abt__dark-h2 {
    font-size: 33px
  }

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

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

  .abt__dark-h2 {
    font-size: 33px
  }

  .abt__details-h3 {
    font-size: 19px
  }
}

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

.ctus__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px
}

.ctus a {
  color: #2D6A4A;
  text-decoration: underline;
  transition: color .2s ease-out
}

.ctus a:hover {
  color: #EDAD30
}

.ctus__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative
}

.ctus__split-img {
  position: relative;
  overflow: hidden
}

.ctus__split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.15)
}

.ctus__split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(203deg, #2d6a4ab8 0%, #f2f6f82e 100%);
  pointer-events: none
}

.ctus__split-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #EDAD30;
  color: #1b3a28;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 6px 12px;
  border-radius: 2px;
  box-shadow: 0 7px 18px -2px #edad3014;
  line-height: 1.6
}

.ctus__split-dots {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  flex-direction: row;
  gap: 6px
}

.ctus__split-dots span {
  width: 7px;
  height: 7px;
  border-radius: 20px;
  background: #EDAD30;
  opacity: .7;
  display: block
}

.ctus__split-dots span:nth-child(2) {
  opacity: .4
}

.ctus__split-dots span:nth-child(3) {
  opacity: .2
}

.ctus__split-text {
  background: #F2F6F8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  position: relative
}

.ctus__split-text::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: #EDAD30;
  border-radius: 2px;
  margin-bottom: 12px
}

.ctus__split-heading {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1b3a28;
  margin: 0 0 24px
}

.ctus__split-heading em {
  font-style: normal;
  color: #2D6A4A
}

.ctus__split-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #2a3d30;
  margin: 0 0 24px;
  max-width: 380px
}

.ctus__split-desc strong {
  color: #EDAD30;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .02em
}

.ctus__icon-legend {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px
}

.ctus__legend-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.ctus__legend-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ctus__legend-icon--loc {
  background: #2d6a4a1f
}

.ctus__legend-icon--phone {
  background: #edad3024
}

.ctus__legend-icon--email {
  background: #2d6a4a14
}

.ctus__legend-icon svg {
  display: block
}

.ctus__legend-text {
  font-size: 14px;
  line-height: 1.6;
  color: #2a3d30;
  letter-spacing: .01em
}

.ctus__legend-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1b3a28;
  letter-spacing: .02em
}

.ctus__divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #EDAD30 30%, #2D6A4A 70%, transparent 100%);
  margin: 0;
  border: none
}

.ctus__form-area {
  background: #fff;
  padding: 48px 0;
  position: relative
}

.ctus__form-area::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: #F2F6F8;
  z-index: 0;
  pointer-events: none
}

.ctus__form-area::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: #fff;
  z-index: 0;
  pointer-events: none
}

.ctus__form-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 9px 44px -2px #2d6a4a24;
  padding: 48px;
  max-width: 780px;
  margin: 0 auto
}

.ctus__form-card::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: #2D6A4A;
  border-radius: 2px;
  margin-bottom: 12px
}

.ctus__form-heading {
  font-size: 33px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1b3a28;
  margin: 0 0 6px
}

.ctus__form-sub {
  font-size: 16px;
  line-height: 1.6;
  color: #4a6355;
  margin: 0 0 24px;
  letter-spacing: .01em
}

.ctus__form-sub strong {
  color: #EDAD30;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em
}

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

.ctus__fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.ctus__field {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ctus__field label {
  font-size: 14px;
  font-weight: 700;
  color: #1b3a28;
  letter-spacing: .02em;
  line-height: 1.6
}

.ctus__field input,
.ctus__field select {
  font-size: 16px;
  line-height: 1.6;
  color: #1b3a28;
  background: #F2F6F8;
  border: 1.5px solid #d4e0d9;
  border-radius: 6px;
  padding: 12px;
  outline: none;
  transition: border-color .25s ease-out, box-shadow .25s ease-out;
  letter-spacing: .01em;
  appearance: none;
  -webkit-appearance: none
}

.ctus__field input::placeholder {
  color: #8aab98;
  transition: opacity .35s ease-out
}

.ctus__field input:focus::placeholder {
  opacity: 0
}

.ctus__field input:focus,
.ctus__field select:focus {
  border-color: #2D6A4A;
  box-shadow: inset 0 1px 6px -2px #2d6a4a2e
}

.ctus__field select {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%232D6A4A' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer
}

.ctus__field select:hover {
  border-color: #2D6A4A
}

.ctus__priority-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ctus__priority-group label.ctus__priority-group-label {
  font-size: 14px;
  font-weight: 700;
  color: #1b3a28;
  letter-spacing: .02em;
  line-height: 1.6
}

.ctus__priority-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.ctus__priority-opt {
  position: relative
}

.ctus__priority-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  z-index: 2
}

.ctus__priority-opt-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 6px;
  border-radius: 6px;
  border: 1.5px solid #d4e0d9;
  background: #F2F6F8;
  cursor: pointer;
  transition: border-color .2s ease-out, background .2s ease-out, box-shadow .2s ease-out;
  font-size: 14px;
  font-weight: 600;
  color: #2a3d30;
  letter-spacing: .01em;
  line-height: 1.6;
  text-align: center;
  user-select: none
}

.ctus__priority-opt-label svg {
  display: block
}

.ctus__priority-opt input[type="radio"]:checked+.ctus__priority-opt-label {
  border-color: #2D6A4A;
  background: #2d6a4a14;
  box-shadow: 0 1px 6px -2px #2d6a4a14;
  color: #1b3a28
}

.ctus__priority-opt input[type="radio"]:focus-visible+.ctus__priority-opt-label {
  outline: 2px solid #EDAD30;
  outline-offset: 2px
}

.ctus__priority-opt-label:hover {
  border-color: #EDAD30;
  background: #edad3012
}

.ctus__privacy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.ctus__privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: #2D6A4A;
  cursor: pointer;
  margin-top: 3px;
  border-radius: 2px
}

.ctus__privacy-text {
  font-size: 14px;
  line-height: 1.6;
  color: #4a6355;
  letter-spacing: .01em
}

.ctus__privacy-text a {
  color: #2D6A4A;
  font-weight: 600;
  text-decoration: underline;
  transition: color .18s ease-out
}

.ctus__privacy-text a:hover {
  color: #EDAD30
}

.ctus__submit-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.ctus__submit-btn {
  position: relative;
  background: #2D6A4A;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.6;
  padding: 12px 48px;
  border-radius: 6px;
  border: 2px solid #2D6A4A;
  cursor: pointer;
  overflow: hidden;
  transition: background .22s ease-out, color .22s ease-out, border-color .22s ease-out;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 12px
}

.ctus__submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 2px solid #EDAD30;
  clip-path: inset(0 100% 0 0);
  transition: clip-path .38s ease-out;
  pointer-events: none
}

.ctus__submit-btn:hover::before {
  clip-path: inset(0 0% 0 0)
}

.ctus__submit-btn:hover {
  background: #1b3a28;
  border-color: #1b3a28
}

.ctus__submit-btn:focus-visible {
  outline: 2px solid #EDAD30;
  outline-offset: 3px
}

.ctus__submit-btn:active {
  background: #EDAD30;
  color: #1b3a28;
  border-color: #EDAD30
}

.ctus__submit-note {
  font-size: 14px;
  color: #7a9e8c;
  line-height: 1.6;
  letter-spacing: .01em
}

.ctus__biz-link {
  margin-top: 24px;
  padding: 12px;
  background: #edad3017;
  border-radius: 6px;
  border: 1px solid #edad3047;
  font-size: 14px;
  line-height: 1.6;
  color: #2a3d30;
  letter-spacing: .01em
}

.ctus__biz-link a {
  font-weight: 700;
  color: #2D6A4A
}

.ctus__dots-row {
  display: flex;
  flex-direction: row;
  gap: 6px;
  justify-content: center;
  padding: 12px 0 0
}

.ctus__dots-row span {
  width: 6px;
  height: 6px;
  border-radius: 20px;
  background: #2D6A4A;
  display: block;
  opacity: .18
}

.ctus__dots-row span:nth-child(3) {
  opacity: .5
}

.ctus__dots-row span:nth-child(5) {
  opacity: .3
}

.ctus__punctuation {
  font-size: 62px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #2d6a4a21;
  line-height: 1.2;
  position: absolute;
  right: 24px;
  top: 24px;
  pointer-events: none;
  user-select: none;
  letter-spacing: .01em
}

@keyframes bgbreathe {

  0%,
  100% {
    background-size: 100% 100%
  }

  50% {
    background-size: 108% 108%
  }
}

.ctus__split-text {
  animation: bgbreathe 10s ease-in-out infinite;
  background-size: 100% 100%
}

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

  .ctus__split-img {
    min-height: 280px
  }

  .ctus__split-text {
    padding: 48px 24px
  }

  .ctus__split-heading {
    font-size: 33px
  }

  .ctus__form-card {
    padding: 48px 24px
  }

  .ctus__fields-row {
    grid-template-columns: 1fr
  }

  .ctus__priority-options {
    grid-template-columns: 1fr 1fr 1fr
  }
}

@media (max-width: 640px) {
  .ctus__split-heading {
    font-size: 33px
  }

  .ctus__form-heading {
    font-size: 19px
  }

  .ctus__priority-options {
    grid-template-columns: 1fr
  }

  .ctus__submit-row {
    flex-direction: column;
    align-items: flex-start
  }

  .ctus__form-card {
    padding: 24px 12px
  }

  .ctus__inner {
    padding: 0 12px
  }
}

.succ-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: #F2F6F8
}

.succ-page .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 7px 18px -2px #2e6a4a14;
  padding: 48px;
  max-width: 560px;
  width: 100%;
  text-align: center
}

.succ-page .card__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(203deg, #2D6A4A, #F2F6F8);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: inset 0 1px 8px 0 #edad302e
}

.succ-page .card__icon-wrap svg {
  display: block
}

.succ-page .card__heading {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #2D6A4A;
  margin: 0 0 12px
}

.succ-page .card__heading--accent {
  color: #EDAD30
}

.succ-page .card__text {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #2a3a32;
  margin: 0 0 24px
}

.succ-page .card__divider {
  width: 48px;
  height: 2px;
  background: #EDAD30;
  border-radius: 2px;
  margin: 0 auto 24px
}

.succ-page .card__detail {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #4a5e54;
  margin: 0 0 48px;
  padding: 12px;
  background: #F2F6F8;
  border-radius: 6px
}

.succ-page .card__link {
  display: inline-block;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fff;
  background: #2D6A4A;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  box-shadow: 0 1px 6px -2px #2e6a4a14;
  transition: background .25s ease-out, box-shadow .2s ease-out;
  overflow: hidden
}

.succ-page .card__link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 2px solid #EDAD30;
  opacity: 0;
  transition: opacity .18s ease-out
}

.succ-page .card__link:hover {
  background: #235438;
  box-shadow: 0 7px 18px -2px #2e6a4a14
}

.succ-page .card__link:hover::before {
  opacity: 1
}

.succ-page .card__link:focus-visible {
  outline: 2px solid #EDAD30;
  outline-offset: 4px
}

@media (max-width: 640px) {
  .succ-page .card {
    padding: 24px
  }

  .succ-page .card__heading {
    font-size: 19px
  }
}