html {
  box-sizing: border-box;
  scroll-behavior: auto
}

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

body {
  margin: 0;
  font-family: 'Alegreya', Georgia, serif
}

:focus {
  filter: invert(1);
  outline: none
}

.site-header {
  background: linear-gradient(135deg, #089F7F 0%, #067a62 60%, #056b55 100%);
  border-bottom: 3px solid #FB7628;
  position: relative
}

.site-header-top {
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px 52px 12px;
  display: flex;
  align-items: center;
  gap: 24px
}

.logo-mount {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0
}

.logo-frame {
  width: 80px;
  height: 80px;
  border: 3px solid #FB7628;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 28px -1px #089f7f1a 0 1px 5px -1px #089f7f14;
  padding: 6px
}

.logo-frame img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block
}

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

.brand-name {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0
}

.brand-tagline {
  font-size: 13px;
  line-height: 1.5;
  color: #ffffffd9;
  font-style: italic
}

.site-header-bottom {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 52px;
  border-top: 1px solid #ffffff2e
}

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

.primary-nav>li {
  position: relative
}

.primary-nav>li>a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  min-height: 44px
}

@media (min-width: 769px) {
  .primary-nav>li>a {
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), background-color .22s cubic-bezier(0.4, 0, 0.2, 1)
  }

  .primary-nav>li>a:hover {
    border-bottom-color: #FB7628;
    background-color: #ffffff17
  }
}

.primary-nav>li>a .typcn {
  font-size: 15px;
  opacity: .85
}

.nav-has-sub>a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #ffffffbf;
  border-bottom: 2px solid #ffffffbf;
  transform: rotate(45deg);
  margin-left: 4px;
  margin-bottom: 2px
}

.sub-nav-hold {
  display: none;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 2px solid #089F7F;
  border-radius: 7px;
  box-shadow: 0 8px 36px -1px #089f7f24;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  z-index: 500
}

.nav-has-sub:hover .sub-nav-hold,
.sub-nav-hold:hover {
  display: block
}

.sub-nav-hold li a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  line-height: 1.5;
  color: #067a62;
  text-decoration: none;
  font-weight: 700;
  border-radius: 7px;
  margin: 0 6px
}

@media (min-width: 769px) {
  .sub-nav-hold li a {
    transition: background-color .2s cubic-bezier(0.4, 0, 0.2, 1), color .2s cubic-bezier(0.4, 0, 0.2, 1)
  }

  .sub-nav-hold li a:hover {
    background-color: #F3F3F2;
    color: #089F7F;
    outline: 2px solid #089F7F
  }
}

.header-year-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #ffffffb3;
  line-height: 1.5;
  padding: 6px 12px;
  border: 1px solid #ffffff40;
  border-radius: 42px;
  flex-shrink: 0
}

.site-footer {
  background: #056b55;
  border-top: 3px solid #FB7628
}

.footer-bar {
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px 52px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px
}

.footer-logo-small {
  width: 44px;
  height: 44px;
  border: 2px solid #FB7628;
  border-radius: 7px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
  box-shadow: 0 1px 5px -1px #089f7f14
}

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

.footer-brand-label {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  flex-shrink: 0
}

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

.footer-nav-links li a {
  font-size: 13px;
  line-height: 1.5;
  color: #fffc;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid #fff3;
  border-radius: 42px;
  display: inline-block
}

@media (min-width: 769px) {
  .footer-nav-links li a {
    transition: border-color .24s cubic-bezier(0.0, 0, 0.2, 1), color .24s cubic-bezier(0.0, 0, 0.2, 1)
  }

  .footer-nav-links li a:hover {
    border-color: #FB7628;
    color: #fff;
    outline: 2px solid #FB7628;
    border-radius: 42px
  }
}

.footer-contact-email {
  font-size: 13px;
  color: #ffffffd9;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0
}

.footer-contact-email a {
  color: #FB7628;
  text-decoration: none;
  font-weight: 700
}

@media (min-width: 769px) {
  .footer-contact-email a {
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
  }

  .footer-contact-email a:hover {
    color: #fff;
    outline: 1px solid #FB7628;
    border-radius: 2px
  }
}

.footer-copy {
  font-size: 13px;
  color: #ffffff80;
  line-height: 1.5;
  margin-left: auto;
  flex-shrink: 0
}

.cookie-strip {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 380px;
  width: calc(100% - 48px);
  background: #fff;
  border: 2px solid #089F7F;
  border-radius: 14px;
  box-shadow: 0 8px 36px -1px #089f7f24;
  z-index: 2000;
  padding: 24px
}

.cookie-strip-description {
  font-size: 13px;
  line-height: 1.7;
  color: #1a3a30;
  margin: 0 0 6px
}

.cookie-strip-headline {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #056b55;
  margin: 0 0 12px
}

.cookie-settings-panel {
  margin-bottom: 12px;
  padding: 12px;
  background: #F3F3F2;
  border-radius: 7px
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px
}

.cookie-toggle-row:last-child {
  margin-bottom: 0
}

.cookie-toggle-label {
  font-size: 13px;
  line-height: 1.5;
  color: #1a3a30;
  font-weight: 700
}

.cookie-toggle-sublabel {
  font-size: 13px;
  color: #3a5a50;
  line-height: 1.5
}

.cookie-toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0
}

.cookie-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute
}

.cookie-toggle-track {
  position: absolute;
  inset: 0;
  background: #c8d8d4;
  border-radius: 42px;
  cursor: pointer
}

.cookie-toggle-track::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 42px;
  top: 3px;
  left: 3px;
  box-shadow: 0 1px 5px -1px #089f7f14
}

.cookie-toggle-switch input:checked+.cookie-toggle-track {
  background: #089F7F
}

.cookie-toggle-switch input:checked+.cookie-toggle-track::before {
  left: 23px
}

.cookie-always-on {
  font-size: 13px;
  color: #089F7F;
  font-weight: 700;
  line-height: 1.5
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 12px
}

.cookie-btn {
  flex: 1;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 7px;
  cursor: pointer;
  border: 2px solid #089F7F;
  font-family: 'Alegreya', Georgia, serif;
  min-height: 44px
}

.cookie-btn-accept {
  background: #089F7F;
  color: #fff
}

.cookie-btn-decline {
  background: #fff;
  color: #089F7F
}

@media (min-width: 769px) {
  .cookie-btn-accept {
    transition: background-color .22s cubic-bezier(0.4, 0, 0.2, 1), width .22s cubic-bezier(0.4, 0, 0.2, 1)
  }

  .cookie-btn-accept:hover {
    background: #067a62;
    outline: 2px solid #067a62
  }

  .cookie-btn-decline {
    transition: background-color .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1)
  }

  .cookie-btn-decline:hover {
    background: #F3F3F2;
    outline: 2px solid #089F7F
  }
}

.cookie-settings-link {
  font-size: 13px;
  color: #089F7F;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Alegreya', Georgia, serif;
  line-height: 1.5
}

.cookie-settings-link:hover {
  color: #056b55
}

.cookie-pref-trigger {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: #089F7F;
  border: 2px solid #FB7628;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1999;
  box-shadow: 0 5px 28px -1px #089f7f1a
}

.cookie-pref-trigger .typcn {
  font-size: 20px;
  color: #fff
}

@media (min-width: 769px) {
  .cookie-pref-trigger {
    transition: background-color .2s cubic-bezier(0.4, 0, 0.2, 1)
  }

  .cookie-pref-trigger:hover {
    background: #056b55;
    outline: 2px solid #FB7628
  }
}

.policy-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 52px 24px;
  color: #2a2a2e;
  line-height: 1.7
}

.policy-container h1 {
  font-size: 50px;
  line-height: 1.2;
  color: #089F7F;
  margin-bottom: 24px;
  margin-top: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #089F7F
}

.policy-container h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #1b4d3e;
  margin-top: 52px;
  margin-bottom: 24px
}

.policy-container h3 {
  font-size: 28px;
  line-height: 1.5;
  color: #1b4d3e;
  margin-top: 24px;
  margin-bottom: 12px
}

.policy-container h4 {
  font-size: 15px;
  line-height: 1.5;
  color: #2a2a2e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 24px;
  margin-bottom: 12px
}

.policy-container h5 {
  font-size: 15px;
  line-height: 1.5;
  color: #089F7F;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 6px
}

.policy-container h6 {
  font-size: 13px;
  line-height: 1.5;
  color: #555560;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 12px;
  margin-bottom: 6px
}

.policy-container p {
  font-size: 15px;
  line-height: 1.7;
  color: #2a2a2e;
  margin-top: 0;
  margin-bottom: 24px
}

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

.policy-container a {
  color: #089F7F;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .22s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.policy-container a:hover {
  color: #FB7628;
  text-decoration-color: #FB7628
}

.policy-container hr {
  border: none;
  border-top: 2px solid #F3F3F2;
  margin: 52px 0
}

.policy-container div {
  font-size: 15px;
  line-height: 1.7
}

.policy-container table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 1px 5px -1px #089f7f14
}

.policy-container thead {
  background-color: #089F7F
}

.policy-container thead th {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 12px 24px;
  text-align: left
}

.policy-container tbody tr {
  border-bottom: 1px solid #F3F3F2;
  transition: background-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

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

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

.policy-container tbody tr:hover {
  background-color: #089f7f0f
}

.policy-container td {
  padding: 12px 24px;
  color: #2a2a2e;
  vertical-align: top
}

.policy-container th {
  padding: 12px 24px;
  text-align: left
}

@media (max-width: 700px) {
  .policy-container {
    padding: 24px 12px
  }

  .policy-container h1 {
    font-size: 38px
  }

  .policy-container h2 {
    font-size: 28px;
    margin-top: 24px
  }

  .policy-container h3 {
    font-size: 15px
  }

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

  .policy-container thead {
    display: none
  }

  .policy-container tbody,
  .policy-container tr,
  .policy-container td {
    display: block;
    width: 100%
  }

  .policy-container tr {
    margin-bottom: 12px;
    border-radius: 7px;
    box-shadow: 0 1px 5px -1px #089f7f14;
    overflow: hidden;
    border-bottom: none
  }

  .policy-container td {
    padding: 6px 12px;
    border-bottom: 1px solid #F3F3F2
  }

  .policy-container td:last-child {
    border-bottom: none
  }

  .policy-container td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #089F7F;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px
  }
}

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

.services-detail * {
  box-sizing: border-box
}

@media (prefers-reduced-motion: no-preference) {
  .services-detail .reveal {
    opacity: 0;
    transform: scale(0.9);
    animation: revealIn .26s cubic-bezier(0.0, 0, 0.2, 1) forwards
  }

  .services-detail .reveal-delay-1 {
    animation-delay: .08s
  }

  .services-detail .reveal-delay-2 {
    animation-delay: .14s
  }

  .services-detail .reveal-delay-3 {
    animation-delay: .2s
  }
}

@keyframes revealIn {
  to {
    opacity: 1;
    transform: scale(1)
  }
}

.services-detail .bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 52px 24px 24px
}

.services-detail .bento-image-cell {
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 420px
}

.services-detail .bento-image-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92)
}

.services-detail .bento-image-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 60%, transparent 40%, #089f7f47 100%);
  border-radius: 14px;
  pointer-events: none
}

.services-detail .bento-image-cell .deco-stripe {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(17deg, #089F7F, #FB7628);
  border-radius: 14px 0 0 14px;
  pointer-events: none
}

.services-detail .bento-meta-cell {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #F3F3F2;
  border-radius: 14px;
  box-shadow: inset 0 1px 5px -1px #089f7f14
}

.services-detail .bento-text-cell {
  grid-column: 2;
  grid-row: 2;
  padding: 24px;
  background: #fff;
  border-radius: 14px;
  border: 1.5px dashed #089F7F;
  box-shadow: 0 5px 28px -1px #089f7f1a
}

.services-detail .tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(17deg, #089F7F, #FB7628);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 42px;
  letter-spacing: .04em;
  text-transform: uppercase;
  width: fit-content
}

.services-detail .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center
}

.services-detail .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #333
}

.services-detail .meta-item .typcn {
  color: #089F7F;
  font-size: 15px
}

.services-detail .bento-meta-cell h1 {
  font-size: 38px;
  line-height: 1.2;
  color: #111;
  margin: 0;
  font-weight: 800
}

.services-detail .user-format-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #fff;
  border: 1.5px solid #FB7628;
  color: #FB7628;
  font-size: 13px;
  font-weight: 600;
  border-radius: 7px;
  width: fit-content
}

.services-detail .price-block {
  display: flex;
  align-items: baseline;
  gap: 12px
}

.services-detail .price-value {
  font-size: 38px;
  font-weight: 800;
  color: #089F7F;
  line-height: 1.2
}

.services-detail .price-label {
  font-size: 13px;
  color: #555
}

.services-detail .enroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: linear-gradient(17deg, #089F7F, #FB7628);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 5px 28px -1px #089f7f24
}

@media (min-width: 769px) {
  .services-detail .enroll-btn {
    transition: width .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
  }

  .services-detail .enroll-btn:hover {
    box-shadow: 0 8px 36px -1px #089f7f24;
    padding-left: 30px;
    padding-right: 30px
  }

  .services-detail .enroll-btn:focus {
    outline: 2px solid #FB7628;
    outline-offset: 2px
  }
}

.services-detail .bento-text-cell .dialogue-text {
  font-size: 15px;
  line-height: 1.7;
  color: #222;
  margin: 0
}

.services-detail .likes-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px
}

.services-detail .likes-row .typcn {
  color: #FB7628;
  font-size: 15px
}

.services-detail .likes-row span {
  font-size: 13px;
  color: #555
}

.services-detail .description-area {
  max-width: 1500px;
  margin: 0 auto;
  padding: 52px 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 52px;
  align-items: start
}

.services-detail .pull-quote-col {
  position: sticky;
  top: 24px
}

.services-detail .pull-quote {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
  color: #089F7F;
  border-top: 3px solid #FB7628;
  padding-top: 12px;
  margin: 0 0 24px
}

.services-detail .pull-quote-col .divider-shape {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px
}

.services-detail .pull-quote-col .divider-shape .line {
  width: 40px;
  height: 2px;
  background: #089F7F;
  border-radius: 2px
}

.services-detail .pull-quote-col .divider-shape .dot-shape {
  width: 8px;
  height: 8px;
  background: #FB7628;
  border-radius: 42px
}

.services-detail .description-body {
  font-size: 15px;
  line-height: 1.7;
  color: #222
}

.services-detail .description-body p {
  margin: 0 0 12px
}

.services-detail .description-body h2 {
  font-size: 28px;
  line-height: 1.2;
  color: #111;
  margin: 24px 0 12px;
  font-weight: 700
}

.services-detail .description-body abbr {
  text-decoration: underline dashed #089F7F;
  cursor: help;
  color: #089F7F
}

.services-detail .description-body ul,
.services-detail .description-body ol {
  padding: 0;
  margin: 0 0 12px;
  list-style: none
}

.services-detail .description-body ul li,
.services-detail .description-body ol li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid #F3F3F2;
  font-size: 15px;
  color: #222
}

.services-detail .description-body ol {
  counter-reset: list-counter
}

.services-detail .description-body ol li {
  counter-increment: list-counter
}

.services-detail .description-body ol li::after {
  content: counter(list-counter);
  font-size: 13px;
  color: #FB7628;
  font-weight: 700;
  min-width: 20px;
  text-align: right
}

.services-detail .description-body ul li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #089F7F;
  border-radius: 42px;
  flex-shrink: 0;
  margin-top: 6px;
  order: -1
}

.services-detail .program-area {
  background: #111;
  padding: 52px 24px
}

.services-detail .program-inner {
  max-width: 1500px;
  margin: 0 auto
}

.services-detail .program-header {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 52px
}

.services-detail .program-header h2 {
  font-size: 50px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  font-weight: 800;
  position: relative
}

.services-detail .program-header h2 .faded-num {
  position: absolute;
  top: -12px;
  left: -12px;
  font-size: 96px;
  color: #089f7f1f;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none
}

.services-detail .program-header h2 span.real {
  position: relative;
  z-index: 1
}

.services-detail .program-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto
}

.services-detail .program-divider .pline {
  width: 32px;
  height: 2px;
  background: #FB7628;
  border-radius: 2px
}

.services-detail .program-divider .pshape {
  width: 8px;
  height: 8px;
  background: #089F7F;
  transform: rotate(45deg);
  border-radius: 2px
}

.services-detail .program-body {
  color: #eee;
  font-size: 15px;
  line-height: 1.7
}

.services-detail .program-body p {
  margin: 0 0 12px;
  color: #ccc
}

.services-detail .program-body h2 {
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
  margin: 24px 0 12px;
  font-weight: 700
}

.services-detail .program-body h3 {
  font-size: 15px;
  line-height: 1.5;
  color: #089F7F;
  margin: 12px 0 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em
}

.services-detail .program-body mark {
  background: linear-gradient(17deg, #089f7f40, #fb762833);
  color: #fff;
  padding: 2px 6px;
  border-radius: 2px
}

.services-detail .program-body ul,
.services-detail .program-body ol {
  padding: 0;
  margin: 0 0 12px;
  list-style: none
}

.services-detail .program-body ul li,
.services-detail .program-body ol li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid #ffffff12;
  font-size: 15px;
  color: #ccc
}

.services-detail .program-body ol {
  counter-reset: prog-counter
}

.services-detail .program-body ol li {
  counter-increment: prog-counter
}

.services-detail .program-body ol li::after {
  content: counter(prog-counter);
  font-size: 13px;
  color: #FB7628;
  font-weight: 700;
  min-width: 20px;
  text-align: right
}

.services-detail .program-body ul li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #089F7F;
  border-radius: 42px;
  flex-shrink: 0;
  margin-top: 6px;
  order: -1
}

.services-detail .program-body blockquote {
  border-top: 2px solid #089F7F;
  border-bottom: 2px solid #FB7628;
  margin: 24px 0;
  padding: 12px 24px;
  background: #089f7f12;
  border-radius: 7px
}

.services-detail .program-body blockquote p {
  font-size: 15px;
  font-style: italic;
  color: #ddd;
  margin: 0 0 6px
}

.services-detail .program-body blockquote cite {
  font-size: 13px;
  color: #FB7628;
  font-style: normal
}

.services-detail .program-body figure {
  margin: 24px 0
}

.services-detail .program-body figcaption {
  font-size: 13px;
  color: #888;
  margin-top: 6px
}

.services-detail .program-body details {
  background: #ffffff0a;
  border-radius: 7px;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #089f7f33
}

.services-detail .program-body summary {
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px
}

.services-detail .program-body summary::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #089F7F;
  border-radius: 2px;
  flex-shrink: 0
}

.services-detail .program-body details[open] summary::before {
  background: #FB7628
}

.services-detail .role-columns-area {
  max-width: 1500px;
  margin: 0 auto;
  padding: 52px 24px
}

.services-detail .role-columns-header {
  text-align: center;
  margin-bottom: 52px
}

.services-detail .role-columns-header h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #111;
  font-weight: 800;
  margin: 0 0 12px
}

.services-detail .role-columns-header p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto
}

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

.services-detail .role-card {
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: inset 0 1px 5px -1px #089f7f14 0 5px 28px -1px #089f7f1a;
  background: #F3F3F2;
  position: relative;
  overflow: hidden
}

.services-detail .role-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(17deg, #089f7f14, #fb762814);
  border-radius: 0 14px 0 42px;
  pointer-events: none
}

.services-detail .role-card .role-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(17deg, #089F7F, #FB7628);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center
}

.services-detail .role-card .role-icon .typcn {
  color: #fff;
  font-size: 28px
}

.services-detail .role-card h3 {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #111;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .05em
}

.services-detail .role-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #444;
  margin: 0
}

.services-detail .role-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.services-detail .role-card ul li {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid #089f7f1a
}

.services-detail .role-card ul li::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #FB7628;
  border-radius: 42px;
  flex-shrink: 0
}

@media (min-width: 769px) {
  .services-detail .role-card {
    transition: box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1), outline .2s cubic-bezier(0.4, 0, 0.2, 1)
  }

  .services-detail .role-card:hover {
    box-shadow: 0 8px 36px -1px #089f7f24;
    outline: 2px solid #089F7F;
    outline-offset: 2px
  }
}

@media (max-width: 1024px) {
  .services-detail .bento-grid {
    grid-template-columns: 1fr;
    padding: 24px
  }

  .services-detail .bento-image-cell {
    grid-column: 1;
    grid-row: 1;
    min-height: 260px
  }

  .services-detail .bento-meta-cell {
    grid-column: 1;
    grid-row: 2
  }

  .services-detail .bento-text-cell {
    grid-column: 1;
    grid-row: 3
  }

  .services-detail .description-area {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .services-detail .pull-quote-col {
    position: static
  }

  .services-detail .role-columns-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {
  .services-detail .bento-meta-cell h1 {
    font-size: 28px
  }

  .services-detail .program-header h2 {
    font-size: 38px
  }

  .services-detail .role-columns-header h2 {
    font-size: 28px
  }

  .services-detail .price-value {
    font-size: 28px
  }

  .services-detail .pull-quote {
    font-size: 15px
  }
}

@media print {

  .services-detail .bento-image-cell::after,
  .services-detail .bento-image-cell .deco-stripe,
  .services-detail .pull-quote-col .divider-shape,
  .services-detail .program-header .faded-num,
  .services-detail .program-divider,
  .services-detail .role-card::before,
  .services-detail .role-card .role-icon {
    display: none !important
  }

  .services-detail .bento-grid {
    display: block;
    padding: 12px
  }

  .services-detail .bento-image-cell {
    height: 200px;
    margin-bottom: 12px
  }

  .services-detail .bento-meta-cell,
  .services-detail .bento-text-cell {
    background: #fff !important;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
    margin-bottom: 12px
  }

  .services-detail .description-area {
    display: block;
    padding: 12px
  }

  .services-detail .program-area {
    background: #fff !important;
    padding: 12px
  }

  .services-detail .program-body p,
  .services-detail .program-body h2,
  .services-detail .program-body h3,
  .services-detail .program-body li {
    color: #000 !important
  }

  .services-detail .program-header h2 {
    color: #000 !important
  }

  .services-detail .role-columns-area {
    padding: 12px
  }

  .services-detail .role-columns-grid {
    display: block
  }

  .services-detail .role-card {
    box-shadow: none !important;
    border: 1px solid #ccc;
    margin-bottom: 12px;
    break-inside: avoid
  }

  .services-detail .enroll-btn {
    display: none !important
  }
}

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

.services-page *,
.services-page ::before,
.services-page ::after {
  box-sizing: border-box
}

.services-page ::selection {
  background: #089F7F;
  color: #fff
}

.services-page .page-lead {
  max-width: 1500px;
  margin: 0 auto;
  padding: 96px 52px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: end;
  position: relative
}

.services-page .page-lead::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 52px;
  width: 60px;
  height: 1px;
  background: #089F7F
}

.services-page .page-lead::after {
  content: '';
  position: absolute;
  top: 52px;
  left: 52px;
  width: 1px;
  height: 60px;
  background: #089F7F
}

.services-page .lead-text {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.services-page .lead-label {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #089F7F
}

.services-page .lead-heading {
  font-size: 50px;
  line-height: 1.2;
  color: #1b2a26;
  margin: 0
}

.services-page .lead-heading em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: #FB7628;
  text-underline-offset: 6px
}

.services-page .lead-body {
  font-size: 15px;
  line-height: 1.7;
  color: #374340;
  margin: 0;
  max-width: 440px
}

.services-page .lead-image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 36px -1px #089f7f24
}

.services-page .lead-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.services-page .lead-image-wrap .image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(17deg, #089f7f73 0%, transparent 60%);
  pointer-events: none
}

.services-page .divider-accent {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  align-items: center;
  gap: 12px
}

.services-page .divider-accent .line {
  flex: 1;
  height: 1px;
  background: #d4dbd9
}

.services-page .divider-accent .dot {
  width: 32px;
  height: 3px;
  background: #089F7F;
  border-radius: 2px
}

.services-page .cards-area {
  max-width: 1500px;
  margin: 0 auto;
  padding: 52px 52px 96px
}

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

.services-page .seminar-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 5px -1px #089f7f14 0 5px 28px -1px #089f7f1a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), transform .22s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer
}

@media (min-width: 769px) {
  .services-page .seminar-card:hover {
    box-shadow: 0 8px 36px -1px #089f7f24;
    transform: scale(1.025)
  }
}

.services-page .card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden
}

.services-page .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .26s cubic-bezier(0.4, 0, 0.2, 1)
}

@media (min-width: 769px) {
  .services-page .seminar-card:hover .card-thumb img {
    transform: scale(1.04)
  }
}

.services-page .card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #089F7F;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  padding: 6px 12px;
  border-radius: 42px
}

.services-page .card-strips {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  pointer-events: none;
  opacity: 0;
  transition: opacity .24s cubic-bezier(0.4, 0, 0.2, 1)
}

@media (min-width: 769px) {
  .services-page .seminar-card:hover .card-strips {
    opacity: 1
  }
}

.services-page .card-strips span {
  flex: 1;
  background: #089f7f2e;
  border-right: 1px solid #089f7f38;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .2s cubic-bezier(0.0, 0, 0.2, 1)
}

.services-page .card-strips span:last-child {
  border-right: none
}

@media (min-width: 769px) {
  .services-page .seminar-card:hover .card-strips span:nth-child(1) {
    transform: scaleY(1);
    transition-delay: 0s
  }

  .services-page .seminar-card:hover .card-strips span:nth-child(2) {
    transform: scaleY(1);
    transition-delay: .04s
  }

  .services-page .seminar-card:hover .card-strips span:nth-child(3) {
    transform: scaleY(1);
    transition-delay: .08s
  }

  .services-page .seminar-card:hover .card-strips span:nth-child(4) {
    transform: scaleY(1);
    transition-delay: .12s
  }
}

.services-page .card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  box-shadow: inset 0 2px 8px -2px #089f7f12
}

.services-page .card-meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.services-page .card-user-badge {
  font-size: 13px;
  line-height: 1.2;
  color: #FB7628;
  background: #fb76281a;
  padding: 6px 12px;
  border-radius: 7px
}

.services-page .card-readtime {
  font-size: 13px;
  line-height: 1.2;
  color: #5a6e6a;
  display: flex;
  align-items: center;
  gap: 6px
}

.services-page .card-readtime .typcn {
  font-size: 15px;
  color: #089F7F
}

.services-page .card-heading {
  font-size: 15px;
  line-height: 1.5;
  color: #1b2a26;
  margin: 0;
  font-weight: 700
}

.services-page .card-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #4a5e5a;
  margin: 0
}

.services-page .card-footer-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #e8efed;
  flex-wrap: wrap;
  gap: 12px
}

.services-page .card-price {
  font-size: 28px;
  line-height: 1.2;
  color: #089F7F;
  font-weight: 700
}

.services-page .card-duration {
  font-size: 13px;
  line-height: 1.2;
  color: #5a6e6a
}

.services-page .card-likes {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #5a6e6a
}

.services-page .card-likes .typcn {
  color: #FB7628;
  font-size: 15px
}

.services-page .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  line-height: 1.2;
  color: #fff;
  background: #089F7F;
  padding: 6px 24px;
  border-radius: 7px;
  text-decoration: none;
  transition: padding .22s cubic-bezier(0.4, 0, 0.2, 1), background .22s cubic-bezier(0.4, 0, 0.2, 1)
}

@media (min-width: 769px) {
  .services-page .card-link:hover {
    background: #FB7628;
    padding: 6px 30px
  }
}

.services-page .card-link:focus-visible {
  outline: 2px solid #FB7628;
  outline-offset: 2px
}

.services-page .publish-date {
  font-size: 13px;
  color: #7a908c;
  line-height: 1.2
}

.services-page .metrics-band {
  background: linear-gradient(17deg, #089f7f14 0%, #fb76280f 100%);
  padding: 52px 0
}

.services-page .metrics-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.services-page .metric-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 5px -1px #089f7f14;
  position: relative;
  overflow: hidden
}

.services-page .metric-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(17deg, #089F7F, #FB7628);
  border-radius: 2px 2px 0 0
}

.services-page .metric-number {
  font-size: 38px;
  line-height: 1.2;
  color: #089F7F;
  font-weight: 700
}

.services-page .metric-label {
  font-size: 13px;
  line-height: 1.5;
  color: #4a5e5a
}

.services-page .about-strip {
  max-width: 1500px;
  margin: 0 auto;
  padding: 96px 52px;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 52px;
  align-items: center
}

.services-page .about-text-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative
}

.services-page .pull-quote-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start
}

.services-page .pull-quote {
  font-size: 28px;
  line-height: 1.5;
  color: #089F7F;
  font-weight: 700;
  writing-mode: horizontal-tb;
  max-width: 180px;
  border-top: 2px solid #089F7F;
  padding-top: 12px
}

.services-page .about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.services-page .about-paragraphs p {
  font-size: 15px;
  line-height: 1.7;
  color: #374340;
  margin: 0
}

.services-page .about-image-col {
  position: relative
}

.services-page .about-portrait-wrap {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 5px 28px -1px #089f7f1a;
  max-width: 340px;
  margin: 0 auto
}

.services-page .about-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.services-page .about-expert-label {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  color: #5a6e6a;
  line-height: 1.5
}

.services-page .faq-area {
  background: #F3F3F2;
  padding: 96px 0;
  position: relative
}

.services-page .faq-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(17deg, #089f7f0d 0%, #fb76280a 100%);
  pointer-events: none
}

.services-page .faq-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 52px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 52px;
  position: relative
}

.services-page .faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.services-page .faq-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1b2a26;
  margin: 0
}

.services-page .faq-subtext {
  font-size: 15px;
  line-height: 1.7;
  color: #4a5e5a;
  margin: 0
}

.services-page .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.services-page .faq-item {
  background: #fff;
  border-radius: 7px;
  padding: 24px;
  box-shadow: inset 0 1px 4px #089f7f0f 0 1px 5px -1px #089f7f14
}

.services-page .faq-question {
  font-size: 15px;
  line-height: 1.5;
  color: #1b2a26;
  font-weight: 700;
  margin: 0 0 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.services-page .faq-question .q-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: #FB7628;
  border-radius: 42px;
  margin-top: 6px
}

.services-page .faq-answer {
  font-size: 13px;
  line-height: 1.7;
  color: #4a5e5a;
  margin: 0;
  padding-left: 20px
}

.services-page .math-symbol {
  position: absolute;
  right: 52px;
  bottom: -24px;
  font-size: 200px;
  line-height: 1;
  color: #089f7f0f;
  font-weight: 700;
  pointer-events: none;
  user-select: none;
  overflow: hidden
}

@media (max-width: 1100px) {
  .services-page .cards-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .services-page .metrics-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .services-page .about-strip {
    grid-template-columns: 1fr
  }

  .services-page .faq-inner {
    grid-template-columns: 1fr
  }

  .services-page .page-lead {
    grid-template-columns: 1fr
  }

  .services-page .math-symbol {
    display: none
  }
}

@media (max-width: 700px) {
  .services-page .cards-grid {
    grid-template-columns: 1fr
  }

  .services-page .metrics-inner {
    grid-template-columns: 1fr 1fr
  }

  .services-page .page-lead {
    padding: 52px 24px 24px
  }

  .services-page .cards-area {
    padding: 24px 24px 52px
  }

  .services-page .about-strip {
    padding: 52px 24px
  }

  .services-page .faq-inner {
    padding: 0 24px
  }

  .services-page .metrics-inner {
    padding: 0 24px
  }

  .services-page .divider-accent {
    padding: 0 24px
  }

  .services-page .pull-quote-wrap {
    grid-template-columns: 1fr
  }

  .services-page .pull-quote {
    max-width: 100%
  }

  .services-page .lead-heading {
    font-size: 38px
  }
}

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

.interview * {
  box-sizing: border-box
}

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

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

.interview .title-area {
  position: relative;
  padding: 96px 24px 52px;
  background: #F3F3F2;
  overflow: hidden
}

.interview .title-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(17deg, #089f7f0a 0px, #089f7f0a 1px, transparent 1px, transparent 48px);
  pointer-events: none
}

.interview .curve-decor {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 420px;
  height: 420px;
  pointer-events: none;
  overflow: hidden
}

.interview .curve-decor svg {
  width: 100%;
  height: 100%
}

.interview .title-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: center
}

.interview .title-text {
  animation: lift-reveal .26s cubic-bezier(0.0, 0, 0.2, 1) both
}

.interview .label-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #089F7F;
  border: 1.5px solid #089F7F;
  border-radius: 42px;
  padding: 6px 24px;
  margin-bottom: 24px
}

.interview .title-text h1 {
  font-size: 50px;
  line-height: 1.2;
  color: #1b2a26;
  margin: 0 0 24px;
  font-weight: 800
}

.interview .title-text h1 span {
  color: #089F7F
}

.interview .title-lead {
  font-size: 15px;
  line-height: 1.7;
  color: #374740;
  max-width: 540px;
  margin: 0
}

.interview .title-image-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 36px -1px #089f7f24;
  animation: lift-reveal .28s cubic-bezier(0.0, 0, 0.2, 1) .08s both
}

.interview .title-image-frame img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: blur(0px);
  transition: filter .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.interview .title-image-frame::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, #089f7f2e);
  pointer-events: none
}

.interview .geo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 0;
  background: #fff;
  overflow: hidden
}

.interview .geo-divider span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #089F7F;
  border-radius: 2px;
  transform: rotate(45deg);
  opacity: .35
}

.interview .geo-divider span.accent {
  background: #FB7628;
  opacity: .7;
  width: 10px;
  height: 10px
}

.interview .specialists-area {
  padding: 52px 24px;
  background: #fff
}

.interview .specialists-inner {
  max-width: 1500px;
  margin: 0 auto
}

.interview .area-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #FB7628;
  margin-bottom: 12px;
  display: block
}

.interview .specialists-inner h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #1b2a26;
  font-weight: 800;
  margin: 0 0 52px
}

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

.interview .expert-card {
  background: #F3F3F2;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 1px 5px -1px #089f7f14;
  box-shadow: inset 0 2px 8px #089f7f0d 0 1px 5px -1px #089f7f14;
  transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), outline .2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: 2px solid transparent;
  position: relative
}

.interview .cards-grid:hover .expert-card {
  filter: blur(1.5px);
  opacity: .75
}

.interview .cards-grid .expert-card:hover {
  filter: blur(0px) !important;
  opacity: 1 !important;
  outline: 2px solid #089F7F;
  box-shadow: 0 5px 28px -1px #089f7f1a
}

.interview .card-number {
  font-size: 50px;
  font-weight: 900;
  color: #089f7f14;
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 24px;
  pointer-events: none;
  user-select: none
}

.interview .expert-name {
  font-size: 15px;
  font-weight: 700;
  color: #1b2a26;
  margin: 0 0 6px
}

.interview .expert-role {
  font-size: 13px;
  color: #089F7F;
  font-weight: 600;
  margin: 0 0 12px;
  display: block
}

.interview .expert-topic {
  font-size: 13px;
  line-height: 1.7;
  color: #374740;
  margin: 0 0 12px
}

.interview .expert-quote {
  font-size: 13px;
  line-height: 1.7;
  color: #374740;
  border-top: 1.5px dashed #089f7f4d;
  padding-top: 12px;
  margin: 0;
  font-style: italic
}

.interview .dot-accent {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #FB7628;
  border-radius: 42px;
  margin-left: 4px;
  vertical-align: middle;
  position: relative;
  top: -2px
}

.interview .stripe-divider {
  height: 6px;
  background: repeating-linear-gradient(90deg, #089F7F 0px, #089F7F 18px, #FB7628 18px, #FB7628 24px, #F3F3F2 24px, #F3F3F2 36px);
  opacity: .45
}

.interview .process-area {
  padding: 52px 24px 96px;
  background: linear-gradient(17deg, #089F7F 0%, #FB7628 100%);
  position: relative
}

.interview .process-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(17deg, #ffffff0a 0px, #ffffff0a 1px, transparent 1px, transparent 36px);
  pointer-events: none
}

.interview .process-inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative
}

.interview .process-inner h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #fff;
  font-weight: 800;
  margin: 0 0 12px
}

.interview .process-lead {
  font-size: 15px;
  line-height: 1.7;
  color: #ffffffd9;
  margin: 0 0 52px;
  max-width: 560px
}

.interview .steps-row {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: stretch
}

.interview .step-block {
  flex: 1;
  background: #ffffff1f;
  border-radius: 14px;
  padding: 24px;
  position: relative
}

.interview .step-arrow {
  display: flex;
  align-items: center;
  padding-top: 52px
}

.interview .step-arrow svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0
}

.interview .step-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff9;
  margin-bottom: 6px;
  display: block
}

.interview .step-block h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.5
}

.interview .step-block p {
  font-size: 13px;
  line-height: 1.7;
  color: #fffc;
  margin: 0
}

.interview .stat-shape {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 52px;
  flex-wrap: wrap
}

.interview .outlined-stat {
  border: 2.5px solid #ffffffb3;
  border-radius: 7px;
  padding: 12px 24px;
  text-align: center;
  min-width: 120px
}

.interview .outlined-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2
}

.interview .outlined-stat span {
  font-size: 13px;
  color: #ffffffbf;
  line-height: 1.5
}

.interview .topics-area {
  padding: 96px 24px 52px;
  background: #F3F3F2
}

.interview .topics-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start
}

.interview .topics-left h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #1b2a26;
  font-weight: 800;
  margin: 0 0 24px
}

.interview .pull-quote {
  font-size: 28px;
  line-height: 1.2;
  color: #089F7F;
  font-weight: 700;
  margin: 0 0 24px;
  padding-right: 24px
}

.interview .topics-body {
  font-size: 15px;
  line-height: 1.7;
  color: #374740;
  margin: 0 0 12px
}

.interview .cta-link {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 52px;
  background: #089F7F;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 7px;
  text-decoration: none;
  border: 2px solid #089F7F;
  transition: padding .22s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.interview .cta-link:hover {
  padding-left: 64px;
  padding-right: 64px;
  background: #067a61;
  border-color: #067a61
}

.interview .cta-link:focus {
  outline: 3px solid #FB7628;
  outline-offset: 3px
}

.interview .topics-right {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.interview .topic-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 1px 5px -1px #089f7f14
}

.interview .topic-num {
  font-size: 28px;
  font-weight: 900;
  color: #089f7f26;
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
  text-align: right
}

.interview .topic-detail h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1b2a26;
  margin: 0 0 6px;
  line-height: 1.5
}

.interview .topic-detail p {
  font-size: 13px;
  line-height: 1.7;
  color: #374740;
  margin: 0
}

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

  .interview .title-image-frame {
    max-width: 480px
  }

  .interview .cards-grid {
    grid-template-columns: 1fr 1fr
  }

  .interview .topics-inner {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

@media (max-width: 720px) {
  .interview .title-text h1 {
    font-size: 38px
  }

  .interview .cards-grid {
    grid-template-columns: 1fr
  }

  .interview .steps-row {
    flex-direction: column
  }

  .interview .step-arrow {
    display: none
  }

  .interview .cards-grid:hover .expert-card {
    filter: none;
    opacity: 1
  }

  .interview .specialists-inner h2,
  .interview .process-inner h2,
  .interview .topics-left h2 {
    font-size: 28px
  }

  .interview .cta-link:hover {
    padding-left: 52px;
    padding-right: 52px
  }

  .interview .title-area {
    padding: 52px 24px 24px
  }
}

.lead {
  overflow-x: clip
}

.lead * {
  box-sizing: border-box
}

.lead ::selection {
  background: #089F7F;
  color: #fff
}

.lead .max-bound {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px
}

@media (max-width: 768px) {
  .lead .max-bound {
    padding-left: 12px;
    padding-right: 12px
  }
}

.lead a {
  text-decoration: underline dashed;
  text-underline-offset: 3px;
  color: #089F7F
}

.lead a:hover {
  color: #FB7628
}

@media (prefers-reduced-motion: no-preference) {
  .lead a {
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
  }
}

.lead .title-block {
  padding-top: 52px;
  padding-bottom: 96px;
  background: #fff;
  position: relative
}

.lead .title-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center
}

.lead .title-text {
  padding-top: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1
}

.lead .title-eyebrow {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #089F7F;
  margin-bottom: 12px;
  display: block
}

.lead .title-h1 {
  font-size: 50px;
  line-height: 1.2;
  color: #1b1b1b;
  margin-bottom: 24px
}

.lead .title-h1 .gradient-word {
  background: linear-gradient(17deg, #089F7F, #FB7628);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.lead .title-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #3a3a3a;
  margin-bottom: 24px;
  max-width: 480px
}

.lead .title-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #089F7F;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  padding: 12px 24px;
  border-radius: 7px;
  text-decoration: none;
  border: 2px solid transparent
}

@media (prefers-reduced-motion: no-preference) {
  .lead .title-cta {
    transition: width .26s cubic-bezier(0.4, 0, 0.2, 1), background .22s cubic-bezier(0.4, 0, 0.2, 1), padding .26s cubic-bezier(0.4, 0, 0.2, 1)
  }
}

.lead .title-cta:hover {
  background: #FB7628;
  padding-left: 36px;
  padding-right: 36px;
  color: #fff;
  text-decoration: none
}

.lead .title-cta:focus-visible {
  outline: 2px solid #FB7628;
  outline-offset: 3px
}

.lead .title-image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 520px
}

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

@media (prefers-reduced-motion: no-preference) {
  .lead .title-image-wrap img {
    animation: slow-zoom 14s ease-in-out infinite alternate
  }
}

@keyframes slow-zoom {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.06)
  }
}

.lead .title-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, #089f7f61 0%, transparent 60%);
  pointer-events: none
}

.lead .title-geo-one {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  border-radius: 42px;
  background: linear-gradient(17deg, #089f7f1a, #fb762814);
  pointer-events: none;
  z-index: 0
}

.lead .title-geo-two {
  position: absolute;
  bottom: 24px;
  left: -12px;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: #fb76281a;
  pointer-events: none;
  z-index: 0
}

.lead .title-curve-connector {
  display: block;
  margin-top: 24px;
  width: 80px
}

@media (max-width: 900px) {
  .lead .title-block-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .lead .title-image-wrap {
    height: 320px
  }

  .lead .title-h1 {
    font-size: 38px
  }

  .lead .title-text {
    padding-right: 0
  }
}

.lead .wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.lead .belong-block {
  background: #F3F3F2;
  padding-top: 96px;
  padding-bottom: 52px
}

.lead .belong-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 52px;
  align-items: start
}

.lead .belong-aside {
  position: sticky;
  top: 24px
}

.lead .belong-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #089F7F;
  display: block;
  margin-bottom: 12px
}

.lead .belong-h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #1b1b1b;
  margin-bottom: 24px
}

.lead .belong-h2 .accent-bracket {
  color: #FB7628
}

.lead .belong-pull {
  font-size: 28px;
  line-height: 1.2;
  color: #089F7F;
  font-weight: 700;
  margin-bottom: 12px
}

.lead .belong-body {
  font-size: 15px;
  line-height: 1.7;
  color: #3a3a3a;
  margin-bottom: 12px
}

.lead .belong-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.lead .belong-list li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #089f7f26;
  font-size: 15px;
  line-height: 1.5;
  color: #2a2a2a
}

.lead .belong-list li .item-num {
  font-size: 13px;
  color: #FB7628;
  font-weight: 700;
  flex-shrink: 0;
  padding-top: 2px
}

.lead .belong-list li .item-text {
  flex: 1;
  text-align: left
}

.lead .belong-list li .item-tag {
  font-size: 13px;
  background: #089F7F;
  color: #fff;
  border-radius: 2px;
  padding: 2px 6px;
  flex-shrink: 0;
  align-self: flex-start
}

.lead .belong-list li .item-tag.not {
  background: #e0e0d0;
  color: #555
}

.lead .belong-image-wrap {
  border-radius: 14px;
  overflow: hidden;
  height: 280px;
  margin-top: 24px;
  box-shadow: 0 5px 28px -1px #089f7f1a
}

.lead .belong-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

@media (prefers-reduced-motion: no-preference) {
  .lead .belong-image-wrap img {
    transition: transform .28s cubic-bezier(0.0, 0, 0.2, 1)
  }

  .lead .belong-image-wrap:hover img {
    transform: scale(1.04)
  }
}

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

  .lead .belong-aside {
    position: static
  }
}

.lead .mirror-block {
  background: #fff;
  padding-top: 96px;
  padding-bottom: 96px
}

.lead .mirror-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: start
}

.lead .mirror-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #FB7628;
  display: block;
  margin-bottom: 12px
}

.lead .mirror-h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #1b1b1b;
  margin-bottom: 24px
}

.lead .mirror-h2 .accent-q {
  color: #089F7F
}

.lead .mirror-experiences {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.lead .exp-card {
  background: #F3F3F2;
  border-radius: 14px;
  padding: 24px;
  box-shadow: inset 0 1px 5px -1px #089f7f14;
  position: relative
}

.lead .exp-card-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px
}

.lead .exp-portrait {
  width: 52px;
  height: 65px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0
}

.lead .exp-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.lead .exp-name {
  font-size: 15px;
  line-height: 1.5;
  color: #1b1b1b;
  font-weight: 700
}

.lead .exp-role {
  font-size: 13px;
  line-height: 1.5;
  color: #089F7F
}

.lead .exp-text {
  font-size: 15px;
  line-height: 1.7;
  color: #3a3a3a
}

.lead .exp-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 42px;
  background: #FB7628;
  vertical-align: middle;
  margin-left: 4px
}

.lead .mirror-visual {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.lead .mirror-image-wrap {
  border-radius: 14px;
  overflow: hidden;
  height: 260px;
  box-shadow: 0 8px 36px -1px #089f7f24
}

.lead .mirror-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

@media (prefers-reduced-motion: no-preference) {
  .lead .mirror-image-wrap img {
    animation: slow-pan 16s ease-in-out infinite alternate
  }
}

@keyframes slow-pan {
  from {
    transform: translateX(0) scale(1.04)
  }

  to {
    transform: translateX(-3%) scale(1.04)
  }
}

.lead .mirror-stat-box {
  background: linear-gradient(17deg, #089F7F, #FB7628);
  border-radius: 14px;
  padding: 24px;
  color: #fff
}

.lead .mirror-stat-num {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 700;
  display: block
}

.lead .mirror-stat-desc {
  font-size: 15px;
  line-height: 1.5;
  opacity: .92
}

@media (max-width: 900px) {
  .lead .mirror-inner {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .lead .mirror-h2 {
    font-size: 28px
  }
}

.lead .hesitation-block {
  background: #1b2e2a;
  padding-top: 96px;
  padding-bottom: 96px
}

.lead .hesitation-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #089F7F;
  display: block;
  margin-bottom: 12px
}

.lead .hesitation-h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #f0f0ec;
  margin-bottom: 24px;
  max-width: 680px
}

.lead .hesitation-h2 .accent-bracket {
  color: #FB7628
}

.lead .hesitation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px
}

.lead .hesitation-card {
  border-radius: 14px;
  padding: 24px;
  background: #ffffff0d;
  box-shadow: inset 0 1px 5px -1px #fb76281a;
  position: relative;
  overflow: hidden
}

.lead .hesitation-card-num {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 700;
  color: #089f7f2e;
  position: absolute;
  top: 6px;
  right: 12px;
  pointer-events: none;
  user-select: none
}

.lead .hesitation-card-heading {
  font-size: 15px;
  line-height: 1.5;
  color: #f0f0ec;
  font-weight: 700;
  margin-bottom: 12px
}

.lead .hesitation-card-text {
  font-size: 13px;
  line-height: 1.7;
  color: #b8ccc8
}

.lead .hesitation-cta-row {
  margin-top: 52px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px
}

.lead .hesitation-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: #089F7F;
  font-size: 15px;
  line-height: 1.5;
  padding: 12px 24px;
  border-radius: 7px;
  text-decoration: none;
  border: 2px solid #089F7F
}

@media (prefers-reduced-motion: no-preference) {
  .lead .hesitation-btn {
    transition: background .24s cubic-bezier(0.4, 0, 0.2, 1), color .24s cubic-bezier(0.4, 0, 0.2, 1), padding .26s cubic-bezier(0.4, 0, 0.2, 1)
  }
}

.lead .hesitation-btn:hover {
  background: #089F7F;
  color: #fff;
  padding-left: 36px;
  padding-right: 36px;
  text-decoration: none
}

.lead .hesitation-btn:focus-visible {
  outline: 2px solid #FB7628;
  outline-offset: 3px
}

.lead .hesitation-note {
  font-size: 13px;
  line-height: 1.5;
  color: #8aada8
}

@media (max-width: 700px) {
  .lead .hesitation-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .lead .hesitation-h2 {
    font-size: 28px
  }

  .lead .hesitation-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }
}

.lead .distinction-block {
  background: #F3F3F2;
  padding-top: 96px;
  padding-bottom: 96px
}

.lead .distinction-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 52px
}

.lead .distinction-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #089F7F;
  display: block;
  margin-bottom: 12px
}

.lead .distinction-h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #1b1b1b
}

.lead .distinction-h2 .accent-bracket {
  color: #FB7628
}

.lead .distinction-intro {
  font-size: 15px;
  line-height: 1.7;
  color: #3a3a3a;
  padding-top: 24px
}

.lead .distinction-steps {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.lead .step-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 5px -1px #089f7f14;
  position: relative;
  overflow: hidden
}

.lead .step-row-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(17deg, #089F7F, #FB7628);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 14px;
  pointer-events: none;
  z-index: 0
}

@media (prefers-reduced-motion: no-preference) {
  .lead .step-row-fill {
    transition: transform .26s cubic-bezier(0.4, 0, 0.2, 1)
  }

  .lead .step-row:hover .step-row-fill {
    transform: scaleX(1)
  }

  .lead .step-row:hover .step-num,
  .lead .step-row:hover .step-heading,
  .lead .step-row:hover .step-text {
    color: #fff;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
  }
}

.lead .step-num {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: #089F7F;
  position: relative;
  z-index: 1
}

.lead .step-detail {
  position: relative;
  z-index: 1
}

.lead .step-heading {
  font-size: 15px;
  line-height: 1.5;
  color: #1b1b1b;
  font-weight: 700;
  margin-bottom: 6px
}

.lead .step-text {
  font-size: 13px;
  line-height: 1.7;
  color: #4a4a4a
}

.lead .distinction-image-wrap {
  border-radius: 14px;
  overflow: hidden;
  height: 320px;
  margin-top: 24px;
  box-shadow: 0 8px 36px -1px #089f7f24
}

.lead .distinction-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

@media (prefers-reduced-motion: no-preference) {
  .lead .distinction-image-wrap img {
    animation: slow-zoom 18s ease-in-out infinite alternate
  }
}

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

  .lead .distinction-h2 {
    font-size: 28px
  }
}

.lead .team-block {
  background: #fff;
  padding-top: 96px;
  padding-bottom: 96px
}

.lead .team-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #FB7628;
  display: block;
  margin-bottom: 12px
}

.lead .team-h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #1b1b1b;
  margin-bottom: 52px;
  max-width: 600px
}

.lead .team-h2 .accent-bracket {
  color: #089F7F
}

.lead .team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.lead .team-member {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  background: #F3F3F2;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 1px 5px -1px #089f7f14
}

.lead .team-portrait {
  width: 80px;
  height: 100px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0
}

.lead .team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.lead .team-name {
  font-size: 15px;
  line-height: 1.5;
  color: #1b1b1b;
  font-weight: 700;
  margin-bottom: 6px
}

.lead .team-role {
  font-size: 13px;
  line-height: 1.5;
  color: #089F7F;
  margin-bottom: 12px
}

.lead .team-bio {
  font-size: 13px;
  line-height: 1.7;
  color: #4a4a4a
}

.lead .team-member-text {
  background: #F3F3F2;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 1px 5px -1px #089f7f14;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.lead .team-member-text .team-name {
  font-size: 15px
}

.lead .team-no-portrait-icon {
  width: 80px;
  height: 80px;
  border-radius: 42px;
  background: linear-gradient(17deg, #089f7f26, #fb76281f);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.lead .team-no-portrait-icon svg {
  width: 36px;
  height: 36px
}

.lead .team-credentials {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px
}

.lead .team-cred-tag {
  font-size: 13px;
  background: #089f7f1f;
  color: #089F7F;
  border-radius: 2px;
  padding: 2px 6px;
  line-height: 1.5
}

@media (max-width: 700px) {
  .lead .team-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .lead .team-member {
    grid-template-columns: 72px 1fr;
    gap: 12px
  }

  .lead .team-h2 {
    font-size: 28px
  }
}

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

.contact-us ::selection {
  background: #089F7F;
  color: #fff
}

.contact-us .editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative
}

.contact-us .editorial-band .image-side {
  position: relative;
  overflow: hidden
}

.contact-us .editorial-band .image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.contact-us .editorial-band .image-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(17deg, #089f7fb8 0%, #fb762861 100%);
  pointer-events: none
}

.contact-us .editorial-band .image-side .shape-accent {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 120px;
  height: 120px;
  border: 2px dashed #ffffff47;
  border-radius: 14px;
  z-index: 1;
  pointer-events: none
}

.contact-us .editorial-band .image-side .shape-accent-small {
  position: absolute;
  top: 52px;
  left: 24px;
  width: 52px;
  height: 52px;
  background: #fb762838;
  border-radius: 7px;
  z-index: 1;
  pointer-events: none
}

.contact-us .editorial-band .text-side {
  background: #fff;
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px
}

.contact-us .editorial-band .text-side .label-tag {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #089F7F;
  display: flex;
  align-items: center;
  gap: 6px
}

.contact-us .editorial-band .text-side .label-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 42px;
  background: #FB7628;
  display: inline-block;
  flex-shrink: 0
}

.contact-us .editorial-band .text-side .band-heading {
  font-size: 50px;
  line-height: 1.2;
  color: #1a2e28;
  margin: 0;
  font-weight: 700
}

.contact-us .editorial-band .text-side .band-heading span {
  font-size: 38px;
  display: block;
  color: #089F7F
}

.contact-us .editorial-band .text-side .band-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #2d4a42;
  margin: 0;
  max-width: 420px
}

.contact-us .editorial-band .text-side .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.contact-us .editorial-band .text-side .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #2d4a42
}

.contact-us .editorial-band .text-side .contact-list li .icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: #F3F3F2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.contact-us .editorial-band .text-side .contact-list li .icon-wrap svg {
  width: 16px;
  height: 16px
}

.contact-us .editorial-band .text-side .contact-list li a {
  color: #2d4a42;
  text-decoration: underline dashed;
  text-underline-offset: 3px
}

.contact-us .editorial-band .text-side .contact-list li a:hover {
  color: #089F7F
}

.contact-us .dashed-divider {
  border: none;
  border-top: 1px dashed #c8d5d2;
  margin: 0 52px
}

.contact-us .form-area {
  background: #F3F3F2;
  position: relative;
  overflow: hidden
}

.contact-us .form-area .bg-shape-one {
  position: absolute;
  top: -52px;
  right: -52px;
  width: 320px;
  height: 320px;
  border-radius: 42px;
  background: #089f7f0d;
  pointer-events: none;
  transform: rotate(17deg)
}

.contact-us .form-area .bg-shape-two {
  position: absolute;
  bottom: 24px;
  left: -24px;
  width: 180px;
  height: 180px;
  border-radius: 14px;
  background: #fb76280d;
  pointer-events: none;
  transform: rotate(-11deg)
}

.contact-us .form-area .light-spot {
  position: absolute;
  top: 0;
  left: -120px;
  width: 260px;
  height: 260px;
  border-radius: 42px;
  background: radial-gradient(circle at 40% 40%, #089f7f1a 0%, transparent 70%);
  pointer-events: none;
  animation: spotdrift 9s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate
}

@keyframes spotdrift {
  0% {
    transform: translateX(0) translateY(0)
  }

  100% {
    transform: translateX(180px) translateY(52px)
  }
}

.contact-us .form-area .form-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 96px 52px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
  position: relative;
  z-index: 1
}

.contact-us .form-area .form-left {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.contact-us .form-area .form-left .faded-number {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 900;
  color: #089f7f1a;
  letter-spacing: -2px;
  margin: 0;
  user-select: none
}

.contact-us .form-area .form-left .form-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1a2e28;
  margin: 0;
  font-weight: 700
}

.contact-us .form-area .form-left .form-subtext {
  font-size: 15px;
  line-height: 1.7;
  color: #3a5248;
  margin: 0
}

.contact-us .form-area .form-left .pull-quote {
  font-size: 28px;
  line-height: 1.2;
  color: #089F7F;
  font-weight: 600;
  margin: 0;
  border-top: 2px solid #089F7F;
  padding-top: 12px
}

.contact-us .form-area .form-left .metric-row {
  display: flex;
  align-items: center;
  gap: 12px
}

.contact-us .form-area .form-left .metric-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  line-height: 1.2;
  color: #089F7F;
  font-weight: 700
}

.contact-us .form-area .form-left .metric-arrow svg {
  width: 18px;
  height: 18px
}

.contact-us .form-area .form-left .metric-label {
  font-size: 13px;
  line-height: 1.5;
  color: #5a7268
}

.contact-us .form-right {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 36px -1px #089f7f24;
  padding: 52px;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.contact-us .form-right .form-section-label {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #089F7F;
  margin: 0 0 6px
}

.contact-us .form-right .question-type-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.contact-us .form-right .question-type-group legend {
  font-size: 13px;
  line-height: 1.5;
  color: #3a5248;
  margin-bottom: 12px;
  font-weight: 600
}

.contact-us .form-right .type-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px
}

.contact-us .form-right .type-option {
  position: relative
}

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

.contact-us .form-right .type-option label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px;
  border: 1.5px solid #d4e0dc;
  border-radius: 7px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
  color: #2d4a42;
  background: #F3F3F2;
  transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), background .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-us .form-right .type-option input[type="radio"]:checked+label {
  border-color: #089F7F;
  background: #089f7f12;
  color: #089F7F;
  font-weight: 600
}

.contact-us .form-right .type-option label:hover {
  border-color: #089F7F
}

.contact-us .form-right .type-option label .radio-dot {
  width: 14px;
  height: 14px;
  border-radius: 42px;
  border: 2px solid #c8d5d2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-us .form-right .type-option input[type="radio"]:checked+label .radio-dot {
  border-color: #089F7F;
  background: #089F7F;
  box-shadow: inset 0 0 0 2px #fff
}

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

.contact-us .form-right .field-group label {
  font-size: 13px;
  line-height: 1.5;
  color: #3a5248;
  font-weight: 600
}

.contact-us .form-right .field-group input[type="email"],
.contact-us .form-right .field-group textarea,
.contact-us .form-right .field-group select {
  width: 100%;
  padding: 12px;
  border: 1.5px solid #d4e0dc;
  border-radius: 7px;
  font-size: 15px;
  line-height: 1.5;
  color: #1a2e28;
  background: #F3F3F2;
  box-shadow: inset 0 1px 5px -1px #089f7f14;
  outline: none;
  box-sizing: border-box;
  transition: border-color .24s cubic-bezier(0.0, 0, 0.2, 1)
}

.contact-us .form-right .field-group input[type="email"]:focus,
.contact-us .form-right .field-group textarea:focus,
.contact-us .form-right .field-group select:focus {
  border-color: #089F7F;
  background: #fff
}

.contact-us .form-right .field-group input[type="email"]::placeholder,
.contact-us .form-right .field-group textarea::placeholder {
  color: #8aada6;
  font-size: 13px
}

.contact-us .form-right .field-group textarea {
  resize: vertical;
  min-height: 96px
}

.contact-us .form-right .field-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23089F7F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer
}

.contact-us .form-right .privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 7px;
  background: #F3F3F2;
  border: 1.5px solid #d4e0dc
}

.contact-us .form-right .privacy-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #089F7F;
  margin-top: 2px;
  cursor: pointer
}

.contact-us .form-right .privacy-row .privacy-text {
  font-size: 13px;
  line-height: 1.7;
  color: #3a5248;
  margin: 0
}

.contact-us .form-right .privacy-row .privacy-text a {
  color: #089F7F;
  text-decoration: underline dashed;
  text-underline-offset: 2px
}

.contact-us .form-right .submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 52px;
  background: linear-gradient(17deg, #089F7F 0%, #FB7628 100%);
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  border: none;
  border-radius: 42px;
  cursor: pointer;
  letter-spacing: .04em;
  box-shadow: 0 5px 28px -1px #089f7f1a;
  transition: padding .26s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .26s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start
}

.contact-us .form-right .submit-btn:hover {
  padding: 12px 64px;
  box-shadow: 0 8px 36px -1px #089f7f24
}

.contact-us .form-right .submit-btn:focus {
  outline: 2px solid #089F7F;
  outline-offset: 3px
}

@media (max-width: 900px) {
  .contact-us .editorial-band {
    grid-template-columns: 1fr
  }

  .contact-us .editorial-band .image-side {
    height: 240px
  }

  .contact-us .editorial-band .text-side {
    padding: 24px
  }

  .contact-us .editorial-band .text-side .band-heading {
    font-size: 38px
  }

  .contact-us .editorial-band .text-side .band-heading span {
    font-size: 28px
  }

  .contact-us .dashed-divider {
    margin: 0 24px
  }

  .contact-us .form-area .form-inner {
    grid-template-columns: 1fr;
    padding: 52px 24px;
    gap: 24px
  }

  .contact-us .form-right {
    padding: 24px
  }

  .contact-us .form-right .type-options {
    grid-template-columns: 1fr
  }

  .contact-us .form-right .submit-btn {
    width: 100%;
    justify-content: center
  }
}

@media (min-width: 901px) {
  .contact-us .editorial-band {
    max-width: 1500px;
    margin: 0 auto
  }
}

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

.about-us *,
.about-us ::before,
.about-us ::after {
  box-sizing: border-box
}

.about-us ::selection {
  background: #089F7F;
  color: #fff
}

@media (prefers-reduced-motion: no-preference) {
  .about-us .rotating-shape {
    animation: slow-rotate 18s linear infinite
  }

  .about-us .shadow-pulse {
    animation: shadow-cycle 4s cubic-bezier(0.4, 0, 0.2, 1) infinite
  }
}

@keyframes slow-rotate {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes shadow-cycle {

  0%,
  100% {
    box-shadow: 0 1px 5px -1px #089f7f14
  }

  50% {
    box-shadow: 0 8px 36px -1px #089f7f24
  }
}

.about-us .page-max {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px
}

.about-us .title-block {
  padding: 52px 0;
  background: #fff;
  position: relative
}

.about-us .title-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center
}

.about-us .title-text-area {
  position: relative;
  z-index: 1
}

.about-us .title-faded-letter {
  position: absolute;
  top: -24px;
  left: -12px;
  font-size: 180px;
  font-weight: 900;
  color: #089f7f0f;
  line-height: 1.2;
  pointer-events: none;
  user-select: none;
  z-index: 0
}

.about-us .title-heading {
  font-size: 50px;
  line-height: 1.2;
  color: #1a2e28;
  margin: 0 0 12px;
  position: relative;
  z-index: 1
}

.about-us .title-heading span {
  color: #089F7F
}

.about-us .title-image-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.about-us .title-shape-clip {
  width: 420px;
  height: 360px;
  overflow: hidden;
  border-radius: 42px 14px 42px 14px;
  position: relative
}

.about-us .title-shape-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .72;
  display: block
}

.about-us .title-outlined-shape {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 180px;
  height: 180px;
  border: 2px solid #fb762838;
  border-radius: 42px;
  pointer-events: none
}

.about-us .title-outlined-circle {
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 96px;
  height: 96px;
  border: 2px solid #089f7f2e;
  border-radius: 50%;
  pointer-events: none
}

.about-us .wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 36px;
  position: relative
}

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

.about-us .about-block {
  background: #F3F3F2;
  padding: 96px 0;
  position: relative
}

.about-us .about-block-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 52px;
  align-items: start
}

.about-us .about-sidebar {
  background: #089F7F;
  border-radius: 14px;
  padding: 52px 24px;
  color: #fff;
  position: relative;
  border-right: 4px solid #FB7628;
  box-shadow: 0 5px 28px -1px #089f7f1a
}

.about-us .about-sidebar-label {
  font-size: 13px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #ffffffb3;
  margin: 0 0 12px
}

.about-us .about-sidebar-name {
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 24px
}

.about-us .about-sidebar-portrait {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0 12px;
  border: 2px solid #ffffff4d
}

.about-us .about-sidebar-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.about-us .about-sidebar-role {
  font-size: 13px;
  line-height: 1.5;
  color: #fffc;
  margin: 0 0 24px
}

.about-us .about-sidebar-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #fff3;
  padding-top: 24px
}

.about-us .stat-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center
}

.about-us .stat-label {
  font-size: 13px;
  line-height: 1.5;
  color: #ffffffb3
}

.about-us .stat-value {
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  font-weight: 700
}

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

.about-us .about-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1a2e28;
  margin: 0
}

.about-us .about-pull {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start
}

.about-us .pull-quote {
  font-size: 28px;
  line-height: 1.2;
  color: #089F7F;
  font-weight: 700;
  margin: 0
}

.about-us .pull-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #FB7628;
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: middle
}

.about-us .about-body {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.about-us .about-para {
  font-size: 15px;
  line-height: 1.7;
  color: #2c3e35;
  margin: 0
}

.about-us .about-img-accent {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 28px -1px #089f7f1a;
  margin-top: 12px
}

.about-us .about-img-accent img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

@media (prefers-reduced-motion: no-preference) {
  .about-us .about-img-accent:hover img {
    box-shadow: 0 8px 36px -1px #089f7f24
  }
}

.about-us .wave-divider-alt {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 36px
}

.about-us .steps-block {
  background: #1a2e28;
  padding: 96px 0;
  position: relative;
  overflow: hidden
}

.about-us .steps-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 28px, #089f7f0a 28px, #089f7f0a 29px), repeating-linear-gradient(90deg, transparent, transparent 28px, #089f7f0a 28px, #089f7f0a 29px), repeating-linear-gradient(45deg, transparent, transparent 20px, #fb762805 20px, #fb762805 21px);
  pointer-events: none
}

.about-us .steps-rotating {
  position: absolute;
  top: -52px;
  right: -52px;
  width: 260px;
  height: 260px;
  border: 2px solid #089f7f1f;
  border-radius: 42px;
  pointer-events: none
}

.about-us .steps-heading-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 52px;
  position: relative;
  z-index: 1
}

.about-us .steps-eyebrow {
  font-size: 13px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #FB7628;
  margin: 0
}

.about-us .steps-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #fff;
  margin: 0
}

.about-us .steps-line {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1
}

.about-us .steps-track {
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(17deg, #089F7F, #FB7628);
  border-radius: 2px
}

.about-us .step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding: 0 0 52px;
  position: relative
}

.about-us .step-item:last-child {
  padding-bottom: 0
}

.about-us .step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(17deg, #089F7F, #FB7628);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 5px 28px -1px #089f7f1a
}

.about-us .step-icon-wrap .typcn {
  font-size: 28px;
  color: #fff
}

.about-us .step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: #FB7628;
  border-radius: 50%;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  font-weight: 700
}

.about-us .step-text {
  padding-top: 6px
}

.about-us .step-title {
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  font-weight: 700;
  margin: 0 0 6px
}

.about-us .step-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #ffffffa6;
  margin: 0
}

.about-us .steps-image-panel {
  position: relative
}

.about-us .steps-image-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 28px -1px #089f7f1a;
  transition: box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1)
}

@media (prefers-reduced-motion: no-preference) {
  .about-us .steps-image-wrap:hover {
    box-shadow: 0 8px 36px -1px #089f7f24
  }
}

.about-us .steps-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block
}

.about-us .steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start
}

.about-us .steps-overflow-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #FB7628;
  border-radius: 14px;
  padding: 24px;
  width: 200px;
  box-shadow: 0 8px 36px -1px #fb762824;
  z-index: 3
}

.about-us .overflow-card-num {
  font-size: 38px;
  line-height: 1.2;
  color: #fff;
  font-weight: 900;
  margin: 0 0 6px
}

.about-us .overflow-card-label {
  font-size: 13px;
  line-height: 1.5;
  color: #ffffffd9;
  margin: 0
}

.about-us .wave-divider-dark {
  background: #1a2e28;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 36px
}

.about-us .values-block {
  background: #fff;
  padding: 96px 0;
  position: relative
}

.about-us .values-heading-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: end;
  margin-bottom: 52px
}

.about-us .values-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1a2e28;
  margin: 0
}

.about-us .values-intro {
  font-size: 15px;
  line-height: 1.7;
  color: #2c3e35;
  margin: 0
}

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

.about-us .value-card {
  border-radius: 14px;
  padding: 24px;
  background: #F3F3F2;
  border-right: 4px solid #089F7F;
  box-shadow: inset 0 1px 5px -1px #089f7f14;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .22s cubic-bezier(0.0, 0, 0.2, 1)
}

@media (prefers-reduced-motion: no-preference) {
  .about-us .value-card:hover {
    box-shadow: 0 5px 28px -1px #089f7f1a
  }
}

.about-us .value-card.accent {
  background: linear-gradient(17deg, #089F7F, #FB7628);
  border-right-color: #fff
}

.about-us .value-icon {
  width: 44px;
  height: 44px;
  border-radius: 7px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center
}

.about-us .value-icon .typcn {
  font-size: 24px;
  color: #089F7F
}

.about-us .value-card.accent .value-icon {
  background: #fff3
}

.about-us .value-card.accent .value-icon .typcn {
  color: #fff
}

.about-us .value-title {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #1a2e28;
  margin: 0
}

.about-us .value-card.accent .value-title {
  color: #fff
}

.about-us .value-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #4a5e55;
  margin: 0
}

.about-us .value-card.accent .value-desc {
  color: #ffffffd9
}

.about-us .values-list-area {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

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

.about-us .values-num-list li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #2c3e35;
  border-bottom: 1px dashed #089f7f33;
  padding-bottom: 12px
}

.about-us .values-num-list li span.num {
  font-size: 28px;
  font-weight: 900;
  color: #089f7f26;
  flex-shrink: 0
}

.about-us .shadow-pulse {
  border-radius: 14px;
  background: #F3F3F2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.about-us .pulse-label {
  font-size: 13px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #089F7F;
  margin: 0
}

.about-us .pulse-text {
  font-size: 15px;
  line-height: 1.7;
  color: #2c3e35;
  margin: 0
}

.about-us .pulse-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 1.5;
  color: #089F7F;
  text-decoration: underline dashed;
  text-underline-offset: 3px;
  border-radius: 7px;
  padding: 6px 12px;
  background: #fff;
  font-weight: 700;
  transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), padding .25s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start
}

@media (prefers-reduced-motion: no-preference) {
  .about-us .pulse-link:hover {
    background: #089F7F;
    color: #fff;
    padding-left: 24px;
    padding-right: 24px
  }
}

.about-us .pulse-link:focus-visible {
  outline: 2px solid #089F7F;
  outline-offset: 2px
}

@media (max-width: 900px) {
  .about-us .title-block-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .about-us .title-shape-clip {
    width: 100%;
    height: 240px
  }

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

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

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

  .about-us .steps-image-wrap img {
    height: 280px
  }

  .about-us .steps-overflow-card {
    position: static;
    width: 100%;
    margin-top: 12px
  }

  .about-us .values-heading-area {
    grid-template-columns: 1fr
  }

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

  .about-us .values-list-area {
    grid-template-columns: 1fr
  }
}

@media (max-width: 600px) {
  .about-us .title-heading {
    font-size: 38px
  }

  .about-us .title-faded-letter {
    font-size: 120px
  }

  .about-us .about-heading,
  .about-us .steps-heading,
  .about-us .values-heading {
    font-size: 28px
  }
}

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

.success-page .success-card {
  background: #fff;
  border-radius: 14px;
  padding: 52px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 5px 28px -1px #089f7f1a;
  text-align: center
}

.success-page .success-card .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 42px;
  background: linear-gradient(17deg, #089F7F, #FB7628);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px
}

.success-page .success-card .icon-wrap svg {
  display: block
}

.success-page .success-card .success-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #089F7F;
  margin: 0 0 12px
}

.success-page .success-card .success-sub {
  font-size: 15px;
  line-height: 1.7;
  color: #2d2d2d;
  margin: 0 0 24px
}

.success-page .success-card .divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(17deg, #089F7F, #FB7628);
  border-radius: 2px;
  margin: 0 auto 24px
}

.success-page .success-card .success-note {
  font-size: 13px;
  line-height: 1.5;
  color: #555550;
  margin: 0 0 52px
}

.success-page .success-card .back-link {
  display: inline-block;
  padding: 12px 52px;
  background: linear-gradient(17deg, #089F7F, #FB7628);
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 7px;
  text-decoration: none;
  box-shadow: 0 1px 5px -1px #089f7f14
}

@media (min-width: 768px) {
  .success-page .success-card .back-link {
    transition: padding .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .26s cubic-bezier(0.0, 0, 0.2, 1)
  }

  .success-page .success-card .back-link:hover {
    padding-left: 64px;
    padding-right: 64px;
    box-shadow: 0 8px 36px -1px #089f7f24
  }
}

.success-page .success-card .back-link:focus-visible {
  outline: 2px solid #089F7F;
  outline-offset: 3px
}

@media (max-width: 560px) {
  .success-page {
    padding: 52px 12px
  }

  .success-page .success-card {
    padding: 24px
  }

  .success-page .success-card .success-heading {
    font-size: 28px
  }
}