* {
  box-sizing: border-box;
}

body {
  margin: 0;
  scrollbar-gutter: stable;
  min-height: 100vh;
  font-family: 'Spectral', Georgia, serif;
}

.sitehead {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid #9CD0B7;
  overflow: visible;
}

.sitehead::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg,
      rgba(84, 191, 151, 0.04) 0px,
      rgba(84, 191, 151, 0.04) 1px,
      transparent 1px,
      transparent 48px),
    repeating-linear-gradient(0deg,
      rgba(156, 208, 183, 0.04) 0px,
      rgba(156, 208, 183, 0.04) 1px,
      transparent 1px,
      transparent 48px);
  pointer-events: none;
  z-index: 0;
}

.headtop {
  position: relative;
  z-index: 1;
  max-width: 1366px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(156, 208, 183, 0.3);
}

.brandzone {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  text-decoration: none;
}

.logocircle {
  width: 44px;
  height: 44px;
  border-radius: 28px;
  background: #EEF4F2;
  border: 2px solid #54BF97;
  box-shadow: 2px 3px 6px 0 rgba(84, 191, 151, 0.06), 2px 6px 18px 0 rgba(84, 191, 151, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-right: 3px solid #54BF97;
  overflow: hidden;
}

.logocircle img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.brandname {
  font-family: 'Spectral', Georgia, serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.1;
  color: #1b3a2e;
  letter-spacing: 0;
}

.headprop {
  font-family: 'Spectral', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #2d5c47;
  text-align: right;
  max-width: 320px;
  flex-shrink: 1;
}

.headprop strong {
  color: #54BF97;
  font-weight: 600;
}

.navstrip {
  position: relative;
  z-index: 1;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.navgroup {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}

.navgroup+.navgroup {
  margin-left: 24px;
  padding-left: 24px;
  border-left: none;
  position: relative;
}

.navgroup+.navgroup::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: rgba(84, 191, 151, 0.35);
}

.navitem {
  display: flex;
  align-items: center;
  padding: 16px 16px;
  font-family: 'Spectral', Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #1b3a2e;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  min-height: 44px;
}

.navitem:hover {
  color: #54BF97;
  border-bottom-color: #54BF97;
  background: rgba(84, 191, 151, 0.05);
}

.navitem:focus-visible {
  outline: 2px solid #54BF97;
  outline-offset: 2px;
  border-radius: 3px;
}

.navitem[data-active="true"] {
  color: #54BF97;
  border-bottom-color: #54BF97;
  font-weight: 600;
}

.navcontact {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  padding: 8px 0;
  flex-shrink: 0;
}

.headphone {
  font-family: 'Spectral', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  color: #1b3a2e;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(84, 191, 151, 0.4);
  border-radius: 10px;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.headphone:hover {
  background: #EEF4F2;
  border-color: #54BF97;
}

.headphone:focus-visible {
  outline: 2px solid #54BF97;
  outline-offset: 2px;
}

@media (max-width: 1280px) {
  .headtop {
    padding: 16px 24px;
  }

  .navstrip {
    padding: 0 24px;
    flex-wrap: wrap;
  }

  .navcontact {
    margin-left: 0;
    padding: 8px 0;
  }
}

@media (max-width: 768px) {
  .headtop {
    padding: 16px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .headprop {
    text-align: left;
    max-width: 100%;
  }

  .navstrip {
    padding: 0 16px;
    flex-wrap: wrap;
    gap: 0;
  }

  .navgroup {
    flex-wrap: wrap;
  }

  .navgroup+.navgroup {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }

  .navgroup+.navgroup::before {
    display: none;
  }

  .navitem {
    padding: 12px 12px;
    font-size: 15px;
  }

  .navcontact {
    width: 100%;
    padding: 8px 0 16px;
  }
}

@media (max-width: 480px) {
  .headtop {
    padding: 16px;
  }

  .navstrip {
    padding: 0 8px;
  }

  .navitem {
    padding: 12px 8px;
  }
}

.sitefooter {
  background: linear-gradient(180deg, #EEF4F2 0%, #dceee7 100%);
  border-top: 2px solid #9CD0B7;
  padding: 72px 40px 40px;
}

.footinner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footbrand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footlogorow {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footlogocircle {
  width: 40px;
  height: 40px;
  border-radius: 28px;
  background: #ffffff;
  border: 2px solid #54BF97;
  box-shadow: 2px 3px 6px 0 rgba(84, 191, 151, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footlogocircle img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.footbrandname {
  font-family: 'Spectral', Georgia, serif;
  font-size: 23px;
  font-weight: 700;
  color: #1b3a2e;
  line-height: 1.1;
}

.foottagline {
  font-family: 'Spectral', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: #2d5c47;
  line-height: 1.5;
  text-align: center;
  max-width: 480px;
}

.footcolumns {
  display: flex;
  gap: 72px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.footcol {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 160px;
}

.footcollabel {
  font-family: 'Spectral', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: #1b3a2e;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0;
  border-bottom: 2px solid #54BF97;
  padding-bottom: 8px;
  width: 100%;
  text-align: center;
}

.footlinks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footlinks li {
  display: block;
}

.footlink {
  font-family: 'Spectral', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: #2d5c47;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  text-align: center;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 3px;
}

.footlink:hover {
  color: #54BF97;
}

.footlink:focus-visible {
  outline: 2px solid #54BF97;
  outline-offset: 2px;
}

.footcontactblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footcontactitem {
  font-family: 'Spectral', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: #2d5c47;
  line-height: 1.5;
  text-align: center;
}

.footcontactitem a {
  color: #2d5c47;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footcontactitem a:hover {
  color: #54BF97;
}

.footcontactitem a:focus-visible {
  outline: 2px solid #54BF97;
  outline-offset: 2px;
  border-radius: 3px;
}

.footdivider {
  width: 100%;
  max-width: 480px;
  height: 1px;
  background: rgba(84, 191, 151, 0.3);
}

.footcopy {
  font-family: 'Spectral', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: #4a7a62;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 768px) {
  .sitefooter {
    padding: 40px 24px 40px;
  }

  .footcolumns {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .sitefooter {
    padding: 40px 16px 40px;
  }

  .footcolumns {
    gap: 24px;
  }

  .footcol {
    min-width: 100%;
  }
}

.ckbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 2px solid #9CD0B7;
  box-shadow: 2px 6px 18px 0 rgba(84, 191, 151, 0.09);
  display: none;
}

.ckinner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cktext {
  font-family: 'Spectral', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: #1b3a2e;
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
}

.ckactions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.ckbtn {
  font-family: 'Spectral', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  color: #1b3a2e;
  background: transparent;
  border: 2px solid #54BF97;
  border-radius: 10px;
  padding: 8px 24px;
  cursor: pointer;
  min-height: 44px;
  min-width: 120px;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.ckbtn:hover {
  background: #54BF97;
  color: #ffffff;
}

.ckbtn:focus-visible {
  outline: 2px solid #1b3a2e;
  outline-offset: 2px;
}

.ckdecline {
  font-family: 'Spectral', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: #4a7a62;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  min-height: 44px;
  padding: 8px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ckdecline:hover {
  color: #54BF97;
}

.ckdecline:focus-visible {
  outline: 2px solid #54BF97;
  outline-offset: 2px;
  border-radius: 3px;
}

.cktogglerow {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}

.cktogglabel {
  font-family: 'Spectral', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: #2d5c47;
  line-height: 1.5;
  cursor: pointer;
}

.cktoggle {
  width: 40px;
  height: 22px;
  accent-color: #54BF97;
  cursor: pointer;
}

@media (max-width: 768px) {
  .ckinner {
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ckactions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .ckinner {
    padding: 16px;
  }

  .ckbtn,
  .ckdecline {
    width: 100%;
    text-align: center;
  }

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

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

.legal-body p {
  font-size: 18px;
  line-height: 1.8;
  color: #2d3a35;
  margin-top: 0;
  margin-bottom: 24px;
}

.legal-body ul,
.legal-body ol {
  font-size: 18px;
  line-height: 1.8;
  color: #2d3a35;
  padding-left: 40px;
  margin-top: 0;
  margin-bottom: 24px;
}

.legal-body ul {
  list-style-type: disc;
}

.legal-body ol {
  list-style-type: decimal;
}

.legal-body li {
  font-size: 18px;
  line-height: 1.8;
  color: #2d3a35;
  margin-bottom: 8px;
}

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

.legal-body ul ul,
.legal-body ol ol,
.legal-body ul ol,
.legal-body ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

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

.legal-body em,
.legal-body i {
  font-style: italic;
  color: #2d3a35;
}

.legal-body a {
  color: #54BF97;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.legal-body a:hover {
  color: #3a9e7a;
  text-decoration-color: #9CD0B7;
}

.legal-body a:visited {
  color: #3a9e7a;
}

.legal-body div {
  margin-bottom: 24px;
}

.legal-body div:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .legal-body {
    padding: 40px 24px;
  }

  .legal-body p,
  .legal-body ul,
  .legal-body ol,
  .legal-body li {
    font-size: 15px;
  }

  .legal-body ul,
  .legal-body ol {
    padding-left: 24px;
  }
}

@media (max-width: 480px) {
  .legal-body {
    padding: 40px 16px;
  }

  .legal-body p {
    margin-bottom: 16px;
  }

  .legal-body ul,
  .legal-body ol {
    margin-bottom: 16px;
    padding-left: 16px;
  }
}

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

.contus .pg-wrap {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 24px;
}

.contus .reach-top {
  background: #fff;
  padding: 72px 24px 40px;
  position: relative;
  text-align: center;
}

.contus .reach-top::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right,
      #54BF97 0px,
      #54BF97 5px,
      transparent 5px,
      transparent 12px);
  margin-top: 40px;
}

.contus .reach-top-inner {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
}

.contus .faded-quote {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 72px;
  line-height: 1.1;
  color: #EEF4F2;
  font-weight: 900;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

.contus .reach-label {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  color: #54BF97;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.contus .reach-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #54BF97;
  margin-right: 8px;
  vertical-align: middle;
}

.contus .reach-h1 {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 900;
  color: #1e2d28;
  margin: 0 auto 16px;
  max-width: 860px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

.contus .reach-sub {
  font-size: 18px;
  line-height: 1.8;
  color: #3a4f47;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: left;
}

.contus .dot-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.contus .dot-border span {
  position: absolute;
  border-radius: 50%;
  background: #9CD0B7;
  opacity: 0.35;
}

.contus .dot-border span:nth-child(1) {
  width: 5px;
  height: 5px;
  top: 16px;
  left: 40px;
}

.contus .dot-border span:nth-child(2) {
  width: 9px;
  height: 9px;
  top: 24px;
  left: 80px;
}

.contus .dot-border span:nth-child(3) {
  width: 4px;
  height: 4px;
  top: 8px;
  left: 140px;
}

.contus .dot-border span:nth-child(4) {
  width: 7px;
  height: 7px;
  top: 40px;
  left: 200px;
}

.contus .dot-border span:nth-child(5) {
  width: 3px;
  height: 3px;
  top: 16px;
  right: 140px;
}

.contus .dot-border span:nth-child(6) {
  width: 8px;
  height: 8px;
  top: 24px;
  right: 80px;
}

.contus .dot-border span:nth-child(7) {
  width: 5px;
  height: 5px;
  top: 8px;
  right: 40px;
}

.contus .dot-border span:nth-child(8) {
  width: 6px;
  height: 6px;
  bottom: 16px;
  left: 60px;
}

.contus .dot-border span:nth-child(9) {
  width: 4px;
  height: 4px;
  bottom: 24px;
  left: 120px;
}

.contus .dot-border span:nth-child(10) {
  width: 9px;
  height: 9px;
  bottom: 8px;
  right: 60px;
}

.contus .dot-border span:nth-child(11) {
  width: 3px;
  height: 3px;
  bottom: 24px;
  right: 120px;
}

.contus .form-strip {
  padding: 72px 24px;
  background: #EEF4F2;
  position: relative;
}

.contus .form-strip-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

.contus .info-panel {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contus .info-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 2px 9px 44px 0 rgba(84, 191, 151, 0.12);
}

.contus .info-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.35) contrast(1.08) brightness(0.95);
  transition: filter 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.contus .info-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(84, 191, 151, 0.0);
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  border-radius: 18px;
}

.contus .info-img-wrap:hover::after {
  background: rgba(84, 191, 151, 0.28);
}

.contus .info-img-wrap:hover img {
  filter: sepia(0.1) contrast(1.05) brightness(1.0);
}

.contus .info-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 2px 6px 18px 0 rgba(84, 191, 151, 0.09);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contus .info-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}

.contus .info-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #EEF4F2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contus .info-icon svg {
  width: 18px;
  height: 18px;
}

.contus .info-row-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contus .info-row-label {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #1e2d28;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contus .info-row-val {
  font-size: 15px;
  line-height: 1.5;
  color: #3a4f47;
}

.contus .info-row-val a {
  color: #54BF97;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.contus .info-row-val a:hover {
  color: #1e2d28;
}

.contus .form-panel {
  flex: 1 1 0;
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 2px 9px 44px 0 rgba(84, 191, 151, 0.12);
  position: relative;
}

.contus .form-panel-head {
  margin-bottom: 40px;
}

.contus .form-panel-tag {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #54BF97;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.contus .form-panel-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #54BF97;
}

.contus .form-panel-h2 {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 900;
  color: #1e2d28;
  text-transform: uppercase;
  margin: 0;
}

.contus .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contus .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contus .form-field.full {
  grid-column: 1 / -1;
}

.contus .form-lbl {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #1e2d28;
}

.contus .form-inp {
  width: 100%;
  padding: 16px;
  border: 2px solid #EEF4F2;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: #1e2d28;
  background: #EEF4F2;
  outline: none;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.contus .form-inp::placeholder {
  font-size: 13px;
  color: #8aab9e;
}

.contus .form-inp:focus {
  border-color: #54BF97;
  background: #fff;
  box-shadow: inset 0 4px 10px 0 rgba(84, 191, 151, 0.08);
}

.contus .form-ta {
  resize: vertical;
  min-height: 120px;
}

.contus .privacy-row {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  margin-top: 8px;
}

.contus .privacy-check {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #54BF97;
  flex-shrink: 0;
  cursor: pointer;
}

.contus .privacy-text {
  font-size: 15px;
  line-height: 1.5;
  color: #3a4f47;
}

.contus .privacy-text a {
  color: #54BF97;
  text-decoration: underline;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.contus .privacy-text a:hover {
  color: #1e2d28;
}

.contus .submit-row {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 8px;
}

.contus .submit-btn {
  position: relative;
  padding: 16px 40px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #54BF97;
  background: transparent;
  border: 2px solid #54BF97;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.0, 0, 0.2, 1);
}

.contus .submit-btn:hover {
  color: #fff;
  background: #54BF97;
  box-shadow: 2px 6px 18px 0 rgba(84, 191, 151, 0.09);
}

.contus .submit-btn:focus {
  outline: 3px solid #9CD0B7;
  outline-offset: 3px;
}

.contus .submit-btn:active {
  box-shadow: inset 0 6px 10px 0 rgba(84, 191, 151, 0.18);
}

.contus .ripple-el {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple-anim 0.5s linear;
  pointer-events: none;
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.contus .highlights {
  padding: 72px 24px;
  background: #fff;
  position: relative;
}

.contus .highlights::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right,
      #9CD0B7 0px,
      #9CD0B7 4px,
      transparent 4px,
      transparent 10px);
  position: absolute;
  top: 0;
  left: 0;
}

.contus .highlights-inner {
  max-width: 1366px;
  margin: 0 auto;
}

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

.contus .highlights-h2 {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 900;
  color: #1e2d28;
  text-transform: uppercase;
  margin: 0;
  max-width: 500px;
}

.contus .highlights-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4f47;
  max-width: 380px;
  text-align: left;
}

.contus .metric-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
}

.contus .metric-card {
  border-radius: 18px;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.contus .metric-card.primary {
  background: linear-gradient(160deg, #54BF97 0%, #9CD0B7 100%);
  box-shadow: 2px 6px 18px 0 rgba(84, 191, 151, 0.09);
}

.contus .metric-card.secondary {
  background: #EEF4F2;
  box-shadow: 2px 3px 6px 0 rgba(84, 191, 151, 0.06);
}

.contus .metric-card:hover {
  box-shadow: 2px 9px 44px 0 rgba(84, 191, 151, 0.12);
}

.contus .metric-card .metric-num {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.contus .metric-card.secondary .metric-num {
  background: linear-gradient(135deg, #54BF97 30%, #3a9e7a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contus .metric-card .metric-label {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contus .metric-card.secondary .metric-label {
  color: #1e2d28;
}

.contus .metric-card .metric-body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 16px;
  text-align: justify;
}

.contus .metric-card.secondary .metric-body {
  color: #3a4f47;
}

.contus .metric-hover-text {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 24px;
  display: inline-block;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), text-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.contus .metric-card:hover .metric-hover-text {
  color: #fff;
  text-shadow: 0 2px 12px rgba(84, 191, 151, 0.5);
}

.contus .metric-card.secondary .metric-hover-text {
  color: #54BF97;
}

.contus .metric-card.secondary:hover .metric-hover-text {
  color: #1e2d28;
  text-shadow: 0 2px 12px rgba(84, 191, 151, 0.3);
}

.contus .metric-card.primary::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -40px;
  right: -40px;
  animation: zone-drift 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes zone-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(16px, 24px) scale(1.12);
  }
}

@media (max-width: 1280px) {
  .contus .metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contus .metric-card.primary {
    grid-column: 1 / -1;
  }

  .contus .form-strip-inner {
    flex-direction: column;
  }

  .contus .info-panel {
    flex: 0 0 auto;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contus .info-img-wrap {
    flex: 0 0 280px;
    width: 280px;
  }

  .contus .info-card {
    flex: 1 1 280px;
  }
}

@media (max-width: 768px) {
  .contus .reach-h1 {
    font-size: 31px;
  }

  .contus .form-grid {
    grid-template-columns: 1fr;
  }

  .contus .form-field.full {
    grid-column: 1;
  }

  .contus .privacy-row {
    grid-column: 1;
  }

  .contus .submit-row {
    grid-column: 1;
    justify-content: stretch;
  }

  .contus .submit-btn {
    width: 100%;
  }

  .contus .form-panel {
    padding: 24px;
  }

  .contus .metric-grid {
    grid-template-columns: 1fr;
  }

  .contus .metric-card.primary {
    grid-column: 1;
  }

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

  .contus .info-panel {
    flex-direction: column;
  }

  .contus .info-img-wrap {
    width: 100%;
    flex: 0 0 auto;
  }
}

@media (max-width: 480px) {
  .contus .reach-top {
    padding: 40px 16px 24px;
  }

  .contus .form-strip {
    padding: 40px 16px;
  }

  .contus .highlights {
    padding: 40px 16px;
  }

  .contus .reach-h1 {
    font-size: 23px;
  }

  .contus .faded-quote {
    font-size: 31px;
  }
}

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

.lprog .grain-bg {
  position: relative;
  padding: 72px 24px;
  background-color: #f2f7f5;
}

.lprog .grain-layer {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

.lprog .gridlines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(84, 191, 151, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 191, 151, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.lprog .corner-rects {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}

.lprog .corner-rects span {
  position: absolute;
  border: 1px solid rgba(84, 191, 151, 0.22);
  border-radius: 3px;
}

.lprog .corner-rects span:nth-child(1) {
  inset: 0;
}

.lprog .corner-rects span:nth-child(2) {
  inset: 10px;
}

.lprog .corner-rects span:nth-child(3) {
  inset: 20px;
}

.lprog .corner-rects span:nth-child(4) {
  inset: 30px;
}

.lprog .title-inner {
  position: relative;
  z-index: 2;
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px;
}

.lprog .title-text {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
}

.lprog .title-eyebrow {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  color: #54BF97;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lprog .title-h1 {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 800;
  color: #1a2e26;
  margin: 0 0 24px 0;
  text-transform: uppercase;
}

.lprog .title-h1 em {
  font-style: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-image: linear-gradient(135deg, #54BF97 0%, #9CD0B7 100%);
}

.lprog .title-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #3a4f46;
  max-width: 520px;
  text-align: justify;
  margin: 0 0 40px 0;
}

.lprog .title-cta {
  display: inline-block;
  padding: 16px 40px;
  border: 2px solid #54BF97;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #54BF97;
  text-decoration: none;
  background: transparent;
  transition: background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.lprog .title-cta:hover {
  background-color: #54BF97;
  color: #fff;
}

.lprog .title-imgcol {
  flex: 0 0 42%;
  position: relative;
  min-height: 420px;
}

.lprog .title-imgwrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 18px;
}

.lprog .title-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lprog .title-imggrad {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(242, 247, 245, 0.85) 0%, rgba(242, 247, 245, 0.3) 50%, rgba(242, 247, 245, 0) 100%);
  border-radius: 18px;
}

.lprog .typewriter {
  overflow: hidden;
  white-space: nowrap;
  animation: lprog-type 1.8s steps(30, end) forwards;
  width: 0;
  display: block;
}

@keyframes lprog-type {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.lprog .prog-section {
  background: #fff;
  padding: 72px 24px;
}

.lprog .prog-inner {
  max-width: 1366px;
  margin: 0 auto;
}

.lprog .prog-top {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 72px;
}

.lprog .prog-topleft {
  flex: 0 0 48%;
}

.lprog .prog-h2 {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 800;
  color: #1a2e26;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}

.lprog .prog-lead {
  font-size: 18px;
  line-height: 1.8;
  color: #3a4f46;
  text-align: justify;
  margin: 0;
}

.lprog .prog-topright {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.lprog .stat-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 10px;
  background: #EEF4F2;
  box-shadow: 2px 3px 6px 0 rgba(84, 191, 151, 0.06);
  transition: box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.lprog .stat-row:hover {
  box-shadow: 2px 6px 18px 0 rgba(84, 191, 151, 0.09);
}

.lprog .stat-num {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 800;
  color: #54BF97;
  min-width: 72px;
}

.lprog .stat-label {
  font-size: 15px;
  line-height: 1.5;
  color: #3a4f46;
}

.lprog .checkerboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.lprog .checkitem {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 6px 18px 0 rgba(84, 191, 151, 0.09);
  transition: box-shadow 0.26s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.lprog .checkitem:hover {
  box-shadow: 2px 9px 44px 0 rgba(84, 191, 151, 0.12);
  transform: translateY(-2px);
}

.lprog .checkitem.odd {
  background: #EEF4F2;
  margin-top: 0;
}

.lprog .checkitem.even {
  background: #fff;
  border: 1.5px solid #9CD0B7;
  margin-top: 40px;
}

.lprog .checkitem-num {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 800;
  color: rgba(84, 191, 151, 0.13);
  position: absolute;
  top: 16px;
  right: 24px;
  pointer-events: none;
  user-select: none;
}

.lprog .checkitem-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #54BF97;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: lprog-glow 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes lprog-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(84, 191, 151, 0);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(84, 191, 151, 0.18);
  }
}

.lprog .checkitem-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.lprog .checkitem-h3 {
  font-size: 23px;
  line-height: 1.1;
  font-weight: 700;
  color: #1a2e26;
  text-transform: uppercase;
  margin: 0;
}

.lprog .checkitem-p {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4f46;
  text-align: justify;
  margin: 0;
}

.lprog .reviews-belt {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid #EEF4F2;
}

.lprog .reviews-h2 {
  font-size: 23px;
  line-height: 1.1;
  font-weight: 700;
  color: #1a2e26;
  text-transform: uppercase;
  margin: 0 0 40px 0;
}

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

.lprog .review-card {
  padding: 24px;
  border-radius: 18px;
  background: #EEF4F2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 2px 3px 6px 0 rgba(84, 191, 151, 0.06);
}

.lprog .review-portrait {
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.lprog .review-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lprog .review-name {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #1a2e26;
  margin: 0;
}

.lprog .review-role {
  font-size: 15px;
  line-height: 1.5;
  color: #54BF97;
  margin: 0;
}

.lprog .review-text {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4f46;
  text-align: justify;
  margin: 0;
}

.lprog .divider-svg {
  display: block;
  width: 100%;
  height: 40px;
  overflow: hidden;
}

@media (max-width: 1280px) {
  .lprog .title-h1 {
    font-size: 72px;
  }

  .lprog .checkerboard {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .lprog .title-inner {
    flex-direction: column;
  }

  .lprog .title-imgcol {
    min-height: 280px;
    width: 100%;
    flex: none;
  }

  .lprog .title-h1 {
    font-size: 31px;
  }

  .lprog .prog-top {
    flex-direction: column;
  }

  .lprog .checkerboard {
    grid-template-columns: 1fr;
  }

  .lprog .checkitem.even {
    margin-top: 0;
  }

  .lprog .reviews-grid {
    grid-template-columns: 1fr;
  }

  .lprog .grain-bg {
    padding: 40px 16px;
  }

  .lprog .prog-section {
    padding: 40px 16px;
  }

  .lprog .title-text {
    padding: 24px 0;
  }
}

@media (max-width: 480px) {
  .lprog .title-h1 {
    font-size: 31px;
  }

  .lprog .stat-num {
    font-size: 23px;
    min-width: 56px;
  }

  .lprog .checkitem {
    padding: 24px;
  }

  .lprog .reviews-belt {
    margin-top: 40px;
    padding-top: 40px;
  }
}

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

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

.srvcpg .edcol-narrow {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.srvcpg .topband {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #fff;
  position: relative;
}

.srvcpg .topband-inner {
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.srvcpg .topband-imgcard {
  flex: 0 0 300px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 2px 6px 18px 0 rgba(84, 191, 151, 0.09);
}

.srvcpg .topband-imgcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.srvcpg .topband-imgcard-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(84, 191, 151, 0.55) 0%, rgba(84, 191, 151, 0.0) 100%);
  pointer-events: none;
}

.srvcpg .topband-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.srvcpg .topband-pattern svg {
  width: 100%;
  height: 100%;
  opacity: 0.07;
}

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

.srvcpg .topband-label {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  color: #54BF97;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.srvcpg .topband-label svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.srvcpg .topband-h1 {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 900;
  color: #1e2d26;
  margin: 0 0 16px 0;
  text-align: left;
}

.srvcpg .topband-h1 .accentword {
  color: #54BF97;
}

.srvcpg .topband-sub {
  font-size: 18px;
  line-height: 1.8;
  color: #3a4d43;
  text-align: left;
  margin: 0;
  max-width: 520px;
}

.srvcpg .wavediv {
  line-height: 0;
  pointer-events: none;
}

.srvcpg .wavediv svg {
  display: block;
  width: 100%;
}

.srvcpg .svcsec {
  background: #EEF4F2;
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
}

.srvcpg .svcsec-diagdeco {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  pointer-events: none;
  overflow: hidden;
}

.srvcpg .svcsec-diagdeco svg {
  opacity: 0.09;
}

.srvcpg .svcsec-heading {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 800;
  color: #1e2d26;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.srvcpg .svcsec-heading .accentword {
  color: #54BF97;
}

.srvcpg .svcsec-lead {
  font-size: 18px;
  line-height: 1.8;
  color: #3a4d43;
  margin: 0 0 40px 0;
  max-width: 600px;
  text-align: justify;
}

.srvcpg .svcsec-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.srvcpg .svccard {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 2px 3px 6px 0 rgba(84, 191, 151, 0.06);
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srvcpg .svccard:hover {
  box-shadow: 2px 9px 44px 0 rgba(84, 191, 151, 0.12);
  transform: translateY(-3px);
}

.srvcpg .svccard.dominant {
  grid-row: span 2;
}

.srvcpg .svccard-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.srvcpg .svccard-icon svg {
  width: 40px;
  height: 40px;
}

.srvcpg .svccard-h {
  font-size: 23px;
  line-height: 1.5;
  font-weight: 800;
  color: #1e2d26;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.srvcpg .svccard-h .accentword {
  color: #54BF97;
}

.srvcpg .svccard-body {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4d43;
  margin: 0;
  text-align: justify;
}

.srvcpg .svccard-imgwrap {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-top: 8px;
}

.srvcpg .svccard-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.srvcpg .svccard:hover .svccard-imgwrap img {
  transform: scale(1.04);
}

.srvcpg .svccard-tag {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #54BF97;
  background: rgba(84, 191, 151, 0.1);
  border-radius: 3px;
  padding: 8px 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-start;
}

.srvcpg .svccard-metric {
  font-size: 31px;
  font-weight: 900;
  color: #54BF97;
  line-height: 1.1;
  margin: 0;
  animation: shadowpulse 3.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes shadowpulse {
  0% {
    text-shadow: 0 2px 6px rgba(84, 191, 151, 0.10);
  }

  50% {
    text-shadow: 0 6px 22px rgba(84, 191, 151, 0.28);
  }

  100% {
    text-shadow: 0 2px 6px rgba(84, 191, 151, 0.10);
  }
}

.srvcpg .svccard-metlabel {
  font-size: 15px;
  color: #3a4d43;
  line-height: 1.5;
  margin: 0;
}

.srvcpg .teamsec {
  background: #fff;
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
}

.srvcpg .teamsec-diagdeco {
  position: absolute;
  bottom: 24px;
  right: 0;
  width: 180px;
  height: 180px;
  pointer-events: none;
  overflow: hidden;
}

.srvcpg .teamsec-diagdeco svg {
  opacity: 0.07;
}

.srvcpg .teamsec-heading {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 800;
  color: #1e2d26;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.srvcpg .teamsec-heading .accentword {
  color: #54BF97;
}

.srvcpg .teamsec-lead {
  font-size: 18px;
  line-height: 1.8;
  color: #3a4d43;
  margin: 0 0 40px 0;
  max-width: 620px;
  text-align: justify;
}

.srvcpg .teamgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.srvcpg .teamcard {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srvcpg .teamcard-portrait {
  width: 100%;
  aspect-ratio: 5/7;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 2px 6px 18px 0 rgba(156, 208, 183, 0.09);
}

.srvcpg .teamcard-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.srvcpg .teamcard-name {
  font-size: 18px;
  font-weight: 800;
  color: #1e2d26;
  margin: 0;
  line-height: 1.5;
}

.srvcpg .teamcard-role {
  font-size: 15px;
  color: #54BF97;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1.5;
}

.srvcpg .teamcard-quote {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4d43;
  margin: 0;
  text-align: justify;
  border-top: 2px solid #EEF4F2;
  padding-top: 16px;
}

.srvcpg .beforeafter {
  background: #EEF4F2;
  border-radius: 28px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.srvcpg .beforeafter-label {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.srvcpg .beforeafter-label.before {
  color: #8aaa9a;
}

.srvcpg .beforeafter-label.after {
  color: #54BF97;
}

.srvcpg .beforeafter-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srvcpg .beforeafter-h {
  font-size: 23px;
  font-weight: 800;
  color: #1e2d26;
  margin: 0;
  line-height: 1.5;
}

.srvcpg .beforeafter-body {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4d43;
  margin: 0;
  text-align: justify;
}

.srvcpg .beforeafter-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.srvcpg .beforeafter-arrow {
  width: 48px;
  height: 48px;
  background: #54BF97;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 6px 18px 0 rgba(84, 191, 151, 0.18);
  flex-shrink: 0;
}

.srvcpg .beforeafter-arrow svg {
  width: 22px;
  height: 22px;
}

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

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

.srvcpg .svccard {
  opacity: 0;
  animation: cascadeIn 0.5s cubic-bezier(0.0, 0, 0.2, 1) forwards;
}

.srvcpg .svccard:nth-child(1) {
  animation-delay: 0.08s;
}

.srvcpg .svccard:nth-child(2) {
  animation-delay: 0.18s;
}

.srvcpg .svccard:nth-child(3) {
  animation-delay: 0.28s;
}

.srvcpg .svccard:nth-child(4) {
  animation-delay: 0.38s;
}

.srvcpg .svccard:nth-child(5) {
  animation-delay: 0.48s;
}

.srvcpg .teamcard {
  opacity: 0;
  animation: cascadeIn 0.5s cubic-bezier(0.0, 0, 0.2, 1) forwards;
}

.srvcpg .teamcard:nth-child(1) {
  animation-delay: 0.1s;
}

.srvcpg .teamcard:nth-child(2) {
  animation-delay: 0.22s;
}

.srvcpg .teamcard:nth-child(3) {
  animation-delay: 0.34s;
}

.srvcpg .outlinebtn {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #54BF97;
  border: 2px solid #54BF97;
  border-radius: 10px;
  padding: 16px 40px;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.24s cubic-bezier(0.4, 0, 0.2, 1), background 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.srvcpg .outlinebtn:hover {
  background: #54BF97;
  color: #fff;
}

.srvcpg .outlinebtn:focus {
  outline: 3px solid #54BF97;
  outline-offset: 3px;
}

.srvcpg .ripple-origin {
  position: absolute;
  border-radius: 50%;
  background: rgba(84, 191, 151, 0.22);
  transform: scale(0);
  animation: rippleout 0.48s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
}

@keyframes rippleout {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@media (max-width: 1280px) {
  .srvcpg .topband-h1 {
    font-size: 72px;
  }

  .srvcpg .svcsec-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .srvcpg .topband-inner {
    flex-direction: column;
    gap: 24px;
  }

  .srvcpg .topband-imgcard {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .srvcpg .topband-h1 {
    font-size: 31px;
  }

  .srvcpg .topband-sub {
    font-size: 15px;
  }

  .srvcpg .svcsec-grid {
    grid-template-columns: 1fr;
  }

  .srvcpg .svccard.dominant {
    grid-row: auto;
  }

  .srvcpg .teamgrid {
    grid-template-columns: 1fr;
  }

  .srvcpg .beforeafter {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .srvcpg .edcol {
    padding-left: 16px;
    padding-right: 16px;
  }

  .srvcpg .edcol-narrow {
    padding-left: 16px;
    padding-right: 16px;
  }

  .srvcpg .topband-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 480px) {
  .srvcpg .topband-h1 {
    font-size: 31px;
  }

  .srvcpg .svcsec {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .srvcpg .teamsec {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .srvcpg .teamgrid {
    margin-bottom: 40px;
  }

  .srvcpg .beforeafter {
    padding: 24px;
  }
}

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

.abtus .pg-root {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 24px;
}

.abtus .titblk {
  padding: 72px 24px 40px;
  text-align: center;
  position: relative;
}

.abtus .titblk-inner {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
}

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

.abtus .titblk-deco::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(84, 191, 151, 0.07);
}

.abtus .titblk-deco::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(156, 208, 183, 0.09);
}

.abtus .titblk-img-wrap {
  width: 160px;
  height: 160px;
  margin: 0 auto 40px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 2px 9px 44px 0 rgba(84, 191, 151, 0.12);
  animation: imgfade 0.68s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes imgfade {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

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

.abtus .titblk-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1/1;
  display: block;
}

.abtus .titblk-tag {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  color: #54BF97;
  border: 1px solid rgba(84, 191, 151, 0.35);
  border-radius: 3px;
  padding: 8px 16px;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.abtus .titblk-h1 {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 800;
  color: #1e3a2f;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.abtus .titblk-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #3a5246;
  max-width: 620px;
  margin: 0 auto;
  text-align: justify;
}

.abtus .divider-a {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.abtus .divider-a span {
  display: block;
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, rgba(84, 191, 151, 0.12), rgba(84, 191, 151, 0.5), rgba(84, 191, 151, 0.9));
}

.abtus .divider-a em {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #54BF97;
  flex-shrink: 0;
}

.abtus .storysect {
  padding: 72px 24px;
  background: #EEF4F2;
  position: relative;
}

.abtus .storysect-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

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

.abtus .storysect-diag svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.abtus .storytext h2 {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 800;
  color: #1e3a2f;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.abtus .storytext p {
  font-size: 18px;
  line-height: 1.8;
  color: #3a5246;
  margin: 0 0 16px;
  text-align: justify;
}

.abtus .storytext p:last-child {
  margin-bottom: 0;
}

.abtus .storytext .accentmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #54BF97;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.abtus .storytext .accentmark svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.abtus .chartzone {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 2px 6px 18px 0 rgba(84, 191, 151, 0.09);
}

.abtus .chartzone h3 {
  font-size: 23px;
  line-height: 1.1;
  font-weight: 800;
  color: #1e3a2f;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.abtus .stepchart {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abtus .steprow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.abtus .steprow-label {
  font-size: 15px;
  line-height: 1.5;
  color: #3a5246;
  font-weight: 600;
  width: 110px;
  flex-shrink: 0;
  text-align: right;
}

.abtus .steprow-bar-wrap {
  flex: 1;
  background: rgba(84, 191, 151, 0.1);
  border-radius: 3px;
  height: 28px;
  overflow: hidden;
}

.abtus .steprow-bar {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(84, 191, 151, 0.5) 0%, #54BF97 100%);
  transition: width 0.26s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
}

.abtus .steprow-bar span {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
}

.abtus .chartzone-note {
  font-size: 15px;
  line-height: 1.5;
  color: #6a8a7a;
  margin-top: 24px;
  text-align: justify;
}

.abtus .divider-b {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 24px;
}

.abtus .divider-b-line {
  height: 3px;
  background: linear-gradient(to right, rgba(84, 191, 151, 0.08) 0%, rgba(84, 191, 151, 0.35) 40%, rgba(84, 191, 151, 0.9) 100%);
  border-radius: 3px;
}

.abtus .teamsect {
  padding: 72px 24px;
  background: #fff;
  position: relative;
}

.abtus .teamsect-inner {
  max-width: 1366px;
  margin: 0 auto;
}

.abtus .teamsect-top {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 72px;
}

.abtus .portrait-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.abtus .portrait-frame {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 2px 9px 44px 0 rgba(84, 191, 151, 0.12);
  flex-shrink: 0;
}

.abtus .portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.abtus .portrait-info {
  text-align: center;
}

.abtus .portrait-info strong {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #1e3a2f;
}

.abtus .portrait-info em {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  color: #54BF97;
  font-style: normal;
  font-weight: 600;
}

.abtus .teamtext h2 {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 800;
  color: #1e3a2f;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.abtus .teamtext p {
  font-size: 18px;
  line-height: 1.8;
  color: #3a5246;
  margin: 0 0 16px;
  text-align: justify;
}

.abtus .teamtext p:last-child {
  margin-bottom: 0;
}

.abtus .teamtext .accentmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #54BF97;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.abtus .teamtext .accentmark svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

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

.abtus .valcard {
  border-radius: 10px;
  padding: 40px 24px;
  position: relative;
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.abtus .valcard:hover {
  box-shadow: 2px 9px 44px 0 rgba(84, 191, 151, 0.12);
  transform: translateY(-4px);
}

.abtus .valcard.checked-bg {
  background-color: rgba(84, 191, 151, 0.04);
  background-image:
    linear-gradient(rgba(84, 191, 151, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 191, 151, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
}

.abtus .valcard.plain-bg {
  background: #EEF4F2;
}

.abtus .valcard.accent-bg {
  background: linear-gradient(145deg, rgba(84, 191, 151, 0.12) 0%, rgba(156, 208, 183, 0.18) 100%);
}

.abtus .valcard-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #54BF97;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 2px 3px 6px 0 rgba(84, 191, 151, 0.06);
}

.abtus .valcard-icon svg {
  width: 22px;
  height: 22px;
}

.abtus .valcard h4 {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #1e3a2f;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.abtus .valcard p {
  font-size: 15px;
  line-height: 1.8;
  color: #3a5246;
  margin: 0;
  text-align: justify;
}

.abtus .imgstrip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 72px;
}

.abtus .imgstrip-item {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 2px 6px 18px 0 rgba(84, 191, 151, 0.09);
}

.abtus .imgstrip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.28s cubic-bezier(0.0, 0, 0.2, 1);
}

.abtus .imgstrip-item:hover img {
  transform: scale(1.04);
}

@keyframes contrastbreathe {

  0%,
  100% {
    filter: contrast(1);
  }

  50% {
    filter: contrast(1.08);
  }
}

.abtus .storysect {
  animation: contrastbreathe 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@media (max-width: 1280px) {
  .abtus .titblk-h1 {
    font-size: 72px;
  }

  .abtus .storysect-inner {
    gap: 40px;
  }

  .abtus .teamsect-top {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .abtus .titblk-h1 {
    font-size: 31px;
  }

  .abtus .titblk {
    padding: 40px 16px 24px;
  }

  .abtus .storysect-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .abtus .storysect {
    padding: 40px 16px;
  }

  .abtus .teamsect-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .abtus .teamsect {
    padding: 40px 16px;
  }

  .abtus .valsgrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .abtus .imgstrip {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .abtus .chartzone {
    padding: 24px 16px;
  }

  .abtus .steprow-label {
    width: 80px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .abtus .titblk-h1 {
    font-size: 31px;
  }

  .abtus .titblk-img-wrap {
    width: 120px;
    height: 120px;
  }

  .abtus .portrait-frame {
    width: 160px;
    height: 160px;
  }

  .abtus .valcard {
    padding: 24px 16px;
  }
}

.portl {
  max-width: 1366px;
  margin: 0 auto;
  overflow-x: clip;
}

.portl .titblock {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 0;
  padding: 72px 40px;
  position: relative;
  background: #fff;
}

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

.portl .titblock .circbg span {
  display: block;
  position: absolute;
  border-radius: 50%;
  border: 2px solid #54BF97;
  opacity: 0.08;
}

.portl .titblock .circbg span:nth-child(1) {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -60px;
}

.portl .titblock .circbg span:nth-child(2) {
  width: 180px;
  height: 180px;
  top: 40px;
  left: 80px;
}

.portl .titblock .circbg span:nth-child(3) {
  width: 240px;
  height: 240px;
  bottom: -40px;
  left: 200px;
  opacity: 0.05;
}

.portl .titblock .textside {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
  position: relative;
  z-index: 1;
}

.portl .titblock .accentline {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.portl .titblock .accentline .bar {
  width: 4px;
  height: 40px;
  background: #54BF97;
  border-radius: 3px;
  flex-shrink: 0;
}

.portl .titblock .accentline span {
  font-size: 15px;
  color: #54BF97;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.portl .titblock .maintit {
  font-size: 72px;
  line-height: 1.1;
  color: #1d2b22;
  margin: 0 0 24px 0;
  font-weight: 900;
  text-transform: uppercase;
}

.portl .titblock .subdesc {
  font-size: 18px;
  line-height: 1.8;
  color: #3a4a40;
  margin: 0 0 40px 0;
  max-width: 540px;
  text-align: justify;
}

.portl .titblock .actlinks {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.portl .titblock .actlinks a {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  padding: 16px 40px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: color 0.24s cubic-bezier(0.4, 0, 0.2, 1), background 0.24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.portl .titblock .actlinks a.primary {
  background: transparent;
  color: #54BF97;
  border: 2px solid #54BF97;
  box-shadow: 2px 3px 6px 0 rgba(84, 191, 151, 0.06);
}

.portl .titblock .actlinks a.primary:hover {
  background: #54BF97;
  color: #fff;
  box-shadow: 2px 6px 18px 0 rgba(84, 191, 151, 0.09);
}

.portl .titblock .actlinks a.secondary {
  background: transparent;
  color: #3a4a40;
  border: 2px solid #9CD0B7;
}

.portl .titblock .actlinks a.secondary:hover {
  background: #EEF4F2;
  color: #1d2b22;
}

.portl .titblock .imgstrip {
  width: 340px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.portl .titblock .imgstrip .imgwrap {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.portl .titblock .imgstrip .imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.portl .titblock .imgstrip .imgwrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 60px 10px rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.portl .revealup {
  opacity: 0;
  transform: translateY(32px);
  animation: revealup 0.52s cubic-bezier(0.0, 0, 0.2, 1) forwards;
}

.portl .revealup:nth-child(1) {
  animation-delay: 0.08s;
}

.portl .revealup:nth-child(2) {
  animation-delay: 0.18s;
}

.portl .revealup:nth-child(3) {
  animation-delay: 0.28s;
}

.portl .revealup:nth-child(4) {
  animation-delay: 0.38s;
}

.portl .revealup:nth-child(5) {
  animation-delay: 0.46s;
}

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

.portl .condblock {
  background: #EEF4F2;
  padding: 72px 40px;
  position: relative;
}

.portl .condblock .vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, transparent 60%, rgba(84, 191, 151, 0.07) 100%),
    radial-gradient(ellipse at 0% 50%, rgba(84, 191, 151, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 50%, rgba(84, 191, 151, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(84, 191, 151, 0.08) 0%, transparent 60%);
}

.portl .condblock .condinner {
  max-width: 1366px;
  margin: 0 auto;
}

.portl .condblock .condhead {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.portl .condblock .condhead .headtxt {
  flex: 1 1 0;
}

.portl .condblock .condhead .headtxt h2 {
  font-size: 31px;
  line-height: 1.1;
  color: #1d2b22;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.portl .condblock .condhead .headtxt p {
  font-size: 18px;
  line-height: 1.8;
  color: #3a4a40;
  margin: 0;
  text-align: justify;
}

.portl .condblock .condhead .bigpunct {
  font-size: 72px;
  line-height: 1.1;
  color: #54BF97;
  opacity: 0.18;
  font-weight: 900;
  flex-shrink: 0;
  user-select: none;
}

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

.portl .condblock .condcard {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 2px 3px 6px 0 rgba(84, 191, 151, 0.06);
  transition: box-shadow 0.26s cubic-bezier(0.4, 0, 0.2, 1), transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.portl .condblock .condcard:hover {
  box-shadow: 2px 9px 44px 0 rgba(84, 191, 151, 0.12);
  transform: translateY(-4px);
}

.portl .condblock .condcard .cardico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #EEF4F2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.portl .condblock .condcard .cardico svg {
  width: 22px;
  height: 22px;
}

.portl .condblock .condcard h4 {
  font-size: 15px;
  line-height: 1.5;
  color: #1d2b22;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.portl .condblock .condcard p {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4a40;
  margin: 0;
  text-align: justify;
}

.portl .currblock {
  background: #fff;
  padding: 72px 40px;
  position: relative;
}

.portl .currblock .currinner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.portl .currblock .currimgs {
  flex: 0 0 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.portl .currblock .currimgs .imgbig {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.portl .currblock .currimgs .imgbig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.portl .currblock .currimgs .imgsm {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portl .currblock .currimgs .imgsm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.portl .currblock .currtxt {
  flex: 1 1 0;
}

.portl .currblock .currtxt .secmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.portl .currblock .currtxt .secmark .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #54BF97;
  flex-shrink: 0;
}

.portl .currblock .currtxt .secmark span {
  font-size: 15px;
  color: #54BF97;
  font-weight: 700;
  text-transform: uppercase;
}

.portl .currblock .currtxt h2 {
  font-size: 31px;
  line-height: 1.1;
  color: #1d2b22;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}

.portl .currblock .currtxt p {
  font-size: 18px;
  line-height: 1.8;
  color: #3a4a40;
  margin: 0 0 24px 0;
  text-align: justify;
}

.portl .currblock .currtxt .metarow {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.portl .currblock .currtxt .metaitem {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.portl .currblock .currtxt .metaitem .metanum {
  font-size: 31px;
  line-height: 1.1;
  color: #54BF97;
  font-weight: 900;
}

.portl .currblock .currtxt .metaitem .metalbl {
  font-size: 15px;
  line-height: 1.5;
  color: #3a4a40;
}

.portl .gradblock {
  background: linear-gradient(168deg, #54BF97 0%, #9CD0B7 55%, #EEF4F2 100%);
  padding: 72px 40px;
  position: relative;
}

.portl .gradblock .vign2 {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 0% 0%, rgba(0, 40, 20, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(0, 40, 20, 0.10) 0%, transparent 55%);
}

.portl .gradblock .gradinner {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.portl .gradblock h2 {
  font-size: 31px;
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 40px 0;
  max-width: 600px;
}

.portl .gradblock .outcomerow {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.portl .gradblock .outcard {
  flex: 1 1 240px;
  background: rgba(255, 255, 255, 0.22);
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(6px);
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.portl .gradblock .outcard:hover {
  background: rgba(255, 255, 255, 0.34);
  transform: translateY(-3px);
}

.portl .gradblock .outcard h5 {
  font-size: 15px;
  line-height: 1.5;
  color: #1d2b22;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.portl .gradblock .outcard p {
  font-size: 15px;
  line-height: 1.8;
  color: #1d2b22;
  margin: 0;
  text-align: justify;
}

.portl .gradblock .imgrow {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 40px;
}

.portl .gradblock .imgrow .grimg {
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 0;
}

.portl .gradblock .imgrow .grimg img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
}

.portl .teamblock {
  background: #1d2b22;
  padding: 72px 40px;
  position: relative;
}

.portl .teamblock .vign3 {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.28) 100%);
}

.portl .teamblock .teaminner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.portl .teamblock .teamtxt {
  flex: 1 1 0;
}

.portl .teamblock .teamtxt .secmark2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.portl .teamblock .teamtxt .secmark2 .bar2 {
  width: 32px;
  height: 3px;
  background: #54BF97;
  border-radius: 3px;
}

.portl .teamblock .teamtxt .secmark2 span {
  font-size: 15px;
  color: #9CD0B7;
  font-weight: 700;
  text-transform: uppercase;
}

.portl .teamblock .teamtxt h2 {
  font-size: 31px;
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}

.portl .teamblock .teamtxt p {
  font-size: 18px;
  line-height: 1.8;
  color: #9CD0B7;
  margin: 0 0 24px 0;
  text-align: justify;
}

.portl .teamblock .teamtxt .credlist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portl .teamblock .teamtxt .credlist li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.portl .teamblock .teamtxt .credlist li .credico {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #54BF97;
  flex-shrink: 0;
  margin-top: 8px;
}

.portl .teamblock .teamtxt .credlist li span {
  font-size: 15px;
  line-height: 1.8;
  color: #9CD0B7;
}

.portl .teamblock .teamprofile {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portl .teamblock .teamprofile .portwrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: 2px 9px 44px 0 rgba(84, 191, 151, 0.12);
}

.portl .teamblock .teamprofile .portwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.portl .teamblock .teamprofile .portname {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  font-weight: 700;
  margin: 0;
}

.portl .teamblock .teamprofile .portrole {
  font-size: 15px;
  line-height: 1.5;
  color: #9CD0B7;
  margin: 0;
}

.portl .expblock {
  background: #fff;
  padding: 72px 40px;
  position: relative;
}

.portl .expblock .expinner {
  max-width: 1366px;
  margin: 0 auto;
}

.portl .expblock .exphead {
  margin-bottom: 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 40px;
}

.portl .expblock .exphead h2 {
  font-size: 31px;
  line-height: 1.1;
  color: #1d2b22;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  flex: 1 1 0;
}

.portl .expblock .exphead p {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4a40;
  margin: 0;
  flex: 1 1 0;
  text-align: justify;
}

.portl .expblock .expgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.portl .expblock .expitem {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 10px;
  background: #EEF4F2;
  transition: box-shadow 0.28s cubic-bezier(0.0, 0, 0.2, 1), transform 0.28s cubic-bezier(0.0, 0, 0.2, 1);
}

.portl .expblock .expitem:hover {
  box-shadow: 2px 6px 18px 0 rgba(156, 208, 183, 0.09);
  transform: translateY(-2px);
}

.portl .expblock .expitem .expimg {
  width: 120px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portl .expblock .expitem .expimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.portl .expblock .expitem .exptxt {
  flex: 1 1 0;
}

.portl .expblock .expitem .exptxt .expname {
  font-size: 15px;
  line-height: 1.5;
  color: #1d2b22;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.portl .expblock .expitem .exptxt .exprole {
  font-size: 15px;
  line-height: 1.5;
  color: #54BF97;
  margin: 0 0 8px 0;
}

.portl .expblock .expitem .exptxt p {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4a40;
  margin: 0;
  text-align: justify;
}

.portl .expblock .expitem .exptxt .stars {
  display: flex;
  flex-direction: row;
  gap: 4px;
  margin-bottom: 8px;
}

.portl .expblock .expitem .exptxt .stars svg {
  width: 14px;
  height: 14px;
  fill: #54BF97;
}

@media (max-width: 1280px) {
  .portl .titblock .maintit {
    font-size: 72px;
  }

  .portl .titblock .imgstrip {
    width: 280px;
  }

  .portl .currblock .currimgs {
    flex: 0 0 400px;
  }

  .portl .teamblock .teamprofile {
    flex: 0 0 240px;
  }
}

@media (max-width: 768px) {
  .portl .titblock {
    flex-direction: column;
    padding: 40px 24px;
  }

  .portl .titblock .textside {
    padding-right: 0;
    margin-bottom: 24px;
  }

  .portl .titblock .maintit {
    font-size: 31px;
  }

  .portl .titblock .imgstrip {
    width: 100%;
  }

  .portl .titblock .imgstrip .imgwrap {
    min-height: 260px;
  }

  .portl .condblock {
    padding: 40px 24px;
  }

  .portl .condblock .condhead {
    flex-direction: column;
    gap: 16px;
  }

  .portl .condblock .condgrid {
    grid-template-columns: 1fr;
  }

  .portl .currblock {
    padding: 40px 24px;
  }

  .portl .currblock .currinner {
    flex-direction: column;
  }

  .portl .currblock .currimgs {
    flex: none;
    width: 100%;
  }

  .portl .gradblock {
    padding: 40px 24px;
  }

  .portl .gradblock .imgrow {
    flex-direction: column;
  }

  .portl .teamblock {
    padding: 40px 24px;
  }

  .portl .teamblock .teaminner {
    flex-direction: column-reverse;
  }

  .portl .teamblock .teamprofile {
    flex: none;
    width: 100%;
    max-width: 280px;
  }

  .portl .expblock {
    padding: 40px 24px;
  }

  .portl .expblock .exphead {
    flex-direction: column;
    gap: 16px;
  }

  .portl .expblock .expgrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .portl .titblock .maintit {
    font-size: 23px;
  }

  .portl .condblock .condhead .bigpunct {
    font-size: 31px;
  }

  .portl .titblock .actlinks {
    flex-direction: column;
  }

  .portl .titblock .actlinks a {
    text-align: center;
  }

  .portl .currblock .currimgs {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .portl .currblock .currimgs .imgbig {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4/3;
  }

  .portl .gradblock .outcomerow {
    flex-direction: column;
  }

  .portl .expblock .expitem {
    flex-direction: column;
  }

  .portl .expblock .expitem .expimg {
    width: 100%;
  }
}

.successPage {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 24px;
  background-color: #EEF4F2;
}

.successPage .successCard {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 2px 9px 44px 0 rgba(84, 191, 151, 0.12);
  padding: 72px 40px;
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.successPage .successIcon {
  width: 72px;
  height: 72px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.successPage .successIcon svg {
  width: 72px;
  height: 72px;
}

.successPage .successHeading {
  font-size: 31px;
  line-height: 1.1;
  color: #1b3a2f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 24px;
}

.successPage .successText {
  font-size: 18px;
  line-height: 1.8;
  color: #2c4a3e;
  margin: 0 0 40px;
  text-align: justify;
}

.successPage .successDivider {
  width: 48px;
  height: 3px;
  background: #54BF97;
  border-radius: 3px;
  margin: 0 auto 40px;
}

.successPage .successMeta {
  font-size: 15px;
  line-height: 1.5;
  color: #4a7a63;
  margin: 0 0 40px;
}

.successPage .successMeta span {
  display: block;
  margin-top: 8px;
}

.successPage .successLink {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  color: #1b3a2f;
  border: 2px solid #54BF97;
  border-radius: 10px;
  padding: 16px 40px;
  text-decoration: none;
  transition: background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
}

.successPage .successLink:hover,
.successPage .successLink:focus {
  background-color: #54BF97;
  color: #ffffff;
  outline: none;
}

.successPage .successLink:focus-visible {
  box-shadow: 0 0 0 3px rgba(84, 191, 151, 0.38);
}

@media (max-width: 480px) {
  .successPage {
    padding: 40px 16px;
  }

  .successPage .successCard {
    padding: 40px 24px;
  }

  .successPage .successHeading {
    font-size: 23px;
  }

  .successPage .successText {
    font-size: 15px;
  }
}