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

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.site-header {
  position: relative;
  background: linear-gradient(160deg, #FCFDFC 0%, #f0f8f0 60%, #e8f5e9 100%);
  border-bottom: 1px solid #8BC49A;
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
  padding: 0;
  z-index: 100;
  font-family: 'PT Serif', Georgia, serif;
}

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

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

.brand__mark {
  width: 68px;
  height: 68px;
  border-radius: 46px;
  background: #FCFDFC;
  border: 1px solid #8BC49A;
  box-shadow: 2px 3px 2px -2px rgba(81, 184, 77, 0.06), 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

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

.brand__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: #1b3a1a;
  letter-spacing: -0.02em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.primary-nav__item {
  position: relative;
}

.primary-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'PT Serif', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #2a4a29;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: background-color 0.18s ease-out, border-color 0.15s ease-out, color 0.15s ease-out;
  white-space: nowrap;
  min-height: 44px;
}

.primary-nav__link:hover,
.primary-nav__link:focus {
  background-color: rgba(139, 196, 154, 0.18);
  border-color: #8BC49A;
  color: #1b3a1a;
  outline: none;
}

.primary-nav__link:focus {
  background-color: rgba(81, 184, 77, 0.12);
}

.primary-nav__item--has-sub .primary-nav__link svg {
  transition: transform 0.14s ease-out;
}

.primary-nav__item--has-sub:hover .primary-nav__link svg,
.primary-nav__item--has-sub:focus-within .primary-nav__link svg {
  transform: rotate(180deg);
}

.sub-nav {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 220px;
  background: #FCFDFC;
  border: 1px solid #8BC49A;
  border-radius: 6px;
  box-shadow: 2px 9px 48px -2px rgba(81, 184, 77, 0.14);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.16s ease-out, transform 0.16s ease-out;
  z-index: 200;
}

.primary-nav__item--has-sub:hover .sub-nav,
.primary-nav__item--has-sub:focus-within .sub-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sub-nav__link {
  display: block;
  font-family: 'PT Serif', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: #2a4a29;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background-color 0.14s ease-out, color 0.12s ease-out;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.sub-nav__link:hover,
.sub-nav__link:focus {
  background-color: rgba(81, 184, 77, 0.12);
  color: #1b3a1a;
  outline: none;
}

.sub-nav__link:focus {
  background-color: rgba(81, 184, 77, 0.18);
}

.site-footer {
  background: #1b3a1a;
  font-family: 'PT Serif', Georgia, serif;
  padding: 0;
}

.site-footer__top {
  border-bottom: 1px solid rgba(139, 196, 154, 0.25);
  padding: 40px;
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-brand__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.footer-brand__mark {
  width: 68px;
  height: 68px;
  background: #FCFDFC;
  border: 2px solid #51B84D;
  border-radius: 0;
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-brand__mark img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.footer-brand__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: #FCFDFC;
  letter-spacing: -0.02em;
}

.site-footer__cols {
  max-width: 1366px;
  margin: 0 auto;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col__label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  color: #8BC49A;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
  display: block;
}

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

.footer-col__list-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(252, 253, 252, 0.75);
  text-decoration: none;
  display: inline-block;
  transition: color 0.16s ease-out;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-col__list-link:hover,
.footer-col__list-link:focus {
  color: #51B84D;
  outline: none;
}

.footer-col__list-link:focus {
  background-color: rgba(81, 184, 77, 0.10);
  border-radius: 6px;
  padding: 0 8px;
}

.footer-col__address {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(252, 253, 252, 0.75);
  font-style: normal;
  margin: 0;
}

.footer-col__contact-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(252, 253, 252, 0.75);
  text-decoration: none;
  display: block;
  transition: color 0.16s ease-out;
}

.footer-col__contact-link:hover,
.footer-col__contact-link:focus {
  color: #51B84D;
  outline: none;
}

.footer-col__contact-link:focus {
  background-color: rgba(81, 184, 77, 0.10);
  border-radius: 6px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(139, 196, 154, 0.15);
  padding: 24px 40px;
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(252, 253, 252, 0.45);
  margin: 0;
}

.footer-legal-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal-nav__link {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(252, 253, 252, 0.45);
  text-decoration: none;
  transition: color 0.14s ease-out;
  white-space: nowrap;
}

.footer-legal-nav__link:hover,
.footer-legal-nav__link:focus {
  color: #8BC49A;
  outline: none;
}

.footer-legal-nav__link:focus {
  background-color: rgba(81, 184, 77, 0.10);
  border-radius: 6px;
  padding: 0 8px;
}

.consent-strip {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: min(680px, calc(100% - 48px));
  background: #FCFDFC;
  border: 1px solid #8BC49A;
  border-radius: 6px;
  box-shadow: 2px 9px 48px -2px rgba(81, 184, 77, 0.14);
  z-index: 2000;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.consent-strip[hidden] {
  display: none;
}

.consent-strip__body {
  flex: 1;
  min-width: 200px;
}

.consent-strip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(81, 184, 77, 0.10);
  flex-shrink: 0;
}

.consent-strip__text {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: #2a4a29;
  margin: 0;
}

.consent-strip__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.consent-btn {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  padding: 8px 24px;
  border-radius: 6px;
  border: 2px solid #51B84D;
  cursor: pointer;
  min-height: 44px;
  white-space: nowrap;
  transition: background-color 0.18s ease-out, color 0.18s ease-out;
  background: transparent;
  color: #2a4a29;
}

.consent-btn:hover,
.consent-btn:focus {
  background-color: rgba(81, 184, 77, 0.12);
  outline: none;
}

.consent-btn:focus {
  background-color: rgba(81, 184, 77, 0.20);
}

.consent-btn--accept {
  background: #51B84D;
  color: #FCFDFC;
  border-color: #51B84D;
}

.consent-btn--accept:hover,
.consent-btn--accept:focus {
  background: #3da039;
  color: #FCFDFC;
}

.consent-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg) translateX(-50%);
  transform-origin: left center;
  z-index: 1999;
  background: #51B84D;
  color: #FCFDFC;
  font-family: 'PT Serif', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  padding: 8px 16px;
  border-radius: 0 0 6px 6px;
  cursor: pointer;
  border: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: background-color 0.16s ease-out;
}

.consent-tab:hover,
.consent-tab:focus {
  background: #3da039;
  outline: none;
}

.consent-tab[hidden] {
  display: none;
}

@media (max-width: 1024px) {
  .site-header__band {
    padding: 16px 24px;
    gap: 24px;
  }

  .site-footer__cols {
    grid-template-columns: 1fr 1fr;
    padding: 40px 24px;
    gap: 40px;
  }

  .site-footer__top {
    padding: 40px 24px;
  }

  .site-footer__bottom {
    padding: 24px;
  }
}

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

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

  .site-footer__cols {
    grid-template-columns: 1fr;
    padding: 40px 16px;
    gap: 40px;
  }

  .site-footer__top {
    padding: 40px 16px;
  }

  .site-footer__bottom {
    padding: 24px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal-nav {
    gap: 16px;
  }
}

@media (max-width: 375px) {
  .site-header__band {
    padding: 16px 8px;
  }

  .primary-nav__link {
    font-size: 14px;
    padding: 8px;
  }

  .consent-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .consent-strip__actions {
    width: 100%;
    flex-direction: column;
  }

  .consent-btn {
    width: 100%;
    text-align: center;
  }
}

.content-ni-legal {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 40px;
}

.content-ni-legal h1 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1b2a1b;
  margin-bottom: 40px;
  margin-top: 0;
}

.content-ni-legal h2 {
  font-size: 33px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b2a1b;
  margin-top: 80px;
  margin-bottom: 24px;
}

.content-ni-legal h3 {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #1b2a1b;
  margin-top: 40px;
  margin-bottom: 16px;
}

.content-ni-legal h4 {
  font-size: 19px;
  line-height: 1.75;
  letter-spacing: -0.005em;
  color: #1b2a1b;
  margin-top: 40px;
  margin-bottom: 16px;
}

.content-ni-legal h5 {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  color: #2e3d2e;
  margin-top: 24px;
  margin-bottom: 8px;
}

.content-ni-legal h6 {
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: #2e3d2e;
  margin-top: 24px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.content-ni-legal p {
  font-size: 16px;
  line-height: 1.75;
  color: #2e3d2e;
  margin-top: 0;
  margin-bottom: 24px;
  max-width: 72ch;
}

.content-ni-legal ul,
.content-ni-legal ol {
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 24px;
  max-width: 72ch;
}

.content-ni-legal ul {
  list-style: none;
  padding-left: 0;
}

.content-ni-legal ul li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.75;
  color: #2e3d2e;
  margin-bottom: 8px;
}

.content-ni-legal ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 46px;
  background-color: #51B84D;
}

.content-ni-legal ol {
  list-style: decimal;
}

.content-ni-legal ol li {
  font-size: 16px;
  line-height: 1.75;
  color: #2e3d2e;
  margin-bottom: 8px;
  padding-left: 8px;
}

.content-ni-legal ol li::marker {
  color: #51B84D;
  font-weight: 600;
}

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

.content-ni-legal strong,
.content-ni-legal b {
  font-weight: 700;
  color: #1b2a1b;
}

.content-ni-legal table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.75;
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
  border-radius: 6px;
  overflow: hidden;
}

.content-ni-legal thead {
  background-color: #51B84D;
}

.content-ni-legal thead th {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: left;
  padding: 16px 24px;
  border: none;
}

.content-ni-legal tbody tr {
  border-bottom: 1px solid rgba(81, 184, 77, 0.12);
  transition: background-color 0.18s cubic-bezier(0.4, 0, 0.6, 1);
}

.content-ni-legal tbody tr:last-child {
  border-bottom: none;
}

.content-ni-legal tbody tr:nth-child(even) {
  background-color: rgba(139, 196, 154, 0.07);
}

.content-ni-legal tbody tr:hover {
  background-color: rgba(81, 184, 77, 0.06);
}

.content-ni-legal td {
  padding: 16px 24px;
  font-size: 14px;
  line-height: 1.75;
  color: #2e3d2e;
  border: none;
  vertical-align: top;
}

.content-ni-legal th {
  padding: 16px 24px;
  vertical-align: middle;
}

.content-ni-legal div {
  font-size: 16px;
  line-height: 1.75;
  color: #2e3d2e;
}

.content-ni-legal h2:first-child,
.content-ni-legal h3:first-child,
.content-ni-legal h4:first-child {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .content-ni-legal {
    padding: 80px 40px;
  }

  .content-ni-legal h1 {
    font-size: 46px;
  }

  .content-ni-legal h2 {
    font-size: 33px;
  }
}

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

  .content-ni-legal h1 {
    font-size: 33px;
    margin-bottom: 24px;
  }

  .content-ni-legal h2 {
    font-size: 24px;
    margin-top: 40px;
  }

  .content-ni-legal h3 {
    font-size: 19px;
  }

  .content-ni-legal h4 {
    font-size: 16px;
  }

  .content-ni-legal table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .content-ni-legal p,
  .content-ni-legal ul,
  .content-ni-legal ol {
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .content-ni-legal {
    padding: 40px 16px;
  }

  .content-ni-legal h1 {
    font-size: 24px;
  }

  .content-ni-legal h2 {
    font-size: 19px;
    margin-top: 40px;
  }

  .content-ni-legal h3 {
    font-size: 16px;
  }

  .content-ni-legal thead th,
  .content-ni-legal td {
    padding: 16px;
  }
}

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

.lp-root .grain-bg {
  position: relative;
  background-color: #FCFDFC;
  padding: 80px 80px 120px;
}

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

.lp-root .grain-bg .atm-spot {
  position: absolute;
  border-radius: 46px;
  pointer-events: none;
  z-index: 0;
}

.lp-root .grain-bg .atm-spot--a {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -80px;
  background: radial-gradient(ellipse at 30% 40%, rgba(139, 196, 154, 0.18) 0%, rgba(81, 184, 77, 0.08) 50%, transparent 75%);
  filter: blur(48px);
}

.lp-root .grain-bg .atm-spot--b {
  width: 320px;
  height: 320px;
  bottom: 40px;
  left: -60px;
  background: radial-gradient(ellipse at 70% 60%, rgba(81, 184, 77, 0.12) 0%, transparent 70%);
  filter: blur(36px);
}

.lp-root .grain-bg .deco-strokes {
  position: absolute;
  top: 40px;
  right: 80px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
  pointer-events: none;
}

.lp-root .grain-bg .deco-strokes span {
  display: block;
  height: 2px;
  background: #51B84D;
  opacity: 0.35;
  border-radius: 6px;
}

.lp-root .grain-bg .deco-strokes span:nth-child(1) {
  width: 40px;
}

.lp-root .grain-bg .deco-strokes span:nth-child(2) {
  width: 28px;
}

.lp-root .grain-bg .deco-strokes span:nth-child(3) {
  width: 52px;
}

.lp-root .grain-bg .deco-strokes span:nth-child(4) {
  width: 20px;
}

.lp-root .grain-bg .deco-strokes span:nth-child(5) {
  width: 36px;
}

.lp-root .manifesto-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.lp-root .manifesto-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-root .manifesto-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #51B84D;
  font-weight: 600;
  text-transform: uppercase;
}

.lp-root .manifesto-eyebrow .eye-line {
  width: 24px;
  height: 1px;
  background: #51B84D;
}

.lp-root .manifesto-h1 {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1b2a1b;
  margin: 0;
}

.lp-root .manifesto-h1 .word-accent {
  color: #51B84D;
}

.lp-root .manifesto-declaration {
  font-size: 19px;
  line-height: 1.75;
  color: #2d3d2d;
  margin: 0;
  max-width: 480px;
}

.lp-root .manifesto-declaration .drop-cap {
  float: left;
  font-size: 46px;
  line-height: 1.1;
  color: #51B84D;
  margin-right: 8px;
  font-weight: 700;
}

.lp-root .manifesto-metric {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.lp-root .metric-val {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b2a1b;
  letter-spacing: -0.04em;
}

.lp-root .metric-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.lp-root .metric-arrow svg {
  color: #51B84D;
}

.lp-root .metric-label {
  font-size: 14px;
  color: #4a5e4a;
  line-height: 1.75;
}

.lp-root .manifesto-img-col {
  position: relative;
}

.lp-root .img-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 9px 48px -2px rgba(81, 184, 77, 0.14);
}

.lp-root .img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  mix-blend-mode: multiply;
}

.lp-root .img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(81, 184, 77, 0.18) 0%, rgba(139, 196, 154, 0.10) 60%, transparent 100%);
  pointer-events: none;
}

.lp-root .img-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(252, 253, 252, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  color: #1b2a1b;
  font-weight: 600;
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
}

.lp-root .manifesto-cta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-root .btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: #51B84D;
  color: #FCFDFC;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.18s ease-out, box-shadow 0.18s ease-out;
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
}

.lp-root .btn-primary::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-20deg);
  transition: left 0.22s cubic-bezier(0.4, 0, 0.6, 1);
}

.lp-root .btn-primary:hover::before {
  left: 120%;
}

.lp-root .btn-primary:hover {
  box-shadow: 2px 9px 48px -2px rgba(81, 184, 77, 0.14);
}

.lp-root .btn-ghost {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: #1b2a1b;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid #8BC49A;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.15s ease-out, border-color 0.15s ease-out;
}

.lp-root .btn-ghost:hover {
  border-color: #51B84D;
  color: #51B84D;
}

.lp-root .split-reveal {
  animation: splitReveal 0.72s cubic-bezier(0.4, 0, 0.6, 1) both;
}

@keyframes splitReveal {
  0% {
    letter-spacing: 0.18em;
    opacity: 0;
  }

  100% {
    letter-spacing: -0.03em;
    opacity: 1;
  }
}

.lp-root .fade-up {
  animation: fadeUp 0.52s ease-out both;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }

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

.lp-root .fade-up--d1 {
  animation-delay: 0.12s;
}

.lp-root .fade-up--d2 {
  animation-delay: 0.22s;
}

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

.lp-root .analysis-strip {
  background: #1b2a1b;
  padding: 80px;
  position: relative;
}

.lp-root .analysis-strip .tri-div {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 80px 56px 0;
  border-color: transparent #51B84D transparent transparent;
}

.lp-root .analysis-strip .strip-head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

.lp-root .analysis-strip .strip-h2 {
  font-size: 46px;
  line-height: 1.1;
  color: #FCFDFC;
  margin: 0;
  letter-spacing: -0.025em;
  max-width: 560px;
}

.lp-root .analysis-strip .strip-h2 .word-accent {
  color: #8BC49A;
}

.lp-root .analysis-strip .strip-intro {
  font-size: 16px;
  line-height: 1.75;
  color: #8BC49A;
  max-width: 380px;
  margin: 0;
}

.lp-root .analysis-strip .strip-intro .drop-cap {
  float: left;
  font-size: 33px;
  line-height: 1.1;
  color: #51B84D;
  margin-right: 8px;
  font-weight: 700;
}

.lp-root .feat-cols {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  gap: 24px;
  align-items: start;
}

.lp-root .feat-card {
  border-radius: 6px;
  padding: 40px 24px;
  background: rgba(139, 196, 154, 0.08);
  border: 1px solid rgba(139, 196, 154, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.18s ease-out, box-shadow 0.18s ease-out;
}

.lp-root .feat-card:hover {
  background: rgba(139, 196, 154, 0.13);
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
}

.lp-root .feat-card.center-short {
  padding: 24px;
}

.lp-root .feat-card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(81, 184, 77, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-root .feat-card .card-icon svg {
  width: 20px;
  height: 20px;
  stroke: #51B84D;
  fill: none;
  stroke-width: 2;
}

.lp-root .feat-card .card-h4 {
  font-size: 19px;
  line-height: 1.1;
  color: #FCFDFC;
  margin: 0;
  letter-spacing: -0.01em;
}

.lp-root .feat-card .card-h4 .word-accent {
  color: #8BC49A;
}

.lp-root .feat-card .card-body {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(252, 253, 252, 0.72);
  margin: 0;
}

.lp-root .feat-card .card-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.lp-root .feat-card .stat-num {
  font-size: 33px;
  font-weight: 700;
  color: #51B84D;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.lp-root .feat-card .stat-desc {
  font-size: 14px;
  color: rgba(252, 253, 252, 0.55);
  line-height: 1.75;
}

.lp-root .btn-inv {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: #51B84D;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid #51B84D;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.15s ease-out, background 0.15s ease-out;
}

.lp-root .btn-inv:hover {
  background: #51B84D;
  color: #FCFDFC;
}

.lp-root .timeline-seg {
  background: #FCFDFC;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.lp-root .timeline-seg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8BC49A 30%, #51B84D 60%, transparent);
}

.lp-root .tl-text-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-root .tl-h2 {
  font-size: 46px;
  line-height: 1.1;
  color: #1b2a1b;
  margin: 0;
  letter-spacing: -0.025em;
}

.lp-root .tl-h2 .word-accent {
  color: #51B84D;
}

.lp-root .tl-body {
  font-size: 16px;
  line-height: 1.75;
  color: #2d3d2d;
  margin: 0;
}

.lp-root .tl-body .drop-cap {
  float: left;
  font-size: 33px;
  line-height: 1.1;
  color: #51B84D;
  margin-right: 8px;
  font-weight: 700;
}

.lp-root .tl-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 9px 48px -2px rgba(81, 184, 77, 0.14);
}

.lp-root .tl-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.lp-root .timeline-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-root .tl-item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  position: relative;
}

.lp-root .tl-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.lp-root .tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 46px;
  background: #8BC49A;
  border: 3px solid #FCFDFC;
  box-shadow: 2px 3px 2px -2px rgba(81, 184, 77, 0.06);
  flex-shrink: 0;
  transition: background 0.15s ease-out;
  margin-top: 4px;
}

.lp-root .tl-item.active .tl-dot {
  background: #51B84D;
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
}

.lp-root .tl-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, #8BC49A, rgba(139, 196, 154, 0.2));
}

.lp-root .tl-item:last-child .tl-line {
  display: none;
}

.lp-root .tl-content {
  padding-bottom: 40px;
  flex: 1;
}

.lp-root .tl-content .tl-step {
  font-size: 14px;
  color: #51B84D;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.lp-root .tl-content .tl-h5 {
  font-size: 19px;
  line-height: 1.1;
  color: #1b2a1b;
  margin: 0 0 8px;
}

.lp-root .tl-content .tl-h5 .word-accent {
  color: #51B84D;
}

.lp-root .tl-content .tl-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #4a5e4a;
  margin: 0;
}

.lp-root .tl-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 46px;
  margin-top: 8px;
}

.lp-root .tl-status.done {
  background: rgba(81, 184, 77, 0.12);
  color: #51B84D;
}

.lp-root .tl-status.running {
  background: rgba(139, 196, 154, 0.18);
  color: #2d6b2a;
}

.lp-root .tl-status .st-dot {
  width: 6px;
  height: 6px;
  border-radius: 46px;
  background: currentColor;
}

.lp-root .faq-seg {
  background: linear-gradient(160deg, rgba(81, 184, 77, 0.06) 0%, rgba(139, 196, 154, 0.10) 50%, rgba(252, 253, 252, 0.8) 100%);
  padding: 80px;
  position: relative;
}

.lp-root .faq-seg .deco-tri {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 64px 64px;
  border-color: transparent transparent #8BC49A transparent;
  opacity: 0.3;
}

.lp-root .faq-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

.lp-root .faq-h2 {
  font-size: 46px;
  line-height: 1.1;
  color: #1b2a1b;
  margin: 0;
  letter-spacing: -0.025em;
}

.lp-root .faq-h2 .word-accent {
  color: #51B84D;
}

.lp-root .faq-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #2d3d2d;
  max-width: 360px;
  margin: 0;
}

.lp-root .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
}

.lp-root .faq-item {
  border-top: 1px solid rgba(139, 196, 154, 0.3);
}

.lp-root .faq-item:last-child {
  border-bottom: 1px solid rgba(139, 196, 154, 0.3);
}

.lp-root .faq-item details {
  padding: 24px 0;
}

.lp-root .faq-item details summary {
  font-size: 19px;
  line-height: 1.1;
  color: #1b2a1b;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.15s ease-out;
}

.lp-root .faq-item details summary::-webkit-details-marker {
  display: none;
}

.lp-root .faq-item details summary:hover {
  color: #51B84D;
}

.lp-root .faq-item details summary .faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 46px;
  background: rgba(81, 184, 77, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease-out;
}

.lp-root .faq-item details[open] summary .faq-icon {
  background: #51B84D;
}

.lp-root .faq-item details summary .faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: #51B84D;
  fill: none;
  stroke-width: 2.5;
  transition: stroke 0.15s ease-out, transform 0.18s ease-out;
}

.lp-root .faq-item details[open] summary .faq-icon svg {
  stroke: #FCFDFC;
  transform: rotate(45deg);
}

.lp-root .faq-answer {
  font-size: 16px;
  line-height: 1.75;
  color: #2d3d2d;
  margin: 16px 0 0;
  padding-right: 40px;
}

.lp-root .rating-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 24px 40px;
  background: rgba(252, 253, 252, 0.9);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 6px;
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
  display: inline-flex;
}

.lp-root .rating-badge .rat-num {
  font-size: 46px;
  font-weight: 700;
  color: #1b2a1b;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.lp-root .rating-badge .rat-stars {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.lp-root .rating-badge .rat-stars svg {
  width: 18px;
  height: 18px;
  fill: #51B84D;
}

.lp-root .rating-badge .rat-label {
  font-size: 14px;
  color: #4a5e4a;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .lp-root .grain-bg {
    padding: 40px 40px 80px;
  }

  .lp-root .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-root .manifesto-h1 {
    font-size: 46px;
  }

  .lp-root .analysis-strip {
    padding: 40px;
  }

  .lp-root .analysis-strip .strip-head {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

  .lp-root .feat-cols {
    grid-template-columns: 1fr 1fr;
  }

  .lp-root .feat-card.center-short {
    grid-column: span 2;
  }

  .lp-root .timeline-seg {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 40px;
  }

  .lp-root .faq-seg {
    padding: 40px;
  }

  .lp-root .faq-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .lp-root .grain-bg {
    padding: 24px 24px 80px;
  }

  .lp-root .manifesto-h1 {
    font-size: 33px;
  }

  .lp-root .analysis-strip {
    padding: 24px;
  }

  .lp-root .strip-h2 {
    font-size: 33px !important;
  }

  .lp-root .feat-cols {
    grid-template-columns: 1fr;
  }

  .lp-root .feat-card.center-short {
    grid-column: auto;
  }

  .lp-root .timeline-seg {
    padding: 24px;
  }

  .lp-root .tl-h2 {
    font-size: 33px;
  }

  .lp-root .faq-seg {
    padding: 24px;
  }

  .lp-root .faq-h2 {
    font-size: 33px;
  }

  .lp-root .faq-item details summary {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .lp-root .grain-bg {
    padding: 16px 16px 40px;
  }

  .lp-root .manifesto-h1 {
    font-size: 24px;
  }

  .lp-root .manifesto-declaration {
    font-size: 16px;
  }

  .lp-root .analysis-strip {
    padding: 16px;
  }

  .lp-root .timeline-seg {
    padding: 16px;
  }

  .lp-root .faq-seg {
    padding: 16px;
  }

  .lp-root .metric-val {
    font-size: 33px;
  }
}

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

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

@media (max-width: 768px) {
  .bse .pg-wrap {
    padding: 0 16px;
  }
}

.bse .drop-cap::first-letter {
  font-size: 33px;
  color: #51B84D;
  float: left;
  line-height: 1.1;
  margin-right: 8px;
  font-weight: 700;
}

.bse .split-head .accent-word {
  color: #51B84D;
}

.bse .split-head .rest-word {
  color: #1b2b1a;
}

.bse .title-blk {
  position: relative;
  padding: 80px 0;
  background: #FCFDFC;
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(81, 184, 77, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 15%, rgba(139, 196, 154, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 80%, rgba(81, 184, 77, 0.10) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 70%, rgba(139, 196, 154, 0.14) 0%, transparent 40%);
  overflow: hidden;
}

.bse .title-blk .geo-line-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
  pointer-events: none;
}

.bse .title-blk .geo-line-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  height: 140px;
  pointer-events: none;
}

.bse .title-blk__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .bse .title-blk__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.bse .title-blk__eyebrow {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #51B84D;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.bse .title-blk__h1 {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #1b2b1a;
}

@media (max-width: 1024px) {
  .bse .title-blk__h1 {
    font-size: 46px;
  }
}

@media (max-width: 375px) {
  .bse .title-blk__h1 {
    font-size: 33px;
  }
}

.bse .title-blk__lead {
  font-size: 19px;
  line-height: 1.75;
  color: #2d3d2c;
  margin-bottom: 40px;
  max-width: 480px;
}

.bse .btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: #51B84D;
  color: #FCFDFC;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid #51B84D;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.18s ease-out, border-color 0.18s ease-out;
  z-index: 1;
}

.bse .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1b2b1a;
  z-index: -1;
  transition: left 0.22s cubic-bezier(0.4, 0, 0.6, 1);
  transform: skewX(-8deg);
}

.bse .btn-primary:hover::before {
  left: 0;
}

.bse .btn-primary:hover {
  border-color: #1b2b1a;
  color: #FCFDFC;
}

.bse .btn-primary:focus {
  outline: 3px solid #51B84D;
  outline-offset: 3px;
}

.bse .title-blk__img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 9px 48px -2px rgba(81, 184, 77, 0.14);
}

.bse .title-blk__img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  transition: transform 0.22s ease-out;
}

.bse .title-blk__img-wrap:hover img {
  transform: scale(1.02);
}

.bse .img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27, 43, 26, 0.88);
  color: #FCFDFC;
  font-size: 14px;
  line-height: 1.75;
  padding: 16px;
  transform: translateY(100%);
  transition: transform 0.18s ease-out;
  border-radius: 0 0 6px 6px;
}

.bse .title-blk__img-wrap:hover .img-caption {
  transform: translateY(0);
}

.bse .math-symbol {
  position: absolute;
  font-size: 280px;
  line-height: 1.1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(81, 184, 77, 0.10);
  pointer-events: none;
  user-select: none;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.bse .type-anim {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #51B84D;
  animation: type-reveal 1.8s steps(28, end) 0.3s both, blink-caret 0.75s step-end 0.3s 6;
  max-width: 100%;
}

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

  to {
    width: 100%;
  }
}

@keyframes blink-caret {

  0%,
  100% {
    border-color: #51B84D;
  }

  50% {
    border-color: transparent;
  }
}

@keyframes color-shift-in {
  0% {
    color: #8BC49A;
    opacity: 0;
  }

  60% {
    color: #51B84D;
    opacity: 1;
  }

  100% {
    color: #1b2b1a;
    opacity: 1;
  }
}

.bse .color-shift {
  animation: color-shift-in 1.4s cubic-bezier(0.4, 0, 0.6, 1) 0.1s both;
}

.bse .outcomes-blk {
  padding: 80px 0;
  background: #1b2b1a;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  padding-bottom: 120px;
}

.bse .outcomes-blk .lbl {
  font-size: 14px;
  color: #8BC49A;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.bse .outcomes-blk__h2 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FCFDFC;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .bse .outcomes-blk__h2 {
    font-size: 33px;
  }
}

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

@media (max-width: 1024px) {
  .bse .outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.bse .out-card {
  background: rgba(81, 184, 77, 0.08);
  border: 1px solid rgba(139, 196, 154, 0.2);
  border-radius: 6px;
  padding: 40px 24px;
  transition: background 0.18s ease-out, border-color 0.18s ease-out;
}

.bse .out-card:hover {
  background: rgba(81, 184, 77, 0.15);
  border-color: rgba(139, 196, 154, 0.4);
}

.bse .out-card__num {
  font-size: 46px;
  font-weight: 700;
  color: #51B84D;
  line-height: 1.1;
  margin-bottom: 8px;
}

.bse .out-card__label {
  font-size: 16px;
  color: #FCFDFC;
  font-weight: 600;
  margin-bottom: 8px;
}

.bse .out-card__desc {
  font-size: 14px;
  line-height: 1.75;
  color: #8BC49A;
}

.bse .team-blk {
  padding: 100px 0 80px;
  background: #FCFDFC;
}

.bse .team-blk__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .bse .team-blk__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.bse .team-blk__h2 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b2b1a;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .bse .team-blk__h2 {
    font-size: 33px;
  }
}

.bse .team-blk__body {
  font-size: 16px;
  line-height: 1.75;
  color: #2d3d2c;
}

.bse .team-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
}

.bse .team-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  transition: transform 0.2s ease-out;
}

.bse .team-img-wrap:hover img {
  transform: scale(1.03);
}

.bse .team-img-wrap:hover .img-caption {
  transform: translateY(0);
}

.bse .cred-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

@media (max-width: 375px) {
  .bse .cred-row {
    grid-template-columns: 1fr;
  }
}

.bse .cred-item {
  border-top: 2px solid #51B84D;
  padding-top: 16px;
}

.bse .cred-item__val {
  font-size: 33px;
  font-weight: 700;
  color: #1b2b1a;
  line-height: 1.1;
}

.bse .cred-item__desc {
  font-size: 14px;
  color: #4a5e49;
  line-height: 1.75;
  margin-top: 8px;
}

.bse .prob-blk {
  padding: 80px 0;
  background: linear-gradient(160deg,
      rgba(81, 184, 77, 0.06) 0%,
      rgba(252, 253, 252, 1) 40%,
      rgba(139, 196, 154, 0.10) 100%);
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  padding-top: 120px;
}

.bse .prob-blk__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .bse .prob-blk__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.bse .prob-blk__h2 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b2b1a;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .bse .prob-blk__h2 {
    font-size: 33px;
  }
}

.bse .prob-blk__body {
  font-size: 16px;
  line-height: 1.75;
  color: #2d3d2c;
  margin-bottom: 24px;
}

.bse .prob-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 9px 48px -2px rgba(81, 184, 77, 0.14);
}

.bse .prob-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  transition: transform 0.2s ease-out;
}

.bse .prob-img-wrap:hover img {
  transform: scale(1.02);
}

.bse .prob-img-wrap:hover .img-caption {
  transform: translateY(0);
}

.bse .faq-card {
  background: #FCFDFC;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
  margin-top: 24px;
}

.bse .faq-card__q {
  font-size: 16px;
  font-weight: 700;
  color: #1b2b1a;
  margin-bottom: 16px;
  line-height: 1.75;
}

.bse .faq-card__a {
  font-size: 14px;
  line-height: 1.75;
  color: #4a5e49;
}

.bse .pattern-blk {
  padding: 80px 0;
  background: #2d3d2c;
}

.bse .pattern-blk__h2 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FCFDFC;
  margin-bottom: 16px;
  max-width: 640px;
}

@media (max-width: 768px) {
  .bse .pattern-blk__h2 {
    font-size: 33px;
  }
}

.bse .pattern-blk__sub {
  font-size: 16px;
  line-height: 1.75;
  color: #8BC49A;
  max-width: 560px;
  margin-bottom: 40px;
}

.bse .pattern-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

@media (max-width: 1024px) {
  .bse .pattern-cols {
    grid-template-columns: 1fr;
  }
}

.bse .pat-col {
  padding: 40px;
}

.bse .pat-col.bg-a {
  background: rgba(81, 184, 77, 0.12);
}

.bse .pat-col.bg-b {
  background: rgba(81, 184, 77, 0.06);
}

.bse .pat-col.bg-c {
  background: rgba(139, 196, 154, 0.15);
}

.bse .pat-col__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.bse .pat-col__label {
  font-size: 19px;
  font-weight: 700;
  color: #FCFDFC;
  margin-bottom: 8px;
  line-height: 1.1;
}

.bse .pat-col__text {
  font-size: 14px;
  line-height: 1.75;
  color: #8BC49A;
}

.bse .pattern-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .bse .pattern-img-row {
    grid-template-columns: 1fr;
  }
}

.bse .pat-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 3px 2px -2px rgba(81, 184, 77, 0.06);
}

.bse .pat-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  transition: transform 0.2s ease-out;
}

.bse .pat-img-wrap:hover img {
  transform: scale(1.03);
}

.bse .pat-img-wrap:hover .img-caption {
  transform: translateY(0);
}

.bse .approach-blk {
  padding: 80px 0;
  background: #FCFDFC;
  clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 94%);
  padding-top: 120px;
  padding-bottom: 120px;
}

.bse .approach-blk__h2 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b2b1a;
  margin-bottom: 40px;
  max-width: 700px;
}

@media (max-width: 768px) {
  .bse .approach-blk__h2 {
    font-size: 33px;
  }
}

.bse .approach-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 1024px) {
  .bse .approach-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

.bse .step-item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 6px;
  background: rgba(81, 184, 77, 0.04);
  border: 1px solid rgba(81, 184, 77, 0.12);
  transition: background 0.18s ease-out, box-shadow 0.18s ease-out;
}

.bse .step-item:hover {
  background: rgba(81, 184, 77, 0.09);
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
}

.bse .step-item__num {
  font-size: 33px;
  font-weight: 700;
  color: #51B84D;
  line-height: 1.1;
  min-width: 40px;
}

.bse .step-item__content {}

.bse .step-item__title {
  font-size: 16px;
  font-weight: 700;
  color: #1b2b1a;
  margin-bottom: 8px;
  line-height: 1.75;
}

.bse .step-item__desc {
  font-size: 14px;
  line-height: 1.75;
  color: #4a5e49;
}

.bse .approach-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bse .aside-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 9px 48px -2px rgba(81, 184, 77, 0.14);
}

.bse .aside-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  transition: transform 0.2s ease-out;
}

.bse .aside-img-wrap:hover img {
  transform: scale(1.03);
}

.bse .aside-img-wrap:hover .img-caption {
  transform: translateY(0);
}

.bse .aside-note {
  background: rgba(81, 184, 77, 0.08);
  border-radius: 6px;
  padding: 24px;
  font-size: 14px;
  line-height: 1.75;
  color: #2d3d2c;
}

.bse .diff-blk {
  padding: 80px 0;
  background: linear-gradient(170deg,
      rgba(139, 196, 154, 0.12) 0%,
      rgba(252, 253, 252, 1) 50%,
      rgba(81, 184, 77, 0.08) 100%);
}

.bse .diff-blk__h2 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b2b1a;
  margin-bottom: 16px;
  max-width: 700px;
}

@media (max-width: 768px) {
  .bse .diff-blk__h2 {
    font-size: 33px;
  }
}

.bse .diff-blk__intro {
  font-size: 16px;
  line-height: 1.75;
  color: #2d3d2c;
  max-width: 560px;
  margin-bottom: 40px;
}

.bse .diff-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.bse .diff-card {
  border-radius: 6px;
  padding: 40px;
  box-shadow: 2px 3px 2px -2px rgba(81, 184, 77, 0.06);
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
}

.bse .diff-card:hover {
  box-shadow: 2px 9px 48px -2px rgba(81, 184, 77, 0.14);
  transform: translateY(-2px);
}

.bse .diff-card.primary {
  background: #51B84D;
}

.bse .diff-card.secondary {
  background: #FCFDFC;
  border: 1px solid rgba(81, 184, 77, 0.2);
}

.bse .diff-card__tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.bse .diff-card.primary .diff-card__tag {
  color: rgba(252, 253, 252, 0.7);
}

.bse .diff-card.secondary .diff-card__tag {
  color: #51B84D;
}

.bse .diff-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.bse .diff-card.primary .diff-card__title {
  color: #FCFDFC;
}

.bse .diff-card.secondary .diff-card__title {
  color: #1b2b1a;
}

.bse .diff-card__body {
  font-size: 16px;
  line-height: 1.75;
}

.bse .diff-card.primary .diff-card__body {
  color: rgba(252, 253, 252, 0.88);
}

.bse .diff-card.secondary .diff-card__body {
  color: #4a5e49;
}

.bse .xyz-in {
  --xyz-translate-y: 24px;
  --xyz-opacity: 0;
  --xyz-duration: 0.6s;
  --xyz-ease: ease-out;
}

.bse .math-bg {
  position: relative;
}

.bse .math-bg .math-anchor {
  position: absolute;
  font-size: 320px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(81, 184, 77, 0.07);
  pointer-events: none;
  user-select: none;
  right: 0;
  bottom: -40px;
  line-height: 1;
  z-index: 0;
}

.bse .rel-pos {
  position: relative;
  z-index: 1;
}

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

.ctus-pg .pg-divider {
  width: 100%;
  height: 2px;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, #51B84D 0%, transparent 100%);
  border: none;
  margin: 0;
}

.ctus-pg .reach-row {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

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

.ctus-pg .reach-label {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #51B84D;
  text-transform: uppercase;
  font-weight: 600;
}

.ctus-pg .reach-heading {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: #1b2a1b;
}

.ctus-pg .reach-heading .h-accent {
  color: #51B84D;
}

.ctus-pg .reach-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #3a4a3a;
  margin: 0;
}

.ctus-pg .reach-desc::first-letter {
  font-size: 24px;
  color: #51B84D;
  font-weight: 700;
  line-height: 1;
  float: left;
  margin-right: 4px;
}

.ctus-pg .addr-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ctus-pg .addr-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}

.ctus-pg .addr-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #FCFDFC;
  border: 1.5px solid #8BC49A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 2px 3px 2px -2px rgba(81, 184, 77, 0.06);
  transition: background 0.18s ease-out, box-shadow 0.15s ease-out;
}

.ctus-pg .addr-item:hover .addr-icon {
  background: #51B84D;
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
}

.ctus-pg .addr-icon svg {
  width: 18px;
  height: 18px;
  fill: #51B84D;
  transition: fill 0.18s ease-out;
}

.ctus-pg .addr-item:hover .addr-icon svg {
  fill: #FCFDFC;
}

.ctus-pg .addr-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ctus-pg .addr-text-label {
  font-size: 14px;
  color: #8BC49A;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ctus-pg .addr-text-val {
  font-size: 16px;
  color: #1b2a1b;
  line-height: 1.75;
  text-decoration: none;
}

.ctus-pg .addr-text-val:hover {
  color: #51B84D;
}

.ctus-pg .reach-right {
  flex: 1;
}

.ctus-pg .form-card {
  background: #FCFDFC;
  border-radius: 6px;
  border: 1.5px solid #8BC49A;
  padding: 40px;
  box-shadow: 2px 9px 48px -2px rgba(81, 184, 77, 0.14);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ctus-pg .form-card-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctus-pg .form-card-title {
  font-size: 24px;
  line-height: 1.1;
  color: #1b2a1b;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ctus-pg .form-card-title .h-accent {
  color: #51B84D;
}

.ctus-pg .form-card-sub {
  font-size: 14px;
  color: #3a4a3a;
  line-height: 1.75;
  margin: 0;
}

.ctus-pg .form-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.ctus-pg .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ctus-pg .form-field.full {
  flex: 1 1 100%;
}

.ctus-pg .f-label {
  font-size: 14px;
  font-weight: 700;
  color: #1b2a1b;
  letter-spacing: 0.01em;
}

.ctus-pg .f-label .req {
  color: #51B84D;
  margin-left: 2px;
}

.ctus-pg .f-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1.5px solid #8BC49A;
  background: #FCFDFC;
  font-size: 16px;
  color: #1b2a1b;
  outline: none;
  transition: border-color 0.15s ease-out, box-shadow 0.18s ease-out;
  box-sizing: border-box;
}

.ctus-pg .f-input::placeholder {
  color: rgba(81, 184, 77, 0.45);
}

.ctus-pg .f-input:focus {
  border-color: #51B84D;
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
}

.ctus-pg .f-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1.5px solid #8BC49A;
  background: #FCFDFC;
  font-size: 16px;
  color: #1b2a1b;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%2351B84D' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color 0.15s ease-out, box-shadow 0.18s ease-out;
  box-sizing: border-box;
}

.ctus-pg .f-select:focus {
  border-color: #51B84D;
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
}

.ctus-pg .f-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1.5px solid #8BC49A;
  background: #FCFDFC;
  font-size: 16px;
  color: #1b2a1b;
  outline: none;
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.15s ease-out, box-shadow 0.18s ease-out;
  box-sizing: border-box;
}

.ctus-pg .f-textarea::placeholder {
  color: rgba(81, 184, 77, 0.45);
}

.ctus-pg .f-textarea:focus {
  border-color: #51B84D;
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
}

.ctus-pg .privacy-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}

.ctus-pg .privacy-check {
  width: 18px;
  height: 18px;
  accent-color: #51B84D;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.ctus-pg .privacy-text {
  font-size: 14px;
  color: #3a4a3a;
  line-height: 1.75;
  margin: 0;
}

.ctus-pg .privacy-text a {
  color: #51B84D;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease-out;
}

.ctus-pg .privacy-text a:hover {
  color: #1b2a1b;
}

.ctus-pg .btn-submit {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 6px;
  background: #51B84D;
  color: #FCFDFC;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid #51B84D;
  cursor: pointer;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transition: color 0.18s ease-out, border-color 0.18s ease-out;
  align-self: flex-start;
}

.ctus-pg .btn-submit::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -20%;
  width: 0;
  height: 120%;
  background: #1b2a1b;
  transform: skewX(-18deg);
  transition: width 0.22s cubic-bezier(0.4, 0, 0.6, 1);
  z-index: 0;
}

.ctus-pg .btn-submit:hover::before {
  width: 160%;
}

.ctus-pg .btn-submit span {
  position: relative;
  z-index: 1;
}

.ctus-pg .btn-submit:focus {
  outline: 3px solid #51B84D;
  outline-offset: 3px;
}

.ctus-pg .btn-submit:active {
  transform: translateY(1px);
}

.ctus-pg .detail-band {
  background: #1b2a1b;
  animation: ctus-bg-shift 15s linear infinite;
}

@keyframes ctus-bg-shift {
  0% {
    background-color: #1b2a1b;
  }

  50% {
    background-color: #1f3320;
  }

  100% {
    background-color: #1b2a1b;
  }
}

.ctus-pg .detail-band-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.ctus-pg .detail-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ctus-pg .detail-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #51B84D;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px dashed #51B84D;
  border-radius: 46px;
  padding: 4px 16px;
}

.ctus-pg .detail-heading {
  font-size: 33px;
  line-height: 1.1;
  color: #FCFDFC;
  margin: 0;
  letter-spacing: -0.015em;
}

.ctus-pg .detail-heading .h-accent {
  color: #8BC49A;
}

.ctus-pg .detail-body {
  font-size: 16px;
  line-height: 1.75;
  color: #8BC49A;
  margin: 0;
}

.ctus-pg .detail-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border-radius: 6px;
  border: 1.5px solid rgba(139, 196, 154, 0.2);
  transition: border-color 0.18s ease-out, box-shadow 0.2s ease-out;
}

.ctus-pg .detail-stat:hover {
  border-color: #51B84D;
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
}

.ctus-pg .stat-num {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.ctus-pg .stat-num .int-part {
  color: #FCFDFC;
}

.ctus-pg .stat-num .frac-part {
  color: #51B84D;
}

.ctus-pg .stat-desc {
  font-size: 14px;
  color: #8BC49A;
  line-height: 1.75;
}

.ctus-pg .img-strip {
  position: relative;
  background: #edf5ed;
}

.ctus-pg .img-strip-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.ctus-pg .img-frame {
  flex: 0 0 520px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 9px 48px -2px rgba(81, 184, 77, 0.14);
  position: relative;
}

.ctus-pg .img-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.6, 1);
}

.ctus-pg .img-frame:hover img {
  transform: scale(1.04);
}

.ctus-pg .img-aside {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ctus-pg .img-aside-label {
  font-size: 14px;
  font-weight: 700;
  color: #51B84D;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ctus-pg .img-aside-heading {
  font-size: 33px;
  line-height: 1.1;
  color: #1b2a1b;
  margin: 0;
  letter-spacing: -0.015em;
}

.ctus-pg .img-aside-heading .h-accent {
  color: #51B84D;
}

.ctus-pg .hours-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1.5px dashed #8BC49A;
  border-radius: 6px;
  padding: 24px;
}

.ctus-pg .hours-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(139, 196, 154, 0.25);
  transition: color 0.15s ease-out;
}

.ctus-pg .hours-row:last-child {
  border-bottom: none;
}

.ctus-pg .hours-row:hover {
  color: #51B84D;
}

.ctus-pg .hours-day {
  font-weight: 700;
  color: #1b2a1b;
}

.ctus-pg .hours-time {
  color: #3a4a3a;
}

.ctus-pg .hours-row:hover .hours-day,
.ctus-pg .hours-row:hover .hours-time {
  color: #51B84D;
}

.ctus-pg .img-aside-note {
  font-size: 14px;
  line-height: 1.75;
  color: #3a4a3a;
  margin: 0;
}

@media (max-width: 1024px) {
  .ctus-pg .reach-row {
    flex-direction: column;
    gap: 40px;
    padding: 80px 24px;
  }

  .ctus-pg .reach-left {
    flex: none;
    width: 100%;
  }

  .ctus-pg .detail-band-inner {
    grid-template-columns: 1fr 1fr;
    padding: 80px 24px;
  }

  .ctus-pg .detail-main {
    grid-column: 1 / -1;
  }

  .ctus-pg .img-strip-inner {
    flex-direction: column;
    padding: 80px 24px;
  }

  .ctus-pg .img-frame {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .ctus-pg .reach-row {
    padding: 40px 16px;
  }

  .ctus-pg .form-row {
    flex-direction: column;
  }

  .ctus-pg .form-card {
    padding: 24px 16px;
  }

  .ctus-pg .reach-heading {
    font-size: 33px;
  }

  .ctus-pg .detail-band-inner {
    grid-template-columns: 1fr;
    padding: 40px 16px;
    gap: 24px;
  }

  .ctus-pg .detail-main {
    grid-column: auto;
  }

  .ctus-pg .img-strip-inner {
    padding: 40px 16px;
    gap: 24px;
  }

  .ctus-pg .img-frame img {
    height: 260px;
  }

  .ctus-pg .img-aside-heading {
    font-size: 24px;
  }
}

@media (max-width: 375px) {
  .ctus-pg .reach-heading {
    font-size: 24px;
  }

  .ctus-pg .stat-num {
    font-size: 33px;
  }

  .ctus-pg .btn-submit {
    width: 100%;
    text-align: center;
  }
}

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

.ab-us .pg-wrap {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .ab-us .pg-wrap {
    padding: 0 16px;
  }
}

.ab-us .tb {
  position: relative;
  padding: 80px 0;
  background: #FCFDFC;
  overflow: hidden;
}

.ab-us .tb::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 80%, rgba(81, 184, 77, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(139, 196, 154, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 55%, rgba(81, 184, 77, 0.09) 0%, transparent 60%);
  animation: tb-grad-a 11s ease-in-out infinite alternate;
  pointer-events: none;
}

.ab-us .tb::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 85%, rgba(139, 196, 154, 0.15) 0%, transparent 45%),
    radial-gradient(ellipse at 25% 15%, rgba(81, 184, 77, 0.12) 0%, transparent 50%);
  animation: tb-grad-b 15s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

@keyframes tb-grad-a {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes tb-grad-b {
  0% {
    opacity: 1;
    transform: scale(1.03) translateX(0);
  }

  100% {
    opacity: 0.6;
    transform: scale(1) translateX(12px);
  }
}

.ab-us .tb-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #51B84D 0%, #8BC49A 60%, transparent 100%);
  pointer-events: none;
}

.ab-us .tb-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}

.ab-us .tb-text {
  flex: 1 1 0;
  min-width: 0;
}

.ab-us .tb-label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #51B84D;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.ab-us .tb-h1 {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #1b2a1a;
}

.ab-us .tb-h1 span {
  color: #51B84D;
}

.ab-us .tb-desc {
  font-size: 19px;
  line-height: 1.75;
  color: #2d3d2c;
  max-width: 520px;
}

.ab-us .tb-desc::first-letter {
  font-size: 33px;
  color: #51B84D;
  line-height: 1.1;
  float: left;
  margin-right: 6px;
  margin-top: 4px;
}

.ab-us .tb-img-col {
  flex: 0 0 420px;
  position: relative;
}

.ab-us .tb-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 9px 48px -2px rgba(81, 184, 77, 0.14);
}

.ab-us .tb-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.ab-us .tb-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(81, 184, 77, 0.18) 0%, transparent 60%);
  border-radius: 6px;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .ab-us .tb-inner {
    flex-direction: column;
    gap: 40px;
  }

  .ab-us .tb-img-col {
    flex: 0 0 auto;
    width: 100%;
  }

  .ab-us .tb-h1 {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .ab-us .tb {
    padding: 40px 0;
  }

  .ab-us .tb-h1 {
    font-size: 33px;
  }

  .ab-us .tb-desc {
    font-size: 16px;
  }

  .ab-us .tb-img-wrap img {
    height: 240px;
  }
}

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

.ab-us .div-dash {
  border: none;
  border-top: 2px dashed #8BC49A;
  margin: 0;
  opacity: 0.6;
}

.ab-us .appr {
  padding: 80px 0;
  background: #fff;
  position: relative;
}

.ab-us .appr-dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 220px;
  pointer-events: none;
  overflow: hidden;
}

.ab-us .appr-dots svg {
  width: 100%;
  height: 100%;
  opacity: 0.18;
}

.ab-us .appr-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 3fr;
  gap: 40px;
  align-items: start;
}

.ab-us .appr-col-label {
  padding-top: 8px;
}

.ab-us .appr-tag {
  font-size: 14px;
  color: #51B84D;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: inline-block;
  height: 160px;
}

.ab-us .appr-col-mid {
  border-right: 1px solid rgba(81, 184, 77, 0.2);
  padding-right: 40px;
}

.ab-us .appr-h2 {
  font-size: 33px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b2a1a;
  margin-bottom: 24px;
}

.ab-us .appr-h2 span {
  color: #51B84D;
}

.ab-us .appr-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
}

.ab-us .appr-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.18s ease-out;
}

.ab-us .appr-img-wrap:hover img {
  transform: scale(1.03);
}

.ab-us .appr-col-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ab-us .appr-card {
  background: #FCFDFC;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 2px 3px 2px -2px rgba(81, 184, 77, 0.06);
  transition: box-shadow 0.16s ease-out;
}

.ab-us .appr-card:hover {
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
}

.ab-us .appr-card-h {
  font-size: 19px;
  line-height: 1.1;
  color: #1b2a1a;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.ab-us .appr-card-h span {
  color: #51B84D;
}

.ab-us .appr-card p {
  font-size: 16px;
  line-height: 1.75;
  color: #2d3d2c;
  margin: 0;
}

@media (max-width: 1024px) {
  .ab-us .appr-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ab-us .appr-col-label {
    display: none;
  }
}

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

  .ab-us .appr-col-mid {
    border-right: none;
    padding-right: 0;
  }

  .ab-us .appr {
    padding: 40px 0;
  }
}

.ab-us .div-space {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #8BC49A 40%, #51B84D 60%, transparent 100%);
  opacity: 0.35;
  margin: 0;
}

.ab-us .tm {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.ab-us .tm::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(138deg, #FCFDFC 52%, #8BC49A 52%);
  pointer-events: none;
}

.ab-us .tm-chevron-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ab-us .tm-chevron-bg svg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 340px;
  height: 340px;
  opacity: 0.07;
}

.ab-us .tm-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.ab-us .tm-left {
  flex: 1 1 0;
  min-width: 0;
}

.ab-us .tm-h2 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1b2a1a;
  margin-bottom: 40px;
}

.ab-us .tm-h2 span {
  color: #51B84D;
}

.ab-us .tm-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ab-us .tm-person {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 6px;
  padding: 24px;
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.ab-us .tm-avatar {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 46px;
  background: linear-gradient(135deg, #51B84D 0%, #8BC49A 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ab-us .tm-avatar-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 46px;
  display: block;
}

.ab-us .tm-avatar svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.ab-us .tm-person-info {
  flex: 1 1 0;
  min-width: 0;
}

.ab-us .tm-person-name {
  font-size: 16px;
  font-weight: 700;
  color: #1b2a1a;
  margin-bottom: 4px;
}

.ab-us .tm-person-role {
  font-size: 14px;
  color: #51B84D;
  margin-bottom: 8px;
  font-weight: 600;
}

.ab-us .tm-person-quote {
  font-size: 14px;
  line-height: 1.75;
  color: #2d3d2c;
  margin: 0;
}

.ab-us .tm-right {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ab-us .tm-stat-block {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  padding: 24px;
  box-shadow: 2px 9px 48px -2px rgba(81, 184, 77, 0.14);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.ab-us .tm-stat-block h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #51B84D;
  margin-bottom: 16px;
  font-weight: 600;
}

.ab-us .tm-stat-row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.ab-us .tm-stat-num {
  font-size: 46px;
  line-height: 1.1;
  color: #1b2a1a;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.ab-us .tm-stat-unit {
  font-size: 19px;
  color: #51B84D;
  font-weight: 600;
}

.ab-us .tm-stat-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #2d3d2c;
  margin: 0;
}

.ab-us .tm-img-stat {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
}

.ab-us .tm-img-stat img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .ab-us .tm-inner {
    flex-direction: column;
    gap: 40px;
  }

  .ab-us .tm-right {
    flex: 0 0 auto;
    width: 100%;
  }

  .ab-us .tm::before {
    background: linear-gradient(160deg, #FCFDFC 60%, #8BC49A 60%);
  }
}

@media (max-width: 768px) {
  .ab-us .tm {
    padding: 40px 0;
  }

  .ab-us .tm-h2 {
    font-size: 33px;
  }
}

.ab-us .div-thick {
  height: 2px;
  background: repeating-linear-gradient(90deg, #51B84D 0px, #51B84D 12px, transparent 12px, transparent 24px);
  opacity: 0.4;
  margin: 0;
}

.ab-us .prog {
  padding: 80px 0;
  background: #FCFDFC;
  position: relative;
}

.ab-us .prog-inner {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center;
}

.ab-us .prog-img-col {
  flex: 0 0 440px;
  position: relative;
}

.ab-us .prog-img-frame {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 9px 48px -2px rgba(81, 184, 77, 0.14);
  position: relative;
}

.ab-us .prog-img-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.6, 1);
}

.ab-us .prog-img-frame:hover img {
  transform: scale(1.04);
}

.ab-us .prog-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(81, 184, 77, 0.22) 100%);
  pointer-events: none;
}

.ab-us .prog-text {
  flex: 1 1 0;
  min-width: 0;
}

.ab-us .prog-eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #51B84D;
  font-weight: 600;
  margin-bottom: 16px;
}

.ab-us .prog-h2 {
  font-size: 33px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b2a1a;
  margin-bottom: 24px;
}

.ab-us .prog-h2 span {
  color: #51B84D;
}

.ab-us .prog-body {
  font-size: 16px;
  line-height: 1.75;
  color: #2d3d2c;
  margin-bottom: 24px;
}

.ab-us .prog-body::first-letter {
  font-size: 33px;
  color: #51B84D;
  line-height: 1.1;
  float: left;
  margin-right: 6px;
  margin-top: 4px;
}

.ab-us .prog-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.ab-us .prog-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.ab-us .prog-step-num {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #51B84D;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.ab-us .prog-step-text {
  flex: 1 1 0;
  font-size: 16px;
  line-height: 1.75;
  color: #2d3d2c;
  padding-top: 4px;
}

.ab-us .prog-cta {
  display: inline-block;
  padding: 16px 40px;
  background: #51B84D;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 2px 7px 20px -2px rgba(81, 184, 77, 0.10);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.16s ease-out, color 0.14s ease-out;
}

.ab-us .prog-cta::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -30%;
  width: 60%;
  height: 220%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-20deg) translateX(-100%);
  transition: transform 0.20s cubic-bezier(0.4, 0, 0.6, 1);
  pointer-events: none;
}

.ab-us .prog-cta:hover::before {
  transform: skewX(-20deg) translateX(360%);
}

.ab-us .prog-cta:hover {
  box-shadow: 2px 9px 48px -2px rgba(81, 184, 77, 0.14);
  color: #fff;
}

.ab-us .prog-cta:focus {
  outline: 2px solid #1b2a1a;
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .ab-us .prog-inner {
    flex-direction: column;
    gap: 40px;
  }

  .ab-us .prog-img-col {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .ab-us .prog {
    padding: 40px 0;
  }

  .ab-us .prog-h2 {
    font-size: 24px;
  }
}

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

.success-page .success-card {
  max-width: 560px;
  width: 100%;
  background: #ffffff;
  border-radius: 6px;
  padding: 80px 40px;
  box-shadow: 2px 9px 48px -2px rgba(81, 184, 77, 0.14);
  text-align: center;
}

.success-page .success-card .icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 46px;
  background: linear-gradient(135deg, rgba(81, 184, 77, 0.10) 0%, rgba(139, 196, 154, 0.18) 100%);
}

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

.success-page .success-card .success-heading {
  font-size: 33px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: #1b2a1b;
}

.success-page .success-card .success-heading span {
  color: #51B84D;
}

.success-page .success-card .success-body {
  font-size: 16px;
  line-height: 1.75;
  color: #3a4a3a;
  margin: 0 0 40px;
}

.success-page .success-card .success-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #51B84D, #8BC49A);
  border-radius: 6px;
  margin: 0 auto 40px;
}

.success-page .success-card .success-meta {
  font-size: 14px;
  line-height: 1.75;
  color: #5a6e5a;
  margin: 0 0 40px;
}

.success-page .success-card .btn-return {
  display: inline-block;
  padding: 16px 40px;
  background: #51B84D;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.1;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid #51B84D;
  transition: background 0.18s cubic-bezier(0.4, 0, 0.6, 1), color 0.18s cubic-bezier(0.4, 0, 0.6, 1), border-color 0.18s cubic-bezier(0.4, 0, 0.6, 1);
  position: relative;
  overflow: hidden;
}

.success-page .success-card .btn-return::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #8BC49A 0%, #51B84D 100%);
  opacity: 0;
  transition: opacity 0.18s cubic-bezier(0.4, 0, 0.6, 1);
  border-radius: 6px;
  pointer-events: none;
}

.success-page .success-card .btn-return:hover::before {
  opacity: 1;
}

.success-page .success-card .btn-return:hover {
  color: #ffffff;
  border-color: #8BC49A;
}

.success-page .success-card .btn-return:focus {
  outline: 3px solid #51B84D;
  outline-offset: 3px;
}

.success-page .success-card .btn-return:active {
  background: #3d9939;
  border-color: #3d9939;
}

.success-page .success-card .btn-return span {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .success-page {
    padding: 40px 16px;
  }

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

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

@media (max-width: 375px) {
  .success-page .success-card {
    padding: 40px 16px;
  }

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

  .success-page .success-card .btn-return {
    padding: 16px 24px;
    font-size: 14px;
  }
}