@import url('https://cdn.jsdelivr.net/npm/@fontsource/arimo@latest/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/arimo@latest/600.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/arimo@latest/700.css');

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-family: 'Arimo', sans-serif;
}

.pghead {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid #9BC9A9;
  box-shadow: 0 2px 3px -1px rgba(82,169,132,0.07), 0 6px 25px -1px rgba(82,169,132,0.11);
  z-index: 100;
  overflow: hidden;
}

.pghead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #52A984 0%, #9BC9A9 60%, #F4F9F9 100%);
}

.headband {
  max-width: 1024px;
  margin: 0 auto;
  padding: 24px 40px 0 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.brandzone {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-bottom: 24px;
}

.logobadge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: #1a2e25;
  border-radius: 28px 3px 28px 3px;
  box-shadow: 0 6px 25px -1px rgba(82,169,132,0.11);
  border: 2px solid #52A984;
  padding: 6px;
  flex-shrink: 0;
}

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

.brandname {
  font-size: 13px;
  font-weight: 700;
  color: #2c4a3a;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.headaccent {
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, #52A984, #9BC9A9);
  border-radius: 3px;
  margin-top: 6px;
}

.navzone {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 0;
}

.navstrip {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 6px 12px;
  padding: 24px 0 24px 0;
  list-style: none;
  margin: 0;
}

.navstrip li {
  display: flex;
  align-items: center;
}

.navlink {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #2c4a3a;
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 3px;
  border: 1px solid transparent;
  line-height: 1.1;
  transition: color 0.5s cubic-bezier(0.22,1,0.36,1), border-color 0.6s cubic-bezier(0.22,1,0.36,1);
  white-space: nowrap;
  min-height: 44px;
}

.navlink:hover {
  color: #52A984;
  border-color: #9BC9A9;
}

.navlink:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(82,169,132,0.25);
  border-radius: 3px;
}

.navlink.active {
  color: #52A984;
  border-color: #52A984;
}

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

.navdeco::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(155,201,169,0.13) 0%, rgba(244,249,249,0.08) 100%);
}

@media (max-width: 1024px) {
  .headband {
    padding: 24px 24px 0 24px;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .headband {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 12px 0 12px;
    gap: 12px;
  }
  .navzone {
    align-items: flex-start;
  }
  .navstrip {
    justify-content: flex-start;
    padding: 12px 0 24px 0;
  }
  .brandzone {
    padding-bottom: 0;
  }
  .navdeco {
    display: none;
  }
}

@media (max-width: 360px) {
  .headband {
    padding: 12px 12px 0 12px;
  }
  .navlink {
    font-size: 13px;
    padding: 12px 6px;
  }
}

.pgfooter {
  background: #F4F9F9;
  border-top: 1px solid #9BC9A9;
  position: relative;
  overflow: hidden;
}

.pgfooter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #9BC9A9, #52A984 50%, #9BC9A9);
}

.ftrbody {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 40px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

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

.ftrlogobadge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #1a2e25;
  border-radius: 3px 28px 3px 28px;
  box-shadow: 0 6px 25px -1px rgba(82,169,132,0.11);
  border: 2px solid #52A984;
  padding: 6px;
}

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

.ftrtagline {
  font-size: 14px;
  color: #3d6050;
  line-height: 1.5;
  font-weight: 400;
  max-width: 220px;
}

.ftrscript {
  font-size: 37px;
  color: rgba(82,169,132,0.12);
  line-height: 1.1;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}

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

.ftrcolhead {
  font-size: 13px;
  font-weight: 700;
  color: #2c4a3a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  padding-bottom: 12px;
  border-bottom: 1px solid #9BC9A9;
}

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

.ftrnavlink {
  font-size: 14px;
  color: #3d6050;
  text-decoration: none;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.5s cubic-bezier(0.22,1,0.36,1);
  min-height: 44px;
  padding: 6px 0;
}

.ftrnavlink:hover {
  color: #52A984;
}

.ftrnavlink:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(82,169,132,0.25);
  border-radius: 3px;
}

.ftrnavlink svg {
  flex-shrink: 0;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
}

.ftrnavlink:hover svg {
  transform: translateX(4px);
}

.ftrbar {
  max-width: 1024px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(155,201,169,0.4);
  flex-wrap: wrap;
}

.ftrcopy {
  font-size: 13px;
  color: #5a7a6a;
  line-height: 1.5;
}

.ftrcontact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.ftrcontactitem {
  font-size: 13px;
  color: #5a7a6a;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.5s cubic-bezier(0.22,1,0.36,1);
}

.ftrcontactitem:hover {
  color: #52A984;
}

.ftrcontactitem:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(82,169,132,0.25);
  border-radius: 3px;
}

@media (max-width: 1024px) {
  .ftrbody {
    padding: 80px 24px 40px 24px;
    grid-template-columns: 1fr 1fr;
  }
  .ftrbrand {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .ftrbar {
    padding: 24px 24px;
  }
}

@media (max-width: 640px) {
  .ftrbody {
    grid-template-columns: 1fr;
    padding: 40px 12px 24px 12px;
    gap: 24px;
  }
  .ftrbrand {
    flex-direction: column;
  }
  .ftrbar {
    padding: 24px 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .ftrcontact {
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .ftrbody {
    padding: 40px 12px 24px 12px;
  }
}

.ckconsent {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  background: #ffffff;
  border-radius: 28px 3px 28px 3px;
  box-shadow: 0 9px 52px -1px rgba(82,169,132,0.13), 0 6px 25px -1px rgba(82,169,132,0.11);
  border: 1px solid #9BC9A9;
  z-index: 1500;
  padding: 24px;
  display: none;
}

.ckmini {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border-radius: 28px 3px 28px 3px;
  box-shadow: 0 6px 25px -1px rgba(82,169,132,0.11);
  border: 1px solid #9BC9A9;
  z-index: 1500;
  padding: 12px 24px;
  display: none;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: box-shadow 0.5s cubic-bezier(0.22,1,0.36,1);
}

.ckmini:hover {
  box-shadow: 0 9px 52px -1px rgba(82,169,132,0.13);
}

.ckminitxt {
  font-size: 13px;
  color: #2c4a3a;
  font-weight: 600;
  font-family: 'Arimo', sans-serif;
}

.ckicon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.ckdesc {
  font-size: 13px;
  color: #3d6050;
  line-height: 1.5;
  margin: 0 0 12px 0;
}

.ckdesc a {
  color: #52A984;
  text-decoration: underline;
  transition: color 0.5s cubic-bezier(0.22,1,0.36,1);
}

.ckdesc a:hover {
  color: #2c4a3a;
}

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

.ckuses li {
  font-size: 13px;
  color: #5a7a6a;
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}

.ckuses li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #52A984;
}

.ckcats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.ckcat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
}

.ckcatlbl {
  font-size: 13px;
  color: #2c4a3a;
  font-weight: 600;
  font-family: 'Arimo', sans-serif;
}

.ckcatnote {
  font-size: 13px;
  color: #5a7a6a;
  font-family: 'Arimo', sans-serif;
}

.cktoggle {
  position: relative;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
}

.cktoggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cktoggle input:focus + .ckslider {
  box-shadow: 0 0 0 3px rgba(82,169,132,0.25);
}

.ckslider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #d4e8dc;
  border-radius: 28px;
  cursor: pointer;
  transition: background 0.5s cubic-bezier(0.22,1,0.36,1);
}

.ckslider::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  left: 3px;
  top: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 2px 3px -1px rgba(82,169,132,0.07);
}

.cktoggle input:checked + .ckslider {
  background: #52A984;
  box-shadow: inset 0 1px 3px rgba(82,169,132,0.3);
}

.cktoggle input:checked + .ckslider::after {
  transform: translateX(16px);
}

.cktoggle input:disabled + .ckslider {
  background: #52A984;
  cursor: not-allowed;
  opacity: 0.7;
}

.ckbtns {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.ckbtn {
  font-size: 14px;
  font-weight: 600;
  font-family: 'Arimo', sans-serif;
  cursor: pointer;
  border-radius: 3px;
  min-height: 44px;
  padding: 12px 24px;
  transition: color 0.5s cubic-bezier(0.22,1,0.36,1), background 0.6s cubic-bezier(0.22,1,0.36,1), border-color 0.5s cubic-bezier(0.22,1,0.36,1);
  line-height: 1.1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.ckbtn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(82,169,132,0.25);
}

.ckaccept {
  background: transparent;
  color: #52A984;
  border: 1px solid #52A984;
  flex: 1;
}

.ckaccept:hover {
  color: #2c4a3a;
  border-color: #2c4a3a;
}

.ckreject {
  background: transparent;
  color: #5a7a6a;
  border: 1px solid #9BC9A9;
  flex: 1;
}

.ckreject:hover {
  color: #2c4a3a;
  border-color: #2c4a3a;
}

@media (max-width: 360px) {
  .ckconsent {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 12px;
  }
  .ckmini {
    right: 12px;
    bottom: 12px;
  }
}.policy-g-region {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 40px;
  color: #2a2a2a;
  background: #ffffff;
}

.policy-g-region h1 {
  font-size: 52px;
  line-height: 1.1;
  color: #1b1b1b;
  margin-bottom: 40px;
  margin-top: 0;
  padding-bottom: 24px;
  border-bottom: 2px solid #52A984;
}

.policy-g-region h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #1b1b1b;
  margin-top: 80px;
  margin-bottom: 24px;
}

.policy-g-region h3 {
  font-size: 20px;
  line-height: 1.5;
  color: #222222;
  margin-top: 40px;
  margin-bottom: 12px;
}

.policy-g-region h4 {
  font-size: 16px;
  line-height: 1.5;
  color: #2a2a2a;
  margin-top: 24px;
  margin-bottom: 12px;
}

.policy-g-region h5 {
  font-size: 14px;
  line-height: 1.5;
  color: #2a2a2a;
  margin-top: 24px;
  margin-bottom: 6px;
}

.policy-g-region h6 {
  font-size: 13px;
  line-height: 1.5;
  color: #3a3a3a;
  margin-top: 24px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.policy-g-region p {
  font-size: 16px;
  line-height: 1.9;
  color: #2a2a2a;
  margin-top: 0;
  margin-bottom: 24px;
}

.policy-g-region strong,
.policy-g-region b {
  font-weight: 700;
  color: #1b1b1b;
}

.policy-g-region a {
  color: #52A984;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.5s cubic-bezier(0.22,1,0.36,1);
}

.policy-g-region a:hover {
  color: #3a8a6a;
}

.policy-g-region a:visited {
  color: #9BC9A9;
}

.policy-g-region hr {
  border: none;
  border-top: 1px solid #9BC9A9;
  margin-top: 40px;
  margin-bottom: 40px;
  opacity: 0.5;
}

.policy-g-region table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 2px 3px -1px rgba(82,169,132,0.07), 0 6px 25px -1px rgba(82,169,132,0.11);
  border-radius: 3px;
  overflow: hidden;
}

.policy-g-region thead {
  background: #52A984;
}

.policy-g-region thead th {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  padding: 12px 24px;
  border: none;
}

.policy-g-region tbody tr {
  border-bottom: 1px solid #F4F9F9;
  transition: background 0.45s cubic-bezier(0.22,1,0.36,1);
}

.policy-g-region tbody tr:last-child {
  border-bottom: none;
}

.policy-g-region tbody tr:nth-child(even) {
  background: #F4F9F9;
}

.policy-g-region tbody tr:hover {
  background: #eaf4ef;
}

.policy-g-region th {
  font-size: 13px;
  font-weight: 700;
  padding: 12px 24px;
  text-align: left;
}

.policy-g-region td {
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 24px;
  color: #2a2a2a;
  vertical-align: top;
}

.policy-g-region div {
  font-size: 16px;
  line-height: 1.9;
}

.policy-g-region ul {
  font-size: 16px;
  line-height: 1.9;
  color: #2a2a2a;
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 24px;
}

.policy-g-region ol {
  font-size: 16px;
  line-height: 1.9;
  color: #2a2a2a;
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 24px;
}

.policy-g-region li {
  margin-bottom: 6px;
}

.policy-g-region li::marker {
  color: #52A984;
}

.policy-g-region blockquote {
  margin: 40px 0;
  padding: 24px 40px;
  background: #F4F9F9;
  border-left: 3px solid #52A984;
  border-radius: 3px;
  font-size: 16px;
  line-height: 1.9;
  color: #2a2a2a;
}

.policy-g-region code {
  font-size: 13px;
  background: #F4F9F9;
  padding: 2px 6px;
  border-radius: 3px;
  color: #2a6b52;
}

.policy-g-region pre {
  background: #F4F9F9;
  padding: 24px;
  border-radius: 3px;
  overflow-x: auto;
  margin-bottom: 24px;
  box-shadow: 0 2px 3px -1px rgba(82,169,132,0.07);
}

.policy-g-region pre code {
  background: none;
  padding: 0;
  font-size: 13px;
  line-height: 1.9;
}

@media (max-width: 1024px) {
  .policy-g-region {
    padding: 80px 40px;
  }
}

@media (max-width: 640px) {
  .policy-g-region {
    padding: 40px 24px;
  }

  .policy-g-region h1 {
    font-size: 37px;
  }

  .policy-g-region h2 {
    font-size: 20px;
    margin-top: 40px;
  }

  .policy-g-region h3 {
    font-size: 16px;
  }

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

  .policy-g-region thead th,
  .policy-g-region td {
    padding: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  .policy-g-region {
    padding: 40px 12px;
  }

  .policy-g-region h1 {
    font-size: 20px;
  }

  .policy-g-region h2 {
    font-size: 16px;
  }

  .policy-g-region blockquote {
    padding: 24px;
  }
}
.opn {
  max-width: 100%;
  overflow-x: hidden;
}

.opn .pg {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.opn .t1 {
  background: linear-gradient(157deg, #52A984 0%, #9BC9A9 55%, #F4F9F9 100%);
  background-size: 180% 180%;
  animation: bgbreathe 10s ease-in-out infinite;
  padding-top: 40px;
  padding-bottom: 80px;
  position: relative;
}

@keyframes bgbreathe {
  0%, 100% { background-size: 180% 180%; }
  50% { background-size: 200% 200%; }
}

.opn .t1label {
  display: inline-block;
  font-size: 13px;
  line-height: 1.5;
  color: #2a6b52;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(82,169,132,0.3);
  border-radius: 3px;
  padding: 6px 12px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.opn .t1h {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b3d2e;
  margin: 0 0 24px 0;
  max-width: 560px;
}

.opn .t1desc {
  font-size: 16px;
  line-height: 1.9;
  color: #2a4d3c;
  max-width: 480px;
  margin: 0;
}

.opn .t1grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

.opn .t1left {
  flex: 1 1 0;
  padding-top: 40px;
}

.opn .t1right {
  flex: 0 0 340px;
  position: relative;
}

.opn .t1imgwrap {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 9px 52px -1px rgba(82,169,132,0.13);
}

.opn .t1imgwrap img {
  width: 340px;
  height: 440px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(0px);
  transition: filter 0.6s cubic-bezier(0.22,1,0.36,1);
}

.opn .t1imgwrap:hover img {
  filter: blur(0px);
}

.opn .t1grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  border-radius: 3px;
}

.opn .t1decobehind {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 180px;
  height: 180px;
  background: rgba(82,169,132,0.15);
  clip-path: polygon(20% 0%, 100% 10%, 80% 100%, 0% 85%);
  pointer-events: none;
  z-index: 0;
}

.opn .t1right {
  z-index: 1;
}

.opn .t1imgwrap {
  position: relative;
  z-index: 1;
}

.opn .dotaccent {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 28px;
  background: #52A984;
  margin-left: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}

.opn .s2 {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.opn .s2grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.opn .s2left {
  border-right: 2px solid #F4F9F9;
  padding-right: 40px;
}

.opn .s2h {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b3d2e;
  margin: 0 0 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
}

.opn .s2desc {
  font-size: 16px;
  line-height: 1.9;
  color: #2f4f42;
  margin: 0 0 24px 0;
}

.opn .notlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.opn .notlist li {
  font-size: 14px;
  line-height: 1.5;
  color: #3a5a4a;
  padding: 12px;
  border-radius: 3px;
  border: 1px solid #e8f3ee;
  border-left: 3px solid #9BC9A9;
  background: #F4F9F9;
  transition: border-color 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s cubic-bezier(0.22,1,0.36,1);
}

.opn .notlist li:hover {
  border-left-color: #52A984;
  box-shadow: 0 6px 25px -1px rgba(82,169,132,0.11);
}

.opn .s2right {
  padding-top: 12px;
}

.opn .s2img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  box-shadow: 0 6px 25px -1px rgba(82,169,132,0.11);
  filter: blur(2px);
  transition: filter 0.55s cubic-bezier(0.22,1,0.36,1);
}

.opn .s2imgwrap:hover .s2img {
  filter: blur(0px);
}

.opn .s2imgwrap {
  overflow: hidden;
  border-radius: 3px;
}

.opn .s3 {
  background: #F4F9F9;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.opn .s3diag {
  position: absolute;
  inset: 0;
  background: linear-gradient(168deg, #F4F9F9 60%, #e8f3ee 100%);
  pointer-events: none;
  z-index: 0;
}

.opn .s3inner {
  position: relative;
  z-index: 1;
}

.opn .s3h {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b3d2e;
  margin: 0 0 12px 0;
}

.opn .s3sub {
  font-size: 14px;
  line-height: 1.5;
  color: #52A984;
  font-weight: 600;
  margin: 0 0 40px 0;
}

.opn .relgrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.opn .relcard {
  background: #fff;
  border-radius: 3px;
  padding: 24px;
  box-shadow: 0 2px 3px -1px rgba(82,169,132,0.07);
  transition: box-shadow 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.opn .relcard:hover {
  box-shadow: 0 9px 52px -1px rgba(82,169,132,0.13);
  transform: translateY(-3px);
}

.opn .relcard h5 {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #1b3d2e;
  margin: 0;
}

.opn .relcard p {
  font-size: 13px;
  line-height: 1.9;
  color: #3a5a4a;
  margin: 0;
}

.opn .relnum {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 800;
  color: #52A984;
}

.opn .s4 {
  background: #1b3d2e;
  padding-top: 80px;
  padding-bottom: 80px;
}

.opn .s4flex {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

.opn .s4left {
  flex: 0 0 420px;
}

.opn .s4right {
  flex: 1 1 0;
  padding-top: 6px;
}

.opn .s4h {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 700;
  color: #F4F9F9;
  margin: 0 0 24px 0;
}

.opn .s4desc {
  font-size: 16px;
  line-height: 1.9;
  color: #9BC9A9;
  margin: 0 0 24px 0;
}

.opn .s4quote {
  font-size: 20px;
  line-height: 1.5;
  color: #52A984;
  font-style: italic;
  border-left: 3px solid #52A984;
  border-top: 1px solid rgba(82,169,132,0.3);
  border-bottom: 1px solid rgba(82,169,132,0.3);
  padding: 12px 24px;
  margin: 0;
  border-radius: 3px;
}

.opn .s4imgwrap {
  overflow: hidden;
  border-radius: 3px;
}

.opn .s4img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: blur(2px);
  transition: filter 0.65s cubic-bezier(0.22,1,0.36,1);
}

.opn .s4imgwrap:hover .s4img {
  filter: blur(0px);
}

.opn .s5 {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.opn .s5grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.opn .s5right {
  text-align: right;
}

.opn .s5h {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b3d2e;
  margin: 0 0 24px 0;
}

.opn .s5desc {
  font-size: 16px;
  line-height: 1.9;
  color: #2f4f42;
  margin: 0 0 24px 0;
}

.opn .difflist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.opn .difflist li {
  font-size: 14px;
  line-height: 1.5;
  color: #1b3d2e;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.opn .diffmark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: #52A984;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.opn .diffmark svg {
  width: 12px;
  height: 12px;
}

.opn .s5imgwrap {
  overflow: hidden;
  border-radius: 3px;
}

.opn .s5img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  box-shadow: 0 9px 52px -1px rgba(82,169,132,0.13);
  filter: blur(2px);
  transition: filter 0.58s cubic-bezier(0.22,1,0.36,1);
}

.opn .s5imgwrap:hover .s5img {
  filter: blur(0px);
}

.opn .s6 {
  background: #F4F9F9;
  padding-top: 80px;
  padding-bottom: 80px;
}

.opn .s6flex {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

.opn .s6right {
  flex: 1 1 0;
}

.opn .s6portraits {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.opn .portcard {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 6px 25px -1px rgba(82,169,132,0.11);
  transition: box-shadow 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.opn .portcard:hover {
  box-shadow: 0 9px 52px -1px rgba(82,169,132,0.13);
  transform: translateY(-2px);
}

.opn .portwrap {
  overflow: hidden;
}

.opn .portimg {
  width: 260px;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(2px);
  transition: filter 0.6s cubic-bezier(0.22,1,0.36,1);
}

.opn .portcard:hover .portimg {
  filter: blur(0px);
}

.opn .portinfo {
  padding: 12px;
}

.opn .portname {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #1b3d2e;
  margin: 0 0 6px 0;
}

.opn .portrole {
  font-size: 13px;
  line-height: 1.5;
  color: #52A984;
  margin: 0;
}

.opn .s6h {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b3d2e;
  margin: 0 0 12px 0;
}

.opn .s6tag {
  font-size: 13px;
  line-height: 1.5;
  color: #52A984;
  font-weight: 600;
  margin: 0 0 24px 0;
}

.opn .s6desc {
  font-size: 16px;
  line-height: 1.9;
  color: #2f4f42;
  margin: 0 0 24px 0;
}

.opn .s6detail {
  font-size: 14px;
  line-height: 1.9;
  color: #3a5a4a;
  margin: 0 0 24px 0;
  padding: 12px;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #d8eee4;
}

.opn .s6quote {
  font-size: 16px;
  line-height: 1.9;
  color: #52A984;
  font-style: italic;
  margin: 0;
}

.opn .s7 {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.opn .s7diag {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(162deg, #fff 70%, #F4F9F9 100%);
  pointer-events: none;
  z-index: 0;
}

.opn .s7inner {
  position: relative;
  z-index: 1;
}

.opn .s7h {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b3d2e;
  margin: 0 0 12px 0;
}

.opn .s7sub {
  font-size: 14px;
  line-height: 1.5;
  color: #3a5a4a;
  margin: 0 0 40px 0;
  max-width: 580px;
}

.opn .adaptgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.opn .adaptcard {
  border-radius: 3px;
  padding: 24px;
  border: 1px solid #d8eee4;
  background: #F4F9F9;
  transition: border-color 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.opn .adaptcard:hover {
  border-color: #52A984;
  box-shadow: 0 6px 25px -1px rgba(82,169,132,0.11);
  transform: translateY(-2px);
}

.opn .adaptcard h5 {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #1b3d2e;
  margin: 0;
}

.opn .adaptcard p {
  font-size: 13px;
  line-height: 1.9;
  color: #3a5a4a;
  margin: 0;
}

.opn .s7imgrow {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.opn .s7imgwrap {
  flex: 1 1 0;
  overflow: hidden;
  border-radius: 3px;
}

.opn .s7img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: blur(2px);
  box-shadow: 0 6px 25px -1px rgba(82,169,132,0.11);
  transition: filter 0.62s cubic-bezier(0.22,1,0.36,1);
}

.opn .s7imgwrap:hover .s7img {
  filter: blur(0px);
}

.opn .accentq {
  color: #52A984;
}

@media (max-width: 1024px) {
  .opn .t1h { font-size: 37px; }
  .opn .t1right { flex: 0 0 280px; }
  .opn .t1imgwrap img { width: 280px; height: 360px; }
  .opn .relgrid { grid-template-columns: 1fr 1fr; }
  .opn .s4left { flex: 0 0 340px; }
}

@media (max-width: 640px) {
  .opn .t1grid { flex-direction: column; }
  .opn .t1right { flex: 0 0 auto; width: 100%; }
  .opn .t1imgwrap img { width: 100%; height: 280px; }
  .opn .portimg { width: 100%; }
  .opn .s2grid { grid-template-columns: 1fr; }
  .opn .s2left { border-right: none; padding-right: 0; border-bottom: 2px solid #F4F9F9; padding-bottom: 24px; }
  .opn .relgrid { grid-template-columns: 1fr; }
  .opn .s4flex { flex-direction: column; }
  .opn .s4left { flex: 0 0 auto; width: 100%; }
  .opn .s5grid { grid-template-columns: 1fr; }
  .opn .s5right { text-align: left; }
  .opn .s6flex { flex-direction: column; }
  .opn .s6portraits { flex: 0 0 auto; width: 100%; flex-direction: row; }
  .opn .portimg { width: 100%; height: 200px; }
  .opn .portcard { flex: 1 1 0; }
  .opn .adaptgrid { grid-template-columns: 1fr; }
  .opn .s7imgrow { flex-direction: column; }
  .opn .t1h { font-size: 37px; }
  .opn .s2h, .opn .s3h, .opn .s4h, .opn .s5h, .opn .s6h, .opn .s7h { font-size: 20px; }
}

@media (max-width: 360px) {
  .opn .pg { padding-left: 12px; padding-right: 12px; }
  .opn .t1h { font-size: 20px; }
  .opn .relnum { font-size: 20px; }
  .opn .s6portraits { flex-direction: column; }
}

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

.lrnprog .pg-wrap {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@keyframes dropBounce {
  0% { opacity: 0; transform: translateY(-32px); }
  65% { opacity: 1; transform: translateY(6px); }
  80% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.lrnprog .anim-drop {
  animation: dropBounce 0.65s cubic-bezier(0.22,1,0.36,1) both;
}

.lrnprog .geo-spin {
  animation: slowRotate 18s linear infinite;
  pointer-events: none;
}

::selection {
  background: rgba(82,169,132,0.1);
}

.lrnprog a {
  color: inherit;
  text-decoration: none;
  transition: color 0.5s cubic-bezier(0.22,1,0.36,1);
}

.lrnprog a:hover {
  color: #52A984;
}

.lrnprog .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border: 1.5px solid #52A984;
  border-radius: 3px;
  background: transparent;
  color: #1a2e23;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
  transition: background 0.5s cubic-bezier(0.22,1,0.36,1), color 0.5s cubic-bezier(0.22,1,0.36,1);
  text-decoration: none;
}

.lrnprog .btn-outline:hover {
  background: #52A984;
  color: #fff;
}

.lrnprog .btn-outline:hover .btn-arrow {
  transform: translateX(5px);
}

.lrnprog .btn-outline:active {
  box-shadow: inset 0 2px 3px -1px rgba(82,169,132,0.18);
}

.lrnprog .btn-arrow {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

.lrnprog .btn-arrow svg {
  display: block;
}

.lrnprog .dot-accent {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #52A984;
  margin-left: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}

.lrnprog .accent-quote {
  color: #52A984;
}

.lrnprog .thick-left {
  border-left: 4px solid #52A984;
  border-top: 1px solid #9BC9A9;
  border-right: 1px solid #9BC9A9;
  border-bottom: 1px solid #9BC9A9;
  padding-left: 24px;
}

.lrnprog .shadow-light {
  box-shadow: 0 2px 3px -1px rgba(82,169,132,0.07);
}

.lrnprog .shadow-mid {
  box-shadow: 0 6px 25px -1px rgba(82,169,132,0.11);
}

.lrnprog .shadow-heavy {
  box-shadow: 0 9px 52px -1px rgba(82,169,132,0.13);
}

.lrnprog .img-drop {
  box-shadow: 0 9px 52px -1px rgba(82,169,132,0.13);
}

.lrnprog .tag-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 3px;
  border: 1px solid #9BC9A9;
  font-size: 13px;
  line-height: 1.5;
  color: #2d5c42;
  background: #fff;
}

.lrnprog .num-big {
  font-size: 52px;
  line-height: 1.1;
  color: #52A984;
  font-weight: 700;
}

.lrnprog .num-label {
  font-size: 13px;
  line-height: 1.5;
  color: #4a6355;
}

.lrnprog .section-divider-tri {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.lrnprog .section-divider-tri svg {
  display: block;
}

.lrnprog .svgdiv-offset {
  margin-left: -2px;
}



.lrnprog .titblk {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e8f2ed;
  position: relative;
}

.lrnprog .titblk-edge {
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #52A984 0%, transparent 100%);
}

.lrnprog .titblk-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

.lrnprog .titblk-imgcol {
  flex: 0 0 auto;
  width: 220px;
}

.lrnprog .titblk-imgwrap {
  width: 220px;
  height: 280px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

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

.lrnprog .titblk-imgwrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 40%, rgba(30,60,44,0.28) 100%);
  pointer-events: none;
}

.lrnprog .titblk-textcol {
  flex: 1 1 0;
  min-width: 0;
}

.lrnprog .titblk-eyebrow {
  font-size: 13px;
  line-height: 1.5;
  color: #52A984;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lrnprog .titblk-h1 {
  font-size: 37px;
  line-height: 1.1;
  color: #1a2e23;
  font-weight: 700;
  margin-bottom: 24px;
}

.lrnprog .titblk-sep {
  width: 40px;
  height: 2px;
  background: #52A984;
  margin-bottom: 24px;
}

.lrnprog .titblk-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #354d3e;
  margin-bottom: 24px;
}

.lrnprog .titblk-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.lrnprog .titblk-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.lrnprog .titblk-note {
  font-size: 13px;
  line-height: 1.5;
  color: #4a6355;
}

@media (max-width: 640px) {
  .lrnprog .titblk-inner {
    flex-direction: column;
    gap: 24px;
  }
  .lrnprog .titblk-imgcol {
    width: 100%;
  }
  .lrnprog .titblk-imgwrap {
    width: 100%;
    height: 220px;
  }
  .lrnprog .titblk-h1 {
    font-size: 20px;
  }
}



.lrnprog .progdet {
  background: #F4F9F9;
  padding-top: 80px;
  padding-bottom: 0;
}

.lrnprog .progdet-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  align-items: start;
}

.lrnprog .progdet-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lrnprog .progdet-h2 {
  font-size: 20px;
  line-height: 1.5;
  color: #1a2e23;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lrnprog .progdet-lead {
  font-size: 16px;
  line-height: 1.9;
  color: #354d3e;
}

.lrnprog .phase-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lrnprog .phase-item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border-radius: 3px;
  border-left: 4px solid #9BC9A9;
  border-top: 1px solid #d6ece0;
  border-right: 1px solid #d6ece0;
  border-bottom: 1px solid #d6ece0;
  box-shadow: 0 2px 3px -1px rgba(82,169,132,0.07);
  transition: box-shadow 0.55s cubic-bezier(0.22,1,0.36,1), border-left-color 0.55s cubic-bezier(0.22,1,0.36,1);
}

.lrnprog .phase-item:hover {
  box-shadow: 0 6px 25px -1px rgba(82,169,132,0.11);
  border-left-color: #52A984;
}

.lrnprog .phase-num {
  font-size: 37px;
  line-height: 1.1;
  color: #9BC9A9;
  font-weight: 700;
  flex-shrink: 0;
  width: 40px;
  text-align: right;
}

.lrnprog .phase-body {
  flex: 1 1 0;
  min-width: 0;
}

.lrnprog .phase-title {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #1a2e23;
  margin-bottom: 6px;
}

.lrnprog .phase-text {
  font-size: 14px;
  line-height: 1.9;
  color: #4a6355;
}

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

.lrnprog .aside-card {
  padding: 24px;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #d6ece0;
  box-shadow: 0 2px 3px -1px rgba(82,169,132,0.07);
}

.lrnprog .aside-label {
  font-size: 13px;
  line-height: 1.5;
  color: #52A984;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.lrnprog .aside-val {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #1a2e23;
}

.lrnprog .aside-sub {
  font-size: 13px;
  line-height: 1.5;
  color: #4a6355;
  margin-top: 6px;
}

.lrnprog .geo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}

.lrnprog .geo-shape {
  width: 48px;
  height: 48px;
  opacity: 0.22;
}

@media (max-width: 640px) {
  .lrnprog .progdet-grid {
    grid-template-columns: 1fr;
  }
  .lrnprog .progdet-aside {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .lrnprog .aside-card {
    flex: 1 1 140px;
  }
}



.lrnprog .mentors {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.lrnprog .mentors-deco {
  position: absolute;
  top: 40px;
  left: 0;
  width: 4px;
  height: 80px;
  background: linear-gradient(180deg, #52A984 0%, transparent 100%);
  pointer-events: none;
}

.lrnprog .mentors-header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.lrnprog .mentors-h2 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #1a2e23;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lrnprog .mentors-sub {
  font-size: 14px;
  line-height: 1.9;
  color: #4a6355;
  max-width: 420px;
  text-align: right;
}

.lrnprog .mentors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lrnprog .mentor-card {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 24px;
  border-radius: 28px;
  background: #F4F9F9;
  border: 1px solid #d6ece0;
  box-shadow: 0 2px 3px -1px rgba(82,169,132,0.07);
  transition: box-shadow 0.6s cubic-bezier(0.22,1,0.36,1);
}

.lrnprog .mentor-card:hover {
  box-shadow: 0 9px 52px -1px rgba(82,169,132,0.13);
}

.lrnprog .mentor-portrait {
  flex-shrink: 0;
  width: 88px;
  height: 116px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 6px 25px -1px rgba(82,169,132,0.11);
}

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

.lrnprog .mentor-info {
  flex: 1 1 0;
  min-width: 0;
}

.lrnprog .mentor-name {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #1a2e23;
  margin-bottom: 6px;
}

.lrnprog .mentor-role {
  font-size: 13px;
  line-height: 1.5;
  color: #52A984;
  margin-bottom: 12px;
}

.lrnprog .mentor-bio {
  font-size: 13px;
  line-height: 1.9;
  color: #4a6355;
}

.lrnprog .mentor-noimg {
  flex-shrink: 0;
  width: 88px;
  height: 116px;
  border-radius: 3px;
  background: #F4F9F9;
  border: 1px solid #d6ece0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lrnprog .mentor-noimg-ico {
  width: 40px;
  height: 40px;
  opacity: 0.3;
}

@media (max-width: 640px) {
  .lrnprog .mentors-grid {
    grid-template-columns: 1fr;
  }
  .lrnprog .mentors-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .lrnprog .mentors-sub {
    text-align: left;
  }
}



.lrnprog .outcome {
  background: linear-gradient(158deg, #52A984 0%, transparent 70%), #1a2e23;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.lrnprog .outcome-geowrap {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 56px;
  height: 56px;
  pointer-events: none;
}

.lrnprog .outcome-geo {
  width: 56px;
  height: 56px;
  opacity: 0.18;
}

.lrnprog .outcome-entry {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.lrnprog .outcome-entry-line {
  flex: 1 1 0;
  height: 1px;
  background: rgba(155,201,169,0.3);
}

.lrnprog .outcome-entry-label {
  font-size: 13px;
  line-height: 1.5;
  color: #9BC9A9;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.lrnprog .outcome-body {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.lrnprog .outcome-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lrnprog .outcome-h2 {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lrnprog .outcome-h2 .dot-accent {
  background: #9BC9A9;
}

.lrnprog .outcome-lead {
  font-size: 16px;
  line-height: 1.9;
  color: #9BC9A9;
}

.lrnprog .outcome-quote {
  padding: 24px;
  border-left: 4px solid #52A984;
  border-top: 1px solid rgba(155,201,169,0.2);
  border-right: 1px solid rgba(155,201,169,0.2);
  border-bottom: 1px solid rgba(155,201,169,0.2);
  border-radius: 3px;
  background: rgba(82,169,132,0.08);
}

.lrnprog .outcome-quote-text {
  font-size: 16px;
  line-height: 1.9;
  color: #fff;
  font-style: italic;
}

.lrnprog .outcome-quote-text .accent-quote {
  color: #9BC9A9;
}

.lrnprog .outcome-quote-attr {
  font-size: 13px;
  line-height: 1.5;
  color: #9BC9A9;
  margin-top: 12px;
}

.lrnprog .outcome-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lrnprog .stat-box {
  padding: 24px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(155,201,169,0.2);
  text-align: right;
}

.lrnprog .stat-box .num-big {
  color: #9BC9A9;
}

.lrnprog .stat-box .num-label {
  color: rgba(155,201,169,0.7);
}

.lrnprog .outcome-exit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.lrnprog .outcome-exit-line {
  flex: 1 1 0;
  height: 1px;
  background: rgba(155,201,169,0.3);
}

.lrnprog .outcome-exit-label {
  font-size: 13px;
  line-height: 1.5;
  color: #9BC9A9;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.lrnprog .outcome-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.lrnprog .chk-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 3px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(155,201,169,0.15);
}

.lrnprog .chk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #52A984;
  flex-shrink: 0;
  margin-top: 6px;
}

.lrnprog .chk-text {
  font-size: 13px;
  line-height: 1.9;
  color: #9BC9A9;
}

@media (max-width: 1024px) {
  .lrnprog .outcome-body {
    grid-template-columns: 1fr;
  }
  .lrnprog .outcome-right {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .lrnprog .stat-box {
    flex: 1 1 120px;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .lrnprog .outcome-h2 {
    font-size: 20px;
  }
  .lrnprog .outcome-checklist {
    grid-template-columns: 1fr 1fr;
  }
  .lrnprog .outcome-geowrap {
    top: 24px;
    right: 24px;
  }
}

@media (max-width: 360px) {
  .lrnprog .outcome-checklist {
    grid-template-columns: 1fr;
  }
  .lrnprog .titblk-h1 {
    font-size: 20px;
  }
}

.lrnprog .progdet-divider {
  margin-top: 80px;
}

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

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

.ctus .reach-band {
  background: linear-gradient(170deg, #F4F9F9 0%, rgba(244,249,249,0) 100%);
  padding: 80px 0 40px;
  position: relative;
}

.ctus .reach-band::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #52A984;
}

.ctus .reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ctus .reach-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ctus .reach-eyebrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.ctus .eyebrow-line {
  width: 40px;
  height: 2px;
  background: #52A984;
  flex-shrink: 0;
}

.ctus .eyebrow-label {
  font-size: 13px;
  color: #52A984;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
}

.ctus .reach-hdg {
  font-size: 52px;
  line-height: 1.1;
  color: #1e2d26;
  font-weight: 700;
  margin: 0;
}

.ctus .reach-hdg .accent-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #52A984;
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -4px;
}

.ctus .reach-sub {
  font-size: 16px;
  line-height: 1.9;
  color: #3a4a41;
  margin: 0;
}

.ctus .reach-sub .quoted {
  color: #52A984;
}

.ctus .contact-cards {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ctus .ccard {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 3px -1px rgba(82,169,132,0.07), 0 6px 25px -1px rgba(82,169,132,0.11);
  transition: box-shadow 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

.ctus .ccard:hover {
  box-shadow: 0 9px 52px -1px rgba(82,169,132,0.13);
  transform: translateY(-2px);
}

.ctus .ccard-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  background: #F4F9F9;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.ctus .ccard-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #52A984;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ctus .ccard-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ctus .ccard-lbl {
  font-size: 13px;
  color: #7a9487;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ctus .ccard-val {
  font-size: 16px;
  color: #1e2d26;
  line-height: 1.5;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.45s cubic-bezier(0.22,1,0.36,1);
}

.ctus .ccard-val:hover {
  color: #52A984;
}

.ctus .ccard-note {
  font-size: 13px;
  color: #7a9487;
  line-height: 1.5;
}

.ctus .reach-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 12px;
}

.ctus .img-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 9px 52px -1px rgba(82,169,132,0.13);
}

.ctus .img-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  filter: saturate(1);
  transition: filter 0.7s cubic-bezier(0.22,1,0.36,1);
  animation: colorCycle 8s ease-in-out infinite;
}

@keyframes colorCycle {
  0%, 60% { filter: saturate(1); }
  75%, 90% { filter: saturate(0) brightness(1.05); }
  100% { filter: saturate(1); }
}

.ctus .img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 45, 38, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1);
}

.ctus .img-frame:hover .img-overlay {
  opacity: 1;
}

.ctus .img-frame:hover img {
  animation: none;
  filter: saturate(0) brightness(0.7);
}

.ctus .overlay-txt {
  font-size: 20px;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  font-weight: 600;
}

.ctus .overlay-sub {
  font-size: 14px;
  color: #9BC9A9;
  line-height: 1.9;
  text-align: center;
  margin-top: 12px;
}

.ctus .avail-strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #F4F9F9;
  border-radius: 3px;
  border-left: 3px solid #52A984;
  border-top: 1px solid #d4ece0;
  border-right: 1px solid #d4ece0;
  border-bottom: 1px solid #d4ece0;
}

.ctus .avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #52A984;
  flex-shrink: 0;
  animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.ctus .avail-txt {
  font-size: 13px;
  color: #3a4a41;
  line-height: 1.5;
}

.ctus .avail-txt strong {
  color: #1e2d26;
}

.ctus .sep-band {
  background: #52A984;
  padding: 40px 0;
}

.ctus .sep-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ctus .sep-quote {
  font-size: 20px;
  color: #fff;
  line-height: 1.5;
  font-weight: 600;
  max-width: 600px;
}

.ctus .sep-mark {
  font-size: 52px;
  line-height: 1.1;
  color: rgba(255,255,255,0.18);
  font-weight: 900;
  flex-shrink: 0;
  user-select: none;
  font-style: italic;
}

.ctus .form-band {
  padding: 80px 0;
  background: #fff;
}

.ctus .form-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.ctus .form-meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 24px;
}

.ctus .form-hdg {
  font-size: 37px;
  line-height: 1.1;
  color: #1e2d26;
  font-weight: 700;
  margin: 0;
}

.ctus .form-hdg .accent-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #52A984;
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -4px;
}

.ctus .form-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #3a4a41;
  margin: 0;
}

.ctus .form-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ctus .fstep {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e8f2ed;
}

.ctus .fstep:last-child {
  border-bottom: none;
}

.ctus .fstep-num {
  font-size: 13px;
  color: #52A984;
  font-weight: 700;
  flex-shrink: 0;
  width: 24px;
  line-height: 1.9;
}

.ctus .fstep-txt {
  font-size: 14px;
  color: #3a4a41;
  line-height: 1.9;
}

.ctus .form-img {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 6px 25px -1px rgba(82,169,132,0.11);
}

.ctus .form-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.ctus .contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

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

.ctus .fld-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}

.ctus .fld-wrap input,
.ctus .fld-wrap select,
.ctus .fld-wrap textarea {
  width: 100%;
  padding: 24px 24px 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #1e2d26;
  background: #F4F9F9;
  border: 1.5px solid #c8dfd4;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s cubic-bezier(0.22,1,0.36,1);
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.ctus .fld-wrap textarea {
  resize: vertical;
  min-height: 120px;
}

.ctus .fld-wrap select {
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2352A984' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.ctus .fld-wrap input:focus,
.ctus .fld-wrap select:focus,
.ctus .fld-wrap textarea:focus {
  border-color: #52A984;
  box-shadow: 0 0 0 3px rgba(82,169,132,0.12);
}

.ctus .fld-wrap input:focus + .fld-lbl,
.ctus .fld-wrap input:not(:placeholder-shown) + .fld-lbl,
.ctus .fld-wrap select:focus + .fld-lbl,
.ctus .fld-wrap select:not([value=""]):valid + .fld-lbl,
.ctus .fld-wrap textarea:focus + .fld-lbl,
.ctus .fld-wrap textarea:not(:placeholder-shown) + .fld-lbl {
  top: 8px;
  font-size: 11px;
  color: #52A984;
}

.ctus .fld-lbl {
  position: absolute;
  left: 24px;
  top: 18px;
  font-size: 16px;
  color: #7a9487;
  line-height: 1.5;
  pointer-events: none;
  transition: top 0.45s cubic-bezier(0.22,1,0.36,1), font-size 0.45s cubic-bezier(0.22,1,0.36,1), color 0.45s cubic-bezier(0.22,1,0.36,1);
  background: transparent;
}

.ctus .fld-wrap input::placeholder,
.ctus .fld-wrap textarea::placeholder {
  color: transparent;
}

.ctus .conditional-toggle {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ctus .toggle-lbl {
  font-size: 14px;
  color: #3a4a41;
  line-height: 1.5;
  font-weight: 600;
}

.ctus .radio-group {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.ctus .radio-opt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.ctus .radio-opt input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #52A984;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.ctus .radio-opt .opt-lbl {
  font-size: 14px;
  color: #3a4a41;
  line-height: 1.5;
  cursor: pointer;
}

.ctus .cond-fields {
  display: none;
  flex-direction: column;
  gap: 24px;
}

.ctus #topic-budzet:checked ~ .cond-wrap .cond-fields.for-budzet,
.ctus #topic-prognoza:checked ~ .cond-wrap .cond-fields.for-prognoza,
.ctus #topic-integracja:checked ~ .cond-wrap .cond-fields.for-integracja {
  display: flex;
}

.ctus .cond-outer {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ctus .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  background: #F4F9F9;
  border-radius: 3px;
  border: 1.5px solid #c8dfd4;
}

.ctus .privacy-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #52A984;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  padding: 0;
}

.ctus .privacy-row input[type="checkbox"]:checked {
  box-shadow: inset 0 2px 3px -1px rgba(82,169,132,0.3);
}

.ctus .privacy-txt {
  font-size: 13px;
  color: #3a4a41;
  line-height: 1.9;
}

.ctus .privacy-txt a {
  color: #52A984;
  text-decoration: underline;
  transition: color 0.45s cubic-bezier(0.22,1,0.36,1);
}

.ctus .privacy-txt a:hover {
  color: #1e2d26;
}

.ctus .submit-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.ctus .btn-submit {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #52A984;
  background: transparent;
  border: 2px solid #52A984;
  border-radius: 3px;
  cursor: pointer;
  transition: color 0.5s cubic-bezier(0.22,1,0.36,1), background 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  overflow: hidden;
}

.ctus .btn-submit:hover {
  color: #fff;
  background: #52A984;
  box-shadow: 0 6px 25px -1px rgba(82,169,132,0.11);
}

.ctus .btn-submit:active {
  box-shadow: inset 0 2px 3px -1px rgba(82,169,132,0.3);
}

.ctus .btn-submit:focus-visible {
  outline: 2px solid #52A984;
  outline-offset: 3px;
}

.ctus .btn-icon {
  display: inline-flex;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

.ctus .btn-submit:hover .btn-icon {
  transform: translateX(6px);
}

.ctus .btn-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ctus .form-note {
  font-size: 13px;
  color: #7a9487;
  line-height: 1.5;
}

.ctus .bounce-in {
  animation: bounceIn 0.7s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes bounceIn {
  0% { transform: translateY(-30px); opacity: 0; }
  60% { transform: translateY(8px); opacity: 1; }
  80% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.ctus .bounce-in-2 {
  animation: bounceIn 0.7s 0.15s cubic-bezier(0.22,1,0.36,1) both;
}

.ctus .bounce-in-3 {
  animation: bounceIn 0.7s 0.28s cubic-bezier(0.22,1,0.36,1) both;
}

@media (max-width: 1024px) {
  .ctus .reach-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ctus .form-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ctus .form-meta {
    position: static;
  }
  .ctus .reach-hdg {
    font-size: 37px;
  }
}

@media (max-width: 640px) {
  .ctus .reach-band {
    padding: 40px 0 24px;
  }
  .ctus .form-band {
    padding: 40px 0;
  }
  .ctus .field-row {
    grid-template-columns: 1fr;
  }
  .ctus .reach-hdg {
    font-size: 37px;
  }
  .ctus .sep-mark {
    display: none;
  }
  .ctus .sep-inner {
    flex-direction: column;
    gap: 24px;
  }
  .ctus .sep-quote {
    font-size: 16px;
  }
  .ctus .radio-group {
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .ctus .pg-wrap {
    padding: 0 12px;
  }
  .ctus .reach-hdg {
    font-size: 20px;
  }
  .ctus .submit-row {
    flex-direction: column;
    align-items: stretch;
  }
}

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

.abut .pg-wrap {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.abut .intro-band {
  background-color: #F4F9F9;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.abut .intro-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 58%;
  height: 100%;
  background: linear-gradient(162deg, #52A984 0%, transparent 100%);
  opacity: 0.08;
  pointer-events: none;
}

.abut .intro-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
}

.abut .intro-label {
  font-size: 13px;
  line-height: 1.5;
  color: #52A984;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.abut .intro-h {
  font-size: 52px;
  line-height: 1.1;
  color: #1a2e24;
  margin: 0 0 24px 0;
  font-weight: 700;
}

.abut .intro-h .acc-word {
  color: #52A984;
}

.abut .intro-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #2d4a3a;
  margin: 0 0 40px 0;
  max-width: 520px;
}

.abut .intro-stats {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-top: 40px;
}

.abut .stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.abut .stat-num {
  font-size: 37px;
  line-height: 1.1;
  color: #52A984;
  font-weight: 700;
}

.abut .stat-lbl {
  font-size: 13px;
  line-height: 1.5;
  color: #3d5a48;
}

.abut .img-port {
  width: 100%;
  aspect-ratio: 5/7;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 9px 52px -1px rgba(82, 169, 132, 0.13);
}

.abut .img-port img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  display: block;
}

.abut .wavy-div {
  width: 100%;
  height: 32px;
  overflow: hidden;
  line-height: 0;
}

.abut .wavy-div svg {
  width: 100%;
  height: 32px;
  display: block;
}

.abut .team-band {
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.abut .team-band::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 420px;
  height: 420px;
  border: 1.5px solid #9BC9A9;
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
  transform: translate(35%, 35%);
}

.abut .rings-bg {
  position: absolute;
  top: 40px;
  right: 80px;
  width: 260px;
  height: 260px;
  pointer-events: none;
  opacity: 0.07;
}

.abut .rings-bg circle {
  fill: none;
  stroke: #52A984;
  stroke-width: 1.5;
}

.abut .team-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.abut .team-h {
  font-size: 37px;
  line-height: 1.1;
  color: #1a2e24;
  font-weight: 700;
  margin: 0;
}

.abut .team-h .dot-acc {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #52A984;
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.abut .team-sub {
  font-size: 14px;
  line-height: 1.9;
  color: #3d5a48;
  max-width: 360px;
  text-align: right;
  margin: 0;
}

.abut .team-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.abut .team-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abut .person-card {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 3px;
  border: 1px solid #9BC9A9;
  box-shadow: 0 2px 3px -1px rgba(82, 169, 132, 0.07);
  transition: box-shadow 0.55s cubic-bezier(0.22,1,0.36,1), border-color 0.5s ease-in-out;
  background: #ffffff;
}

.abut .person-card:hover {
  box-shadow: 0 6px 25px -1px rgba(82, 169, 132, 0.11);
  border-color: #52A984;
}

.abut .port-thumb {
  width: 88px;
  min-width: 88px;
  aspect-ratio: 5/7;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 2px 3px -1px rgba(82, 169, 132, 0.07);
}

.abut .port-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.abut .person-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.abut .person-name {
  font-size: 16px;
  line-height: 1.5;
  color: #1a2e24;
  font-weight: 700;
  margin: 0;
}

.abut .person-role {
  font-size: 13px;
  line-height: 1.5;
  color: #52A984;
  margin: 0;
}

.abut .person-bio {
  font-size: 14px;
  line-height: 1.9;
  color: #3d5a48;
  margin: 0;
}

.abut .team-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abut .mission-block {
  padding: 40px;
  background: #F4F9F9;
  border-radius: 3px;
  border-top: 3px solid #52A984;
  border-right: 1px solid #9BC9A9;
  border-bottom: 1px solid #9BC9A9;
  border-left: 1px solid #9BC9A9;
  box-shadow: 0 6px 25px -1px rgba(82, 169, 132, 0.11);
}

.abut .miss-h {
  font-size: 20px;
  line-height: 1.5;
  color: #1a2e24;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.abut .miss-text {
  font-size: 14px;
  line-height: 1.9;
  color: #2d4a3a;
  margin: 0 0 24px 0;
}

.abut .miss-quote {
  font-size: 16px;
  line-height: 1.9;
  color: #52A984;
  font-style: italic;
  margin: 0;
  padding-left: 12px;
  border-left: 3px solid #9BC9A9;
  border-bottom: none;
  border-right: none;
  border-top: none;
}

.abut .vals-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.abut .val-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 3px;
  background: #F4F9F9;
  transition: background 0.6s cubic-bezier(0.22,1,0.36,1);
}

.abut .val-item:hover {
  background: #eaf4ef;
}

.abut .val-icon {
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 3px;
  background: #52A984;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.abut .val-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.abut .val-txt {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.abut .val-name {
  font-size: 14px;
  line-height: 1.5;
  color: #1a2e24;
  font-weight: 700;
  margin: 0;
}

.abut .val-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #3d5a48;
  margin: 0;
}

.abut .img-showcase {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 9px 52px -1px rgba(82, 169, 132, 0.13);
}

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

.abut .rating-strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-radius: 3px;
  background: #ffffff;
  border: 1px solid #9BC9A9;
  box-shadow: 0 2px 3px -1px rgba(82, 169, 132, 0.07);
}

.abut .rating-num {
  font-size: 37px;
  line-height: 1.1;
  color: #52A984;
  font-weight: 700;
}

.abut .rating-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.abut .rating-stars {
  display: flex;
  flex-direction: row;
  gap: 6px;
}

.abut .star-svg {
  width: 16px;
  height: 16px;
}

.abut .rating-count {
  font-size: 13px;
  line-height: 1.5;
  color: #3d5a48;
}

.abut .anim-bg-wash {
  animation: bgwash 8s ease-in-out infinite alternate;
}

@keyframes bgwash {
  0% { background-color: #F4F9F9; }
  100% { background-color: #eaf4ef; }
}

@media (max-width: 1024px) {
  .abut .intro-grid {
    grid-template-columns: 1fr 260px;
    gap: 40px;
  }
  .abut .intro-h {
    font-size: 37px;
  }
}

@media (max-width: 640px) {
  .abut .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .abut .img-port {
    max-width: 280px;
    margin: 0 auto;
  }
  .abut .intro-h {
    font-size: 37px;
  }
  .abut .intro-stats {
    gap: 24px;
  }
  .abut .team-layout {
    grid-template-columns: 1fr;
  }
  .abut .team-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .abut .team-sub {
    text-align: left;
  }
  .abut .mission-block {
    padding: 24px;
  }
}

@media (max-width: 360px) {
  .abut .pg-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }
  .abut .intro-h {
    font-size: 37px;
  }
  .abut .intro-stats {
    flex-direction: column;
    gap: 12px;
  }
  .abut .person-card {
    flex-direction: column;
  }
  .abut .port-thumb {
    width: 100%;
    min-width: unset;
  }
}

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

.intv .intvWrap {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.intv .pgTop {
  background: #ffffff;
  padding: 80px 24px 40px;
  position: relative;
}

.intv .pgTopInner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

.intv .pgTopText {
  flex: 1 1 0;
  min-width: 0;
}

.intv .eyebrow {
  display: inline-block;
  font-size: 13px;
  line-height: 1.5;
  color: #52A984;
  border: 1px solid #9BC9A9;
  border-radius: 3px;
  padding: 6px 12px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.intv .pgTopText h1 {
  font-size: 37px;
  line-height: 1.1;
  color: #1b2a23;
  margin: 0 0 24px;
  font-weight: 700;
}

.intv .pgTopText h1 .accentWord {
  color: #52A984;
}

.intv .pgTopText h1 .dotAccent {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #52A984;
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.intv .pgSubline {
  font-size: 16px;
  line-height: 1.9;
  color: #2e3d36;
  margin: 0;
  max-width: 560px;
}

.intv .pgTopImg {
  flex: 0 0 340px;
  position: relative;
}

.intv .pgTopImg img {
  width: 340px;
  height: 280px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  box-shadow: 0 9px 52px -1px rgba(82,169,132,0.13);
}

.intv .cornerBracket {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: #52A984;
  border-style: solid;
}

.intv .cornerBracket.tl {
  top: -8px;
  left: -8px;
  border-width: 2px 0 0 2px;
}

.intv .cornerBracket.br {
  bottom: -8px;
  right: -8px;
  border-width: 0 2px 2px 0;
}

.intv .glowLayer {
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: radial-gradient(ellipse at 70% 30%, rgba(244,249,249,0.55) 0%, transparent 70%);
  pointer-events: none;
}

.intv .headingReveal {
  animation: liftIn 0.6s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intv .dividerA {
  height: 1px;
  background: linear-gradient(90deg, #9BC9A9 0%, transparent 100%);
  max-width: 1024px;
  margin: 0 auto;
}

.intv .listSec {
  background: #F4F9F9;
  padding: 80px 24px;
}

.intv .listSecInner {
  max-width: 1024px;
  margin: 0 auto;
}

.intv .listSecHead {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.intv .listSecHead h2 {
  font-size: 20px;
  line-height: 1.5;
  color: #1b2a23;
  font-weight: 700;
  margin: 0;
}

.intv .listSecHead h2 .accentWord {
  color: #52A984;
}

.intv .listSecHead h2 .dotAccent {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #52A984;
  border-radius: 50%;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.intv .listSecDesc {
  font-size: 14px;
  line-height: 1.9;
  color: #2e3d36;
  max-width: 400px;
  margin: 0;
  text-align: right;
}

.intv .cardRow {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: nowrap;
}

.intv .intCard {
  flex: 1 1 0;
  min-width: 0;
  background: #ffffff;
  border-radius: 3px;
  padding: 24px;
  box-shadow: 0 2px 3px -1px rgba(82,169,132,0.07);
  border-top: 2px solid #9BC9A9;
  transition: box-shadow 0.5s cubic-bezier(0.22,1,0.36,1), border-top-color 0.5s ease-in-out;
  cursor: default;
}

.intv .intCard:hover {
  box-shadow: 0 6px 25px -1px rgba(82,169,132,0.11);
  border-top-color: #52A984;
}

.intv .cardMeta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.intv .cardAvatar {
  width: 44px;
  height: 44px;
  border-radius: 28px;
  background: #F4F9F9;
  border: 1.5px solid #9BC9A9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.intv .avatarShape {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #9BC9A9;
}

.intv .cardPerson {
  flex: 1 1 0;
  min-width: 0;
}

.intv .personName {
  font-size: 14px;
  line-height: 1.5;
  color: #1b2a23;
  font-weight: 700;
  margin: 0 0 2px;
}

.intv .personRole {
  font-size: 13px;
  line-height: 1.5;
  color: #52A984;
  margin: 0;
}

.intv .cardQ {
  font-size: 14px;
  line-height: 1.9;
  color: #52A984;
  font-weight: 600;
  margin: 0 0 12px;
}

.intv .cardA {
  font-size: 14px;
  line-height: 1.9;
  color: #2e3d36;
  margin: 0;
}

.intv .cardQuote {
  margin: 12px 0 0;
  padding: 12px;
  background: #F4F9F9;
  border-radius: 3px;
  border-left: 3px solid #9BC9A9;
  border-right: 1px solid #9BC9A9;
}

.intv .cardQuote p {
  font-size: 13px;
  line-height: 1.9;
  color: #52A984;
  margin: 0;
  font-style: italic;
}

.intv .dividerB {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #9BC9A9 50%, transparent 100%);
}

.intv .deepSec {
  background: #ffffff;
  padding: 80px 24px;
}

.intv .deepSecInner {
  max-width: 1024px;
  margin: 0 auto;
}

.intv .deepGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.intv .deepHead {
  grid-column: 1 / 3;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #F4F9F9;
}

.intv .deepHead h2 {
  font-size: 20px;
  line-height: 1.5;
  color: #1b2a23;
  font-weight: 700;
  margin: 0;
}

.intv .deepHead h2 .accentWord {
  color: #52A984;
}

.intv .deepHead h2 .dotAccent {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #52A984;
  border-radius: 50%;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.intv .deepHeadNote {
  font-size: 13px;
  line-height: 1.9;
  color: #52A984;
  text-align: right;
  max-width: 280px;
  margin: 0;
}

.intv .qaBlock {
  background: #F4F9F9;
  border-radius: 3px;
  padding: 24px;
  box-shadow: 0 2px 3px -1px rgba(155,201,169,0.07);
}

.intv .qaBlock.tall {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.intv .qaLabel {
  font-size: 13px;
  line-height: 1.5;
  color: #52A984;
  font-weight: 600;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.intv .qaQuestion {
  font-size: 16px;
  line-height: 1.5;
  color: #1b2a23;
  font-weight: 700;
  margin: 0 0 12px;
}

.intv .qaAnswer {
  font-size: 14px;
  line-height: 1.9;
  color: #2e3d36;
  margin: 0;
}

.intv .qaAccent {
  margin: 24px 0 0;
  padding: 12px;
  border-radius: 3px;
  background: #ffffff;
  border: 1px solid #9BC9A9;
}

.intv .qaAccent p {
  font-size: 14px;
  line-height: 1.9;
  color: #52A984;
  margin: 0;
  font-style: italic;
}

.intv .metricRow {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 24px;
}

.intv .metricBox {
  flex: 1 1 0;
  background: #ffffff;
  border-radius: 3px;
  padding: 12px;
  border: 1px solid #9BC9A9;
  text-align: center;
}

.intv .metricNum {
  font-size: 20px;
  line-height: 1.1;
  color: #52A984;
  font-weight: 700;
  display: block;
}

.intv .metricDesc {
  font-size: 13px;
  line-height: 1.5;
  color: #2e3d36;
  display: block;
  margin-top: 6px;
}

.intv .frostedBox {
  grid-column: 1 / 3;
  border-radius: 3px;
  padding: 40px;
  background: rgba(244,249,249,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(155,201,169,0.35);
  box-shadow: 0 6px 25px -1px rgba(82,169,132,0.11);
}

.intv .frostedBox h3 {
  font-size: 16px;
  line-height: 1.5;
  color: #1b2a23;
  font-weight: 700;
  margin: 0 0 12px;
}

.intv .frostedBox h3 .accentWord {
  color: #52A984;
}

.intv .frostedBox p {
  font-size: 14px;
  line-height: 1.9;
  color: #2e3d36;
  margin: 0 0 12px;
}

.intv .frostedBox p:last-child {
  margin-bottom: 0;
}

.intv .underlineLink {
  display: inline-block;
  position: relative;
  color: #1b2a23;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 2px;
}

.intv .underlineLink::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: #52A984;
  transition: left 0.55s cubic-bezier(0.22,1,0.36,1), right 0.55s cubic-bezier(0.22,1,0.36,1);
}

.intv .underlineLink:hover::after {
  left: 0;
  right: 0;
}

.intv .underlineLink:hover {
  color: #52A984;
  transition: color 0.45s ease-in-out;
}

.intv .rotGeo {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1.5px solid rgba(155,201,169,0.18);
  border-radius: 28px;
  top: -60px;
  right: -80px;
  animation: slowRot 22s linear infinite;
  pointer-events: none;
  overflow: hidden;
}

.intv .rotGeoInner {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(82,169,132,0.12);
  border-radius: 28px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(25deg);
}

@keyframes slowRot {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.intv .pgTop {
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .intv .pgTopInner {
    gap: 24px;
  }
  .intv .pgTopImg {
    flex: 0 0 260px;
  }
  .intv .pgTopImg img {
    width: 260px;
    height: 220px;
  }
  .intv .cardRow {
    flex-wrap: wrap;
  }
  .intv .intCard {
    flex: 1 1 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .intv .pgTop {
    padding: 40px 24px 40px;
  }
  .intv .pgTopInner {
    flex-direction: column;
    gap: 24px;
  }
  .intv .pgTopImg {
    flex: 0 0 auto;
    width: 100%;
  }
  .intv .pgTopImg img {
    width: 100%;
    height: 200px;
  }
  .intv .pgTopText h1 {
    font-size: 20px;
  }
  .intv .listSec {
    padding: 40px 24px;
  }
  .intv .deepSec {
    padding: 40px 24px;
  }
  .intv .cardRow {
    flex-direction: column;
    gap: 24px;
  }
  .intv .intCard {
    flex: 1 1 auto;
    min-width: 0;
  }
  .intv .deepGrid {
    grid-template-columns: 1fr;
  }
  .intv .deepHead {
    grid-column: 1 / 2;
    flex-direction: column;
    gap: 12px;
  }
  .intv .deepHeadNote {
    text-align: left;
  }
  .intv .qaBlock.tall {
    grid-row: span 1;
  }
  .intv .frostedBox {
    grid-column: 1 / 2;
    padding: 24px;
  }
  .intv .listSecHead {
    flex-direction: column;
    gap: 12px;
  }
  .intv .listSecDesc {
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .intv .pgTopText h1 {
    font-size: 20px;
  }
  .intv .metricRow {
    flex-direction: column;
  }
  .intv .frostedBox {
    padding: 12px;
  }
}

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

.succPage .wrap {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.succPage .iconBox {
  width: 72px;
  height: 72px;
  border-radius: 28px;
  background-color: #fff;
  box-shadow: 0 6px 25px -1px rgba(82, 169, 132, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.succPage .iconBox svg {
  display: block;
}

.succPage .msgBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 560px;
}

.succPage .msgBlock .tag {
  font-size: 13px;
  line-height: 1.5;
  color: #52A984;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.succPage .msgBlock .heading {
  font-size: 37px;
  line-height: 1.1;
  color: #1b2e27;
  font-weight: 700;
  margin: 0;
}

.succPage .msgBlock .heading .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #52A984;
  margin-left: 4px;
  vertical-align: middle;
  position: relative;
  top: -4px;
}

.succPage .msgBlock .desc {
  font-size: 16px;
  line-height: 1.9;
  color: #3a4f47;
  margin: 0;
}

.succPage .divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #52A984, transparent);
  border-radius: 3px;
}

.succPage .infoCard {
  background-color: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 3px -1px rgba(82, 169, 132, 0.07), 0 6px 25px -1px rgba(82, 169, 132, 0.11);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.succPage .infoCard .cardHead {
  font-size: 14px;
  line-height: 1.5;
  color: #52A984;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.succPage .infoCard .cardText {
  font-size: 16px;
  line-height: 1.9;
  color: #3a4f47;
  margin: 0;
}

.succPage .infoCard .steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.succPage .infoCard .steps li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.9;
  color: #3a4f47;
}

.succPage .infoCard .steps li .stepNum {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 3px;
  background-color: #F4F9F9;
  border: 1px solid #9BC9A9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #52A984;
  margin-top: 2px;
}

.succPage .actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.succPage .actions .btnPrim {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 3px;
  border: 1.5px solid #52A984;
  background-color: transparent;
  color: #52A984;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.5s cubic-bezier(0.22,1,0.36,1), border-color 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.6s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  overflow: hidden;
}

.succPage .actions .btnPrim:hover {
  color: #1b2e27;
  border-color: #1b2e27;
  box-shadow: 0 6px 25px -1px rgba(82, 169, 132, 0.11);
}

.succPage .actions .btnPrim:hover .btnArrow {
  transform: translateX(4px);
}

.succPage .actions .btnPrim:focus {
  outline: 2px solid #52A984;
  outline-offset: 3px;
}

.succPage .actions .btnPrim:active {
  box-shadow: inset 0 2px 3px -1px rgba(82, 169, 132, 0.13);
}

.succPage .actions .btnPrim .btnArrow {
  display: inline-block;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}

.succPage .actions .btnSec {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 3px;
  border: 1.5px solid #9BC9A9;
  background-color: transparent;
  color: #3a4f47;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.55s ease-in-out, border-color 0.55s ease-in-out;
}

.succPage .actions .btnSec:hover {
  color: #52A984;
  border-color: #52A984;
}

.succPage .actions .btnSec:focus {
  outline: 2px solid #52A984;
  outline-offset: 3px;
}

.succPage .actions .btnSec:active {
  box-shadow: inset 0 2px 3px -1px rgba(155, 201, 169, 0.13);
}

.succPage .contactLine {
  font-size: 13px;
  line-height: 1.9;
  color: #3a4f47;
  text-align: center;
}

.succPage .contactLine a {
  color: #52A984;
  text-decoration: none;
  border-bottom: 1px solid #9BC9A9;
  transition: color 0.45s cubic-bezier(0.22,1,0.36,1), border-color 0.45s cubic-bezier(0.22,1,0.36,1);
}

.succPage .contactLine a:hover {
  color: #1b2e27;
  border-color: #1b2e27;
}

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

  .succPage .infoCard {
    padding: 24px;
  }

  .succPage .msgBlock .heading {
    font-size: 20px;
  }

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

  .succPage .actions .btnPrim,
  .succPage .actions .btnSec {
    justify-content: center;
  }
}
