html {
  box-sizing: border-box;
  font-size: 100%
}

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

html,
body {
  margin: 0
}

body {
  min-height: 100dvh;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: 'Bitter', Georgia, serif;
  background-color: #F1ECE4;
  color: #1e2010;
  overflow-x: hidden
}

:focus-visible {
  outline: 2px dashed #9AA71F;
  outline-offset: 3px;
  animation: focus-spin 4s linear infinite
}

@keyframes focus-spin {
  from {
    outline-offset: 3px
  }

  50% {
    outline-offset: 5px
  }

  to {
    outline-offset: 3px
  }
}

.site-header {
  position: relative;
  background: linear-gradient(160deg, #fff 0%, #F1ECE4 60%, #e8f0e5 100%);
  border-top: 4px solid #9AA71F;
  box-shadow: 0 3px 4px -2px #9aa71f12 0 7px 18px -2px #9aa71f17
}

.header-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 14px 56px;
  align-items: center
}

.brand-mount {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px;
  border-bottom: 2px solid #9AA71F;
  background-color: #bfd8bc2e;
  border-radius: 8px;
  box-shadow: inset 0 2px 8px #9aa71f12
}

.brand-mount img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block
}

.brand-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #2d3308;
  text-align: center;
  line-height: 1.1
}

.header-top-row {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px
}

.credential-mark {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #4a5214;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.1;
  padding: 6px 14px;
  border-radius: 8px;
  background-color: #9aa71f1a;
  border: 1px solid #9aa71f40
}

.credential-mark .pe-7s-medal {
  font-size: 18px;
  color: #9AA71F
}

.contact-quick {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #2d3308;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  line-height: 1.1;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.contact-quick:hover {
  color: #9AA71F
}

.contact-quick .pe-7s-call {
  font-size: 18px;
  color: #9AA71F
}

.header-nav-row {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  justify-content: flex-end
}

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

.primary-nav li a {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.1;
  color: #2d3308;
  text-decoration: none;
  border-radius: 8px;
  background-color: transparent;
  border: 1px solid transparent;
  transition: background-color .5s cubic-bezier(0.22, 1, 0.36, 1), color .45s ease-in-out, box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1), border-color .45s ease-in-out, transform .5s cubic-bezier(0.22, 1, 0.36, 1);
  min-height: 44px
}

.primary-nav li a:hover {
  background-color: #9AA71F;
  color: #fff;
  border-color: #9AA71F;
  box-shadow: 0 7px 18px -2px #9aa71f17 0 12px 44px -2px #9aa71f24;
  transform: translateY(-3px)
}

.primary-nav li a[aria-current="page"] {
  background-color: #2d3308;
  color: #F1ECE4;
  border-color: #2d3308
}

@media (max-width: 1024px) {
  .header-shell {
    padding: 28px;
    gap: 14px 28px
  }

  .header-top-row {
    gap: 14px
  }

  .primary-nav li a {
    padding: 14px
  }
}

@media (max-width: 640px) {
  .header-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 14px;
    gap: 14px
  }

  .brand-mount {
    grid-column: 1;
    grid-row: 1;
    flex-direction: row;
    justify-content: center
  }

  .header-top-row {
    grid-column: 1;
    grid-row: 2;
    justify-content: center;
    flex-wrap: wrap
  }

  .header-nav-row {
    grid-column: 1;
    grid-row: 3;
    justify-content: center
  }

  .primary-nav {
    justify-content: center
  }

  .primary-nav li a {
    padding: 14px;
    font-size: 16px
  }
}

.site-footer {
  background: linear-gradient(135deg, #2d3308 0%, #1e2010 100%);
  border-top: 3px solid #9AA71F;
  box-shadow: 0 -3px 4px -2px #9aa71f12
}

.footer-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px
}

.footer-brand-mount {
  display: flex;
  align-items: center;
  gap: 14px
}

.footer-logo-hold {
  padding: 6px;
  border-radius: 8px;
  background-color: #f1ece41a;
  box-shadow: 0 0 0 1px #9aa71f4d 0 3px 4px -2px #9aa71f12
}

.footer-logo-hold img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block
}

.footer-brand-label {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.footer-company-name {
  font-size: 16px;
  font-weight: 700;
  color: #F1ECE4;
  letter-spacing: .06em;
  line-height: 1.1
}

.footer-tagline {
  font-size: 16px;
  color: #BFD8BC;
  letter-spacing: .02em;
  line-height: 1.1
}

.footer-middle {
  display: flex;
  align-items: center;
  gap: 28px
}

.footer-divider {
  width: 1px;
  height: 28px;
  background-color: #9aa71f59;
  display: inline-block
}

.footer-copyright {
  font-size: 16px;
  color: #BFD8BC;
  letter-spacing: .02em;
  line-height: 1.75
}

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center
}

.footer-legal-nav li a {
  font-size: 16px;
  color: #BFD8BC;
  text-decoration: none;
  letter-spacing: .02em;
  line-height: 1.1;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid #bfd8bc33;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color .6s cubic-bezier(0.22, 1, 0.36, 1), border-color .6s cubic-bezier(0.22, 1, 0.36, 1), background-color .55s ease-in-out
}

.footer-legal-nav li a:hover {
  color: #F1ECE4;
  border-color: #9aa71f80;
  background-color: #9aa71f1f
}

@media (max-width: 1024px) {
  .footer-shell {
    padding: 28px
  }
}

@media (max-width: 640px) {
  .footer-shell {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 14px;
    gap: 14px
  }

  .footer-middle {
    flex-direction: column;
    gap: 14px
  }

  .footer-divider {
    width: 56px;
    height: 1px
  }
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4000;
  background: #2d3308;
  border-top: 2px solid #9AA71F;
  box-shadow: 0 -7px 18px -2px #9aa71f17
}

.cookie-bar-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px
}

.cookie-icon-hold {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0
}

.cookie-icon-hold svg {
  width: 28px;
  height: 28px
}

.cookie-text-hold {
  flex: 1;
  min-width: 200px
}

.cookie-intro {
  font-size: 16px;
  color: #F1ECE4;
  line-height: 1.75;
  font-family: 'Bitter', Georgia, serif;
  margin: 0 0 6px
}

.cookie-uses {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px
}

.cookie-uses li {
  font-size: 16px;
  color: #BFD8BC;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Bitter', Georgia, serif
}

.cookie-uses li .pe-7s-check {
  color: #9AA71F;
  font-size: 16px
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0
}

.cookie-accept-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Bitter', Georgia, serif;
  color: #2d3308;
  background-color: #9AA71F;
  border: 2px solid #9AA71F;
  border-radius: 8px;
  cursor: pointer;
  min-height: 44px;
  letter-spacing: .03em;
  line-height: 1.1;
  transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), background-color .45s ease-in-out
}

.cookie-accept-btn:hover {
  box-shadow: 0 7px 18px -2px #9aa71f17 0 12px 44px -2px #9aa71f24;
  background-color: #b5c524
}

.cookie-decline-link {
  font-size: 16px;
  color: #BFD8BC;
  font-family: 'Bitter', Georgia, serif;
  background: none;
  border: 2px solid #bfd8bc4d;
  border-radius: 8px;
  padding: 14px;
  cursor: pointer;
  min-height: 44px;
  letter-spacing: .02em;
  line-height: 1.1;
  transition: color .55s cubic-bezier(0.22, 1, 0.36, 1), border-color .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.cookie-decline-link:hover {
  color: #F1ECE4;
  border-color: #bfd8bc99
}

@media (max-width: 640px) {
  .cookie-bar-shell {
    padding: 14px;
    flex-direction: column;
    align-items: flex-start
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end
  }
}

.doc-text {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 56px
}

.doc-text h1 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #1b2000;
  margin-bottom: 28px;
  margin-top: 0
}

.doc-text h2 {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #1b2000;
  margin-top: 56px;
  margin-bottom: 28px
}

.doc-text h3 {
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: .01em;
  color: #1b2000;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 14px
}

.doc-text h4 {
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: .01em;
  color: #2e3a00;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 14px
}

.doc-text h5 {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .02em;
  color: #2e3a00;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 6px
}

.doc-text h6 {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .02em;
  color: #4a5500;
  font-weight: 500;
  margin-top: 14px;
  margin-bottom: 6px
}

.doc-text p {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .01em;
  color: #2a2a1a;
  margin-top: 0;
  margin-bottom: 14px;
  max-width: 72ch
}

.doc-text ul {
  margin-top: 0;
  margin-bottom: 28px;
  margin-left: 0;
  padding-left: 28px;
  list-style: none
}

.doc-text ol {
  margin-top: 0;
  margin-bottom: 28px;
  margin-left: 0;
  padding-left: 28px;
  list-style: none;
  counter-reset: policy-counter
}

.doc-text ul li {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .01em;
  color: #2a2a1a;
  margin-bottom: 6px;
  padding-left: 14px;
  position: relative;
  max-width: 72ch
}

.doc-text ul li::before {
  content: "";
  position: absolute;
  left: -4px;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 48px;
  background-color: #9AA71F
}

.doc-text ol li {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .01em;
  color: #2a2a1a;
  margin-bottom: 6px;
  padding-left: 14px;
  position: relative;
  max-width: 72ch;
  counter-increment: policy-counter
}

.doc-text ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: -14px;
  top: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #9AA71F;
  font-weight: 600
}

.doc-text ul ul,
.doc-text ol ol,
.doc-text ul ol,
.doc-text ol ul {
  margin-top: 6px;
  margin-bottom: 6px;
  padding-left: 28px
}

.doc-text table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.75;
  box-shadow: 0 3px 4px -2px #9aa71f12 0 7px 18px -2px #9aa71f17;
  border-radius: 8px;
  overflow: hidden
}

.doc-text thead {
  background-color: #9AA71F
}

.doc-text thead tr {
  border-bottom: none
}

.doc-text thead th {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .02em;
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  text-align: left;
  white-space: nowrap
}

.doc-text tbody {
  background-color: #fff
}

.doc-text tbody tr {
  border-bottom: 1px solid #BFD8BC;
  transition: background-color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

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

.doc-text tbody tr:hover {
  background-color: #F1ECE4
}

.doc-text td {
  font-size: 16px;
  line-height: 1.75;
  color: #2a2a1a;
  padding: 14px 28px;
  vertical-align: top
}

.doc-text hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #BFD8BC, transparent);
  margin-top: 56px;
  margin-bottom: 56px
}

.doc-text div {
  font-size: 16px;
  line-height: 1.75;
  color: #2a2a1a
}

@media (max-width: 1024px) {
  .doc-text {
    padding: 56px 28px
  }

  .doc-text h1 {
    font-size: 37px
  }

  .doc-text h2 {
    font-size: 37px;
    margin-top: 56px
  }

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

@media (max-width: 640px) {
  .doc-text {
    padding: 28px 14px
  }

  .doc-text h1 {
    font-size: 37px;
    letter-spacing: -.02em
  }

  .doc-text h2 {
    font-size: 18px;
    margin-top: 28px
  }

  .doc-text h3,
  .doc-text h4 {
    font-size: 18px;
    margin-top: 28px
  }

  .doc-text thead th {
    padding: 14px
  }

  .doc-text td {
    padding: 14px
  }

  .doc-text hr {
    margin-top: 28px;
    margin-bottom: 28px
  }
}

.learning-program {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip;
  background: #fff
}

.learning-program .program-title-block {
  padding: 96px 56px 56px;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 20% 40%, #9aa71f21 0%, #bfd8bc1a 50%, #fff 100%)
}

.learning-program .program-title-block .dots-path {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 28px;
  pointer-events: none
}

.learning-program .program-title-block .dots-path circle {
  fill: #9AA71F;
  opacity: .18
}

.learning-program .program-title-block .dots-path circle:nth-child(2) {
  opacity: .13
}

.learning-program .program-title-block .dots-path circle:nth-child(3) {
  opacity: .09
}

.learning-program .program-title-block .dots-path circle:nth-child(4) {
  opacity: .07
}

.learning-program .program-title-block .dots-path circle:nth-child(5) {
  opacity: .05
}

.learning-program .program-title-block .label-tag {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #9AA71F;
  letter-spacing: .08em;
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1.5px solid #9aa71f47;
  border-radius: 8px;
  background: #9aa71f12;
  opacity: 0;
  animation: reveal-up .6s cubic-bezier(0.22, 1, 0.36, 1) .1s forwards
}

.learning-program .program-title-block .problem-text {
  font-size: 18px;
  line-height: 1.75;
  color: #5a5a3a;
  max-width: 560px;
  margin: 0 auto 14px;
  opacity: 0;
  animation: reveal-up .65s cubic-bezier(0.22, 1, 0.36, 1) .2s forwards
}

.learning-program .program-title-block h1 {
  font-size: 68px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #2a2a1a;
  margin: 0 0 28px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: reveal-up .7s cubic-bezier(0.22, 1, 0.36, 1) .3s forwards
}

.learning-program .program-title-block h1 .accent-bracket {
  color: #9AA71F
}

.learning-program .program-title-block .solution-text {
  font-size: 18px;
  line-height: 1.75;
  color: #4a4a2e;
  max-width: 600px;
  margin: 0 auto 56px;
  opacity: 0;
  animation: reveal-up .65s cubic-bezier(0.22, 1, 0.36, 1) .45s forwards
}

.learning-program .program-title-block .title-image-wrap {
  position: relative;
  display: inline-block;
  max-width: 820px;
  width: 100%;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 12px 44px -2px #9aa71f24;
  opacity: 0;
  animation: reveal-up .7s cubic-bezier(0.22, 1, 0.36, 1) .6s forwards
}

.learning-program .program-title-block .title-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: grayscale(30%) contrast(1.05)
}

.learning-program .program-title-block .title-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #9aa71f38 0%, #bfd8bc2e 60%, #f1ece41a 100%);
  pointer-events: none
}

.learning-program .program-title-block .wavy-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

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

.learning-program .curve-divider {
  line-height: 0;
  background: #F1ECE4
}

.learning-program .curve-divider svg {
  display: block;
  width: 100%
}

.learning-program .program-cards-block {
  background: #F1ECE4;
  padding: 56px 56px 96px;
  position: relative
}

.learning-program .program-cards-block .cards-header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 56px
}

.learning-program .program-cards-block .cards-header-left {
  max-width: 560px
}

.learning-program .program-cards-block h2 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: #2a2a1a;
  margin: 0 0 14px;
  position: relative;
  display: inline-block
}

.learning-program .program-cards-block h2::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: #9AA71F;
  border-radius: 8px;
  margin-top: 8px;
  animation: underline-draw .7s cubic-bezier(0.22, 1, 0.36, 1) .8s forwards
}

@keyframes underline-draw {
  to {
    width: 100%
  }
}

.learning-program .program-cards-block .cards-header-desc {
  font-size: 18px;
  line-height: 1.75;
  color: #5a5a3a;
  margin: 0
}

.learning-program .program-cards-block .heatmap-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px
}

.learning-program .program-cards-block .heatmap-label {
  font-size: 16px;
  color: #7a7a5a;
  margin-bottom: 6px
}

.learning-program .program-cards-block .heatmap-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px
}

.learning-program .program-cards-block .heatmap-cell {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #BFD8BC;
  opacity: .3;
  transition: opacity .5s ease-in-out, background .5s ease-in-out
}

.learning-program .program-cards-block .heatmap-cell.low {
  background: #BFD8BC;
  opacity: .5
}

.learning-program .program-cards-block .heatmap-cell.mid {
  background: #9AA71F;
  opacity: .55
}

.learning-program .program-cards-block .heatmap-cell.high {
  background: #9AA71F;
  opacity: .85
}

.learning-program .program-cards-block .heatmap-cell.peak {
  background: #6e7a14;
  opacity: 1
}

.learning-program .program-cards-block .heatmap-legend {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  margin-top: 6px
}

.learning-program .program-cards-block .heatmap-legend span {
  font-size: 16px;
  color: #7a7a5a
}

.learning-program .program-cards-block .heatmap-legend .dot {
  width: 14px;
  height: 14px;
  border-radius: 8px;
  display: inline-block
}

.learning-program .program-cards-block .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.learning-program .program-cards-block .program-card {
  background: #fff;
  border-radius: 48px;
  padding: 56px 28px 28px;
  box-shadow: 0 7px 18px -2px #9aa71f17;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
  opacity: 0
}

.learning-program .program-cards-block .program-card:nth-child(1) {
  animation: reveal-up .55s cubic-bezier(0.22, 1, 0.36, 1) .2s forwards
}

.learning-program .program-cards-block .program-card:nth-child(2) {
  animation: reveal-up .6s cubic-bezier(0.22, 1, 0.36, 1) .35s forwards
}

.learning-program .program-cards-block .program-card:nth-child(3) {
  animation: reveal-up .65s cubic-bezier(0.22, 1, 0.36, 1) .5s forwards
}

.learning-program .program-cards-block .program-card:nth-child(4) {
  animation: reveal-up .6s cubic-bezier(0.22, 1, 0.36, 1) .4s forwards
}

.learning-program .program-cards-block .program-card:nth-child(5) {
  animation: reveal-up .65s cubic-bezier(0.22, 1, 0.36, 1) .55s forwards
}

.learning-program .program-cards-block .program-card:nth-child(6) {
  animation: reveal-up .7s cubic-bezier(0.22, 1, 0.36, 1) .65s forwards
}

.learning-program .program-cards-block .program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 44px -2px #9aa71f24;
  z-index: 2
}

.learning-program .program-cards-block .program-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 12px 44px -2px #9aa71f24;
  z-index: 2
}

.learning-program .program-cards-block .card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: #9aa71f1a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 6px #9aa71f1f
}

.learning-program .program-cards-block .card-icon-wrap .pe-7s {
  font-size: 28px;
  color: #9AA71F
}

.learning-program .program-cards-block .card-step {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 16px;
  font-weight: 700;
  color: #9aa71f59;
  letter-spacing: .04em
}

.learning-program .program-cards-block .program-card h4 {
  font-size: 18px;
  line-height: 1.1;
  color: #2a2a1a;
  margin: 0;
  letter-spacing: -.01em
}

.learning-program .program-cards-block .program-card p {
  font-size: 16px;
  line-height: 1.75;
  color: #5a5a3a;
  margin: 0
}

.learning-program .program-cards-block .program-card .card-note {
  font-size: 16px;
  color: #9AA71F;
  font-weight: 600;
  margin-top: 6px
}

.learning-program .program-cards-block .program-card .card-aside {
  font-size: 16px;
  color: #7a7a5a;
  border-top: 1.5px solid #bfd8bc80;
  padding-top: 14px;
  margin-top: 6px
}

.learning-program .program-cards-block .card-portrait-wrap {
  width: 100%;
  border-radius: 48px;
  overflow: hidden;
  aspect-ratio: 2/3;
  max-height: 220px
}

.learning-program .program-cards-block .card-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(15%)
}

.learning-program .program-cards-block .mentor-card {
  background: linear-gradient(150deg, #2a2a1a 0%, #3e3e22 100%);
  border-radius: 48px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  grid-column: span 1;
  box-shadow: 0 12px 44px -2px #9aa71f24;
  position: relative;
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  animation: reveal-up .7s cubic-bezier(0.22, 1, 0.36, 1) .7s forwards
}

.learning-program .program-cards-block .mentor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 44px -2px #9aa71f38
}

.learning-program .program-cards-block .mentor-card .mentor-portrait {
  width: 100%;
  border-radius: 48px;
  overflow: hidden;
  aspect-ratio: 2/3;
  max-height: 180px
}

.learning-program .program-cards-block .mentor-card .mentor-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.learning-program .program-cards-block .mentor-card h4 {
  font-size: 18px;
  line-height: 1.1;
  color: #fff;
  margin: 0
}

.learning-program .program-cards-block .mentor-card p {
  font-size: 16px;
  line-height: 1.75;
  color: #bfd8bcd9;
  margin: 0
}

.learning-program .program-cards-block .mentor-card .mentor-tag {
  display: inline-block;
  font-size: 16px;
  color: #9AA71F !important;
  font-weight: 600;
  background: #9aa71f26;
  border-radius: 8px;
  padding: 6px 14px
}

.learning-program .program-cards-block .faq-card {
  background: #fff;
  border-radius: 48px;
  padding: 28px;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 3px 4px -2px #9aa71f12;
  opacity: 0;
  animation: reveal-up .65s cubic-bezier(0.22, 1, 0.36, 1) .75s forwards
}

.learning-program .program-cards-block .faq-card h3 {
  font-size: 37px;
  line-height: 1.1;
  color: #2a2a1a;
  margin: 0 0 14px;
  letter-spacing: -.02em
}

.learning-program .program-cards-block .faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: faq-counter
}

.learning-program .program-cards-block .faq-list li {
  counter-increment: faq-counter;
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1.5px solid #bfd8bc66
}

.learning-program .program-cards-block .faq-list li:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.learning-program .program-cards-block .faq-list li::before {
  content: counter(faq-counter, decimal);
  font-size: 16px;
  font-weight: 700;
  color: #9AA71F;
  min-width: 28px;
  padding-top: 2px
}

.learning-program .program-cards-block .faq-list .faq-question {
  font-size: 16px;
  font-weight: 700;
  color: #2a2a1a;
  margin: 0 0 6px;
  line-height: 1.1
}

.learning-program .program-cards-block .faq-list .faq-answer {
  font-size: 16px;
  line-height: 1.75;
  color: #5a5a3a;
  margin: 0
}

.learning-program .program-cards-block .bottom-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 28px;
  margin-top: 28px
}

.learning-program .program-cards-block .cta-card {
  background: radial-gradient(ellipse 90% 80% at 15% 50%, #9aa71f2e 0%, #bfd8bc1f 100%);
  border-radius: 48px;
  padding: 56px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  box-shadow: 0 7px 18px -2px #9aa71f17;
  opacity: 0;
  animation: reveal-up .65s cubic-bezier(0.22, 1, 0.36, 1) .85s forwards
}

.learning-program .program-cards-block .cta-card h3 {
  font-size: 37px;
  line-height: 1.1;
  color: #2a2a1a;
  margin: 0;
  letter-spacing: -.02em
}

.learning-program .program-cards-block .cta-card p {
  font-size: 18px;
  line-height: 1.75;
  color: #4a4a2e;
  margin: 0
}

.learning-program .program-cards-block .cta-card .cta-button {
  display: inline-block;
  background: #2a2a1a;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 56px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: .02em;
  box-shadow: 0 7px 18px -2px #9aa71f17;
  transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1), transform .55s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  cursor: pointer
}

.learning-program .program-cards-block .cta-card .cta-button:hover {
  box-shadow: 0 12px 44px -2px #9aa71f38;
  transform: translateY(-4px)
}

.learning-program .program-cards-block .cta-card .cta-button:focus {
  outline: 3px solid #9AA71F;
  outline-offset: 3px
}

.learning-program .program-cards-block .wavy-top {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  pointer-events: none;
  line-height: 0
}

@media (max-width: 1024px) {
  .learning-program .program-title-block {
    padding: 56px 28px 28px
  }

  .learning-program .program-title-block h1 {
    font-size: 52px
  }

  .learning-program .program-cards-block {
    padding: 56px 28px
  }

  .learning-program .program-cards-block .cards-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .learning-program .program-cards-block .cards-header {
    flex-direction: column;
    align-items: flex-start
  }

  .learning-program .program-cards-block h2 {
    font-size: 37px
  }

  .learning-program .program-cards-block .bottom-row {
    grid-template-columns: 1fr
  }

  .learning-program .program-cards-block .faq-card {
    grid-column: span 1
  }
}

@media (max-width: 640px) {
  .learning-program .program-title-block {
    padding: 56px 14px 28px
  }

  .learning-program .program-title-block h1 {
    font-size: 37px
  }

  .learning-program .program-title-block .title-image-wrap {
    display: none
  }

  .learning-program .program-cards-block {
    padding: 28px 14px 56px
  }

  .learning-program .program-cards-block .cards-grid {
    grid-template-columns: 1fr
  }

  .learning-program .program-cards-block h2 {
    font-size: 37px
  }

  .learning-program .program-cards-block .mentor-card .mentor-portrait {
    display: none
  }

  .learning-program .program-cards-block .bottom-row {
    grid-template-columns: 1fr
  }

  .learning-program .program-cards-block .faq-card {
    grid-column: span 1
  }

  .learning-program .program-cards-block .heatmap-wrap {
    display: none
  }
}

.opening {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip
}

.opening .split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px
}

.opening .split-left {
  background: #9AA71F;
  padding: 96px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative
}

.opening .split-left::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background: #9AA71F;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 2
}

.opening .split-left .atmosphere {
  position: absolute;
  border-radius: 48px;
  pointer-events: none;
  z-index: 0
}

.opening .split-left .atmosphere.spot-a {
  width: 260px;
  height: 260px;
  background: radial-gradient(ellipse at 30% 40%, #bfd8bc61 0%, transparent 70%);
  top: -60px;
  left: -60px
}

.opening .split-left .atmosphere.spot-b {
  width: 180px;
  height: 180px;
  background: radial-gradient(ellipse at 30% 40%, #f1ece438 0%, transparent 70%);
  bottom: 28px;
  right: 56px
}

.opening .split-left-text {
  position: relative;
  z-index: 1
}

.opening .split-left-text .label {
  font-size: 16px;
  line-height: 1.75;
  color: #ffffffd1;
  letter-spacing: .08em;
  margin-bottom: 28px;
  text-transform: uppercase
}

.opening .split-left-text h1 {
  font-size: 52px;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 28px
}

.opening .split-left-text h1 .accent-phrase {
  color: #F1ECE4
}

.opening .split-left-text .sub {
  font-size: 18px;
  line-height: 1.75;
  color: #ffffffe0;
  max-width: 380px
}

.opening .split-right {
  background: #F1ECE4;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px
}

.opening .split-right .duotone-wrap {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 44px -2px #9aa71f24
}

.opening .split-right .duotone-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.7) contrast(1.08);
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.opening .split-right .duotone-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #9aa71f47 0%, #bfd8bc2e 60%, transparent 100%);
  pointer-events: none
}

.opening .split-right .duotone-wrap:hover img {
  transform: scale(1.03)
}

.opening .split-right .circles-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0
}

.opening .split-right .circle-one {
  width: 180px;
  height: 180px;
  border-radius: 48px;
  background: #9aa71f12;
  top: 28px;
  right: 14px
}

.opening .split-right .circle-two {
  width: 120px;
  height: 120px;
  border-radius: 48px;
  background: #bfd8bc21;
  bottom: 14px;
  left: 28px
}

.opening .split-right .circle-three {
  width: 60px;
  height: 60px;
  border-radius: 48px;
  background: #9aa71f17;
  top: 96px;
  left: 14px
}

.opening .split-right>* {
  position: relative;
  z-index: 1
}

.opening .situations {
  background: #fff;
  padding: 96px 56px
}

.opening .situations-grid {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto
}

.opening .situations-center h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #2a2a1e;
  letter-spacing: -.01em;
  margin-bottom: 28px
}

.opening .situations-center h2 .accent-phrase {
  color: #9AA71F
}

.opening .situations-center .lead {
  font-size: 18px;
  line-height: 1.75;
  color: #3d3d2e;
  margin-bottom: 28px
}

.opening .situations-center .note {
  font-size: 16px;
  line-height: 1.75;
  color: #555540
}

.opening .situation-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 14px
}

.opening .sit-card {
  background: #F1ECE4;
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 3px 4px -2px #9aa71f12;
  transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1);
  animation: fadeUp .6s cubic-bezier(0.22, 1, 0.36, 1) both
}

.opening .sit-card:nth-child(1) {
  animation-delay: .1s
}

.opening .sit-card:nth-child(2) {
  animation-delay: .22s
}

.opening .sit-card:nth-child(3) {
  animation-delay: .34s
}

.opening .sit-card:nth-child(4) {
  animation-delay: .46s
}

.opening .sit-card:hover {
  box-shadow: 0 7px 18px -2px #9aa71f17;
  transform: translateY(-4px)
}

.opening .sit-card .sit-icon {
  width: 32px;
  height: 32px;
  background: #9AA71F;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px
}

.opening .sit-card .sit-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8
}

.opening .sit-card h5 {
  font-size: 16px;
  line-height: 1.1;
  color: #2a2a1e;
  margin-bottom: 6px
}

.opening .sit-card p {
  font-size: 16px;
  line-height: 1.75;
  color: #555540
}

.opening .sit-divider {
  height: 2px;
  background: linear-gradient(90deg, #9AA71F 0%, #bfd8bc4d 100%);
  border-radius: 8px;
  margin-bottom: 28px
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px)
  }

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

.opening .objection {
  background: #2a2a1e;
  padding: 96px 56px;
  position: relative
}

.opening .objection-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, #9aa71f2e 0%, transparent 60%);
  pointer-events: none
}

.opening .objection-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start
}

.opening .objection-question {
  position: relative
}

.opening .objection-question h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #F1ECE4;
  letter-spacing: -.01em;
  margin-bottom: 28px
}

.opening .objection-question h2 .accent-phrase {
  color: #9AA71F
}

.opening .objection-question .before-label {
  font-size: 16px;
  letter-spacing: .06em;
  color: #bfd8bcb3;
  text-transform: uppercase;
  margin-bottom: 14px
}

.opening .objection-answer {
  padding-top: 14px
}

.opening .objection-answer .after-label {
  font-size: 16px;
  letter-spacing: .06em;
  color: #bfd8bcb3;
  text-transform: uppercase;
  margin-bottom: 14px
}

.opening .contrast-pair {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.opening .contrast-item {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: flex-start
}

.opening .contrast-item .ci-line {
  width: 3px;
  min-height: 48px;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 6px
}

.opening .contrast-item.before .ci-line {
  background: #bfd8bc4d
}

.opening .contrast-item.after .ci-line {
  background: #9AA71F
}

.opening .contrast-item p {
  font-size: 16px;
  line-height: 1.75;
  color: #f1ece4d9
}

.opening .contrast-item.after p {
  color: #F1ECE4
}

.opening .objection-answer .answer-text {
  font-size: 18px;
  line-height: 1.75;
  color: #f1ece4e6;
  margin-bottom: 28px
}

.opening .objection-image {
  margin-top: 28px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 44px -2px #9aa71f24
}

.opening .objection-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block
}

.opening .audience {
  background: #F1ECE4;
  padding: 96px 56px
}

.opening .audience-wrap {
  max-width: 1100px;
  margin: 0 auto
}

.opening .audience-wrap h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #2a2a1e;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  max-width: 600px
}

.opening .audience-wrap h2 .accent-phrase {
  color: #9AA71F
}

.opening .audience-wrap .lead {
  font-size: 18px;
  line-height: 1.75;
  color: #3d3d2e;
  margin-bottom: 56px;
  max-width: 520px
}

.opening .audience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start
}

.opening .audience-stories {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.opening .story-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: flex-start;
  animation: fadeUp .65s cubic-bezier(0.22, 1, 0.36, 1) both
}

.opening .story-item:nth-child(1) {
  animation-delay: .08s
}

.opening .story-item:nth-child(2) {
  animation-delay: .2s
}

.opening .story-item:nth-child(3) {
  animation-delay: .32s
}

.opening .story-number {
  font-size: 37px;
  line-height: 1.1;
  color: #9aa71f40;
  letter-spacing: -.02em;
  font-weight: 700;
  text-align: right
}

.opening .story-text h5 {
  font-size: 16px;
  line-height: 1.1;
  color: #2a2a1e;
  margin-bottom: 6px
}

.opening .story-text p {
  font-size: 16px;
  line-height: 1.75;
  color: #555540
}

.opening .audience-aside {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.opening .person-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 7px 18px -2px #9aa71f17;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.opening .person-card:hover {
  box-shadow: 0 12px 44px -2px #9aa71f24
}

.opening .person-card .portrait-wrap {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0
}

.opening .person-card .portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.opening .person-card .person-meta .person-name {
  font-size: 16px;
  line-height: 1.1;
  color: #2a2a1e;
  margin-bottom: 6px
}

.opening .person-card .person-meta .person-detail {
  font-size: 16px;
  line-height: 1.75;
  color: #555540
}

.opening .audience-note {
  background: #BFD8BC;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 3px 4px -2px #9aa71f12
}

.opening .audience-note p {
  font-size: 16px;
  line-height: 1.75;
  color: #2a2a1e
}

.opening .relations {
  background: #fff;
  padding: 96px 56px
}

.opening .relations-wrap {
  max-width: 1200px;
  margin: 0 auto
}

.opening .relations-top {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  margin-bottom: 56px;
  align-items: end
}

.opening .relations-top h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #2a2a1e;
  letter-spacing: -.01em;
  margin-bottom: 14px
}

.opening .relations-top h2 .accent-phrase {
  color: #9AA71F
}

.opening .relations-top .lead {
  font-size: 18px;
  line-height: 1.75;
  color: #3d3d2e
}

.opening .relations-top .side-note {
  font-size: 16px;
  line-height: 1.75;
  color: #555540;
  border-top: 2px solid #9AA71F;
  padding-top: 14px
}

.opening .relations-grid {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 28px;
  align-items: start
}

.opening .rel-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.opening .rel-item {
  padding: 14px;
  border-radius: 8px;
  background: #F1ECE4;
  box-shadow: 0 3px 4px -2px #9aa71f12;
  transition: box-shadow .5s ease-in-out, transform .5s ease-in-out;
  animation: fadeUp .6s cubic-bezier(0.22, 1, 0.36, 1) both
}

.opening .rel-item:nth-child(1) {
  animation-delay: .05s
}

.opening .rel-item:nth-child(2) {
  animation-delay: .15s
}

.opening .rel-item:nth-child(3) {
  animation-delay: .25s
}

.opening .rel-item:hover {
  box-shadow: 0 7px 18px -2px #9aa71f17;
  transform: translateY(-3px)
}

.opening .rel-item .rel-label {
  font-size: 16px;
  line-height: 1.1;
  color: #9AA71F;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 6px
}

.opening .rel-item p {
  font-size: 16px;
  line-height: 1.75;
  color: #3d3d2e
}

.opening .rel-center {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.opening .rel-image-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 44px -2px #9aa71f24
}

.opening .rel-image-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.opening .rel-image-wrap:hover img {
  transform: scale(1.04)
}

.opening .rel-cta-block {
  background: #9AA71F;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.opening .rel-cta-block p {
  font-size: 16px;
  line-height: 1.75;
  color: #fff
}

.opening .rel-cta-block a {
  display: inline-block;
  background: #fff;
  color: #2a2a1e;
  font-size: 16px;
  line-height: 1.1;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 3px 4px -2px #9aa71f12;
  transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1);
  align-self: flex-start
}

.opening .rel-cta-block a:hover {
  box-shadow: 0 12px 44px -2px #9aa71f24;
  transform: translateY(-4px)
}

.opening .rel-cta-block a:focus {
  outline: 3px solid #2a2a1e;
  outline-offset: 2px
}

.opening .rel-icon-row {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.opening .rel-icon-item {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: #F1ECE4;
  box-shadow: 0 3px 4px -2px #9aa71f12;
  transition: box-shadow .55s ease-in-out
}

.opening .rel-icon-item:hover {
  box-shadow: 0 7px 18px -2px #9aa71f17
}

.opening .rel-icon-item .icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #BFD8BC;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: spinSettle .7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: .4s
}

@keyframes spinSettle {
  from {
    transform: rotate(-90deg);
    opacity: .4
  }

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

.opening .rel-icon-item .icon-box svg {
  width: 18px;
  height: 18px;
  stroke: #2a2a1e;
  fill: none;
  stroke-width: 1.8
}

.opening .rel-icon-item p {
  font-size: 16px;
  line-height: 1.75;
  color: #3d3d2e
}

.opening .band-divider {
  height: 6px;
  background: linear-gradient(90deg, #9AA71F 0%, #bfd8bc66 60%, transparent 100%)
}

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

  .opening .split-left::after {
    display: none
  }

  .opening .split-right {
    display: none
  }

  .opening .situations-grid {
    grid-template-columns: 1fr
  }

  .opening .situations-grid .situation-sidebar:last-child {
    display: none
  }

  .opening .objection-inner {
    grid-template-columns: 1fr
  }

  .opening .audience-layout {
    grid-template-columns: 1fr
  }

  .opening .relations-top {
    grid-template-columns: 1fr
  }

  .opening .relations-grid {
    grid-template-columns: 1fr
  }

  .opening .rel-sidebar:last-child {
    display: none
  }
}

@media (max-width: 640px) {
  .opening .split-left {
    padding: 56px 28px
  }

  .opening .split-left-text h1 {
    font-size: 37px
  }

  .opening .situations {
    padding: 56px 28px
  }

  .opening .objection {
    padding: 56px 28px
  }

  .opening .audience {
    padding: 56px 28px
  }

  .opening .relations {
    padding: 56px 28px
  }

  .opening .sit-card {
    padding: 14px
  }

  .opening .story-item {
    grid-template-columns: 32px 1fr
  }

  .opening .relations-grid {
    gap: 14px
  }
}

.about-us-page {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden
}

.about-us-page .portrait-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 96px 56px 56px;
  background: #F1ECE4;
  position: relative
}

.about-us-page .portrait-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 40%, #9aa71f14 0%, transparent 70%);
  pointer-events: none
}

.about-us-page .portrait-block .dot-grid {
  position: absolute;
  bottom: 28px;
  right: 56px;
  width: 180px;
  height: 120px;
  background-image: radial-gradient(circle, #9aa71f40 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none
}

.about-us-page .portrait-block .image-side {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.about-us-page .portrait-block .image-side img {
  width: 100%;
  aspect-ratio: 7/9;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: 0 7px 18px -2px #9aa71f17 0 12px 44px -2px #9aa71f24
}

.about-us-page .portrait-block .image-side .image-label {
  font-size: 16px;
  line-height: 1.75;
  color: #3a3a2e;
  letter-spacing: .02em;
  padding-left: 14px;
  border-top: 2px solid #9AA71F;
  padding-top: 6px
}

.about-us-page .portrait-block .text-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 28px;
  gap: 28px
}

.about-us-page .portrait-block .text-side h1 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #1e1e14;
  margin: 0;
  position: relative;
  padding-bottom: 14px
}

.about-us-page .portrait-block .text-side h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: #9AA71F;
  animation: underline-draw .7s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

@keyframes underline-draw {
  from {
    width: 0
  }

  to {
    width: 80px
  }
}

.about-us-page .portrait-block .text-side .person-name {
  font-size: 18px;
  line-height: 1.75;
  color: #9AA71F;
  letter-spacing: .04em;
  font-weight: 600;
  margin: 0
}

.about-us-page .portrait-block .text-side .person-role {
  font-size: 16px;
  line-height: 1.75;
  color: #5a5a46;
  letter-spacing: .02em;
  margin: 0
}

.about-us-page .portrait-block .text-side .description {
  font-size: 16px;
  line-height: 1.75;
  color: #3a3a2e;
  letter-spacing: .01em;
  margin: 0
}

.about-us-page .portrait-block .text-side .description .accent-phrase {
  color: #9AA71F
}

.about-us-page .portrait-block .text-side .aside-note {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: start
}

.about-us-page .portrait-block .text-side .aside-note .note-label {
  font-size: 16px;
  line-height: 1.75;
  color: #9AA71F;
  letter-spacing: .03em;
  font-weight: 600
}

.about-us-page .portrait-block .text-side .aside-note .note-text {
  font-size: 16px;
  line-height: 1.75;
  color: #3a3a2e;
  margin: 0
}

.about-us-page .growth-block {
  background: #2b2d1a;
  padding: 56px;
  position: relative;
  overflow: hidden
}

.about-us-page .growth-block::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 340px;
  height: 340px;
  background: radial-gradient(ellipse 60% 55% at 25% 35%, #9aa71f2e 0%, transparent 70%);
  pointer-events: none
}

.about-us-page .growth-block .growth-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  max-width: 1440px;
  position: relative
}

.about-us-page .growth-block .growth-left {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.about-us-page .growth-block .growth-left h2 {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: #F1ECE4;
  margin: 0;
  position: relative;
  padding-bottom: 14px
}

.about-us-page .growth-block .growth-left h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: #9AA71F;
  animation: underline-draw-short .6s cubic-bezier(0.22, 1, 0.36, 1) .2s both
}

@keyframes underline-draw-short {
  from {
    width: 0
  }

  to {
    width: 56px
  }
}

.about-us-page .growth-block .growth-left .growth-text {
  font-size: 16px;
  line-height: 1.75;
  color: #BFD8BC;
  margin: 0
}

.about-us-page .growth-block .growth-left .aside-pair {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px
}

.about-us-page .growth-block .growth-left .aside-pair .pair-label {
  font-size: 16px;
  line-height: 1.75;
  color: #9AA71F;
  font-weight: 600
}

.about-us-page .growth-block .growth-left .aside-pair .pair-text {
  font-size: 16px;
  line-height: 1.75;
  color: #BFD8BC;
  margin: 0
}

.about-us-page .growth-block .growth-right {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.about-us-page .growth-block .growth-right h3 {
  font-size: 18px;
  line-height: 1.75;
  color: #F1ECE4;
  margin: 0;
  letter-spacing: .02em
}

.about-us-page .growth-block .chart-area {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.about-us-page .growth-block .chart-row {
  display: grid;
  grid-template-columns: 80px 1fr 48px;
  gap: 14px;
  align-items: center
}

.about-us-page .growth-block .chart-row .chart-label {
  font-size: 16px;
  line-height: 1.1;
  color: #BFD8BC;
  text-align: right
}

.about-us-page .growth-block .chart-row .chart-bar-wrap {
  height: 28px;
  background: #bfd8bc1a;
  border-radius: 8px;
  overflow: hidden
}

.about-us-page .growth-block .chart-row .chart-bar {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, #9AA71F 0%, #BFD8BC 100%);
  transition: width .7s cubic-bezier(0.22, 1, 0.36, 1)
}

.about-us-page .growth-block .chart-row .chart-val {
  font-size: 16px;
  line-height: 1.1;
  color: #9AA71F;
  font-weight: 600
}

.about-us-page .growth-block .cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px
}

.about-us-page .growth-block .info-card {
  background: #9aa71f14;
  border: 1px solid #9aa71f33;
  border-radius: 8px;
  padding: 28px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default
}

.about-us-page .growth-block .info-card:hover {
  background: #9aa71f29;
  box-shadow: 0 7px 18px -2px #9aa71f17
}

.about-us-page .growth-block .info-card .card-number {
  font-size: 37px;
  line-height: 1.1;
  color: #9AA71F;
  letter-spacing: -.01em;
  font-weight: 700
}

.about-us-page .growth-block .info-card .card-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #BFD8BC
}

.about-us-page .growth-block .images-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px
}

.about-us-page .growth-block .strip-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3
}

.about-us-page .growth-block .strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.about-us-page .growth-block .strip-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, #2b2d1a8c 100%);
  pointer-events: none
}

.about-us-page .growth-block .strip-image:hover img {
  transform: scale(1.04)
}

.about-us-page .divider-partial {
  display: flex;
  justify-content: center;
  padding: 28px 56px;
  background: #F1ECE4
}

.about-us-page .divider-partial span {
  display: block;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #9AA71F 40%, #BFD8BC 70%, transparent 100%)
}

@media (max-width: 1024px) {
  .about-us-page .portrait-block {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 56px 28px 28px
  }

  .about-us-page .growth-block {
    padding: 56px 28px
  }

  .about-us-page .growth-block .growth-inner {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .about-us-page .growth-block .images-strip {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 640px) {
  .about-us-page .portrait-block {
    grid-template-columns: 1fr;
    padding: 56px 14px 28px;
    gap: 28px
  }

  .about-us-page .portrait-block .image-side {
    display: none
  }

  .about-us-page .portrait-block .text-side h1 {
    font-size: 37px
  }

  .about-us-page .portrait-block .text-side .aside-note {
    grid-template-columns: 1fr;
    gap: 6px
  }

  .about-us-page .growth-block {
    padding: 56px 14px
  }

  .about-us-page .growth-block .cards-row {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .about-us-page .growth-block .images-strip {
    display: none
  }

  .about-us-page .growth-block .chart-row {
    grid-template-columns: 60px 1fr 40px;
    gap: 6px
  }

  .about-us-page .growth-block .growth-left .aside-pair {
    grid-template-columns: 1fr;
    gap: 6px
  }

  .about-us-page .divider-partial {
    padding: 28px 14px
  }
}

.contact-us-page {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden
}

.contact-us-page .form-band {
  background: linear-gradient(160deg, #F1ECE4 0%, #e8e2d8 40%, #d6dfc0 100%);
  padding: 96px 56px;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 56px;
  align-items: start
}

.contact-us-page .form-left {
  position: relative;
  padding-right: 28px
}

.contact-us-page .form-left::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 0;
  width: 1px;
  height: calc(100% - 28px);
  border-right: 2px dashed #9AA71F
}

.contact-us-page .form-eyebrow {
  font-size: 16px;
  line-height: 1.75;
  color: #9AA71F;
  letter-spacing: .08em;
  margin-bottom: 14px;
  font-weight: 600
}

.contact-us-page .form-heading {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #2a2a1a;
  margin-bottom: 28px;
  position: relative;
  display: inline-block
}

.contact-us-page .form-heading::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #9AA71F;
  animation: draw-line .7s cubic-bezier(0.22, 1, 0.36, 1) .4s forwards
}

@keyframes draw-line {
  to {
    width: 100%
  }
}

.contact-us-page .form-description {
  font-size: 18px;
  line-height: 1.75;
  color: #3a3a2a;
  margin-bottom: 28px
}

.contact-us-page .form-description span {
  color: #9AA71F
}

.contact-us-page .contact-quick {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px
}

.contact-us-page .contact-quick-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  line-height: 1.75;
  color: #3a3a2a
}

.contact-us-page .contact-quick-item .icon-wrap {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 4px -2px #9aa71f12
}

.contact-us-page .contact-quick-item .icon-wrap svg {
  width: 18px;
  height: 18px;
  stroke: #9AA71F;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.contact-us-page .contact-quick-item a {
  color: #3a3a2a;
  text-decoration: none;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.contact-us-page .contact-quick-item a:hover {
  color: #9AA71F
}

.contact-us-page .form-right {
  background: #fff;
  border-radius: 8px;
  padding: 56px;
  box-shadow: 0 7px 18px -2px #9aa71f17 0 12px 44px -2px #9aa71f24;
  animation: blur-in .6s cubic-bezier(0.22, 1, 0.36, 1) both
}

@keyframes blur-in {
  from {
    filter: blur(6px);
    opacity: .4
  }

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

.contact-us-page .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px
}

.contact-us-page .field-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.contact-us-page .field-group.full {
  grid-column: 1 / -1
}

.contact-us-page .field-label {
  font-size: 16px;
  line-height: 1.75;
  color: #2a2a1a;
  font-weight: 600;
  letter-spacing: .02em
}

.contact-us-page .field-input {
  padding: 14px 18px;
  border: 1.5px solid #BFD8BC;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.75;
  color: #2a2a1a;
  background: #F1ECE4;
  outline: none;
  transition: border-color .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), background .5s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  box-sizing: border-box
}

.contact-us-page .field-input::placeholder {
  color: #9aaa85;
  font-weight: 300
}

.contact-us-page .field-input:focus {
  border-color: #9AA71F;
  background: #fff;
  box-shadow: 0 0 0 3px #9aa71f1f inset 0 2px 6px #9aa71f12
}

.contact-us-page .channel-label {
  font-size: 16px;
  line-height: 1.75;
  color: #2a2a1a;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 6px
}

.contact-us-page .channel-options {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.contact-us-page .channel-option {
  position: relative
}

.contact-us-page .channel-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0
}

.contact-us-page .channel-option label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1.5px solid #BFD8BC;
  border-radius: 48px;
  font-size: 16px;
  line-height: 1.75;
  color: #3a3a2a;
  cursor: pointer;
  background: #F1ECE4;
  transition: border-color .55s cubic-bezier(0.22, 1, 0.36, 1), background .55s cubic-bezier(0.22, 1, 0.36, 1), color .55s cubic-bezier(0.22, 1, 0.36, 1);
  user-select: none
}

.contact-us-page .channel-option input[type="radio"]:checked+label {
  border-color: #9AA71F;
  background: #9AA71F;
  color: #fff !important
}

.contact-us-page .channel-option label:hover {
  border-color: #9AA71F;
  background: #eef2d0
}

.contact-us-page .channel-option input[type="radio"]:focus-visible+label {
  outline: 2px solid #9AA71F;
  outline-offset: 2px
}

.contact-us-page .channel-option label svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0
}

.contact-us-page .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px
}

.contact-us-page .privacy-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: #9AA71F;
  cursor: pointer
}

.contact-us-page .privacy-text {
  font-size: 16px;
  line-height: 1.75;
  color: #3a3a2a
}

.contact-us-page .privacy-text a {
  color: #9AA71F;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .45s ease-in-out
}

.contact-us-page .privacy-text a:hover {
  color: #6d7a15
}

.contact-us-page .submit-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 56px;
  background: #2a2a1a;
  color: #F1ECE4;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: .02em;
  cursor: pointer;
  transition: box-shadow .6s cubic-bezier(0.22, 1, 0.36, 1), transform .6s cubic-bezier(0.22, 1, 0.36, 1), background .5s ease-in-out;
  font-weight: 600
}

.contact-us-page .submit-button:hover {
  box-shadow: 0 7px 18px -2px #9aa71f17 0 12px 44px -2px #9aa71f24;
  transform: translateY(-4px);
  background: #9AA71F
}

.contact-us-page .submit-button:focus-visible {
  outline: 2px solid #9AA71F;
  outline-offset: 3px
}

.contact-us-page .submit-button:active {
  transform: translateY(-1px)
}

.contact-us-page .submit-button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.contact-us-page .details-band {
  background: linear-gradient(170deg, #2a2a1a 0%, #3d3d22 55%, #4a5210 100%);
  padding: 96px 56px;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 56px;
  align-items: start
}

.contact-us-page .metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 28px
}

.contact-us-page .metric-card {
  background: #ffffff0f;
  border: 1px solid #9aa71f40;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .55s cubic-bezier(0.22, 1, 0.36, 1), border-color .55s cubic-bezier(0.22, 1, 0.36, 1), transform .55s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: inset 0 1px 0 #9aa71f1f
}

.contact-us-page .metric-card:hover {
  background: #9aa71f1f;
  border-color: #9aa71f80;
  transform: translateY(-3px)
}

.contact-us-page .metric-value {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #9AA71F;
  font-weight: 700
}

.contact-us-page .metric-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #BFD8BC
}

.contact-us-page .details-right {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.contact-us-page .details-heading {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #F1ECE4;
  position: relative;
  display: inline-block
}

.contact-us-page .details-heading::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #9AA71F;
  animation: draw-line .7s cubic-bezier(0.22, 1, 0.36, 1) .8s forwards
}

.contact-us-page .details-body {
  font-size: 18px;
  line-height: 1.75;
  color: #BFD8BC
}

.contact-us-page .details-body span {
  color: #9AA71F
}

.contact-us-page .address-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: #ffffff0d;
  border-radius: 8px;
  border: 1px solid #bfd8bc33;
  box-shadow: inset 0 1px 0 #9aa71f1a
}

.contact-us-page .address-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px
}

.contact-us-page .address-row .addr-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #9aa71f2e
}

.contact-us-page .address-row .addr-icon svg {
  width: 16px;
  height: 16px;
  stroke: #9AA71F;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.contact-us-page .address-row .addr-text {
  font-size: 16px;
  line-height: 1.75;
  color: #F1ECE4
}

.contact-us-page .address-row .addr-text a {
  color: #BFD8BC;
  text-decoration: none;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.contact-us-page .address-row .addr-text a:hover {
  color: #9AA71F
}

.contact-us-page .dashed-divider {
  border: none;
  border-top: 2px dashed #9AA71F;
  opacity: .35;
  margin: 0
}

@media (max-width: 1024px) {
  .contact-us-page .form-band {
    grid-template-columns: 1fr;
    padding: 56px 28px;
    gap: 28px
  }

  .contact-us-page .form-left::after {
    display: none
  }

  .contact-us-page .form-right {
    padding: 28px
  }

  .contact-us-page .details-band {
    grid-template-columns: 1fr;
    padding: 56px 28px;
    gap: 28px
  }

  .contact-us-page .form-heading {
    font-size: 37px
  }
}

@media (max-width: 640px) {
  .contact-us-page .form-band {
    padding: 56px 14px;
    gap: 28px
  }

  .contact-us-page .form-row {
    grid-template-columns: 1fr
  }

  .contact-us-page .form-right {
    padding: 28px 14px
  }

  .contact-us-page .details-band {
    padding: 56px 14px;
    gap: 28px
  }

  .contact-us-page .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px
  }

  .contact-us-page .metric-value {
    font-size: 37px
  }

  .contact-us-page .form-heading {
    font-size: 37px
  }

  .contact-us-page .details-heading {
    font-size: 37px
  }

  .contact-us-page .channel-options {
    gap: 6px
  }

  .contact-us-page .submit-button {
    width: 100%;
    justify-content: center;
    padding: 18px 28px
  }
}

.availability {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip
}

.availability .schedule-band {
  width: 4px;
  height: 100%;
  background: #9AA71F;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 8px
}

.availability .title-block {
  position: relative;
  padding: 96px 56px 56px;
  background: linear-gradient(128deg, #F1ECE4 38%, #BFD8BC 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end
}

.availability .title-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #9AA71F 0%, #BFD8BC 60%, transparent 100%)
}

.availability .title-text {
  position: relative
}

.availability .title-text h1 {
  font-size: 68px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #1b2000;
  margin: 0 0 28px
}

.availability .title-text h1 .accent-word {
  color: #9AA71F;
  display: inline-block
}

.availability .title-text .subtitle {
  font-size: 18px;
  line-height: 1.75;
  color: #2d3a00;
  margin: 0;
  max-width: 420px
}

.availability .title-image-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end
}

.availability .title-image-wrap {
  position: relative;
  width: 380px;
  height: 460px;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 12px 44px -2px #9aa71f24
}

.availability .title-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.availability .title-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 30%, #ffffff59 0%, transparent 60%);
  pointer-events: none
}

.availability .schedule-grid-section {
  padding: 56px;
  background: #fff;
  position: relative
}

.availability .schedule-grid-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 56px;
  right: 56px;
  height: 1px;
  background: linear-gradient(90deg, #BFD8BC, transparent)
}

.availability .schedule-label {
  font-size: 16px;
  letter-spacing: .08em;
  color: #9AA71F;
  margin: 0 0 28px;
  text-transform: uppercase
}

.availability .schedule-heading {
  font-size: 37px;
  line-height: 1.1;
  color: #1b2000;
  margin: 0 0 56px;
  letter-spacing: -.02em;
  position: relative;
  display: inline-block
}

.availability .schedule-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: #9AA71F;
  border-radius: 8px;
  animation: underline-draw .7s cubic-bezier(0.22, 1, 0.36, 1) .4s forwards
}

@keyframes underline-draw {
  to {
    width: 100%
  }
}

.availability .schedule-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start
}

.availability .days-table {
  width: 100%;
  border-collapse: collapse
}

.availability .days-table thead tr th {
  font-size: 16px;
  color: #9AA71F;
  text-align: left;
  padding: 14px 14px 14px 0;
  border-bottom: 2px solid #BFD8BC;
  letter-spacing: .06em
}

.availability .days-table tbody tr {
  border-bottom: 1px solid #F1ECE4;
  transition: background-color .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.availability .days-table tbody tr:hover {
  background: #F1ECE4;
  box-shadow: 0 3px 4px -2px #9aa71f12
}

.availability .days-table tbody tr td {
  font-size: 16px;
  line-height: 1.75;
  color: #2d3a00;
  padding: 14px 14px 14px 0
}

.availability .days-table tbody tr td:first-child {
  font-size: 18px;
  color: #1b2000
}

.availability .status-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 48px;
  font-size: 16px
}

.availability .status-badge.open {
  background: #9aa71f1f;
  color: #5a6300
}

.availability .status-badge.limited {
  background: #bfd8bc66;
  color: #2d5c2a
}

.availability .status-badge.closed {
  background: #F1ECE4;
  color: #7a6a50
}

.availability .schedule-aside {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.availability .info-card {
  border: 1.5px dashed #BFD8BC;
  border-radius: 8px;
  padding: 28px;
  position: relative;
  background: #F1ECE4;
  transition: box-shadow .6s cubic-bezier(0.22, 1, 0.36, 1), border-color .5s ease-in-out
}

.availability .info-card:hover {
  box-shadow: 0 7px 18px -2px #9aa71f17;
  border-color: #9AA71F
}

.availability .info-card .card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  color: #9AA71F
}

.availability .info-card h4 {
  font-size: 18px;
  line-height: 1.1;
  color: #1b2000;
  margin: 0 0 14px
}

.availability .info-card p {
  font-size: 16px;
  line-height: 1.75;
  color: #2d3a00;
  margin: 0
}

.availability .mentors-section {
  padding: 96px 56px;
  background: #F1ECE4;
  position: relative
}

.availability .mentors-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 15% 40%, #9aa71f14 0%, transparent 70%);
  pointer-events: none
}

.availability .mentors-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  align-items: start
}

.availability .mentors-heading-col h2 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: #1b2000;
  margin: 0 0 14px
}

.availability .mentors-heading-col h2 .bracket-phrase {
  color: #9AA71F
}

.availability .mentors-text-col {
  padding-top: 14px
}

.availability .mentors-text-col p {
  font-size: 18px;
  line-height: 1.75;
  color: #2d3a00;
  margin: 0 0 14px
}

.availability .mentors-text-col p:last-child {
  margin: 0
}

.availability .mentors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.availability .mentor-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 4px -2px #9aa71f12;
  transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1), transform .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.availability .mentor-card:hover {
  box-shadow: 0 12px 44px -2px #9aa71f24;
  transform: translateY(-5px)
}

.availability .mentor-photo {
  width: 100%;
  aspect-ratio: 5/7;
  overflow: hidden
}

.availability .mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.availability .mentor-info {
  padding: 28px
}

.availability .mentor-info h5 {
  font-size: 18px;
  line-height: 1.1;
  color: #1b2000;
  margin: 0 0 6px
}

.availability .mentor-info .role-tag {
  font-size: 16px;
  color: #9AA71F;
  margin: 0 0 14px
}

.availability .mentor-info .slots-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px
}

.availability .mentor-info .slots-count {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b2000;
  letter-spacing: -.02em
}

.availability .mentor-info .slots-label {
  font-size: 16px;
  line-height: 1.75;
  color: #5a6300
}

.availability .slots-bar {
  height: 6px;
  background: #F1ECE4;
  border-radius: 48px;
  margin-top: 14px;
  overflow: hidden
}

.availability .slots-fill {
  height: 100%;
  border-radius: 48px;
  animation: fill-bar .7s cubic-bezier(0.22, 1, 0.36, 1) .3s both
}

.availability .slots-fill.high {
  background: #9AA71F
}

.availability .slots-fill.mid {
  background: #BFD8BC
}

.availability .slots-fill.low {
  background: #d4b896
}

@keyframes fill-bar {
  from {
    width: 0
  }
}

.availability .contact-strip {
  padding: 56px;
  background: #1b2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px
}

.availability .contact-strip .strip-text h3 {
  font-size: 37px;
  line-height: 1.1;
  color: #F1ECE4;
  margin: 0 0 14px;
  letter-spacing: -.02em
}

.availability .contact-strip .strip-text p {
  font-size: 18px;
  line-height: 1.75;
  color: #BFD8BC;
  margin: 0
}

.availability .contact-strip .strip-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-shrink: 0
}

.availability .btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: #9AA71F;
  color: #fff;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 3px 4px -2px #9aa71f12
}

.availability .btn-primary:hover {
  box-shadow: 0 12px 44px -2px #9aa71f24;
  transform: translateY(-3px)
}

.availability .btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: #BFD8BC;
  font-size: 18px;
  border-radius: 8px;
  border: 1.5px solid #BFD8BC;
  text-decoration: none;
  transition: background-color .5s cubic-bezier(0.22, 1, 0.36, 1), color .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.availability .btn-secondary:hover {
  background: #bfd8bc1f;
  box-shadow: 0 7px 18px -2px #bfd8bc17
}

.availability .img-bg-section {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: row;
  align-items: center
}

.availability .img-bg-section .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.availability .img-bg-section .bg-overlay {
  position: absolute;
  inset: 0;
  background: #f1ece4e0;
  pointer-events: none
}

.availability .img-bg-section .bg-content {
  position: relative;
  z-index: 1;
  padding: 56px;
  max-width: 680px
}

.availability .img-bg-section .bg-content h3 {
  font-size: 37px;
  line-height: 1.1;
  color: #1b2000;
  margin: 0 0 28px;
  letter-spacing: -.02em
}

.availability .img-bg-section .bg-content ol {
  margin: 0;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.availability .img-bg-section .bg-content ol li {
  font-size: 18px;
  line-height: 1.75;
  color: #2d3a00
}

.availability .img-bg-section .bg-content ol li .note-accent {
  color: #9AA71F
}

@media (max-width: 1024px) {
  .availability .title-block {
    grid-template-columns: 1fr;
    padding: 56px 28px 28px;
    gap: 28px
  }

  .availability .title-text h1 {
    font-size: 52px
  }

  .availability .title-image-col {
    display: none
  }

  .availability .schedule-grid-section {
    padding: 56px 28px
  }

  .availability .schedule-layout {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .availability .mentors-section {
    padding: 56px 28px
  }

  .availability .mentors-top {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .availability .mentors-grid {
    grid-template-columns: 1fr 1fr
  }

  .availability .contact-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 56px 28px
  }

  .availability .img-bg-section .bg-content {
    padding: 56px 28px
  }
}

@media (max-width: 640px) {
  .availability .title-block {
    padding: 56px 14px 28px
  }

  .availability .title-text h1 {
    font-size: 37px
  }

  .availability .schedule-grid-section {
    padding: 28px 14px
  }

  .availability .schedule-heading {
    font-size: 37px
  }

  .availability .days-table thead tr th,
  .availability .days-table tbody tr td {
    font-size: 16px;
    padding: 14px 6px 14px 0
  }

  .availability .mentors-section {
    padding: 28px 14px
  }

  .availability .mentors-heading-col h2 {
    font-size: 37px
  }

  .availability .mentors-grid {
    grid-template-columns: 1fr
  }

  .availability .mentor-photo {
    display: none
  }

  .availability .contact-strip {
    padding: 28px 14px
  }

  .availability .contact-strip .strip-text h3 {
    font-size: 37px
  }

  .availability .contact-strip .strip-actions {
    flex-direction: column;
    width: 100%
  }

  .availability .btn-primary,
  .availability .btn-secondary {
    text-align: center
  }

  .availability .img-bg-section .bg-content {
    padding: 28px 14px
  }

  .availability .img-bg-section .bg-content h3 {
    font-size: 37px
  }
}

.success-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 28px;
  background: radial-gradient(ellipse 80% 60% at 20% 40%, #9aa71f14 0%, #bfd8bc0f 50%, transparent 100%);
  max-width: 1440px;
  margin: 0 auto
}

.success-page .success-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 560px;
  width: 100%
}

.success-page .icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 48px;
  background: #F1ECE4;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: 0 7px 18px -2px #9aa71f17 0 3px 4px -2px #9aa71f12
}

.success-page .icon-wrap svg {
  width: 36px;
  height: 36px
}

.success-page .success-heading {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #2a2a18;
  text-align: center;
  margin: 0
}

.success-page .success-heading span {
  color: #9AA71F
}

.success-page .success-text {
  font-size: 18px;
  line-height: 1.75;
  color: #3d3d28;
  text-align: center;
  margin: 0
}

.success-page .success-note {
  font-size: 16px;
  line-height: 1.75;
  color: #5a5a3a;
  text-align: center;
  margin: 0;
  padding: 14px 28px;
  background: #bfd8bc38;
  border-radius: 8px;
  box-shadow: inset 0 2px 6px -1px #9aa71f12
}

.success-page .success-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 14px
}

.success-page .btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: #9AA71F;
  color: #fff;
  font-size: 16px;
  line-height: 1.1;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: .02em;
  box-shadow: 0 3px 4px -2px #9aa71f12 0 7px 18px -2px #9aa71f17;
  transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.success-page .btn-primary:hover {
  box-shadow: 0 7px 18px -2px #9aa71f2e 0 12px 44px -2px #9aa71f24;
  transform: translateY(-3px)
}

.success-page .btn-primary:focus {
  outline: 2px solid #9AA71F;
  outline-offset: 3px
}

.success-page .btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: #2a2a18;
  font-size: 16px;
  line-height: 1.1;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid #BFD8BC;
  cursor: pointer;
  letter-spacing: .02em;
  transition: border-color .55s cubic-bezier(0.22, 1, 0.36, 1), background .55s cubic-bezier(0.22, 1, 0.36, 1), transform .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.success-page .btn-secondary:hover {
  border-color: #9AA71F;
  background: #9aa71f0f;
  transform: translateY(-2px)
}

.success-page .btn-secondary:focus {
  outline: 2px solid #9AA71F;
  outline-offset: 3px
}

@media (max-width: 640px) {
  .success-page {
    padding: 56px 14px
  }

  .success-page .success-heading {
    font-size: 37px
  }

  .success-page .success-actions {
    flex-direction: column;
    width: 100%
  }

  .success-page .btn-primary,
  .success-page .btn-secondary {
    text-align: center;
    width: 100%
  }
}