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

body {
  font-family: 'Karla', sans-serif;
}

.hd-bar {
  background: linear-gradient(135deg, #ffffff 0%, #F0F5F5 60%, #e8f4f1 100%);
  border-bottom: 2px solid #83C6CE;
  box-shadow: -1px 5px 25px 0 rgba(70, 180, 138, 0.11);
  position: relative;
}

.hd-bar-deck {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.brand-img-cell {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 0 0 2px rgba(70, 180, 138, 0.28), -1px 5px 25px 0 rgba(70, 180, 138, 0.11);
  background: #ffffff;
  padding: 8px;
  flex-shrink: 0;
}

.brand-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

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

.brand-name {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.1;
  color: #1b3a2f;
  letter-spacing: 0.01em;
}

.brand-tagline {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #46B48A;
  font-style: italic;
}

.hd-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hd-nav-link {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #1b3a2f;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: color 0.5s ease-in-out, border-color 0.55s ease-in-out, background 0.5s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}

.hd-nav-link:hover {
  color: #46B48A;
  border-color: rgba(70, 180, 138, 0.3);
  background: rgba(70, 180, 138, 0.06);
}

.hd-nav-link:focus {
  outline: 2px solid #46B48A;
  outline-offset: 2px;
  transform: scale(1.02);
}

.hd-nav-link[data-current="true"] {
  color: #46B48A;
  border-color: rgba(70, 180, 138, 0.4);
  background: rgba(70, 180, 138, 0.08);
}

.hd-accent-strip {
  height: 4px;
  background: linear-gradient(90deg, #46B48A 0%, #83C6CE 100%);
}

@media (max-width: 1024px) {
  .hd-bar-deck {
    padding: 16px 28px;
    gap: 16px;
  }

  .hd-nav {
    gap: 4px;
  }

  .hd-nav-link {
    font-size: 13px;
    padding: 8px 8px;
  }
}

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

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

@media (max-width: 480px) {
  .brand-img-cell {
    width: 64px;
    height: 64px;
  }

  .brand-name {
    font-size: 18px;
  }

  .hd-nav-link {
    font-size: 13px;
    padding: 8px;
    min-height: 44px;
  }
}

.ft-bar {
  background: #0f2a20;
  border-top: 3px solid #46B48A;
}

.ft-bar-deck {
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 28px 28px;
}

.ft-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(131, 198, 206, 0.2);
}

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

.ft-img-cell {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 0 0 2px rgba(131, 198, 206, 0.35), -1px 5px 25px 0 rgba(70, 180, 138, 0.11);
  background: rgba(255, 255, 255, 0.07);
  padding: 8px;
  flex-shrink: 0;
}

.ft-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ft-brand-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ft-brand-name {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
}

.ft-brand-sub {
  font-size: 13px;
  line-height: 1.4;
  color: #83C6CE;
  font-style: italic;
}

.ft-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
}

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

.ft-col-head {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  color: #46B48A;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ft-col-link {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.5s ease-in-out;
  display: inline-block;
}

.ft-col-link:hover {
  color: #83C6CE;
}

.ft-col-link:focus {
  outline: 2px solid #46B48A;
  outline-offset: 2px;
  transform: scale(1.02);
  color: #83C6CE;
}

.ft-contact-item {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: block;
  transition: color 0.5s ease-in-out;
}

.ft-contact-item:hover {
  color: #83C6CE;
}

.ft-contact-item:focus {
  outline: 2px solid #46B48A;
  outline-offset: 2px;
  transform: scale(1.02);
}

.ft-contact-label {
  font-size: 13px;
  color: #46B48A;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.ft-addr {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
}

.ft-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ft-copy {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.45);
}

.ft-policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ft-policy-link {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.5s ease-in-out;
}

.ft-policy-link:hover {
  color: #83C6CE;
}

.ft-policy-link:focus {
  outline: 2px solid #46B48A;
  outline-offset: 2px;
  transform: scale(1.02);
  color: #83C6CE;
}

@media (max-width: 768px) {
  .ft-top {
    flex-direction: column;
  }

  .ft-cols {
    gap: 28px;
  }

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

@media (max-width: 480px) {
  .ft-bar-deck {
    padding: 28px 16px 16px;
  }

  .ft-img-cell {
    width: 64px;
    height: 64px;
  }

  .ft-brand-name {
    font-size: 18px;
  }
}

.ck-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #0f2a20;
  border-top: 2px solid #46B48A;
  box-shadow: -1px 10px 40px 0 rgba(70, 180, 138, 0.11);
}

.ck-bar[data-visible="true"] {
  display: flex;
}

.ck-bar-deck {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}

.ck-body {
  flex: 1;
  min-width: 200px;
}

.ck-uses {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}

.ck-uses li {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  padding-left: 12px;
}

.ck-uses li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #46B48A;
}

.ck-intro {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.ck-toggle-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.ck-toggle-label {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.ck-toggle-label input[type="checkbox"] {
  accent-color: #46B48A;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.ck-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.ck-accept {
  font-size: 15px;
  font-weight: 700;
  color: #0f2a20;
  background: #46B48A;
  border: none;
  border-radius: 6px;
  padding: 8px 28px;
  cursor: pointer;
  min-height: 44px;
  transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: 'Karla', sans-serif;
}

.ck-accept:hover {
  background: #3a9e78;
}

.ck-accept:focus {
  outline: 2px solid #83C6CE;
  outline-offset: 2px;
  transform: scale(1.02);
}

.ck-accept:active {
  box-shadow: inset -1px 3px 2px 0 rgba(70, 180, 138, 0.06);
}

.ck-decline {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px 8px;
  min-height: 44px;
  transition: color 0.5s ease-in-out;
  font-family: 'Karla', sans-serif;
}

.ck-decline:hover {
  color: #83C6CE;
}

.ck-decline:focus {
  outline: 2px solid #46B48A;
  outline-offset: 2px;
  transform: scale(1.02);
}

.ck-policy-ref {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.4);
  width: 100%;
}

.ck-policy-ref a {
  color: #83C6CE;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.5s ease-in-out;
}

.ck-policy-ref a:hover {
  color: #46B48A;
}

.ck-fade {
  opacity: 0;
  transition: opacity 0.45s ease-in-out;
}

.ck-fade-in {
  opacity: 1;
}

@media (max-width: 768px) {
  .ck-bar-deck {
    padding: 16px;
  }

  .ck-actions {
    align-items: flex-start;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.doc-inner-dm {
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 28px;
}

.doc-inner-dm p {
  font-size: 15px;
  line-height: 1.7;
  color: #2d3a35;
  margin-bottom: 16px;
}

.doc-inner-dm strong,
.doc-inner-dm b {
  font-weight: 700;
  color: #1e2e28;
}

.doc-inner-dm em,
.doc-inner-dm i {
  font-style: italic;
  color: #2d3a35;
}

.doc-inner-dm a {
  color: #46B48A;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.5s ease-in-out, text-decoration-color 0.45s ease-in-out;
}

.doc-inner-dm a:hover {
  color: #3a9a75;
  text-decoration-color: #83C6CE;
}

.doc-inner-dm a:visited {
  color: #3a9a75;
}

.doc-inner-dm table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  box-shadow: -1px 5px 25px 0 rgba(70, 180, 138, 0.11);
  border-radius: 10px;
  overflow: hidden;
}

.doc-inner-dm thead {
  background-color: #46B48A;
}

.doc-inner-dm thead tr {
  border-bottom: none;
}

.doc-inner-dm thead th {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  text-align: left;
}

.doc-inner-dm tbody tr {
  border-bottom: 1px solid #d6eae5;
  transition: background-color 0.5s ease-in-out;
}

.doc-inner-dm tbody tr:last-child {
  border-bottom: none;
}

.doc-inner-dm tbody tr:nth-child(even) {
  background-color: #F0F5F5;
}

.doc-inner-dm tbody tr:hover {
  background-color: #e2f0ec;
}

.doc-inner-dm td {
  padding: 16px 28px;
  font-size: 15px;
  line-height: 1.7;
  color: #2d3a35;
  vertical-align: top;
}

.doc-inner-dm hr {
  border: none;
  border-top: 1px solid #c8ddd8;
  margin: 56px 0;
}

.doc-inner-dm div {
  font-size: 15px;
  line-height: 1.7;
  color: #2d3a35;
}

@media (max-width: 768px) {
  .doc-inner-dm {
    padding: 28px 16px;
  }

  .doc-inner-dm p {
    font-size: 15px;
  }

  .doc-inner-dm table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 6px;
  }

  .doc-inner-dm thead th,
  .doc-inner-dm td {
    padding: 16px;
  }

  .doc-inner-dm hr {
    margin: 28px 0;
  }
}

@media (max-width: 480px) {
  .doc-inner-dm {
    padding: 28px 8px;
  }

  .doc-inner-dm p,
  .doc-inner-dm div,
  .doc-inner-dm td {
    font-size: 13px;
  }

  .doc-inner-dm thead th {
    font-size: 13px;
    padding: 16px 8px;
  }

  .doc-inner-dm td {
    padding: 8px;
  }
}

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

.ld-root .ed-col {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

.ld-root ::selection {
  background: #46B48A;
  color: #fff;
}

.ld-root .accent-line-head {
  padding-left: 16px;
  border-left: 3px solid #46B48A;
  display: inline-block;
}

.ld-root .band-div {
  height: 4px;
  background: linear-gradient(277deg, #46B48A 0%, #83C6CE 60%, #F0F5F5 100%);
  width: 100%;
}

.ld-root .title-blk {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #fff;
  position: relative;
}

.ld-root .title-blk .ed-col {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
}

.ld-root .title-blk__text {
  flex: 1 1 0;
  position: relative;
  padding-top: 28px;
}

.ld-root .title-blk__deco {
  position: absolute;
  top: -16px;
  left: -28px;
  font-size: 220px;
  line-height: 1.1;
  color: #F0F5F5;
  font-weight: 900;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  letter-spacing: -8px;
}

.ld-root .title-blk__label {
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #46B48A;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.ld-root .title-blk__h1 {
  font-size: 62px;
  line-height: 1.1;
  color: #1b2a28;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.ld-root .title-blk__h2 {
  font-size: 23px;
  line-height: 1.4;
  color: #2e4a45;
  font-weight: 400;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.ld-root .title-blk__desc {
  font-size: 15px;
  line-height: 1.7;
  color: #3a5250;
  max-width: 480px;
  position: relative;
  z-index: 1;
}

.ld-root .title-blk__cta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 15px;
  font-weight: 600;
  color: #46B48A;
  text-decoration: none;
  border-bottom: 2px solid #83C6CE;
  padding-bottom: 4px;
  transition: color 0.5s ease-in-out, border-color 0.5s ease-in-out;
  position: relative;
  z-index: 1;
}

.ld-root .title-blk__cta svg {
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ld-root .title-blk__cta:hover svg {
  transform: translateX(6px);
}

.ld-root .title-blk__cta:hover {
  color: #2e4a45;
  border-color: #46B48A;
}

.ld-root .title-blk__imgs {
  flex: 1 1 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
}

.ld-root .title-blk__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: -1px 5px 25px 0 rgba(70, 180, 138, 0.11);
}

.ld-root .title-blk__img-wrap.tall {
  grid-row: span 2;
}

.ld-root .title-blk__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.7) brightness(0.95);
  transition: filter 0.55s ease-in-out;
  max-width: 100%;
}

.ld-root .title-blk__img-wrap:hover img {
  filter: saturate(1) brightness(1);
}

.ld-root .title-blk__img-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(70, 180, 138, 0.88);
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  padding: 8px 16px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ld-root .title-blk__img-wrap:hover .title-blk__img-cap {
  transform: translateY(0);
}

.ld-root .title-blk__img-wrap.tall {
  min-height: 320px;
}

.ld-root .title-blk__img-wrap:not(.tall) {
  min-height: 150px;
}

.ld-root .avail-sec {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #F0F5F5;
}

.ld-root .avail-sec__intro {
  max-width: 600px;
  margin-bottom: 56px;
}

.ld-root .avail-sec__intro p {
  font-size: 15px;
  line-height: 1.7;
  color: #2e4a45;
  margin-top: 16px;
}

.ld-root .avail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ld-root .avail-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: -1px 3px 2px 0 rgba(70, 180, 138, 0.06);
  transition: box-shadow 0.5s ease-in-out, transform 0.5s ease-in-out;
  position: relative;
}

.ld-root .avail-card:hover {
  box-shadow: -1px 10px 40px 0 rgba(70, 180, 138, 0.11);
  transform: translateY(-4px);
}

.ld-root .avail-card__num {
  font-size: 45px;
  line-height: 1.1;
  font-weight: 800;
  color: #46B48A;
  margin-bottom: 8px;
  display: block;
}

.ld-root .avail-card__head {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #1b2a28;
  margin-bottom: 8px;
}

.ld-root .avail-card__txt {
  font-size: 13px;
  line-height: 1.7;
  color: #3a5250;
}

.ld-root .longval-sec {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #fff;
}

.ld-root .longval-sec .ed-col {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: center;
}

.ld-root .longval-img-side {
  flex: 0 0 420px;
  position: relative;
}

.ld-root .longval-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: -1px 10px 40px 0 rgba(131, 198, 206, 0.11);
  position: relative;
}

.ld-root .longval-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.75);
  transition: filter 0.6s ease-in-out;
  max-width: 100%;
}

.ld-root .longval-img-wrap:hover img {
  filter: saturate(1);
}

.ld-root .longval-img-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(70, 180, 138, 0.9);
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  padding: 8px 16px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ld-root .longval-img-wrap:hover .longval-img-cap {
  transform: translateY(0);
}

.ld-root .longval-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: #46B48A;
  color: #fff;
  border-radius: 10px;
  padding: 16px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  box-shadow: -1px 5px 25px 0 rgba(70, 180, 138, 0.11);
  animation: shadow-pulse 2.2s ease-in-out infinite;
  max-width: 120px;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: -1px 5px 25px 0 rgba(70, 180, 138, 0.11);
  }

  50% {
    box-shadow: -1px 10px 40px 0 rgba(70, 180, 138, 0.28);
  }

  100% {
    box-shadow: -1px 5px 25px 0 rgba(70, 180, 138, 0.11);
  }
}

.ld-root .longval-text {
  flex: 1 1 0;
}

.ld-root .longval-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #3a5250;
  margin-top: 16px;
}

.ld-root .longval-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ld-root .longval-item {
  background: #F0F5F5;
  border-radius: 6px;
  padding: 16px 28px;
  font-size: 15px;
  line-height: 1.7;
  color: #2e4a45;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.ld-root .longval-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: #46B48A;
  flex-shrink: 0;
  margin-top: 8px;
}

.ld-root .grad-sec {
  padding-top: 56px;
  padding-bottom: 56px;
  background: linear-gradient(277deg, #46B48A 0%, #83C6CE 55%, #F0F5F5 100%);
}

.ld-root .grad-sec__head-wrap {
  text-align: center;
  margin-bottom: 56px;
}

.ld-root .grad-sec__h {
  font-size: 45px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.ld-root .grad-sec__sub {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.ld-root .grad-steps {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: stretch;
}

.ld-root .grad-step {
  flex: 1 1 0;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  padding: 28px;
  box-shadow: -1px 5px 25px 0 rgba(70, 180, 138, 0.11);
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.ld-root .grad-step:hover {
  transform: translateY(-6px);
  box-shadow: -1px 10px 40px 0 rgba(70, 180, 138, 0.11);
}

.ld-root .grad-step__num {
  font-size: 62px;
  line-height: 1.1;
  font-weight: 900;
  color: #F0F5F5;
  margin-bottom: 8px;
}

.ld-root .grad-step__head {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #1b2a28;
  margin-bottom: 8px;
  padding-left: 16px;
  border-left: 3px solid #46B48A;
}

.ld-root .grad-step__txt {
  font-size: 13px;
  line-height: 1.7;
  color: #3a5250;
  flex: 1 1 auto;
}

.ld-root .team-sec {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #fff;
}

.ld-root .team-sec .ed-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.ld-root .team-intro p {
  font-size: 15px;
  line-height: 1.7;
  color: #3a5250;
  margin-top: 16px;
}

.ld-root .team-profiles {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ld-root .team-profile {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  background: #F0F5F5;
  border-radius: 10px;
  padding: 16px;
  box-shadow: -1px 3px 2px 0 rgba(70, 180, 138, 0.06);
  transition: box-shadow 0.5s ease-in-out;
}

.ld-root .team-profile:hover {
  box-shadow: -1px 5px 25px 0 rgba(70, 180, 138, 0.11);
}

.ld-root .team-portrait {
  width: 80px;
  height: 103px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.ld-root .team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
}

.ld-root .team-bio__name {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #1b2a28;
  margin-bottom: 4px;
}

.ld-root .team-bio__role {
  font-size: 13px;
  line-height: 1.4;
  color: #46B48A;
  font-weight: 600;
  margin-bottom: 8px;
}

.ld-root .team-bio__desc {
  font-size: 13px;
  line-height: 1.7;
  color: #3a5250;
}

.ld-root .rep-sec {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #1b2a28;
}

.ld-root .rep-sec__head-wrap {
  margin-bottom: 56px;
}

.ld-root .rep-sec__h {
  font-size: 45px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 3px solid #46B48A;
}

.ld-root .rep-sec__sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
}

.ld-root .rep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ld-root .rep-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: -1px 5px 25px 0 rgba(131, 198, 206, 0.11);
}

.ld-root .rep-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.6) brightness(0.85);
  transition: filter 0.6s ease-in-out;
  max-width: 100%;
}

.ld-root .rep-item:hover img {
  filter: saturate(0.9) brightness(1);
}

.ld-root .rep-item__cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(70, 180, 138, 0.92);
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  padding: 8px 16px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ld-root .rep-item:hover .rep-item__cap {
  transform: translateY(0);
}

.ld-root .rep-stats {
  margin-top: 56px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.ld-root .rep-stat {
  flex: 1 1 0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  animation: shadow-pulse 2.8s ease-in-out infinite;
}

.ld-root .rep-stat__val {
  font-size: 45px;
  line-height: 1.1;
  font-weight: 900;
  color: #46B48A;
  display: block;
  margin-bottom: 8px;
}

.ld-root .rep-stat__lbl {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

.ld-root .comm-sec {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #F0F5F5;
}

.ld-root .comm-sec .ed-col {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
}

.ld-root .comm-text {
  flex: 1 1 0;
}

.ld-root .comm-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #3a5250;
  margin-top: 16px;
}

.ld-root .comm-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 15px;
  font-weight: 600;
  color: #46B48A;
  text-decoration: none;
  position: relative;
}

.ld-root .comm-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #46B48A;
  transition: width 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ld-root .comm-link:hover::after {
  width: 100%;
}

.ld-root .comm-link svg {
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ld-root .comm-link:hover svg {
  transform: translateX(6px);
}

.ld-root .comm-aside {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ld-root .comm-fact {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: -1px 3px 2px 0 rgba(70, 180, 138, 0.06);
  transition: box-shadow 0.5s ease-in-out;
}

.ld-root .comm-fact:hover {
  box-shadow: -1px 10px 40px 0 rgba(70, 180, 138, 0.11);
}

.ld-root .comm-fact__num {
  font-size: 45px;
  line-height: 1.1;
  font-weight: 900;
  color: #46B48A;
  display: block;
  margin-bottom: 4px;
}

.ld-root .comm-fact__lbl {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: #1b2a28;
  margin-bottom: 8px;
  display: block;
}

.ld-root .comm-fact__desc {
  font-size: 13px;
  line-height: 1.7;
  color: #3a5250;
}

.ld-root .hl-link {
  color: #2e4a45;
  text-decoration: none;
  background-image: linear-gradient(277deg, #83C6CE 0%, #46B48A 100%);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.55s ease-in-out, color 0.45s ease-in-out;
  padding-bottom: 2px;
}

.ld-root .hl-link:hover {
  background-size: 100% 2px;
  color: #46B48A;
}

@media (max-width: 1024px) {
  .ld-root .title-blk .ed-col {
    flex-direction: column;
    gap: 28px;
  }

  .ld-root .title-blk__h1 {
    font-size: 45px;
  }

  .ld-root .title-blk__deco {
    font-size: 140px;
  }

  .ld-root .avail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ld-root .longval-sec .ed-col {
    flex-direction: column;
    gap: 28px;
  }

  .ld-root .longval-img-side {
    flex: 0 0 auto;
    width: 100%;
  }

  .ld-root .grad-steps {
    flex-direction: column;
    gap: 16px;
  }

  .ld-root .team-sec .ed-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ld-root .rep-grid {
    grid-template-columns: 1fr;
  }

  .ld-root .comm-sec .ed-col {
    flex-direction: column;
    gap: 28px;
  }

  .ld-root .comm-aside {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .ld-root .title-blk__h1 {
    font-size: 45px;
  }

  .ld-root .avail-grid {
    grid-template-columns: 1fr;
  }

  .ld-root .rep-stats {
    flex-direction: column;
  }

  .ld-root .title-blk__imgs {
    grid-template-columns: 1fr 1fr;
  }

  .ld-root .longval-badge {
    position: static;
    margin-top: 16px;
    max-width: 100%;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .ld-root .title-blk__h1 {
    font-size: 45px;
  }

  .ld-root .title-blk__deco {
    font-size: 90px;
  }

  .ld-root .grad-sec__h {
    font-size: 45px;
  }

  .ld-root .title-blk__imgs {
    grid-template-columns: 1fr;
  }

  .ld-root .title-blk__img-wrap.tall {
    grid-row: span 1;
  }
}

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

.abt-pg ::selection {
  background: #46B48A;
  color: #fff;
}

.abt-pg .pg-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.abt-pg .grad-divider {
  height: 2px;
  background: linear-gradient(277deg, #46B48A 0%, #46B48A 30%, #83C6CE 100%);
  border: none;
  margin: 0;
}

.abt-pg .wavy-top {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}

.abt-pg .wavy-top svg {
  display: block;
  width: 100%;
}

.abt-pg .wavy-bottom {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.abt-pg .wavy-bottom svg {
  display: block;
  width: 100%;
}

@keyframes flicker-bg {
  0% {
    opacity: 1;
  }

  18% {
    opacity: 0.97;
  }

  35% {
    opacity: 1;
  }

  52% {
    opacity: 0.95;
  }

  67% {
    opacity: 1;
  }

  83% {
    opacity: 0.98;
  }

  100% {
    opacity: 1;
  }
}

.abt-pg .ident-block {
  padding: 56px 0 56px;
  background: #fff;
  text-align: center;
  position: relative;
}

.abt-pg .ident-block .frame-lines {
  position: absolute;
  inset: 28px;
  pointer-events: none;
}

.abt-pg .ident-block .frame-lines::before,
.abt-pg .ident-block .frame-lines::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
}

.abt-pg .ident-block .frame-lines::before {
  top: 0;
  left: 0;
  border-top: 1px solid #83C6CE;
  border-left: 1px solid #83C6CE;
}

.abt-pg .ident-block .frame-lines::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid #83C6CE;
  border-right: 1px solid #83C6CE;
}

.abt-pg .ident-block .frame-lines-b::before,
.abt-pg .ident-block .frame-lines-b::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
}

.abt-pg .ident-block .frame-lines-b::before {
  top: 0;
  right: 0;
  border-top: 1px solid #83C6CE;
  border-right: 1px solid #83C6CE;
}

.abt-pg .ident-block .frame-lines-b::after {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #83C6CE;
  border-left: 1px solid #83C6CE;
}

.abt-pg .ident-block .frame-lines-b {
  position: absolute;
  inset: 28px;
  pointer-events: none;
}

.abt-pg .ident-block .eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #46B48A;
  margin-bottom: 16px;
  display: block;
}

.abt-pg .ident-block .main-heading {
  font-size: 62px;
  line-height: 1.1;
  color: #1e2d2a;
  margin-bottom: 16px;
}

.abt-pg .ident-block .main-heading .phrase-accent {
  display: inline;
  background: linear-gradient(277deg, #46B48A 0%, #83C6CE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abt-pg .ident-block .sub-line {
  font-size: 18px;
  line-height: 1.7;
  color: #3a4a47;
  max-width: 560px;
  margin: 0 auto 56px;
}

.abt-pg .ident-block .hero-img-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: -1px 10px 40px 0 rgba(70, 180, 138, 0.11);
}

.abt-pg .ident-block .hero-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(0px);
  transition: filter 0.55s ease-in-out;
}

.abt-pg .ident-block .hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(277deg, rgba(70, 180, 138, 0.18) 0%, rgba(131, 198, 206, 0.14) 100%);
  pointer-events: none;
}

.abt-pg .ident-block .hero-img-wrap:hover img {
  filter: blur(2px);
}

.abt-pg .depth-block {
  padding: 56px 0;
  background: #F0F5F5;
  position: relative;
}

.abt-pg .depth-block .inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.abt-pg .depth-block .col-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.abt-pg .depth-block .col-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.abt-pg .depth-block .block-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #46B48A;
  display: block;
  margin-bottom: 8px;
}

.abt-pg .depth-block .sec-heading {
  font-size: 45px;
  line-height: 1.1;
  color: #1e2d2a;
  position: relative;
  padding-left: 16px;
}

.abt-pg .depth-block .sec-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(277deg, #46B48A 0%, #83C6CE 100%);
  border-radius: 0px;
}

.abt-pg .depth-block .body-text {
  font-size: 15px;
  line-height: 1.7;
  color: #2e3d3a;
}

.abt-pg .depth-block .body-text .num-accent {
  color: #46B48A;
  font-size: 18px;
}

.abt-pg .depth-block .marker-phrase {
  display: inline;
  background: linear-gradient(277deg, rgba(70, 180, 138, 0.38) 0%, rgba(131, 198, 206, 0.22) 100%);
  padding: 2px 4px;
  border-radius: 0px;
}

.abt-pg .depth-block .stat-row {
  display: flex;
  flex-direction: row;
  gap: 28px;
}

.abt-pg .depth-block .stat-card {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 28px 16px;
  box-shadow: -1px 5px 25px 0 rgba(70, 180, 138, 0.11);
  text-align: center;
  transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-pg .depth-block .stat-card:hover {
  background: rgba(240, 245, 245, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: -1px 10px 40px 0 rgba(70, 180, 138, 0.11);
}

.abt-pg .depth-block .stat-num {
  font-size: 45px;
  line-height: 1.1;
  color: #46B48A;
  display: block;
}

.abt-pg .depth-block .stat-desc {
  font-size: 13px;
  line-height: 1.4;
  color: #3a4a47;
  margin-top: 8px;
  display: block;
}

.abt-pg .depth-block .img-content-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: -1px 5px 25px 0 rgba(131, 198, 206, 0.11);
}

.abt-pg .depth-block .img-content-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-pg .depth-block .img-content-wrap:hover img {
  transform: scale(1.03);
}

.abt-pg .depth-block .img-content-wrap .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(277deg, rgba(70, 180, 138, 0.15) 0%, rgba(131, 198, 206, 0.22) 100%);
  pointer-events: none;
  animation: flicker-bg 7s ease-in-out infinite;
}

.abt-pg .depth-block .team-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.abt-pg .depth-block .person-card {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: -1px 3px 2px 0 rgba(70, 180, 138, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.5s ease-in-out, background 0.55s ease-in-out;
}

.abt-pg .depth-block .person-card:hover {
  background: rgba(240, 245, 245, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: -1px 5px 25px 0 rgba(70, 180, 138, 0.11);
}

.abt-pg .depth-block .person-photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 6px;
  overflow: hidden;
}

.abt-pg .depth-block .person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.abt-pg .depth-block .person-name {
  font-size: 15px;
  line-height: 1.4;
  color: #1e2d2a;
}

.abt-pg .depth-block .person-role {
  font-size: 13px;
  line-height: 1.4;
  color: #46B48A;
}

.abt-pg .depth-block .person-note {
  font-size: 13px;
  line-height: 1.7;
  color: #3a4a47;
}

.abt-pg .depth-block .pullquote-wrap {
  background: linear-gradient(277deg, #46B48A 0%, #46B48A 35%, #83C6CE 100%);
  border-radius: 10px;
  padding: 28px;
  position: relative;
}

.abt-pg .depth-block .pullquote-wrap .pq-text {
  font-size: 23px;
  line-height: 1.4;
  color: #fff;
  position: relative;
  z-index: 1;
}

.abt-pg .depth-block .pullquote-wrap .pq-source {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
  display: block;
  position: relative;
  z-index: 1;
}

.abt-pg .depth-block .values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-pg .depth-block .val-item {
  background: #fff;
  border-radius: 10px;
  padding: 16px 28px;
  box-shadow: -1px 3px 2px 0 rgba(131, 198, 206, 0.06);
  transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-pg .depth-block .val-item:hover {
  background: rgba(240, 245, 245, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: -1px 5px 25px 0 rgba(131, 198, 206, 0.11);
}

.abt-pg .depth-block .val-item .val-heading {
  font-size: 15px;
  line-height: 1.4;
  color: #1e2d2a;
  margin-bottom: 4px;
  position: relative;
  padding-left: 16px;
}

.abt-pg .depth-block .val-item .val-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 2px;
  background: #46B48A;
  border-radius: 0px;
}

.abt-pg .depth-block .val-item .val-body {
  font-size: 13px;
  line-height: 1.7;
  color: #3a4a47;
  padding-left: 16px;
}

.abt-pg .depth-block .img-third-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: -1px 5px 25px 0 rgba(70, 180, 138, 0.11);
  position: relative;
}

.abt-pg .depth-block .img-third-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-pg .depth-block .img-third-wrap:hover img {
  transform: scale(1.04);
}

.abt-pg .depth-block .img-third-wrap .img-overlay-soft {
  position: absolute;
  inset: 0;
  background: linear-gradient(277deg, rgba(131, 198, 206, 0.2) 0%, rgba(70, 180, 138, 0.1) 100%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .abt-pg .depth-block .inner-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .abt-pg .ident-block .main-heading {
    font-size: 45px;
  }

  .abt-pg .depth-block .sec-heading {
    font-size: 45px;
  }
}

@media (max-width: 768px) {
  .abt-pg .ident-block .main-heading {
    font-size: 45px;
  }

  .abt-pg .ident-block .hero-img-wrap img {
    height: 300px;
  }

  .abt-pg .depth-block .stat-row {
    flex-direction: column;
    gap: 16px;
  }

  .abt-pg .depth-block .team-row {
    flex-direction: column;
    gap: 16px;
  }

  .abt-pg .depth-block .sec-heading {
    font-size: 23px;
  }
}

@media (max-width: 480px) {
  .abt-pg .ident-block {
    padding: 56px 0 28px;
  }

  .abt-pg .ident-block .main-heading {
    font-size: 23px;
  }

  .abt-pg .ident-block .sub-line {
    font-size: 15px;
  }

  .abt-pg .ident-block .hero-img-wrap img {
    height: 220px;
  }

  .abt-pg .depth-block {
    padding: 28px 0;
  }

  .abt-pg .depth-block .sec-heading {
    font-size: 23px;
  }

  .abt-pg .depth-block .pullquote-wrap .pq-text {
    font-size: 18px;
  }
}

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

.int-std__inner {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

.int-std__accent-text {
  color: #46B48A;
}

.int-std__accent-num {
  color: #46B48A;
  font-size: 45px;
  line-height: 1.1;
  font-weight: 700;
}

.int-std__lead {
  padding-top: 56px;
  padding-bottom: 56px;
  position: relative;
}

.int-std__lead-stripe {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.int-std__lead-stripe::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(277deg,
      transparent,
      transparent 18px,
      rgba(70, 180, 138, 0.045) 18px,
      rgba(70, 180, 138, 0.045) 20px);
}

.int-std__lead-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 56px;
}

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

.int-std__lead-kicker {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.int-std__lead-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #46B48A;
  flex-shrink: 0;
}

.int-std__lead-label {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #46B48A;
  font-weight: 600;
}

.int-std__lead-h1 {
  font-size: 62px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b2b24;
  margin-bottom: 28px;
}

.int-std__lead-punct {
  color: #46B48A;
}

.int-std__lead-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #2e4038;
  max-width: 520px;
  margin-bottom: 28px;
}

.int-std__lead-cta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: #46B48A;
  text-decoration: none;
  border-bottom: 2px solid #83C6CE;
  padding-bottom: 4px;
  transition: color 0.5s ease-in-out, border-color 0.5s ease-in-out;
}

.int-std__lead-cta:hover {
  color: #2e8a67;
  border-color: #46B48A;
}

.int-std__lead-cta-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.int-std__lead-cta:hover .int-std__lead-cta-icon {
  transform: translateX(6px);
}

.int-std__lead-img-col {
  flex: 0 0 340px;
  width: 340px;
}

.int-std__lead-img-frame {
  position: relative;
  width: 340px;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: -1px 10px 40px 0 rgba(70, 180, 138, 0.11);
}

.int-std__lead-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(27, 43, 36, 0.32) 100%);
  pointer-events: none;
}

.int-std__lead-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.int-std__lead-img-outer {
  position: relative;
}

.int-std__lead-img-outer::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(131, 198, 206, 0.35);
  border-radius: 10px;
  pointer-events: none;
}

.int-std__lead-img-outer::after {
  content: "";
  position: absolute;
  inset: -16px;
  border: 2px solid rgba(70, 180, 138, 0.15);
  border-radius: 10px;
  pointer-events: none;
}

.int-std__divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

.int-std__divider-line {
  flex: 1 1 0;
  height: 1px;
  background: #d4e8e0;
}

.int-std__divider-accent {
  flex: 0 0 80px;
  height: 2px;
  background: linear-gradient(277deg, #46B48A 0%, #83C6CE 100%);
  border-radius: 0;
}

.int-std__process {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #F0F5F5;
}

.int-std__process-head {
  margin-bottom: 56px;
}

.int-std__process-heading {
  font-size: 45px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b2b24;
  padding-left: 16px;
  border-left: none;
  position: relative;
  margin-bottom: 16px;
}

.int-std__process-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: linear-gradient(180deg, #46B48A 0%, #83C6CE 100%);
  border-radius: 0px;
}

.int-std__process-sub {
  font-size: 15px;
  line-height: 1.7;
  color: #3a5045;
  max-width: 560px;
}

.int-std__steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.int-std__step {
  background: #ffffff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: -1px 5px 25px 0 rgba(70, 180, 138, 0.11);
  transition: box-shadow 0.5s ease-in-out, background 0.5s ease-in-out;
  position: relative;
}

.int-std__step:hover {
  background: rgba(240, 245, 245, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: -1px 10px 40px 0 rgba(70, 180, 138, 0.11);
}

.int-std__step-num {
  font-size: 45px;
  line-height: 1.1;
  font-weight: 800;
  color: #46B48A;
  margin-bottom: 8px;
  display: block;
}

.int-std__step-title {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #1b2b24;
  margin-bottom: 8px;
}

.int-std__step-body {
  font-size: 15px;
  line-height: 1.7;
  color: #3a5045;
}

.int-std__step-tag {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.4;
  color: #46B48A;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.int-std__step-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #83C6CE;
  flex-shrink: 0;
}

.int-std__divider2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

.int-std__divider2-line {
  flex: 1 1 0;
  height: 1px;
  background: #d4e8e0;
}

.int-std__divider2-accent {
  flex: 0 0 56px;
  height: 2px;
  background: #83C6CE;
  border-radius: 0;
}

.int-std__faq {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #ffffff;
}

.int-std__faq-grid {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
}

.int-std__faq-aside {
  flex: 0 0 320px;
  width: 320px;
}

.int-std__faq-aside-heading {
  font-size: 45px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b2b24;
  margin-bottom: 16px;
  position: relative;
  padding-left: 16px;
}

.int-std__faq-aside-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: linear-gradient(180deg, #83C6CE 0%, #46B48A 100%);
  border-radius: 0px;
}

.int-std__faq-aside-text {
  font-size: 15px;
  line-height: 1.7;
  color: #3a5045;
  margin-bottom: 28px;
}

.int-std__faq-stat-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.int-std__faq-stat {
  background: #F0F5F5;
  border-radius: 6px;
  padding: 16px;
  box-shadow: -1px 3px 2px 0 rgba(70, 180, 138, 0.06);
}

.int-std__faq-stat-val {
  font-size: 45px;
  line-height: 1.1;
  font-weight: 800;
  color: #46B48A;
  display: block;
}

.int-std__faq-stat-label {
  font-size: 13px;
  line-height: 1.4;
  color: #2e4038;
  font-weight: 500;
}

.int-std__faq-list {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.int-std__faq-item {
  border-radius: 6px;
  border: 1px solid #d4e8e0;
  overflow: hidden;
  box-shadow: -1px 3px 2px 0 rgba(131, 198, 206, 0.06);
}

.int-std__faq-q {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 28px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: #1b2b24;
  list-style: none;
  transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
}

.int-std__faq-q::-webkit-details-marker {
  display: none;
}

.int-std__faq-q::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-right: 2px solid #46B48A;
  border-bottom: 2px solid #46B48A;
  transform: rotate(45deg);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: -4px;
}

.int-std__faq-item[open] .int-std__faq-q::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.int-std__faq-q:hover {
  background: rgba(240, 245, 245, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.int-std__faq-ans {
  font-size: 15px;
  line-height: 1.7;
  color: #3a5045;
  padding: 0 28px 16px 28px;
}

@keyframes vig-pulse {
  0% {
    opacity: 0.45;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 0.45;
  }
}

.int-std__process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(70, 180, 138, 0.07) 100%);
  animation: vig-pulse 6s ease-in-out infinite;
}

.int-std__process {
  position: relative;
}

@media (max-width: 1024px) {
  .int-std__lead-h1 {
    font-size: 45px;
  }

  .int-std__lead-img-col {
    flex: 0 0 280px;
    width: 280px;
  }

  .int-std__lead-img-frame {
    width: 280px;
    height: 340px;
  }

  .int-std__steps {
    grid-template-columns: 1fr 1fr;
  }

  .int-std__faq-grid {
    flex-direction: column;
    gap: 28px;
  }

  .int-std__faq-aside {
    flex: none;
    width: 100%;
  }

  .int-std__faq-stat-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .int-std__faq-stat {
    flex: 1 1 140px;
  }
}

@media (max-width: 768px) {
  .int-std__lead-grid {
    flex-direction: column;
    gap: 28px;
  }

  .int-std__lead-img-col {
    flex: none;
    width: 100%;
  }

  .int-std__lead-img-frame {
    width: 100%;
    height: 320px;
  }

  .int-std__lead-img-outer {
    width: 100%;
  }

  .int-std__lead-h1 {
    font-size: 45px;
  }

  .int-std__steps {
    grid-template-columns: 1fr;
  }

  .int-std__process-heading {
    font-size: 23px;
  }

  .int-std__faq-aside-heading {
    font-size: 23px;
  }
}

@media (max-width: 480px) {
  .int-std__lead-h1 {
    font-size: 23px;
  }

  .int-std__lead-desc {
    font-size: 15px;
  }

  .int-std__lead {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .int-std__process {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .int-std__faq {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .int-std__faq-q {
    padding: 16px;
  }

  .int-std__faq-ans {
    padding: 0 16px 16px 16px;
  }
}

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

.cnt-pg .pg-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.cnt-pg ::selection {
  background: #46B48A;
  color: #fff;
}

.cnt-pg .split-top {
  display: flex;
  flex-direction: row;
  min-height: 480px;
}

.cnt-pg .split-left {
  flex: 0 0 40%;
  background: #46B48A;
  position: relative;
  padding: 56px 28px 56px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.cnt-pg .split-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg,
      rgba(255, 255, 255, 0.06) 0px,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 18px);
  pointer-events: none;
}

.cnt-pg .split-right {
  flex: 0 0 60%;
  background: #F0F5F5;
  padding: 56px 56px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.cnt-pg .split-right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(131, 198, 206, 0.13) 0%, transparent 100%);
  pointer-events: none;
}

.cnt-pg .pg-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
  display: block;
}

.cnt-pg .split-heading {
  font-size: 45px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 28px;
  font-weight: 700;
}

.cnt-pg .split-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 28px;
  max-width: 340px;
}

.cnt-pg .quote-mark {
  font-size: 62px;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.18);
  font-weight: 900;
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

.cnt-pg .hero-img-wrap {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 28px;
  box-shadow: -1px 5px 25px 0 rgba(70, 180, 138, 0.11);
}

.cnt-pg .hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
}

.cnt-pg .right-sub {
  font-size: 23px;
  line-height: 1.4;
  color: #2a4a3e;
  font-weight: 600;
  margin: 0 0 16px;
}

.cnt-pg .right-body {
  font-size: 15px;
  line-height: 1.7;
  color: #3a5248;
  margin: 0 0 28px;
  max-width: 520px;
}

.cnt-pg .contact-chips {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cnt-pg .chip-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.cnt-pg .chip-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  box-shadow: -1px 3px 2px 0 rgba(70, 180, 138, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cnt-pg .chip-icon svg {
  width: 18px;
  height: 18px;
}

.cnt-pg .chip-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cnt-pg .chip-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6a8a7e;
}

.cnt-pg .chip-val {
  font-size: 15px;
  line-height: 1.4;
  color: #1e3530;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.5s ease-in-out;
  position: relative;
  display: inline-block;
}

.cnt-pg .chip-val::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #46B48A;
  transition: width 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cnt-pg .chip-val:hover {
  color: #46B48A;
}

.cnt-pg .chip-val:hover::after {
  width: 100%;
}

.cnt-pg .form-belt {
  background: #fff;
  padding: 56px 0;
  position: relative;
}

.cnt-pg .form-belt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(277deg, rgba(70, 180, 138, 0.08) 0%, rgba(131, 198, 206, 0.05) 60%, transparent 100%);
  pointer-events: none;
}

.cnt-pg .form-belt::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 48px;
  background: #F0F5F5;
  border-radius: 0;
  clip-path: ellipse(55% 100% at 50% 100%);
  pointer-events: none;
}

.cnt-pg .form-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.cnt-pg .form-aside {
  padding-top: 8px;
}

.cnt-pg .aside-heading {
  font-size: 23px;
  line-height: 1.4;
  color: #1e3530;
  font-weight: 700;
  margin: 0 0 16px;
  padding-left: 16px;
  border-left: 3px solid #46B48A;
}

.cnt-pg .aside-body {
  font-size: 15px;
  line-height: 1.7;
  color: #3a5248;
  margin: 0 0 28px;
}

.cnt-pg .aside-img-wrap {
  width: 100%;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: -1px 10px 40px 0 rgba(70, 180, 138, 0.11);
}

.cnt-pg .aside-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cnt-pg .form-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: -1px 5px 25px 0 rgba(70, 180, 138, 0.11);
  padding: 28px;
}

.cnt-pg .form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.cnt-pg .form-row.two-col {
  flex-direction: row;
  gap: 16px;
}

.cnt-pg .form-row.two-col .field-wrap {
  flex: 1;
}

.cnt-pg .field-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}

.cnt-pg .field-wrap label {
  font-size: 13px;
  color: #6a8a7e;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
  transition: color 0.5s ease-in-out;
}

.cnt-pg .field-wrap:focus-within label {
  color: #46B48A;
}

.cnt-pg .f-input {
  font-size: 15px;
  line-height: 1.4;
  color: #1e3530;
  background: #F0F5F5;
  border: 1.5px solid transparent;
  border-radius: 6px;
  padding: 8px 16px;
  outline: none;
  transition: border-color 0.5s ease-in-out, background 0.45s ease-in-out;
  width: 100%;
  box-sizing: border-box;
}

.cnt-pg .f-input:focus {
  border-color: #46B48A;
  background: #fff;
}

.cnt-pg .f-input::placeholder {
  color: transparent;
}

.cnt-pg .f-textarea {
  resize: vertical;
  min-height: 100px;
}

.cnt-pg .f-select {
  font-size: 15px;
  line-height: 1.4;
  color: #1e3530;
  background: #F0F5F5;
  border: 1.5px solid transparent;
  border-radius: 6px;
  padding: 8px 16px;
  outline: none;
  transition: border-color 0.5s ease-in-out, background 0.45s ease-in-out;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  cursor: pointer;
}

.cnt-pg .f-select:focus {
  border-color: #46B48A;
  background: #fff;
}

.cnt-pg .select-wrap {
  position: relative;
}

.cnt-pg .select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #46B48A;
  pointer-events: none;
}

.cnt-pg .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.cnt-pg .privacy-row input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #46B48A;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}

.cnt-pg .privacy-row input[type="checkbox"]:checked {
  box-shadow: inset 0 0 0 2px #46B48A;
}

.cnt-pg .privacy-txt {
  font-size: 13px;
  line-height: 1.7;
  color: #3a5248;
}

.cnt-pg .privacy-txt a {
  color: #46B48A;
  text-decoration: none;
  position: relative;
}

.cnt-pg .privacy-txt a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #46B48A;
  transition: width 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cnt-pg .privacy-txt a:hover::after {
  width: 100%;
}

.cnt-pg .submit-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #46B48A;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  box-shadow: -1px 5px 25px 0 rgba(70, 180, 138, 0.11);
  position: relative;
  overflow: hidden;
}

.cnt-pg .submit-btn:hover {
  background: #3a9a74;
  box-shadow: -1px 10px 40px 0 rgba(70, 180, 138, 0.11);
}

.cnt-pg .submit-btn:active {
  box-shadow: inset -1px 3px 2px 0 rgba(70, 180, 138, 0.06);
}

.cnt-pg .submit-btn:focus-visible {
  outline: 2px solid #1e3530;
  outline-offset: 2px;
}

.cnt-pg .btn-arrow {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cnt-pg .submit-btn:hover .btn-arrow {
  transform: translateX(6px);
}

.cnt-pg .channels-belt {
  background: #F0F5F5;
  padding: 56px 0 56px;
}

.cnt-pg .channels-head {
  text-align: center;
  margin-bottom: 56px;
}

.cnt-pg .channels-heading {
  font-size: 23px;
  line-height: 1.4;
  color: #1e3530;
  font-weight: 700;
  margin: 0 0 8px;
}

.cnt-pg .channels-sub {
  font-size: 15px;
  line-height: 1.7;
  color: #3a5248;
  margin: 0;
}

.cnt-pg .channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.cnt-pg .ch-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: -1px 3px 2px 0 rgba(70, 180, 138, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: box-shadow 0.5s ease-in-out;
}

.cnt-pg .ch-card::before,
.cnt-pg .ch-card::after {
  content: "";
  position: absolute;
  background: #46B48A;
  transition: none;
  pointer-events: none;
}

.cnt-pg .ch-card::before {
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 0;
  transition: width 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cnt-pg .ch-card::after {
  top: 0;
  right: 0;
  width: 2px;
  height: 0;
  border-radius: 0;
  transition: height 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.55s;
}

.cnt-pg .ch-card:hover {
  box-shadow: -1px 10px 40px 0 rgba(70, 180, 138, 0.11);
}

.cnt-pg .ch-card:hover::before {
  width: 100%;
}

.cnt-pg .ch-card:hover::after {
  height: 100%;
}

.cnt-pg .ch-card--center {
  margin-top: 28px;
  margin-bottom: 28px;
}

.cnt-pg .ch-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(277deg, rgba(70, 180, 138, 0.15) 0%, rgba(131, 198, 206, 0.1) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cnt-pg .ch-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.cnt-pg .ch-name {
  font-size: 18px;
  line-height: 1.4;
  color: #1e3530;
  font-weight: 600;
  margin: 0;
}

.cnt-pg .ch-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #3a5248;
  margin: 0;
}

.cnt-pg .ch-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: #46B48A;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cnt-pg .ch-link:hover {
  gap: 16px;
}

.cnt-pg .ch-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cnt-pg .ch-link:hover svg {
  transform: translateX(4px);
}

@keyframes flipIn {
  0% {
    transform: rotateX(90deg);
    opacity: 0;
  }

  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

.cnt-pg .split-top {
  animation: flipIn 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  transform-origin: top center;
}

.cnt-pg .form-belt {
  animation: flipIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
  transform-origin: top center;
}

.cnt-pg .channels-belt {
  animation: flipIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s both;
  transform-origin: top center;
}

@media (max-width: 1024px) {
  .cnt-pg .split-top {
    flex-direction: column;
  }

  .cnt-pg .split-left,
  .cnt-pg .split-right {
    flex: none;
    width: 100%;
    padding: 56px 28px;
  }

  .cnt-pg .form-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cnt-pg .channels-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cnt-pg .ch-card--center {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .cnt-pg .split-heading {
    font-size: 45px;
  }

  .cnt-pg .channels-grid {
    grid-template-columns: 1fr;
  }

  .cnt-pg .form-row.two-col {
    flex-direction: column;
  }

  .cnt-pg .split-right {
    padding: 28px 16px;
  }

  .cnt-pg .split-left {
    padding: 28px 16px;
  }
}

@media (max-width: 480px) {
  .cnt-pg .split-heading {
    font-size: 45px;
  }

  .cnt-pg .form-box {
    padding: 16px;
  }

  .cnt-pg .form-belt {
    padding: 28px 0;
  }

  .cnt-pg .channels-belt {
    padding: 28px 0;
  }
}

.success-pg {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 16px;
  background-color: #F0F5F5;
}

.success-pg .result-wrap {
  max-width: 1140px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.success-pg .icon-shell {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background-color: #46B48A;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: -1px 5px 25px 0 rgba(70, 180, 138, 0.11);
}

.success-pg .icon-shell svg {
  display: block;
}

.success-pg .result-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 540px;
}

.success-pg .result-heading {
  font-size: 45px;
  line-height: 1.1;
  color: #1b2a24;
  margin: 0;
  padding: 0;
}

.success-pg .result-heading span {
  background: linear-gradient(277deg, #46B48A 18%, #83C6CE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.success-pg .result-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #2e4a40;
  margin: 0;
  padding: 0;
}

.success-pg .divider-accent {
  width: 48px;
  height: 3px;
  border-radius: 0px;
  background-color: #83C6CE;
}

.success-pg .result-note {
  font-size: 15px;
  line-height: 1.4;
  color: #4a6b5e;
  margin: 0;
  padding: 0;
}

.success-pg .action-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.success-pg .btn-home {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 6px;
  background-color: #46B48A;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: -1px 3px 2px 0 rgba(70, 180, 138, 0.06);
  transition: background-color 0.55s ease-in-out, box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success-pg .btn-home:hover {
  background-color: #3a9a75;
  box-shadow: -1px 10px 40px 0 rgba(70, 180, 138, 0.11);
}

.success-pg .btn-home:hover .btn-arrow {
  transform: translateX(4px);
}

.success-pg .btn-home:focus-visible {
  outline: 2px solid #46B48A;
  outline-offset: 3px;
}

.success-pg .btn-home:active {
  box-shadow: inset -1px 3px 2px 0 rgba(70, 180, 138, 0.06);
}

.success-pg .btn-arrow {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success-pg .btn-secondary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 6px;
  background-color: transparent;
  border: 1px solid #83C6CE;
  color: #2e4a40;
  font-size: 15px;
  line-height: 1.4;
  text-decoration: none;
  transition: border-color 0.6s ease-in-out, color 0.55s ease-in-out;
}

.success-pg .btn-secondary:hover {
  border-color: #46B48A;
  color: #46B48A;
}

.success-pg .btn-secondary:focus-visible {
  outline: 2px solid #46B48A;
  outline-offset: 3px;
}

.success-pg .contact-strip {
  margin-top: 8px;
  padding: 16px 28px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: -1px 3px 2px 0 rgba(131, 198, 206, 0.06);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.success-pg .contact-strip .strip-label {
  font-size: 13px;
  line-height: 1.4;
  color: #4a6b5e;
  margin: 0;
}

.success-pg .contact-strip .strip-link {
  font-size: 13px;
  line-height: 1.4;
  color: #46B48A;
  text-decoration: none;
  position: relative;
  transition: color 0.5s ease-in-out;
}

.success-pg .contact-strip .strip-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: #46B48A;
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success-pg .contact-strip .strip-link:hover::after {
  width: 100%;
}

.success-pg .contact-strip .strip-link:focus-visible {
  outline: 2px solid #46B48A;
  outline-offset: 2px;
  border-radius: 0px;
}

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

  .success-pg .result-heading {
    font-size: 23px;
  }

  .success-pg .result-desc {
    font-size: 15px;
  }

  .success-pg .action-row {
    flex-direction: column;
    width: 100%;
  }

  .success-pg .btn-home,
  .success-pg .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .success-pg .contact-strip {
    flex-direction: column;
    text-align: center;
  }
}