@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&display=swap');

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

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Roboto Slab', Georgia, serif;
}

:focus-visible {
  outline: 2px solid #4EAC78;
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.pub__bar {
  background: linear-gradient(135deg, #4EAC78 0%, #3d9a68 100%);
  padding: 6px 28px;
}

.pub__bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.pub__bar-contact {
  display: flex;
  align-items: center;
  gap: 28px;
}

.pub__bar-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.5s ease-in-out;
}

.pub__bar-link:hover {
  opacity: 0.82;
}

.pub__bar-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.15;
}

.pub__bar-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.15;
  font-style: italic;
  letter-spacing: 0.01em;
}

.pub__bar-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hd-shell {
  background: #ffffff;
  box-shadow: 0 4px 14px 0 rgba(78, 172, 120, 0.09);
  position: relative;
  z-index: 100;
}

.hd-body {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 96px;
}

.hd-brand-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px 14px 0;
  border-right: 3px solid #4EAC78;
  flex-shrink: 0;
}

.hd-logo-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EAF0EC;
  border-radius: 12px;
  box-shadow: 0 2px 4px 0 rgba(78, 172, 120, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(78, 172, 120, 0.12);
  padding: 6px;
}

.hd-logo-wrap img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
}

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

.hd-brand-name {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.15;
  color: #1e3a2a;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hd-brand-sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.15;
  color: #4EAC78;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hd-menu-box {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 14px 0 14px 28px;
  overflow: hidden;
}

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

.hd-menu__item {
  flex-shrink: 0;
}

.hd-menu__link {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.15;
  color: #2a4a36;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: 7px;
  transition: color 0.5s ease-in-out, border-color 0.55s ease-in-out, background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  min-height: 44px;
}

.hd-menu__link:hover {
  color: #4EAC78;
  border-color: #A6C7BB;
  background: #EAF0EC;
}

.hd-menu__link--active {
  color: #4EAC78;
  border-color: #4EAC78;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .hd-body {
    padding: 0 14px;
    min-height: 80px;
  }

  .hd-brand-box {
    padding: 14px 14px 14px 0;
  }

  .hd-logo-wrap {
    width: 64px;
    height: 64px;
  }

  .hd-logo-wrap img {
    width: 52px;
    height: 52px;
  }

  .hd-brand-name {
    font-size: 15px;
  }

  .hd-menu-box {
    padding-left: 14px;
  }

  .hd-menu__link {
    padding: 6px 10px;
    font-size: 15px;
  }

  .pub__bar {
    padding: 6px 14px;
  }

  .pub__bar-tagline {
    display: none;
  }
}

@media (max-width: 768px) {
  .hd-brand-sub {
    display: none;
  }

  .pub__bar-contact {
    gap: 14px;
  }

  .pub__bar-label {
    display: none;
  }
}

@media (max-width: 375px) {
  .hd-brand-text {
    display: none;
  }

  .hd-brand-box {
    padding-right: 14px;
  }

  .hd-menu__link {
    padding: 6px 8px;
    font-size: 15px;
  }
}

.ft-shell {
  background: linear-gradient(180deg, #EAF0EC 0%, #d8e8df 100%);
  padding: 56px 28px 0;
  margin-top: 96px;
}

.ft-body {
  max-width: 1140px;
  margin: 0 auto;
}

.ft-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 28px;
  border-bottom: 1.5px solid #A6C7BB;
}

.ft-logo-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 4px 0 rgba(78, 172, 120, 0.07), 0 4px 14px 0 rgba(78, 172, 120, 0.09);
  padding: 6px;
  flex-shrink: 0;
}

.ft-logo-wrap img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

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

.ft-brand-name {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.15;
  color: #1e3a2a;
  letter-spacing: -0.02em;
}

.ft-brand-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: #3a5a46;
  max-width: 480px;
}

.ft-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px;
  padding: 56px 0 56px;
}

.ft-col__heading {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  color: #1e3a2a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 14px 0;
  padding-bottom: 6px;
  border-bottom: 2px solid #4EAC78;
  display: inline-block;
}

.ft-col__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: #3a5a46;
  margin: 0;
}

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

.ft-col__list-link {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: #2a4a36;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.5s ease-in-out;
}

.ft-col__list-link:hover {
  color: #4EAC78;
}

.ft-col__contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 1.65;
  color: #3a5a46;
}

.ft-col__contact-link {
  color: #2a4a36;
  text-decoration: none;
  transition: color 0.5s ease-in-out;
}

.ft-col__contact-link:hover {
  color: #4EAC78;
}

.ft-dot {
  width: 6px;
  height: 6px;
  background: #4EAC78;
  border-radius: 48px;
  flex-shrink: 0;
}

.ft-legal-zone {
  border-top: 1.5px solid #A6C7BB;
  padding: 28px;
  margin: 0 -28px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ft-legal-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.ft-copyright {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.15;
  color: #3a5a46;
}

.ft-legal-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.ft-legal-link {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.15;
  color: #3a5a46;
  text-decoration: none;
  transition: color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ft-legal-link:hover {
  color: #4EAC78;
}

@media (max-width: 1024px) {
  .ft-columns {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 28px 0 28px;
  }
}

@media (max-width: 768px) {
  .ft-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

@media (max-width: 375px) {
  .ft-shell {
    padding: 28px 14px 0;
  }

  .ft-legal-zone {
    padding: 28px 14px;
    margin: 0 -14px;
  }

  .ft-logo-wrap {
    width: 56px;
    height: 56px;
  }

  .ft-logo-wrap img {
    width: 44px;
    height: 44px;
  }
}

.ck-popup {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 420px;
  max-width: calc(100vw - 56px);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 48px 0 rgba(78, 172, 120, 0.11), 0 4px 14px 0 rgba(78, 172, 120, 0.09);
  z-index: 8000;
  padding: 28px;
  display: none;
}

.ck-popup.visible {
  display: block;
}

.ck-popup__desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: #2a4a36;
  margin: 0 0 6px 0;
}

.ck-popup__headline {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.15;
  color: #1e3a2a;
  margin: 0 0 14px 0;
  letter-spacing: -0.01em;
}

.ck-expand-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: #4EAC78;
  cursor: pointer;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  transition: color 0.5s ease-in-out;
  min-height: 44px;
}

.ck-expand-btn:hover,
.ck-expand-btn:focus-visible {
  color: #3d9a68;
}

.ck-panel {
  display: none;
  padding: 14px;
  background: #EAF0EC;
  border-radius: 12px;
  margin-bottom: 14px;
}

.ck-panel.open {
  display: block;
}

.ck-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ck-toggle-label {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: #2a4a36;
}

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

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

.ck-toggle__track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #A6C7BB;
  border-radius: 48px;
  transition: background 0.5s ease-in-out;
  cursor: pointer;
}

.ck-toggle input:checked+.ck-toggle__track {
  background: #4EAC78;
}

.ck-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 48px;
  transition: transform 0.5s ease-in-out;
  pointer-events: none;
}

.ck-toggle input:checked~.ck-toggle__thumb {
  transform: translateX(20px);
}

.ck-btns {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.ck-btn {
  flex: 1;
  padding: 14px;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  border-radius: 12px;
  cursor: pointer;
  min-height: 44px;
  transition: background 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ck-btn--accept {
  background: linear-gradient(135deg, #4EAC78 0%, #3d9a68 100%);
  color: #ffffff;
  border: 2px solid #4EAC78;
}

.ck-btn--accept:hover,
.ck-btn--accept:focus-visible {
  background: linear-gradient(225deg, #4EAC78 0%, #3d9a68 100%);
  border-color: #3d9a68;
}

.ck-btn--reject {
  background: transparent;
  color: #2a4a36;
  border: 2px solid #A6C7BB;
}

.ck-btn--reject:hover,
.ck-btn--reject:focus-visible {
  background: #EAF0EC;
  border-color: #4EAC78;
  color: #1e3a2a;
}

@media (max-width: 375px) {
  .ck-popup {
    left: 14px;
    bottom: 14px;
    max-width: calc(100vw - 28px);
    padding: 14px;
  }

  .ck-btns {
    flex-direction: column;
  }
}

.text-j-legal {
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 28px;
}

.text-j-legal h1 {
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1b2e24;
  margin-bottom: 28px;
  margin-top: 0;
}

.text-j-legal h2 {
  font-size: 41px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #1b2e24;
  margin-top: 56px;
  margin-bottom: 28px;
}

.text-j-legal h3 {
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1b2e24;
  margin-top: 56px;
  margin-bottom: 14px;
}

.text-j-legal h4 {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.008em;
  color: #1b2e24;
  margin-top: 28px;
  margin-bottom: 14px;
}

.text-j-legal h5 {
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: #2a4035;
  margin-top: 28px;
  margin-bottom: 14px;
}

.text-j-legal h6 {
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4EAC78;
  margin-top: 28px;
  margin-bottom: 14px;
}

.text-j-legal p {
  font-size: 19px;
  line-height: 1.65;
  color: #2e3d36;
  margin-top: 0;
  margin-bottom: 28px;
  max-width: 72ch;
}

.text-j-legal ul,
.text-j-legal ol {
  font-size: 19px;
  line-height: 1.65;
  color: #2e3d36;
  margin-top: 0;
  margin-bottom: 28px;
  padding-left: 28px;
  max-width: 72ch;
}

.text-j-legal ul {
  list-style: none;
  padding-left: 0;
}

.text-j-legal ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 14px;
}

.text-j-legal ul li::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 48px;
  background-color: #4EAC78;
  position: absolute;
  left: 6px;
  top: 0.55em;
}

.text-j-legal ol {
  list-style: none;
  counter-reset: policy-counter;
  padding-left: 0;
}

.text-j-legal ol li {
  counter-increment: policy-counter;
  padding-left: 28px;
  position: relative;
  margin-bottom: 14px;
}

.text-j-legal ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #4EAC78;
  font-weight: 700;
  min-width: 20px;
}

.text-j-legal li {
  font-size: 19px;
  line-height: 1.65;
  color: #2e3d36;
}

.text-j-legal ul ul,
.text-j-legal ol ol,
.text-j-legal ul ol,
.text-j-legal ol ul {
  margin-top: 14px;
  margin-bottom: 0;
}

.text-j-legal strong,
.text-j-legal b {
  font-weight: 700;
  color: #1b2e24;
}

.text-j-legal a {
  color: #4EAC78;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.5s ease-in-out, text-decoration-color 0.45s ease-in-out;
}

.text-j-legal a:hover {
  color: #3a8f61;
  text-decoration-color: #A6C7BB;
}

.text-j-legal a:focus-visible {
  outline: 2px solid #4EAC78;
  outline-offset: 3px;
  border-radius: 7px;
}

.text-j-legal table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.65;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px 0 rgba(78, 172, 120, 0.07), 0 4px 14px 0 rgba(78, 172, 120, 0.09);
}

.text-j-legal thead {
  background-color: #EAF0EC;
}

.text-j-legal thead th {
  padding: 14px 28px;
  text-align: left;
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1b2e24;
  font-weight: 700;
  border-bottom: 2px solid #A6C7BB;
}

.text-j-legal tbody tr {
  border-bottom: 1px solid #EAF0EC;
  transition: background-color 0.5s ease-in-out;
}

.text-j-legal tbody tr:last-child {
  border-bottom: none;
}

.text-j-legal tbody tr:hover {
  background-color: #EAF0EC;
}

.text-j-legal td {
  padding: 14px 28px;
  font-size: 15px;
  line-height: 1.65;
  color: #2e3d36;
  vertical-align: top;
}

.text-j-legal hr {
  border: none;
  height: 1px;
  background-color: #A6C7BB;
  margin-top: 56px;
  margin-bottom: 56px;
  opacity: 0.5;
}

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

  .text-j-legal h1 {
    font-size: 41px;
  }

  .text-j-legal h2 {
    font-size: 31px;
  }

  .text-j-legal h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .text-j-legal {
    padding: 56px 14px;
  }

  .text-j-legal h1 {
    font-size: 31px;
  }

  .text-j-legal h2 {
    font-size: 24px;
    margin-top: 56px;
  }

  .text-j-legal h3 {
    font-size: 19px;
    margin-top: 28px;
  }

  .text-j-legal h4,
  .text-j-legal h5,
  .text-j-legal h6 {
    font-size: 15px;
    margin-top: 28px;
  }

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

  .text-j-legal table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
  }

  .text-j-legal thead th,
  .text-j-legal td {
    padding: 14px;
    white-space: nowrap;
  }

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

@media (max-width: 375px) {
  .text-j-legal {
    padding: 28px 14px;
  }

  .text-j-legal h1 {
    font-size: 24px;
  }

  .text-j-legal h2 {
    font-size: 19px;
    margin-top: 28px;
    margin-bottom: 14px;
  }

  .text-j-legal h3,
  .text-j-legal h4,
  .text-j-legal h5,
  .text-j-legal h6 {
    font-size: 15px;
    margin-top: 28px;
    margin-bottom: 14px;
  }

  .text-j-legal p,
  .text-j-legal ul,
  .text-j-legal ol,
  .text-j-legal li {
    font-size: 15px;
    max-width: 100%;
  }
}

.bdet {
  background: #f4f7f5;
  min-height: 100vh;
  overflow-x: clip;
}

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

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

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

.bdet .anim-1 {
  animation: dropIn 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.bdet .anim-2 {
  animation: dropIn 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.12s both;
}

.bdet .anim-3 {
  animation: dropIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.22s both;
}

.bdet .anim-4 {
  animation: dropIn 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.32s both;
}

.bdet .ttl-blk {
  position: relative;
  padding: 56px 0 96px;
}

.bdet .ttl-blk__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.bdet .ttl-blk__wave svg {
  display: block;
  width: 100%;
}

.bdet .ttl-blk__img-zone {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 8px 48px 0 rgba(78, 172, 120, 0.11);
}

.bdet .ttl-blk__img-zone img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  filter: blur(0px);
}

.bdet .ttl-blk__img-zone::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(20, 40, 30, 0.62) 0%, transparent 100%);
  border-radius: 0 0 20px 20px;
  pointer-events: none;
}

.bdet .ttl-blk__meta-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.bdet .ttl-blk__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #EAF0EC;
  border: 1px solid #A6C7BB;
  border-radius: 7px;
  font-size: 15px;
  color: #2a5c40;
  line-height: 1.15;
}

.bdet .ttl-blk__badge svg {
  flex-shrink: 0;
}

.bdet .ttl-blk__h1 {
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  background: linear-gradient(112deg, #2a5c40 0%, #4EAC78 55%, #A6C7BB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 820px;
}

.bdet .ttl-blk__sub {
  font-size: 19px;
  line-height: 1.65;
  color: #3a5248;
  max-width: 620px;
  margin: 0 0 28px;
}

.bdet .ttl-blk__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.bdet .btn-print {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border: 1.5px solid #4EAC78;
  border-radius: 12px;
  background: transparent;
  color: #2a5c40;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.5s ease-in-out, color 0.5s ease-in-out, border-color 0.45s ease-in-out;
  line-height: 1.15;
}

.bdet .btn-print:hover {
  background: linear-gradient(135deg, #4EAC78 0%, #A6C7BB 100%);
  color: #fff;
  border-color: transparent;
}

.bdet .btn-print:focus {
  outline: 2px solid #4EAC78;
  outline-offset: 3px;
}

.bdet .div-line {
  height: 1px;
  background: linear-gradient(90deg, #4EAC78 0%, transparent 60%);
  margin: 0;
  border: none;
}

.bdet .art-body {
  padding: 56px 0;
  background: #fff;
}

.bdet .art-body__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

.bdet .art-body__text {
  min-width: 0;
}

.bdet .art-body__text p {
  font-size: 19px;
  line-height: 1.65;
  color: #243328;
  margin: 0 0 28px;
}

.bdet .art-body__text h2 {
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 28px 0 14px;
  background: linear-gradient(108deg, #2a5c40 0%, #4EAC78 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bdet .art-body__text h4 {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #2a5c40;
  margin: 28px 0 14px;
}

.bdet .art-body__text abbr {
  text-decoration: underline dotted #4EAC78;
  cursor: help;
  color: inherit;
}

.bdet .art-body__text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bdet .art-body__text ul li {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  padding: 6px 14px;
  background: #EAF0EC;
  border-radius: 7px;
  font-size: 15px;
  line-height: 1.65;
  color: #243328;
}

.bdet .art-body__text ul li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 48px;
  background: #4EAC78;
  margin-top: 8px;
  flex-shrink: 0;
}

.bdet .art-body__text time {
  font-size: 15px;
  color: #4EAC78;
  display: block;
  margin-bottom: 14px;
}

.bdet .art-sidebar {
  position: sticky;
  top: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bdet .sidebar-card {
  background: #EAF0EC;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 14px 0 rgba(78, 172, 120, 0.09);
}

.bdet .sidebar-card__label {
  font-size: 15px;
  line-height: 1.15;
  color: #4EAC78;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 14px;
  display: block;
}

.bdet .sidebar-card__stat {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bdet .stat-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #A6C7BB;
}

.bdet .stat-row:last-child {
  border-bottom: none;
}

.bdet .stat-row__name {
  font-size: 15px;
  color: #3a5248;
  line-height: 1.15;
}

.bdet .stat-row__val {
  font-size: 19px;
  line-height: 1.15;
  color: #2a5c40;
  font-weight: 700;
}

.bdet .sidebar-card__link {
  display: block;
  margin-top: 14px;
  font-size: 15px;
  color: #2a5c40;
  text-decoration: none;
  border: 1.5px solid #4EAC78;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  transition: background 0.5s ease-in-out, color 0.48s ease-in-out;
}

.bdet .sidebar-card__link:hover {
  background: linear-gradient(112deg, #4EAC78 0%, #A6C7BB 100%);
  color: #fff;
}

.bdet .sidebar-card__link:focus {
  outline: 2px solid #4EAC78;
  outline-offset: 3px;
}

.bdet .accent-strip {
  background: #4EAC78;
  padding: 56px 0;
  position: relative;
}

.bdet .accent-strip__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 56px;
}

.bdet .accent-strip__deco {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.bdet .accent-strip__quote {
  flex: 1;
  min-width: 0;
}

.bdet .accent-strip__quote-text {
  font-size: 31px;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.bdet .accent-strip__quote-text strong {
  font-size: 41px;
  display: block;
  letter-spacing: -0.03em;
}

.bdet .accent-strip__note {
  font-size: 15px;
  line-height: 1.65;
  color: #EAF0EC;
  margin: 0;
}

.bdet .accent-strip__diag {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.bdet .bottom-bar {
  padding: 56px 0 96px;
  background: #EAF0EC;
}

.bdet .bottom-bar__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.bdet .bottom-bar__tags {
  display: flex;
  flex-direction: row;
  gap: 6px;
  flex-wrap: wrap;
}

.bdet .tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid #A6C7BB;
  border-radius: 32px;
  font-size: 15px;
  color: #2a5c40;
  line-height: 1.15;
  text-decoration: none;
  transition: background 0.5s ease-in-out, border-color 0.45s ease-in-out;
}

.bdet .tag-pill:hover {
  background: linear-gradient(112deg, #EAF0EC 0%, #A6C7BB 100%);
  border-color: #4EAC78;
}

.bdet .tag-pill:focus {
  outline: 2px solid #4EAC78;
  outline-offset: 2px;
}

.bdet .back-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border: 1.5px solid #4EAC78;
  border-radius: 12px;
  background: transparent;
  color: #2a5c40;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.55s ease-in-out, color 0.5s ease-in-out;
}

.bdet .back-top:hover {
  background: linear-gradient(135deg, #4EAC78 0%, #A6C7BB 100%);
  color: #fff;
}

.bdet .back-top:focus {
  outline: 2px solid #4EAC78;
  outline-offset: 3px;
}

.bdet .bottom-bar__nav {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}

.bdet .bottom-bar__nav a {
  font-size: 15px;
  color: #2a5c40;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.5s ease-in-out;
  line-height: 1.65;
}

.bdet .bottom-bar__nav a:hover {
  border-color: #4EAC78;
}

.bdet .deco-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  pointer-events: none;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .bdet .art-body__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bdet .art-sidebar {
    position: static;
  }

  .bdet .ttl-blk__h1 {
    font-size: 41px;
  }
}

@media (max-width: 768px) {
  .bdet .ttl-blk__h1 {
    font-size: 31px;
  }

  .bdet .ttl-blk__img-zone img {
    height: 280px;
  }

  .bdet .accent-strip__inner {
    flex-direction: column;
    gap: 28px;
  }

  .bdet .accent-strip__quote-text strong {
    font-size: 31px;
  }

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

@media (max-width: 375px) {
  .bdet .ttl-blk__h1 {
    font-size: 24px;
  }

  .bdet .pg-wrap {
    padding: 0 14px;
  }

  .bdet .accent-strip__quote-text {
    font-size: 24px;
  }
}

@media print {

  .bdet .btn-print,
  .bdet .back-top,
  .bdet .accent-strip__diag,
  .bdet .deco-lines {
    display: none;
  }
}

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

.mstr__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.mstr__grad-text {
  background: linear-gradient(112deg, #4EAC78 0%, #A6C7BB 60%, #4EAC78 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mstr__grad-line {
  display: inline-block;
  position: relative;
}

.mstr__grad-line::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #4EAC78 0%, #A6C7BB 100%);
  border-radius: 7px;
}

.mstr__section-num {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.mstr__section-num .num-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #A6C7BB 50%, transparent);
}

.mstr__section-num .num-label {
  font-size: 15px;
  color: #4EAC78;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border: 1px solid #A6C7BB;
  border-radius: 32px;
}

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

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

.mstr__title-block {
  background: #fff;
  padding: 56px 0;
  position: relative;
}

.mstr__title-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #EAF0EC 0%, #fff 55%, #EAF0EC 100%);
  opacity: 0.55;
  pointer-events: none;
}

.mstr__title-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.mstr__img-side {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
}

.mstr__img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mstr__img-side:hover img {
  transform: scale(1.04);
}

.mstr__img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: repeating-linear-gradient(0deg,
      rgba(78, 172, 120, 0.04) 0px,
      rgba(78, 172, 120, 0.04) 1px,
      transparent 1px,
      transparent 4px);
  pointer-events: none;
  transition: background 0.55s ease-in-out;
}

.mstr__img-side:hover .mstr__img-overlay {
  background: rgba(78, 172, 120, 0.18);
}

.mstr__img-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.mstr__img-corner--tl {
  top: 10px;
  left: 10px;
  border-top: 2px solid #4EAC78;
  border-left: 2px solid #4EAC78;
  border-radius: 7px 0 0 0;
}

.mstr__img-corner--tr {
  top: 10px;
  right: 10px;
  border-top: 2px solid #4EAC78;
  border-right: 2px solid #4EAC78;
  border-radius: 0 7px 0 0;
}

.mstr__img-corner--bl {
  bottom: 10px;
  left: 10px;
  border-bottom: 2px solid #4EAC78;
  border-left: 2px solid #4EAC78;
  border-radius: 0 0 0 7px;
}

.mstr__img-corner--br {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid #4EAC78;
  border-right: 2px solid #4EAC78;
  border-radius: 0 0 7px 0;
}

.mstr__title-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 0;
  animation: mstr-lift 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.mstr__title-tag {
  font-size: 15px;
  color: #4EAC78;
  letter-spacing: 0.1em;
  border: 1px solid #A6C7BB;
  border-radius: 32px;
  padding: 6px 14px;
  margin-bottom: 28px;
  background: #EAF0EC;
}

.mstr__title-h1 {
  font-size: 41px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 28px 0;
  background: linear-gradient(112deg, #4EAC78 0%, #A6C7BB 55%, #4EAC78 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mstr__counter-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.mstr__counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #EAF0EC;
  border: 1px solid #A6C7BB;
  border-radius: 12px;
  padding: 14px 28px;
  box-shadow: 0 4px 14px 0 rgba(78, 172, 120, 0.09);
}

.mstr__counter .num {
  font-size: 41px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #4EAC78;
}

.mstr__counter .lbl {
  font-size: 15px;
  color: #3a6b52;
  line-height: 1.65;
}

.mstr__title-desc {
  font-size: 19px;
  line-height: 1.65;
  color: #2d4a3a;
  text-align: center;
  margin: 0 0 28px 0;
  max-width: 360px;
}

.mstr__title-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.38;
  margin-top: 14px;
}

.mstr__title-arrow .arr-line {
  width: 1px;
  height: 32px;
  background: #4EAC78;
}

.mstr__title-arrow .arr-head {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #4EAC78;
}

.mstr__title-side-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 14px 0;
  gap: 28px;
}

.mstr__side-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EAF0EC;
  border: 1px solid #A6C7BB;
  border-radius: 32px;
  padding: 6px 14px;
  font-size: 15px;
  color: #2d4a3a;
  width: fit-content;
}

.mstr__side-badge svg {
  flex-shrink: 0;
}

.mstr__side-block {
  background: #fff;
  border: 1px solid #EAF0EC;
  border-radius: 12px;
  padding: 14px 14px;
  box-shadow: 0 2px 4px 0 rgba(78, 172, 120, 0.07);
}

.mstr__side-block h4 {
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #2d4a3a;
  margin: 0 0 6px 0;
}

.mstr__side-block p {
  font-size: 15px;
  line-height: 1.65;
  color: #4a6657;
  margin: 0;
}

.mstr__title-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.mstr__title-corner--tl {
  top: 0;
  left: 0;
  border-top: 2px solid #A6C7BB;
  border-left: 2px solid #A6C7BB;
  border-radius: 7px 0 0 0;
}

.mstr__title-corner--tr {
  top: 0;
  right: 0;
  border-top: 2px solid #A6C7BB;
  border-right: 2px solid #A6C7BB;
  border-radius: 0 7px 0 0;
}

.mstr__title-corner--bl {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid #A6C7BB;
  border-left: 2px solid #A6C7BB;
  border-radius: 0 0 0 7px;
}

.mstr__title-corner--br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid #A6C7BB;
  border-right: 2px solid #A6C7BB;
  border-radius: 0 0 7px 0;
}

.mstr__modules {
  background: #EAF0EC;
  padding: 56px 0;
  position: relative;
}

.mstr__modules::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(78, 172, 120, 0.07) 0%, transparent 60%, rgba(166, 199, 187, 0.09) 100%);
  pointer-events: none;
}

.mstr__modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.mstr__mod-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 14px 0 rgba(78, 172, 120, 0.09);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #EAF0EC;
}

.mstr__mod-card:hover {
  box-shadow: 0 8px 48px 0 rgba(78, 172, 120, 0.11);
  transform: translateY(-3px);
}

.mstr__mod-card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mstr__mod-num {
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  background: linear-gradient(112deg, #4EAC78, #A6C7BB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.22;
  margin-bottom: -6px;
}

.mstr__mod-h {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  background: linear-gradient(112deg, #4EAC78 0%, #A6C7BB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mstr__mod-p {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5a48;
  margin: 0;
}

.mstr__mod-pills {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
}

.mstr__pill {
  font-size: 15px;
  background: #EAF0EC;
  border: 1px solid #A6C7BB;
  border-radius: 32px;
  padding: 6px 14px;
  color: #2d4a3a;
  line-height: 1.15;
}

.mstr__metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mstr__metric-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.mstr__metric-label {
  font-size: 15px;
  color: #3a5a48;
  min-width: 120px;
  line-height: 1.65;
}

.mstr__metric-bar-wrap {
  flex: 1;
  background: #EAF0EC;
  border-radius: 7px;
  height: 8px;
  overflow: hidden;
}

.mstr__metric-bar {
  height: 100%;
  border-radius: 7px;
  background: linear-gradient(90deg, #4EAC78, #A6C7BB);
  transition: width 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mstr__metric-val {
  font-size: 15px;
  color: #4EAC78;
  min-width: 56px;
  text-align: right;
  line-height: 1.65;
}

.mstr__before-after {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mstr__ba-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  background: #EAF0EC;
  border-radius: 12px;
  padding: 14px;
}

.mstr__ba-before {
  font-size: 15px;
  line-height: 1.65;
  color: #7a9e8c;
}

.mstr__ba-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mstr__ba-arrow svg {
  width: 20px;
  height: 20px;
}

.mstr__ba-after {
  font-size: 15px;
  line-height: 1.65;
  color: #2d4a3a;
  font-weight: 600;
}

.mstr__ba-delta {
  font-size: 15px;
  color: #4EAC78;
  background: rgba(78, 172, 120, 0.1);
  border-radius: 32px;
  padding: 6px 14px;
  text-align: center;
}

.mstr__mod-divider {
  width: 1px;
  background: #EAF0EC;
  align-self: stretch;
}

@media (max-width: 1024px) {
  .mstr__title-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mstr__img-side {
    min-height: 260px;
    order: -1;
  }

  .mstr__title-side-text {
    display: none;
  }

  .mstr__modules-grid {
    grid-template-columns: 1fr;
  }

  .mstr__mod-card--wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .mstr__mod-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .mstr__title-block {
    padding: 28px 0;
  }

  .mstr__title-h1 {
    font-size: 31px;
  }

  .mstr__counter-row {
    flex-wrap: wrap;
  }

  .mstr__modules {
    padding: 28px 0;
  }

  .mstr__mod-h {
    font-size: 19px;
  }

  .mstr__metric-label {
    min-width: 80px;
  }
}

@media (max-width: 375px) {
  .mstr__inner {
    padding: 0 14px;
  }

  .mstr__title-h1 {
    font-size: 24px;
  }

  .mstr__counter .num {
    font-size: 31px;
  }

  .mstr__ba-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .mstr__ba-arrow {
    transform: rotate(90deg);
  }
}

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

.blg * {
  box-sizing: border-box;
}

.blg__reveal {
  animation: blg-slide-in 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.blg__reveal--d1 {
  animation-delay: 0.08s;
}

.blg__reveal--d2 {
  animation-delay: 0.18s;
}

.blg__reveal--d3 {
  animation-delay: 0.28s;
}

.blg__reveal--d4 {
  animation-delay: 0.38s;
}

@keyframes blg-slide-in {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }

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

@keyframes blg-outline-flicker {

  0%,
  100% {
    outline-color: rgba(78, 172, 120, 0.18);
  }

  40% {
    outline-color: rgba(78, 172, 120, 0.38);
  }

  70% {
    outline-color: rgba(78, 172, 120, 0.12);
  }
}

.blg__top {
  background: #fff;
  padding: 96px 28px 56px;
  text-align: center;
  position: relative;
}

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

.blg__top-circles span {
  position: absolute;
  border-radius: 48px;
  border: 1.5px solid rgba(78, 172, 120, 0.10);
  display: block;
}

.blg__top-circles span:nth-child(1) {
  width: 220px;
  height: 220px;
  top: -60px;
  left: -60px;
  border-radius: 48px;
  opacity: 0.7;
}

.blg__top-circles span:nth-child(2) {
  width: 340px;
  height: 340px;
  top: -110px;
  left: -110px;
  border-radius: 48px;
  opacity: 0.4;
}

.blg__top-circles span:nth-child(3) {
  width: 160px;
  height: 160px;
  bottom: -40px;
  right: 80px;
  border-radius: 48px;
  opacity: 0.5;
}

.blg__top-circles span:nth-child(4) {
  width: 260px;
  height: 260px;
  bottom: -80px;
  right: 30px;
  border-radius: 48px;
  opacity: 0.3;
}

.blg__top-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.blg__top-label {
  display: inline-block;
  font-size: 15px;
  line-height: 1.65;
  color: #4EAC78;
  border: 1px solid rgba(78, 172, 120, 0.35);
  border-radius: 7px;
  padding: 6px 14px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.blg__top-h1 {
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  background: linear-gradient(112deg, #2d7a55 0%, #4EAC78 55%, #A6C7BB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blg__top-sub {
  font-size: 19px;
  line-height: 1.65;
  color: #3a5c4a;
  max-width: 560px;
  margin: 0 auto 28px;
}

.blg__top-link {
  display: inline-block;
  font-size: 15px;
  line-height: 1.65;
  color: #4EAC78;
  border: 1.5px solid #4EAC78;
  border-radius: 7px;
  padding: 6px 28px;
  text-decoration: none;
  transition: background 0.5s ease-in-out, color 0.45s ease-in-out;
  margin-bottom: 56px;
}

.blg__top-link:hover {
  background: linear-gradient(135deg, #4EAC78, #A6C7BB);
  color: #fff;
  border-color: transparent;
}

.blg__top-img-wrap {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 48px 0 rgba(78, 172, 120, 0.11);
}

.blg__top-img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.55) brightness(0.96);
  object-fit: cover;
  transition: filter 0.55s ease-in-out;
}

.blg__top-img-wrap:hover .blg__top-img {
  filter: saturate(0.8) brightness(1.0);
}

.blg__divider--a {
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, rgba(78, 172, 120, 0.12) 0%, rgba(78, 172, 120, 0.55) 60%, #4EAC78 100%);
}

.blg__posts {
  background: #EAF0EC;
  padding: 56px 28px;
}

.blg__posts-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.blg__posts-heading {
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  background: linear-gradient(105deg, #2d7a55 0%, #4EAC78 70%, #A6C7BB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.blg__card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px 0 rgba(78, 172, 120, 0.09);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  outline: 1.5px solid transparent;
  animation: blg-outline-flicker 4.5s ease-in-out infinite;
  transition: box-shadow 0.5s ease-in-out, transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blg__card:hover {
  box-shadow: 0 8px 48px 0 rgba(78, 172, 120, 0.11);
  transform: translateY(-4px);
}

.blg__card-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}

.blg__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blg__card:hover .blg__card-img {
  transform: scale(1.04);
}

.blg__card-body {
  padding: 14px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blg__card-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.blg__card-date {
  font-size: 15px;
  line-height: 1.65;
  color: #5a8070;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blg__card-date svg {
  flex-shrink: 0;
}

.blg__card-stats {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-left: auto;
}

.blg__stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 1.65;
  color: #5a8070;
}

.blg__stat svg {
  flex-shrink: 0;
}

.blg__card-h {
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  background: linear-gradient(100deg, #2d7a55 0%, #4EAC78 80%, #A6C7BB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blg__card-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5c4a;
  margin: 0 0 14px;
  flex: 1;
}

.blg__card-link {
  display: inline-block;
  font-size: 15px;
  line-height: 1.65;
  color: #4EAC78;
  border: 1.5px solid rgba(78, 172, 120, 0.45);
  border-radius: 7px;
  padding: 6px 14px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.5s ease-in-out, color 0.5s ease-in-out, border-color 0.45s ease-in-out;
}

.blg__card-link:hover {
  background: linear-gradient(135deg, #4EAC78, #A6C7BB);
  color: #fff;
  border-color: transparent;
}

.blg__divider--b {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4EAC78 0%, rgba(166, 199, 187, 0.4) 70%, rgba(78, 172, 120, 0.08) 100%);
}

.blg__pros {
  background: #fff;
  padding: 56px 28px;
}

.blg__pros-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 28px;
  align-items: start;
}

.blg__pros-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blg__pros-col--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 14px;
}

.blg__pros-heading {
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  background: linear-gradient(108deg, #2d7a55 0%, #4EAC78 60%, #A6C7BB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blg__pros-sub {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5c4a;
  margin: 0 0 14px;
}

.blg__pros-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  background: #EAF0EC;
  box-shadow: 0 2px 4px 0 rgba(78, 172, 120, 0.07);
}

.blg__pros-item--con {
  background: #f5f0f0;
  box-shadow: 0 2px 4px 0 rgba(166, 100, 100, 0.07);
}

.blg__pros-icon {
  width: 32px;
  height: 32px;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  outline: 2px solid rgba(78, 172, 120, 0.3);
  outline-offset: 2px;
}

.blg__pros-icon--green {
  background: #4EAC78;
}

.blg__pros-icon--red {
  background: #c07070;
  outline-color: rgba(192, 112, 112, 0.3);
}

.blg__pros-item-text {
  font-size: 15px;
  line-height: 1.65;
  color: #2a4035;
}

.blg__pros-divider {
  width: 2px;
  min-height: 200px;
  background: linear-gradient(180deg, rgba(78, 172, 120, 0.08) 0%, #4EAC78 50%, rgba(78, 172, 120, 0.08) 100%);
  border-radius: 7px;
  margin: 0 auto;
}

.blg__pros-center-label {
  font-size: 15px;
  line-height: 1.65;
  color: #4EAC78;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.blg__lines-deco {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
}

.blg__lines-deco span {
  display: block;
  height: 1.5px;
  background: rgba(78, 172, 120, 0.25);
  border-radius: 7px;
}

.blg__lines-deco span:nth-child(1) {
  width: 18px;
}

.blg__lines-deco span:nth-child(2) {
  width: 28px;
}

.blg__lines-deco span:nth-child(3) {
  width: 40px;
}

.blg__lines-deco span:nth-child(4) {
  width: 56px;
}

.blg__lines-deco span:nth-child(5) {
  width: 70px;
}

.blg__divider--c {
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(78, 172, 120, 0.06) 0%, rgba(166, 199, 187, 0.6) 50%, #4EAC78 100%);
}

.blg__contact {
  background: #1a3d2b;
  padding: 56px 28px;
  position: relative;
}

.blg__contact-deco {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  pointer-events: none;
}

.blg__contact-deco span {
  display: block;
  height: 1.5px;
  background: rgba(166, 199, 187, 0.2);
  border-radius: 7px;
}

.blg__contact-deco span:nth-child(1) {
  width: 14px;
}

.blg__contact-deco span:nth-child(2) {
  width: 24px;
}

.blg__contact-deco span:nth-child(3) {
  width: 36px;
}

.blg__contact-deco span:nth-child(4) {
  width: 50px;
}

.blg__contact-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.blg__contact-text {
  flex: 1;
}

.blg__contact-h {
  font-size: 41px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  background: linear-gradient(110deg, #A6C7BB 0%, #4EAC78 60%, #c8e8d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blg__contact-p {
  font-size: 19px;
  line-height: 1.65;
  color: #a8c4b4;
  margin: 0 0 28px;
}

.blg__contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.blg__field-label {
  font-size: 15px;
  line-height: 1.65;
  color: #A6C7BB;
}

.blg__field-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.blg__field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #4EAC78;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.blg__field-icon--top {
  top: 18px;
  transform: none;
}

.blg__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(166, 199, 187, 0.25);
  border-radius: 7px;
  padding: 6px 14px 6px 40px;
  font-size: 15px;
  line-height: 1.65;
  color: #EAF0EC;
  outline: none;
  transition: border-color 0.5s ease-in-out, background 0.5s ease-in-out;
}

.blg__input::placeholder {
  color: rgba(166, 199, 187, 0.55);
}

.blg__input:focus {
  border-color: #4EAC78;
  background: rgba(255, 255, 255, 0.11);
}

.blg__textarea {
  resize: vertical;
  min-height: 96px;
  padding-top: 14px;
}

.blg__contact-btn {
  type: submit;
  display: inline-block;
  font-size: 15px;
  line-height: 1.65;
  color: #4EAC78;
  border: 1.5px solid #4EAC78;
  border-radius: 7px;
  padding: 6px 28px;
  background: transparent;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.55s ease-in-out, color 0.5s ease-in-out, border-color 0.45s ease-in-out;
}

.blg__contact-btn:hover {
  background: linear-gradient(125deg, #4EAC78, #A6C7BB);
  color: #fff;
  border-color: transparent;
}

.blg__contact-btn:focus {
  outline: 2px solid #A6C7BB;
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .blg__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blg__pros-inner {
    grid-template-columns: 1fr;
  }

  .blg__pros-col--center {
    flex-direction: row;
    min-height: auto;
  }

  .blg__pros-divider {
    width: 80px;
    height: 2px;
    min-height: auto;
    background: linear-gradient(90deg, rgba(78, 172, 120, 0.08) 0%, #4EAC78 50%, rgba(78, 172, 120, 0.08) 100%);
  }

  .blg__contact-inner {
    flex-direction: column;
    gap: 28px;
  }

  .blg__top-h1 {
    font-size: 41px;
  }
}

@media (max-width: 768px) {
  .blg__grid {
    grid-template-columns: 1fr;
  }

  .blg__top {
    padding: 56px 14px 28px;
  }

  .blg__top-h1 {
    font-size: 31px;
  }

  .blg__top-sub {
    font-size: 15px;
  }

  .blg__posts {
    padding: 28px 14px;
  }

  .blg__pros {
    padding: 28px 14px;
  }

  .blg__contact {
    padding: 28px 14px;
  }

  .blg__contact-h {
    font-size: 31px;
  }
}

@media (max-width: 375px) {
  .blg__top-h1 {
    font-size: 24px;
  }

  .blg__card-body {
    padding: 14px;
  }
}

.spns {
  background: #ffffff;
  overflow-x: clip;
  position: relative;
}

.spns .geo-divider {
  width: 100%;
  height: 28px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.spns .geo-divider svg {
  width: 100%;
  height: 28px;
}

.spns .grad-text {
  background: linear-gradient(112deg, #4EAC78 0%, #A6C7BB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.spns .marker-hl {
  position: relative;
  display: inline;
}

.spns .marker-hl::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #4EAC78 0%, #A6C7BB 100%);
  opacity: 0.38;
  border-radius: 7px;
  z-index: 0;
}

.spns .thin-lines-deco {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0.22;
  pointer-events: none;
}

.spns .thin-lines-deco span {
  display: block;
  height: 1px;
  background: #4EAC78;
}

.spns .fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: spns-fadeup 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.spns .fade-up--d1 {
  animation-delay: 0.08s;
}

.spns .fade-up--d2 {
  animation-delay: 0.2s;
}

.spns .fade-up--d3 {
  animation-delay: 0.34s;
}

.spns .fade-up--d4 {
  animation-delay: 0.48s;
}

@keyframes spns-fadeup {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spns .top-band {
  position: relative;
  background: linear-gradient(158deg, #2d6b4a 0%, #3d8f63 40%, #4EAC78 70%, #A6C7BB 100%);
  padding: 96px 28px 56px;
  overflow: hidden;
}

.spns .top-band__noise {
  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.06'/%3E%3C/svg%3E");
  opacity: 0.55;
  pointer-events: none;
}

.spns .top-band__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.spns .top-band__col-main {
  flex: 1 1 0;
  min-width: 0;
}

.spns .top-band__col-side {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 14px;
}

.spns .top-band__eyebrow {
  font-size: 15px;
  line-height: 1.65;
  color: #EAF0EC;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.82;
}

.spns .top-band__h1 {
  font-size: 56px;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  font-weight: 700;
}

.spns .top-band__lead {
  font-size: 19px;
  line-height: 1.65;
  color: #EAF0EC;
  max-width: 560px;
  opacity: 0.92;
}

.spns .top-band__stat-card {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 14px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 4px 14px 0 rgba(78, 172, 120, 0.09);
  transition: background 0.5s ease-in-out, border-color 0.5s ease-in-out;
}

.spns .top-band__stat-card:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.32);
}

.spns .top-band__stat-num {
  font-size: 41px;
  line-height: 1.15;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.spns .top-band__stat-label {
  font-size: 15px;
  line-height: 1.65;
  color: #EAF0EC;
  opacity: 0.78;
}

.spns .top-band__deco-lines {
  top: 28px;
  right: 28px;
}

.spns .top-band__deco-lines span:nth-child(1) {
  width: 96px;
}

.spns .top-band__deco-lines span:nth-child(2) {
  width: 70px;
}

.spns .top-band__deco-lines span:nth-child(3) {
  width: 56px;
}

.spns .top-band__deco-lines span:nth-child(4) {
  width: 80px;
}

.spns .top-band__deco-lines span {
  background: #EAF0EC;
}

.spns .formats-area {
  background: #ffffff;
  padding: 96px 28px 56px;
  position: relative;
}

.spns .formats-area__inner {
  max-width: 1140px;
  margin: 0 auto;
}

.spns .formats-area__header {
  margin-bottom: 56px;
}

.spns .formats-area__h2 {
  font-size: 41px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 14px;
}

.spns .formats-area__sub {
  font-size: 19px;
  line-height: 1.65;
  color: #3a5a4a;
  max-width: 640px;
}

.spns .formats-area__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.35fr;
  gap: 28px;
  align-items: stretch;
}

.spns .fmt-card {
  border: 1.5px solid #EAF0EC;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 4px 0 rgba(78, 172, 120, 0.07);
  transition: box-shadow 0.5s ease-in-out, border-color 0.5s ease-in-out, background 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #ffffff;
  position: relative;
}

.spns .fmt-card:hover {
  box-shadow: 0 8px 48px 0 rgba(78, 172, 120, 0.11);
  border-color: #A6C7BB;
  background: #f6faf8;
}

.spns .fmt-card--accent {
  background: linear-gradient(148deg, #EAF0EC 0%, #d4e8de 100%);
  border-color: #4EAC78;
  box-shadow: 0 4px 14px 0 rgba(78, 172, 120, 0.09);
}

.spns .fmt-card--accent:hover {
  background: linear-gradient(148deg, #d4e8de 0%, #c2ddd4 100%);
  box-shadow: 0 8px 48px 0 rgba(78, 172, 120, 0.11);
}

.spns .fmt-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4EAC78 0%, #A6C7BB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spns .fmt-card__icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.spns .fmt-card__name {
  font-size: 19px;
  line-height: 1.15;
  font-weight: 700;
  color: #1b3829;
  letter-spacing: -0.01em;
}

.spns .fmt-card__desc {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5a4a;
  flex: 1 1 auto;
}

.spns .fmt-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.spns .fmt-card__tag {
  font-size: 15px;
  line-height: 1.65;
  color: #2d6b4a;
  background: #EAF0EC;
  border-radius: 7px;
  padding: 0 14px;
  font-weight: 500;
  border: 1px solid #A6C7BB;
}

.spns .fmt-card--accent .fmt-card__tag {
  background: rgba(255, 255, 255, 0.6);
  border-color: #4EAC78;
}

.spns .fmt-card__badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(90deg, #4EAC78 0%, #2d6b4a 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 7px;
  padding: 0 14px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 4px 0 rgba(78, 172, 120, 0.07);
}

.spns .fmt-card__accent-note {
  font-size: 15px;
  line-height: 1.65;
  color: #2d6b4a;
  font-weight: 600;
  border-top: 1px solid #A6C7BB;
  padding-top: 14px;
  margin-top: 6px;
}

.spns .formats-area__deco {
  bottom: 56px;
  left: 28px;
}

.spns .formats-area__deco span:nth-child(1) {
  width: 80px;
}

.spns .formats-area__deco span:nth-child(2) {
  width: 56px;
}

.spns .formats-area__deco span:nth-child(3) {
  width: 96px;
}

.spns .reach-area {
  background: #EAF0EC;
  padding: 56px 28px;
  position: relative;
}

.spns .reach-area__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.spns .reach-area__img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 48px 0 rgba(78, 172, 120, 0.11);
}

.spns .reach-area__img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: grayscale(1) sepia(0.22) brightness(0.92);
}

.spns .reach-area__img-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(78, 172, 120, 0.28) 0%, rgba(166, 199, 187, 0.18) 100%);
  pointer-events: none;
}

.spns .reach-area__img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 14px 28px;
  box-shadow: 0 4px 14px 0 rgba(78, 172, 120, 0.09);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spns .reach-area__img-badge-num {
  font-size: 31px;
  line-height: 1.15;
  font-weight: 700;
  color: #1b3829;
}

.spns .reach-area__img-badge-label {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5a4a;
}

.spns .reach-area__col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.spns .reach-area__h2 {
  font-size: 31px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1b3829;
}

.spns .reach-area__text {
  font-size: 15px;
  line-height: 1.65;
  color: #2d4a3a;
}

.spns .reach-area__metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.spns .reach-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spns .reach-metric__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.spns .reach-metric__label {
  font-size: 15px;
  line-height: 1.65;
  color: #2d4a3a;
  font-weight: 600;
}

.spns .reach-metric__val {
  font-size: 15px;
  line-height: 1.65;
  color: #4EAC78;
  font-weight: 700;
}

.spns .reach-metric__bar-bg {
  width: 100%;
  height: 7px;
  background: #ffffff;
  border-radius: 7px;
  overflow: hidden;
}

.spns .reach-metric__bar-fill {
  height: 100%;
  border-radius: 7px;
  background: linear-gradient(90deg, #4EAC78 0%, #A6C7BB 100%);
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spns .reach-area__note {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5a4a;
  border-top: 1px solid #A6C7BB;
  padding-top: 14px;
}

.spns .reach-area__deco {
  top: 28px;
  right: 28px;
}

.spns .reach-area__deco span:nth-child(1) {
  width: 70px;
}

.spns .reach-area__deco span:nth-child(2) {
  width: 96px;
}

.spns .reach-area__deco span:nth-child(3) {
  width: 56px;
}

.spns .reach-area__deco span:nth-child(4) {
  width: 80px;
}

.spns .contact-area {
  background: #ffffff;
  padding: 96px 28px;
  position: relative;
}

.spns .contact-area__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.spns .contact-area__col-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.spns .contact-area__h2 {
  font-size: 41px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1b3829;
}

.spns .contact-area__text {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5a4a;
}

.spns .contact-area__process {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spns .contact-area__step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  transition: background 0.5s ease-in-out;
}

.spns .contact-area__step:hover {
  background: #EAF0EC;
}

.spns .contact-area__step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, #4EAC78 0%, #A6C7BB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 2px;
}

.spns .contact-area__step-text {
  font-size: 15px;
  line-height: 1.65;
  color: #2d4a3a;
}

.spns .contact-area__step-text strong {
  color: #1b3829;
  font-weight: 700;
}

.spns .contact-area__col-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.spns .contact-card {
  border: 1.5px solid #EAF0EC;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 14px 0 rgba(78, 172, 120, 0.09);
  background: linear-gradient(148deg, #f6faf8 0%, #ffffff 100%);
}

.spns .contact-card__label {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5a4a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.spns .contact-card__email {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  color: #1b3829;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 0.48s ease-in-out;
  display: inline-block;
}

.spns .contact-card__email:hover {
  color: #4EAC78;
}

.spns .contact-card__note {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5a4a;
  border-top: 1px solid #EAF0EC;
  padding-top: 14px;
}

.spns .contact-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border: 2px solid #4EAC78;
  border-radius: 12px;
  background: transparent;
  color: #2d6b4a;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  align-self: flex-start;
}

.spns .contact-card__cta:hover {
  background: linear-gradient(112deg, #4EAC78 0%, #A6C7BB 100%);
  color: #ffffff;
  border-color: transparent;
}

.spns .contact-card__cta:focus-visible {
  outline: 3px solid #4EAC78;
  outline-offset: 3px;
}

.spns .faq-block {
  border: 1.5px solid #EAF0EC;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(78, 172, 120, 0.07);
}

.spns .faq-block__title {
  font-size: 19px;
  line-height: 1.15;
  font-weight: 700;
  color: #1b3829;
}

.spns .faq-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid #EAF0EC;
}

.spns .faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spns .faq-item__q {
  font-size: 15px;
  line-height: 1.65;
  font-weight: 700;
  color: #1b3829;
}

.spns .faq-item__a {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5a4a;
}

.spns .contact-area__deco {
  bottom: 56px;
  right: 28px;
}

.spns .contact-area__deco span:nth-child(1) {
  width: 56px;
}

.spns .contact-area__deco span:nth-child(2) {
  width: 80px;
}

.spns .contact-area__deco span:nth-child(3) {
  width: 70px;
}

@media (max-width: 1024px) {
  .spns .top-band__h1 {
    font-size: 41px;
  }

  .spns .top-band__col-side {
    flex: 0 0 200px;
  }

  .spns .formats-area__grid {
    grid-template-columns: 1fr 1fr;
  }

  .spns .fmt-card--accent {
    grid-column: span 2;
  }

  .spns .reach-area__inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .spns .contact-area__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .spns .top-band {
    padding: 56px 28px 56px;
  }

  .spns .top-band__inner {
    flex-direction: column;
    gap: 28px;
  }

  .spns .top-band__col-side {
    flex: none;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .spns .top-band__stat-card {
    flex: 1 1 140px;
  }

  .spns .top-band__h1 {
    font-size: 31px;
  }

  .spns .formats-area__grid {
    grid-template-columns: 1fr;
  }

  .spns .fmt-card--accent {
    grid-column: span 1;
  }

  .spns .reach-area__inner {
    grid-template-columns: 1fr;
  }

  .spns .reach-area__img-wrap img {
    height: 260px;
  }

  .spns .formats-area__h2 {
    font-size: 31px;
  }

  .spns .contact-area__h2 {
    font-size: 31px;
  }

  .spns .contact-area {
    padding: 56px 28px;
  }

  .spns .formats-area {
    padding: 56px 28px 56px;
  }
}

@media (max-width: 375px) {
  .spns .top-band__h1 {
    font-size: 24px;
  }

  .spns .top-band__lead {
    font-size: 15px;
  }

  .spns .top-band__stat-card {
    flex: 1 1 100%;
  }

  .spns .contact-card__email {
    font-size: 19px;
  }
}

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

.ptl__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.ptl .grad-text {
  background: linear-gradient(135deg, #4EAC78, #A6C7BB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ptl .grad-line {
  display: inline-block;
  position: relative;
}

.ptl .grad-line::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #4EAC78, #A6C7BB);
  border-radius: 7px;
}

.ptl__top {
  position: relative;
  padding: 96px 28px 56px;
  background-color: #EAF0EC;
  overflow: hidden;
}

.ptl__top-stripes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ptl__top-stripes::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-38deg,
      transparent,
      transparent 28px,
      rgba(78, 172, 120, 0.06) 28px,
      rgba(78, 172, 120, 0.06) 30px);
}

.ptl__top-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 56px;
}

.ptl__top-text {
  flex: 1 1 0;
}

.ptl__top-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 1.65;
  color: #4EAC78;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ptl__top-label svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.ptl__top-h1 {
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #1b2e25;
  margin: 0 0 28px;
  font-weight: 800;
}

.ptl__top-desc {
  font-size: 19px;
  line-height: 1.65;
  color: #3a5045;
  max-width: 520px;
  margin: 0;
}

.ptl__top-img {
  flex: 0 0 360px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 48px 0 rgba(78, 172, 120, 0.11);
}

.ptl__top-img img {
  width: 360px;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.95) contrast(1.05);
  transition: filter 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ptl__top-img:hover img {
  filter: saturate(1) brightness(1) contrast(1);
}

.ptl__top-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.ptl__top-divider svg {
  display: block;
  width: 100%;
}

.ptl__stats {
  background: #fff;
  padding: 56px 28px;
}

.ptl__stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.ptl__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 14px;
  border-radius: 12px;
  background: #EAF0EC;
  box-shadow: 0 2px 4px 0 rgba(78, 172, 120, 0.07);
  transition: box-shadow 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.ptl__stat:hover {
  box-shadow: 0 8px 48px 0 rgba(78, 172, 120, 0.11);
  transform: translateY(-4px);
}

.ptl__stat-num {
  font-size: 41px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #4EAC78, #A6C7BB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ptl__stat-label {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5045;
  margin-top: 6px;
}

.ptl__posts {
  background: linear-gradient(160deg, #EAF0EC 0%, #fff 100%);
  padding: 56px 28px;
  position: relative;
}

.ptl__posts-head {
  max-width: 1140px;
  margin: 0 auto 28px;
}

.ptl__posts-h2 {
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1b2e25;
  font-weight: 700;
  margin: 0 0 14px;
}

.ptl__posts-sub {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5045;
  margin: 0;
}

.ptl__posts-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.ptl__post-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 14px 0 rgba(78, 172, 120, 0.09);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ptl__post-card:hover {
  box-shadow: 0 8px 48px 0 rgba(78, 172, 120, 0.11);
}

.ptl__post-card--main {
  grid-row: 1 / 3;
}

.ptl__post-img {
  overflow: hidden;
  flex-shrink: 0;
}

.ptl__post-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: blur(0px);
  transition: filter 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ptl__post-card--main .ptl__post-img img {
  height: 340px;
}

.ptl__post-img--blurred img {
  filter: blur(3px);
}

.ptl__post-img--blurred:hover img {
  filter: blur(0px);
}

.ptl__post-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 auto;
}

.ptl__post-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ptl__post-date {
  font-size: 15px;
  line-height: 1.65;
  color: #4EAC78;
  font-weight: 600;
}

.ptl__post-views {
  font-size: 15px;
  line-height: 1.65;
  color: #6a8a7a;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.ptl__post-views svg {
  width: 14px;
  height: 14px;
}

.ptl__post-likes {
  font-size: 15px;
  line-height: 1.65;
  color: #6a8a7a;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.ptl__post-likes svg {
  width: 14px;
  height: 14px;
}

.ptl__post-h3 {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1b2e25;
  font-weight: 700;
  margin: 0;
}

.ptl__post-card--side .ptl__post-h3 {
  font-size: 19px;
}

.ptl__post-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5045;
  margin: 0;
}

.ptl__post-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 1.65;
  color: #4EAC78;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #4EAC78;
  border-radius: 7px;
  padding: 6px 14px;
  align-self: flex-start;
  background: transparent;
  transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
}

.ptl__post-link:hover {
  background: linear-gradient(135deg, #4EAC78, #A6C7BB);
  color: #fff;
  border-color: transparent;
}

.ptl__post-link svg {
  width: 12px;
  height: 12px;
}

.ptl__terr {
  background: #1b2e25;
  padding: 56px 28px;
  position: relative;
  overflow: hidden;
}

.ptl__terr-spot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(78, 172, 120, 0.13) 0%, transparent 70%);
  pointer-events: none;
}

.ptl__terr-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.ptl__terr-h2 {
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #EAF0EC;
  font-weight: 700;
  margin: 0 0 6px;
}

.ptl__terr-sub {
  font-size: 15px;
  line-height: 1.65;
  color: #A6C7BB;
  margin: 0 0 28px;
}

.ptl__terr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ptl__terr-item {
  border-radius: 12px;
  border: 1px solid rgba(166, 199, 187, 0.2);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(78, 172, 120, 0.04);
  transition: border-color 0.55s ease-in-out, background 0.55s ease-in-out;
}

.ptl__terr-item:hover {
  border-color: rgba(78, 172, 120, 0.5);
  background: rgba(78, 172, 120, 0.09);
}

.ptl__terr-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(78, 172, 120, 0.3), rgba(166, 199, 187, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ptl__terr-icon svg {
  width: 20px;
  height: 20px;
}

.ptl__terr-name {
  font-size: 19px;
  line-height: 1.15;
  color: #EAF0EC;
  font-weight: 700;
  margin: 0;
}

.ptl__terr-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #A6C7BB;
  margin: 0;
}

.ptl__terr-reader {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(166, 199, 187, 0.65);
  margin: 0;
  font-style: italic;
}

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

.ptl__terr-divider svg {
  display: block;
  width: 100%;
}

.ptl__topics {
  background: #fff;
  padding: 56px 28px;
}

.ptl__topics-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
}

.ptl__topics-left {
  flex: 0 0 320px;
}

.ptl__topics-h2 {
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1b2e25;
  font-weight: 700;
  margin: 0 0 14px;
}

.ptl__topics-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5045;
  margin: 0 0 28px;
}

.ptl__topics-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 14px 0 rgba(78, 172, 120, 0.09);
}

.ptl__topics-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: blur(3px);
  transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ptl__topics-img:hover img {
  filter: blur(0px);
}

.ptl__topics-right {
  flex: 1 1 0;
}

.ptl__tag-group {
  margin-bottom: 28px;
}

.ptl__tag-group-label {
  font-size: 15px;
  line-height: 1.65;
  color: #4EAC78;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.ptl__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
}

.ptl__tag {
  display: inline-block;
  font-size: 15px;
  line-height: 1.65;
  color: #1b2e25;
  background: #EAF0EC;
  border: 1px solid rgba(78, 172, 120, 0.2);
  border-radius: 7px;
  padding: 6px 14px;
  text-decoration: none;
  transition: background 0.5s ease-in-out, border-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.ptl__tag:hover {
  background: linear-gradient(135deg, #4EAC78, #A6C7BB);
  color: #fff;
  border-color: transparent;
}

.ptl__tag--strong {
  font-weight: 600;
  background: linear-gradient(135deg, rgba(78, 172, 120, 0.15), rgba(166, 199, 187, 0.15));
  border-color: rgba(78, 172, 120, 0.35);
}

.ptl__popular {
  background: #EAF0EC;
  padding: 56px 28px;
  position: relative;
}

.ptl__popular-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.ptl__popular-h2 {
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1b2e25;
  font-weight: 700;
  margin: 0 0 6px;
}

.ptl__popular-sub {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5045;
  margin: 0 0 28px;
}

.ptl__popular-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ptl__pop-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 4px 0 rgba(78, 172, 120, 0.07);
  transition: box-shadow 0.55s ease-in-out, transform 0.55s ease-in-out;
}

.ptl__pop-item:hover {
  box-shadow: 0 8px 48px 0 rgba(78, 172, 120, 0.11);
  transform: translateX(6px);
}

.ptl__pop-num {
  font-size: 41px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #4EAC78, #A6C7BB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 56px;
  text-align: center;
}

.ptl__pop-img {
  flex-shrink: 0;
  width: 96px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
}

.ptl__pop-img img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  display: block;
  filter: blur(2px);
  transition: filter 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ptl__pop-item:hover .ptl__pop-img img {
  filter: blur(0px);
}

.ptl__pop-body {
  flex: 1 1 0;
}

.ptl__pop-h4 {
  font-size: 19px;
  line-height: 1.15;
  color: #1b2e25;
  font-weight: 700;
  margin: 0 0 6px;
}

.ptl__pop-text {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5045;
  margin: 0;
}

.ptl__pop-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #4EAC78;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #4EAC78;
  border-radius: 7px;
  padding: 6px 14px;
  flex-shrink: 0;
  background: transparent;
  transition: background 0.5s ease-in-out, color 0.5s ease-in-out, border-color 0.5s ease-in-out;
}

.ptl__pop-link:hover {
  background: linear-gradient(160deg, #4EAC78, #A6C7BB);
  color: #fff;
  border-color: transparent;
}

.ptl__conn {
  background: #fff;
  padding: 56px 28px;
}

.ptl__conn-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.ptl__conn-h2 {
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1b2e25;
  font-weight: 700;
  margin: 0 0 14px;
}

.ptl__conn-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5045;
  margin: 0 0 28px;
}

.ptl__conn-pairs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ptl__conn-pair {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(78, 172, 120, 0.15);
  background: #EAF0EC;
  transition: border-color 0.55s ease-in-out;
}

.ptl__conn-pair:hover {
  border-color: rgba(78, 172, 120, 0.5);
}

.ptl__conn-tag {
  display: inline-block;
  font-size: 15px;
  line-height: 1.65;
  color: #fff;
  background: linear-gradient(135deg, #4EAC78, #A6C7BB);
  border-radius: 7px;
  padding: 6px 14px;
  font-weight: 600;
  white-space: nowrap;
}

.ptl__conn-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ptl__conn-arrow svg {
  width: 16px;
  height: 16px;
}

.ptl__conn-note {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5045;
  margin: 0;
  flex: 1 1 0;
}

.ptl__conn-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 48px 0 rgba(78, 172, 120, 0.11);
}

.ptl__conn-visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: blur(3px);
  transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ptl__conn-visual:hover img {
  filter: blur(0px);
}

.ptl__habit {
  background: linear-gradient(155deg, #1b2e25 0%, #2a4035 100%);
  padding: 56px 28px;
  position: relative;
  overflow: hidden;
}

.ptl__habit-spot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse 55% 45% at 50% 50%, rgba(78, 172, 120, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.ptl__habit-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.ptl__habit-h2 {
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #EAF0EC;
  font-weight: 700;
  margin: 0 0 14px;
}

.ptl__habit-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #A6C7BB;
  margin: 0 0 28px;
}

.ptl__habit-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ptl__habit-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
}

.ptl__habit-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 48px;
  background: linear-gradient(135deg, #4EAC78, #A6C7BB);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.ptl__habit-step-body {
  flex: 1 1 0;
}

.ptl__habit-step-h5 {
  font-size: 15px;
  line-height: 1.65;
  color: #EAF0EC;
  font-weight: 600;
  margin: 0 0 6px;
}

.ptl__habit-step-p {
  font-size: 15px;
  line-height: 1.65;
  color: #A6C7BB;
  margin: 0;
}

.ptl__habit-form {
  background: rgba(78, 172, 120, 0.07);
  border: 1px solid rgba(166, 199, 187, 0.2);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ptl__habit-form-h4 {
  font-size: 19px;
  line-height: 1.15;
  color: #EAF0EC;
  font-weight: 700;
  margin: 0;
}

.ptl__habit-form-p {
  font-size: 15px;
  line-height: 1.65;
  color: #A6C7BB;
  margin: 0;
}

.ptl__habit-field {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.ptl__habit-field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.ptl__habit-field-icon svg {
  width: 16px;
  height: 16px;
}

.ptl__habit-input {
  width: 100%;
  padding: 14px 14px 14px 40px;
  font-size: 15px;
  line-height: 1.65;
  color: #EAF0EC;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(166, 199, 187, 0.25);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.5s ease-in-out, background 0.5s ease-in-out;
  box-sizing: border-box;
}

.ptl__habit-input::placeholder {
  color: rgba(166, 199, 187, 0.55);
}

.ptl__habit-input:focus {
  border-color: #4EAC78;
  background: rgba(78, 172, 120, 0.08);
}

.ptl__habit-btn {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: transparent;
  border: 1.5px solid #4EAC78;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  align-self: flex-start;
}

.ptl__habit-btn:hover {
  background: linear-gradient(160deg, #4EAC78, #A6C7BB);
  border-color: transparent;
}

.ptl__why {
  background: #EAF0EC;
  padding: 56px 28px;
}

.ptl__why-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.ptl__why-top {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.ptl__why-left {
  flex: 1 1 0;
}

.ptl__why-h2 {
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1b2e25;
  font-weight: 700;
  margin: 0 0 14px;
}

.ptl__why-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5045;
  margin: 0;
}

.ptl__why-right {
  flex: 0 0 420px;
}

.ptl__why-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 14px 0 rgba(78, 172, 120, 0.09);
}

.ptl__why-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  filter: blur(3px);
  transition: filter 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ptl__why-img:hover img {
  filter: blur(0px);
}

.ptl__why-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ptl__why-pt {
  border-radius: 12px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 2px 4px 0 rgba(78, 172, 120, 0.07);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.55s ease-in-out;
}

.ptl__why-pt:hover {
  box-shadow: 0 8px 48px 0 rgba(78, 172, 120, 0.11);
}

.ptl__why-pt-h5 {
  font-size: 15px;
  line-height: 1.65;
  color: #1b2e25;
  font-weight: 700;
  margin: 0;
}

.ptl__why-pt-p {
  font-size: 15px;
  line-height: 1.65;
  color: #3a5045;
  margin: 0;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.ptl__cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #4EAC78;
  vertical-align: middle;
  margin-left: 3px;
  animation: blink 1s ease-in-out infinite;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.ptl__top {
  animation: fadein 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.ptl__stats {
  animation: fadein 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

@media (max-width: 1024px) {
  .ptl__top-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .ptl__top-img {
    flex: 0 0 auto;
    width: 100%;
  }

  .ptl__top-img img {
    width: 100%;
    height: 240px;
  }

  .ptl__top-h1 {
    font-size: 41px;
  }

  .ptl__stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .ptl__posts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ptl__post-card--main {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .ptl__terr-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ptl__topics-inner {
    flex-direction: column;
    gap: 28px;
  }

  .ptl__topics-left {
    flex: 0 0 auto;
    width: 100%;
  }

  .ptl__conn-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ptl__habit-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ptl__why-top {
    flex-direction: column;
    gap: 28px;
  }

  .ptl__why-right {
    flex: 0 0 auto;
    width: 100%;
  }

  .ptl__why-points {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ptl__top {
    padding: 56px 14px 28px;
  }

  .ptl__top-h1 {
    font-size: 31px;
  }

  .ptl__stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .ptl__posts-grid {
    grid-template-columns: 1fr;
  }

  .ptl__post-card--main {
    grid-column: auto;
  }

  .ptl__terr-grid {
    grid-template-columns: 1fr;
  }

  .ptl__why-points {
    grid-template-columns: 1fr;
  }

  .ptl__pop-item {
    flex-wrap: wrap;
  }

  .ptl__conn-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px) {
  .ptl__top-h1 {
    font-size: 24px;
  }

  .ptl__stats-inner {
    grid-template-columns: 1fr;
  }

  .ptl__pop-img {
    display: none;
  }

  .ptl__habit-form {
    padding: 14px;
  }
}

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

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

.ab-auth .grad-text {
  background: linear-gradient(112deg, #4EAC78 0%, #A6C7BB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ab-auth .grad-line {
  display: inline-block;
  position: relative;
}

.ab-auth .grad-line::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 7px;
  background: linear-gradient(90deg, #4EAC78 0%, #A6C7BB 100%);
}

.ab-auth .badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid #A6C7BB;
  font-size: 15px;
  color: #2a5c42;
  background: #EAF0EC;
  line-height: 1.15;
}

.ab-auth .badge-item svg {
  flex-shrink: 0;
}

.ab-auth .seq-child {
  opacity: 0;
  transform: translateY(18px);
  animation: seqFadeUp 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.ab-auth .seq-child:nth-child(1) {
  animation-delay: 0.1s;
}

.ab-auth .seq-child:nth-child(2) {
  animation-delay: 0.22s;
}

.ab-auth .seq-child:nth-child(3) {
  animation-delay: 0.34s;
}

.ab-auth .seq-child:nth-child(4) {
  animation-delay: 0.46s;
}

.ab-auth .seq-child:nth-child(5) {
  animation-delay: 0.58s;
}

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

.ab-auth .char-hover span {
  display: inline-block;
  transition: color 0.5s ease-in-out;
  color: #1e3d2e;
}

.ab-auth .char-hover:hover span {
  color: #4EAC78;
}

.ab-auth .char-hover:hover span:nth-child(odd) {
  color: #2a7a52;
  transition-delay: 0.04s;
}

.ab-auth .char-hover:hover span:nth-child(3n) {
  color: #A6C7BB;
  transition-delay: 0.08s;
}

.ab-auth .prof-blk {
  padding-top: 56px;
  padding-bottom: 56px;
  background: linear-gradient(180deg, #ffffff 0%, #EAF0EC 100%);
  position: relative;
}

.ab-auth .prof-blk__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ab-auth .prof-blk__img-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
}

.ab-auth .prof-blk__img-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 48px;
  background: linear-gradient(135deg, #4EAC78 0%, #A6C7BB 60%, #EAF0EC 100%);
  z-index: 0;
}

.ab-auth .prof-blk__img-wrap::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  border-radius: 48px;
  background: rgba(78, 172, 120, 0.13);
  filter: blur(10px);
  z-index: 0;
}

.ab-auth .prof-blk__img-frame {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 220px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 8px 48px 0 rgba(78, 172, 120, 0.11);
}

.ab-auth .prof-blk__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-auth .prof-blk__deco-shape {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4EAC78 0%, #A6C7BB 100%);
  opacity: 0.35;
  z-index: 2;
  transform: rotate(18deg);
}

.ab-auth .prof-blk__deco-dot {
  position: absolute;
  bottom: 10px;
  left: -14px;
  width: 20px;
  height: 20px;
  border-radius: 48px;
  background: #A6C7BB;
  opacity: 0.55;
  z-index: 2;
}

.ab-auth .prof-blk__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.ab-auth .prof-blk__name {
  font-size: 41px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
}

.ab-auth .prof-blk__role {
  font-size: 19px;
  line-height: 1.65;
  color: #3a6b52;
  margin: 0;
}

.ab-auth .prof-blk__desc {
  font-size: 15px;
  line-height: 1.65;
  color: #2e4a3a;
  margin: 0;
  max-width: 560px;
}

.ab-auth .prof-blk__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 28px;
  border-radius: 12px;
  border: 1.5px solid #4EAC78;
  font-size: 15px;
  color: #2a5c42;
  background: transparent;
  text-decoration: none;
  line-height: 1.65;
  transition: background 0.5s ease-in-out, color 0.5s ease-in-out, border-color 0.5s ease-in-out;
}

.ab-auth .prof-blk__link:hover {
  background: linear-gradient(112deg, #4EAC78 0%, #A6C7BB 100%);
  color: #fff;
  border-color: transparent;
}

.ab-auth .prof-blk__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.ab-auth .prof-blk__curve {
  display: block;
  width: 100%;
  margin-top: 28px;
  overflow: hidden;
}

.ab-auth .prof-blk__curve svg {
  display: block;
  width: 100%;
  height: auto;
}

.ab-auth .det-blk {
  padding-top: 56px;
  padding-bottom: 96px;
  background: linear-gradient(180deg, #EAF0EC 0%, #f5f8f6 100%);
  position: relative;
}

.ab-auth .det-blk__honeycomb {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 220px;
  opacity: 0.08;
  pointer-events: none;
  overflow: hidden;
}

.ab-auth .det-blk__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
}

.ab-auth .det-blk__sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.ab-auth .det-blk__sidebar::after {
  content: '';
  position: absolute;
  top: 0;
  right: -28px;
  width: 1.5px;
  height: 100%;
  background: linear-gradient(180deg, #4EAC78 0%, #A6C7BB 60%, transparent 100%);
  border-radius: 7px;
}

.ab-auth .sidebar-grp {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ab-auth .sidebar-grp__label {
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4EAC78;
  font-weight: 700;
  margin: 0;
}

.ab-auth .sidebar-grp__items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ab-auth .sidebar-grp__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 1.65;
  color: #2e4a3a;
}

.ab-auth .sidebar-grp__item svg {
  flex-shrink: 0;
  color: #4EAC78;
}

.ab-auth .det-blk__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ab-auth .body-seg {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  padding-bottom: 28px;
}

.ab-auth .body-seg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  border-radius: 7px;
  background: linear-gradient(90deg, #4EAC78 0%, #A6C7BB 100%);
}

.ab-auth .body-seg:last-child::after {
  display: none;
}

.ab-auth .body-seg__heading {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.ab-auth .body-seg__para {
  font-size: 15px;
  line-height: 1.65;
  color: #2e4a3a;
  margin: 0;
}

.ab-auth .body-seg__accent {
  background: #EAF0EC;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 15px;
  line-height: 1.65;
  color: #2a5c42;
  box-shadow: 0 2px 4px 0 rgba(78, 172, 120, 0.07);
}

.ab-auth .connect-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.ab-auth .connect-flow__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  padding-bottom: 28px;
}

.ab-auth .connect-flow__item:last-child {
  padding-bottom: 0;
}

.ab-auth .connect-flow__line-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 28px;
}

.ab-auth .connect-flow__dot {
  width: 14px;
  height: 14px;
  border-radius: 48px;
  background: linear-gradient(135deg, #4EAC78 0%, #A6C7BB 100%);
  box-shadow: 0 2px 4px 0 rgba(78, 172, 120, 0.07);
  flex-shrink: 0;
  margin-top: 4px;
}

.ab-auth .connect-flow__connector {
  flex: 1;
  width: 2px;
  min-height: 28px;
  background: linear-gradient(180deg, #4EAC78 0%, #A6C7BB 100%);
  border-radius: 7px;
  margin-top: 6px;
}

.ab-auth .connect-flow__item:last-child .connect-flow__connector {
  display: none;
}

.ab-auth .connect-flow__txt {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ab-auth .connect-flow__step {
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4EAC78;
  font-weight: 700;
  margin: 0;
}

.ab-auth .connect-flow__desc {
  font-size: 15px;
  line-height: 1.65;
  color: #2e4a3a;
  margin: 0;
}

.ab-auth .img-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.ab-auth .img-duo__frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 14px 0 rgba(78, 172, 120, 0.09);
  height: 180px;
}

.ab-auth .img-duo__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ab-auth .img-duo__frame:hover img {
  transform: scale(1.04);
}

@media (max-width: 1024px) {
  .ab-auth .det-blk__inner {
    grid-template-columns: 180px 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .ab-auth .det-blk__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ab-auth .det-blk__sidebar::after {
    display: none;
  }

  .ab-auth .prof-blk__name {
    font-size: 31px;
  }

  .ab-auth .img-duo {
    grid-template-columns: 1fr;
  }

  .ab-auth .img-duo__frame {
    height: 200px;
  }

  .ab-auth .det-blk__honeycomb {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 375px) {
  .ab-auth .prof-blk__name {
    font-size: 24px;
  }

  .ab-auth .prof-blk__img-wrap {
    width: 160px;
    height: 160px;
  }

  .ab-auth .prof-blk__img-frame {
    width: 160px;
    height: 160px;
  }

  .ab-auth .ed-col {
    padding-left: 14px;
    padding-right: 14px;
  }
}

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

.success-page .card {
  max-width: 560px;
  width: 100%;
  background: #EAF0EC;
  border-radius: 20px;
  padding: 56px;
  box-shadow: 0 8px 48px 0 rgba(78, 172, 120, 0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.success-page .card__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 48px;
  background: linear-gradient(135deg, #4EAC78 0%, #A6C7BB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 4px 14px 0 rgba(78, 172, 120, 0.09);
}

.success-page .card__icon-wrap svg {
  display: block;
}

.success-page .card__heading {
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  background: linear-gradient(120deg, #4EAC78 20%, #A6C7BB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-page .card__text {
  font-size: 19px;
  line-height: 1.65;
  color: #2c4a3a;
  margin: 0 0 28px;
}

.success-page .card__sub {
  font-size: 15px;
  line-height: 1.65;
  color: #4a6b5a;
  margin: 0 0 56px;
}

.success-page .card__link {
  display: inline-block;
  font-size: 15px;
  line-height: 1.15;
  color: #4EAC78;
  text-decoration: none;
  border: 1.5px solid #4EAC78;
  border-radius: 12px;
  padding: 14px 28px;
  transition: background 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.45s ease-in-out;
  letter-spacing: 0.01em;
}

.success-page .card__link:hover,
.success-page .card__link:focus {
  background: linear-gradient(160deg, #4EAC78 0%, #A6C7BB 100%);
  color: #fff;
  border-color: transparent;
  outline: none;
}

.success-page .card__link:focus-visible {
  outline: 2px solid #4EAC78;
  outline-offset: 3px;
}

.success-page .card__divider {
  width: 48px;
  height: 3px;
  border-radius: 7px;
  background: linear-gradient(90deg, #4EAC78 0%, #A6C7BB 100%);
  margin: 0 auto 28px;
}

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

  .success-page .card {
    padding: 28px 14px;
  }

  .success-page .card__heading {
    font-size: 24px;
  }

  .success-page .card__text {
    font-size: 15px;
  }
}

@media (max-width: 375px) {
  .success-page .card {
    padding: 28px 14px;
  }

  .success-page .card__heading {
    font-size: 19px;
  }
}