@import "https://cdn.jsdelivr.net/npm/@fontsource/lora@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/lora@latest/400-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/lora@latest/500.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/lora@latest/500-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/lora@latest/600.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/lora@latest/600-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/lora@latest/700.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/lora@latest/700-italic.css";

html {
  box-sizing: border-box
}

body {
  margin: 0;
  overscroll-behavior: contain;
  overflow-x: hidden
}

*,
::before,
::after {
  box-sizing: inherit
}

@keyframes focus-dash-spin {
  from {
    outline-offset: 3px;
    transform: rotate(0deg)
  }

  to {
    outline-offset: 3px;
    transform: rotate(360deg)
  }
}

:focus-visible {
  outline: 2px dashed #A4FC9D;
  outline-offset: 3px;
  animation: focus-dash-spin 3s linear infinite
}

.site-frame {
  background-color: #0d1f12;
  font-family: 'Lora', Georgia, serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column
}

.primary-header {
  position: relative;
  background: linear-gradient(135deg, #0a1a0e 0%, #111d14 60%, #1a0a10 100%);
  border-bottom: 1px solid #A4FC9D;
  box-shadow: 2px 7px 28px 0 #a4fc9d1a;
  z-index: 100
}

.primary-header-pod {
  max-width: 1320px;
  margin: 0 auto;
  padding: 36px 36px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: start
}

.brand-deck {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 36px
}

.brand-identity-row {
  display: flex;
  align-items: center;
  gap: 16px
}

.brand-logo-cell {
  width: 64px;
  height: 64px;
  background-color: #f0ede8;
  border: 2px solid #A4FC9D;
  box-shadow: 2px 3px 6px 0 #a4fc9d0f 2px 7px 28px 0 #a4fc9d1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.brand-logo-cell img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  display: block
}

.brand-name-text {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #FFF;
  margin: 0
}

.brand-name-text span {
  color: #A4FC9D
}

.brand-tagline-text {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: #ffffff9e;
  margin: 0;
  padding-left: 80px
}

.primary-nav-pod {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  padding-bottom: 0
}

.primary-nav-accent-bar {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #570E31 0%, #A4FC9D 100%);
  border-radius: 0;
  margin-bottom: 16px
}

.primary-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px
}

.primary-nav-list li {
  display: block
}

.primary-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffffd1;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: color .55s ease, border-color .65s ease;
  min-height: 44px
}

.primary-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  background: linear-gradient(90deg, #570e3159 0%, #a4fc9d14 100%);
  transition: left .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0
}

.primary-nav-link:hover::before {
  left: 0
}

.primary-nav-link:hover {
  color: #A4FC9D;
  border-color: #a4fc9d47;
  text-decoration: none
}

.primary-nav-link span {
  position: relative;
  z-index: 1
}

.primary-nav-link svg {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  opacity: .55;
  transition: opacity .55s ease
}

.primary-nav-link:hover svg {
  opacity: 1
}

.primary-nav-link[aria-current="page"] {
  color: #A4FC9D;
  border-color: #a4fc9d66;
  background: #a4fc9d0f
}

.primary-header-bottom-rule {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 36px
}

.primary-header-bottom-rule hr {
  border: none;
  border-top: 1px solid #570e3173;
  margin: 0
}

.site-footer {
  background: linear-gradient(180deg, #0a1a0e 0%, #080f0a 100%);
  margin-top: auto;
  padding: 36px 0
}

.footer-pod {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 36px
}

.footer-upper-deck {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: start;
  padding-bottom: 36px
}

.footer-brand-cell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start
}

.footer-logo-cell {
  width: 60px;
  height: 60px;
  background-color: #f0ede8;
  border: 2px solid #a4fc9d59;
  box-shadow: 2px 3px 6px 0 #a4fc9d0f;
  display: flex;
  align-items: center;
  justify-content: center
}

.footer-logo-cell img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block
}

.footer-brand-label {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  color: #FFF;
  letter-spacing: -.02em
}

.footer-brand-label span {
  color: #A4FC9D
}

.footer-since-note {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: #ffffff61
}

.footer-nav-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px
}

.footer-nav-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #a4fc9dbf;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px
}

.footer-nav-list li {
  display: block
}

.footer-nav-link {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #ffffff94;
  text-decoration: none;
  border-radius: 3px;
  padding: 4px 0;
  transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 44px;
  display: flex;
  align-items: center
}

.footer-nav-link:hover {
  color: #A4FC9D;
  text-decoration: none
}

.footer-contact-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  padding-top: 4px
}

.footer-contact-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #a4fc9dbf;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end
}

.footer-contact-item a {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #ffffff94;
  text-decoration: none;
  transition: color .65s ease
}

.footer-contact-item a:hover {
  color: #A4FC9D
}

.footer-contact-item svg {
  opacity: .45;
  flex-shrink: 0
}

.footer-address-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #ffffff61;
  text-align: right
}

.footer-divider-line {
  border: none;
  border-top: 1px solid #a4fc9d1f;
  margin: 0 0 16px
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.footer-copyright-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff4d
}

.footer-legal-accent {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #570E31, #A4FC9D);
  border-radius: 0
}

.consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  display: none;
  transform: translateX(-100%);
  transition: transform .18s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.consent-bar.consent-bar-visible {
  transform: translateX(0)
}

.consent-bar-card {
  background: linear-gradient(135deg, #0d1f12 0%, #1a0a10 100%);
  border-top: 2px solid #A4FC9D;
  box-shadow: 2px 12px 60px 0 #a4fc9d1f;
  padding: 16px 36px;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: space-between
}

.consent-text-area {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0
}

.consent-icon-shape {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.consent-message {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #ffffffbf;
  margin: 0
}

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

.consent-btn {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #a4fc9d80;
  background: transparent;
  color: #ffffffd1;
  cursor: pointer;
  min-height: 44px;
  position: relative;
  overflow: hidden;
  transition: color .55s ease, border-color .65s ease
}

.consent-btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  background: #a4fc9d1f;
  transition: left .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.consent-btn:hover::before {
  left: 0
}

.consent-btn:hover {
  color: #A4FC9D;
  border-color: #A4FC9D
}

.consent-btn:active {
  box-shadow: inset 2px 3px 6px 0 #a4fc9d0f
}

.consent-btn-decline {
  border-color: #570e3199
}

.consent-btn-decline:hover {
  color: #ffffffd1;
  border-color: #570E31
}

.consent-btn-decline::before {
  background: #570e3133
}

@media (max-width: 768px) {
  .primary-header-pod {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 16px 0
  }

  .brand-deck {
    padding-bottom: 16px
  }

  .brand-tagline-text {
    padding-left: 0
  }

  .primary-nav-pod {
    align-items: flex-start
  }

  .primary-nav-list {
    justify-content: flex-start
  }

  .footer-upper-deck {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .footer-contact-cell {
    align-items: flex-start
  }

  .footer-contact-item {
    justify-content: flex-start
  }

  .footer-address-text {
    text-align: left
  }

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

  .footer-pod {
    padding: 0 16px
  }

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

@media (min-width: 769px) and (max-width: 1280px) {
  .primary-header-pod {
    padding: 36px 36px 0
  }

  .footer-upper-deck {
    grid-template-columns: auto 1fr auto
  }
}

.terms-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 36px;
  background: #0d1f10;
  min-height: 100vh;
  color: #e8f5e6
}

.terms-wrapper h1 {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #A4FC9D;
  margin-bottom: 36px;
  margin-top: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #a4fc9d2e
}

.terms-wrapper h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #A4FC9D;
  margin-top: 72px;
  margin-bottom: 16px
}

.terms-wrapper h3 {
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: #c8f5c5;
  margin-top: 36px;
  margin-bottom: 16px
}

.terms-wrapper h4 {
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -.005em;
  color: #c8f5c5;
  margin-top: 36px;
  margin-bottom: 8px
}

.terms-wrapper h5 {
  font-size: 18px;
  line-height: 1.4;
  color: #b8edb5;
  margin-top: 16px;
  margin-bottom: 8px
}

.terms-wrapper h6 {
  font-size: 16px;
  line-height: 1.4;
  color: #b8edb5;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 8px
}

.terms-wrapper p {
  font-size: 18px;
  line-height: 1.7;
  color: #d4edd2;
  margin-top: 0;
  margin-bottom: 16px
}

.terms-wrapper ul {
  margin: 16px 0 36px;
  padding-left: 36px;
  list-style: none
}

.terms-wrapper ol {
  margin: 16px 0 36px;
  padding-left: 36px;
  list-style: decimal
}

.terms-wrapper ul li {
  font-size: 18px;
  line-height: 1.7;
  color: #d4edd2;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px
}

.terms-wrapper ul li::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 12px;
  width: 6px;
  height: 6px;
  background: #A4FC9D;
  border-radius: 3px
}

.terms-wrapper ol li {
  font-size: 18px;
  line-height: 1.7;
  color: #d4edd2;
  margin-bottom: 8px;
  padding-left: 8px
}

.terms-wrapper ul ul,
.terms-wrapper ol ul,
.terms-wrapper ul ol,
.terms-wrapper ol ol {
  margin: 8px 0
}

.terms-wrapper a {
  color: #A4FC9D;
  text-decoration: underline;
  text-decoration-color: #a4fc9d59;
  text-underline-offset: 3px;
  transition: color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), text-decoration-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.terms-wrapper a:hover {
  color: #fff;
  text-decoration-color: #fff9
}

.terms-wrapper a:visited {
  color: #8de087
}

.terms-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 36px 0;
  font-size: 16px;
  line-height: 1.7;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 2px 7px 28px 0 #a4fc9d1a
}

.terms-wrapper thead {
  background: #570e31b3
}

.terms-wrapper thead th {
  padding: 16px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #A4FC9D;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 2px solid #a4fc9d4d
}

.terms-wrapper tbody tr {
  background: #a4fc9d08;
  transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.terms-wrapper tbody tr:nth-child(even) {
  background: #a4fc9d0f
}

.terms-wrapper tbody tr:hover {
  background: #a4fc9d1c
}

.terms-wrapper td {
  padding: 16px;
  color: #d4edd2;
  font-size: 16px;
  line-height: 1.7;
  border-bottom: 1px solid #a4fc9d14;
  vertical-align: top
}

.terms-wrapper th {
  padding: 16px;
  vertical-align: top
}

.terms-wrapper div {
  font-size: 18px;
  line-height: 1.7;
  color: #d4edd2
}

@media (max-width: 768px) {
  .terms-wrapper {
    padding: 36px 16px
  }

  .terms-wrapper h1 {
    font-size: 40px
  }

  .terms-wrapper h2 {
    font-size: 28px;
    margin-top: 36px
  }

  .terms-wrapper h3 {
    font-size: 22px
  }

  .terms-wrapper h4 {
    font-size: 18px
  }

  .terms-wrapper table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }

  .terms-wrapper ul {
    padding-left: 16px
  }

  .terms-wrapper ol {
    padding-left: 16px
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .terms-wrapper {
    padding: 72px 36px
  }

  .terms-wrapper h1 {
    font-size: 56px
  }
}

.ptl-root {
  background-color: #0d1a10;
  color: #e8f5e5;
  overflow-x: hidden;
  position: relative
}

.ptl-root .ptl-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 36px
}

.ptl-root .ptl-title-block {
  padding: 72px 0 0;
  position: relative
}

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

.ptl-root .ptl-title-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 1
}

.ptl-root .ptl-title-text-zone {
  flex: 0 0 60%;
  padding: 72px 72px 72px 0;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.ptl-root .ptl-eyebrow {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #A4FC9D;
  margin-bottom: 16px;
  font-weight: 300
}

.ptl-root .ptl-h1 {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 200;
  color: #e8f5e5;
  margin-bottom: 36px
}

.ptl-root .ptl-h1 .ptl-grad-text {
  background: linear-gradient(127deg, #A4FC9D 0%, #570E31 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.ptl-root .ptl-title-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #b8d4b4;
  max-width: 480px;
  margin-bottom: 36px
}

.ptl-root .ptl-title-meta {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center
}

.ptl-root .ptl-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.ptl-root .ptl-meta-val {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  color: #A4FC9D
}

.ptl-root .ptl-meta-label {
  font-size: 16px;
  line-height: 1.4;
  color: #7a9e77
}

.ptl-root .ptl-title-img-zone {
  flex: 0 0 40%;
  position: relative;
  padding: 36px 0 0
}

.ptl-root .ptl-title-img-frame {
  width: 100%;
  height: 100%;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0
}

.ptl-root .ptl-title-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: .75;
  transition: opacity .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ptl-root .ptl-title-img-frame:hover img {
  opacity: 1
}

.ptl-root .ptl-title-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0d1a1033 0%, #570e314d 100%);
  pointer-events: none;
  transition: opacity .7s ease
}

.ptl-root .ptl-title-img-frame:hover .ptl-title-img-overlay {
  opacity: 0
}

.ptl-root .ptl-title-divider {
  height: 3px;
  background: linear-gradient(90deg, #A4FC9D 0%, #570E31 60%, transparent 100%);
  margin-top: 0
}

.ptl-root .ptl-current {
  padding: 72px 0;
  position: relative;
  background: linear-gradient(160deg, #0d1a10 0%, #12200f 50%, #1a0d12 100%)
}

.ptl-root .ptl-current::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #570E31 40%, #A4FC9D 100%)
}

.ptl-root .ptl-current-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start
}

.ptl-root .ptl-current-label {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #570E31;
  background-color: #a4fc9d14;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 3px;
  margin-bottom: 16px
}

.ptl-root .ptl-current-h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 200;
  letter-spacing: -.02em;
  color: #e8f5e5;
  margin-bottom: 16px
}

.ptl-root .ptl-current-sub {
  font-size: 16px;
  line-height: 1.7;
  color: #7a9e77
}

.ptl-root .ptl-metrics-list {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ptl-root .ptl-metric-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.ptl-root .ptl-metric-name {
  font-size: 16px;
  line-height: 1.4;
  color: #b8d4b4;
  flex: 0 0 220px
}

.ptl-root .ptl-metric-bar-track {
  flex: 1;
  height: 4px;
  background: #a4fc9d1a;
  border-radius: 3px;
  overflow: hidden
}

.ptl-root .ptl-metric-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #A4FC9D, #570E31);
  transition: width .8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ptl-root .ptl-metric-val {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #A4FC9D;
  flex: 0 0 48px;
  text-align: right
}

.ptl-root .ptl-current-img {
  margin-top: 36px;
  border-radius: 8px;
  overflow: hidden;
  position: relative
}

.ptl-root .ptl-current-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: .6;
  transition: opacity .65s ease
}

.ptl-root .ptl-current-img:hover img {
  opacity: .9
}

.ptl-root .ptl-current-img-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#a4fc9d14 1px, transparent 1px), linear-gradient(90deg, #a4fc9d14 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: none
}

.ptl-root .ptl-current-img:hover .ptl-current-img-grid {
  opacity: 1
}

.ptl-root .ptl-hesitation {
  padding: 72px 0;
  background: #0a1a0d;
  position: relative
}

.ptl-root .ptl-hesitation::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(135deg, #0a1a0d 49%, #111820 50%);
  pointer-events: none
}

.ptl-root .ptl-hesitation-inner {
  display: flex;
  flex-direction: row;
  gap: 72px;
  align-items: center
}

.ptl-root .ptl-hesitation-img-col {
  flex: 0 0 38%;
  position: relative
}

.ptl-root .ptl-hesitation-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative
}

.ptl-root .ptl-hesitation-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: .65;
  transition: opacity .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ptl-root .ptl-hesitation-img-wrap:hover img {
  opacity: .95
}

.ptl-root .ptl-hesitation-img-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, #a4fc9d0a 0px, #a4fc9d0a 1px, transparent 1px, transparent 20px);
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none
}

.ptl-root .ptl-hesitation-img-wrap:hover .ptl-hesitation-img-pattern {
  opacity: 1
}

.ptl-root .ptl-hesitation-text-col {
  flex: 1;
  text-align: right
}

.ptl-root .ptl-hesitation-tag {
  font-size: 16px;
  line-height: 1.4;
  color: #A4FC9D;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block
}

.ptl-root .ptl-hesitation-h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 200;
  letter-spacing: -.02em;
  color: #e8f5e5;
  margin-bottom: 16px
}

.ptl-root .ptl-hesitation-p {
  font-size: 18px;
  line-height: 1.7;
  color: #b8d4b4;
  margin-bottom: 16px
}

.ptl-root .ptl-hesitation-checklist {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: right
}

.ptl-root .ptl-hesitation-checklist li {
  font-size: 16px;
  line-height: 1.4;
  color: #b8d4b4;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 8px
}

.ptl-root .ptl-check-box {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1.5px solid #A4FC9D;
  flex-shrink: 0;
  position: relative;
  order: 2
}

.ptl-root .ptl-check-box::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #A4FC9D;
  border-bottom: 2px solid #A4FC9D;
  transform: rotate(-45deg)
}

.ptl-root .ptl-approach {
  padding: 72px 0;
  background: #111820;
  position: relative
}

.ptl-root .ptl-approach-header {
  margin-bottom: 36px;
  max-width: 640px
}

.ptl-root .ptl-approach-tag {
  font-size: 16px;
  line-height: 1.4;
  color: #7a9e77;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block
}

.ptl-root .ptl-approach-h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 200;
  letter-spacing: -.02em;
  color: #e8f5e5;
  margin-bottom: 16px
}

.ptl-root .ptl-approach-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #b8d4b4
}

.ptl-root .ptl-approach-body {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 36px;
  align-items: start
}

.ptl-root .ptl-approach-steps {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ptl-root .ptl-step-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #a4fc9d14;
  background: #a4fc9d05;
  transition: background .55s ease, border-color .55s ease
}

.ptl-root .ptl-step-item:hover {
  background: #a4fc9d0f;
  border-color: #a4fc9d33
}

.ptl-root .ptl-step-num {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  color: #a4fc9d4d;
  flex-shrink: 0;
  width: 36px
}

.ptl-root .ptl-step-body {
  flex: 1
}

.ptl-root .ptl-step-title {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: #e8f5e5;
  margin-bottom: 4px
}

.ptl-root .ptl-step-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #7a9e77
}

.ptl-root .ptl-approach-img-col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ptl-root .ptl-approach-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  position: relative
}

.ptl-root .ptl-approach-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: .55;
  transition: opacity .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ptl-root .ptl-approach-img-wrap:hover img {
  opacity: .85
}

.ptl-root .ptl-approach-img-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#a4fc9d0f 1px, transparent 1px), linear-gradient(90deg, #a4fc9d0f 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none
}

.ptl-root .ptl-approach-img-wrap:hover .ptl-approach-img-grid {
  opacity: 1
}

.ptl-root .ptl-approach-caption {
  font-size: 16px;
  line-height: 1.4;
  color: #7a9e77;
  padding: 8px 16px;
  border-radius: 3px;
  background: #570e3126
}

.ptl-root .ptl-longval {
  padding: 72px 0;
  position: relative;
  background: #0d1a10
}

.ptl-root .ptl-longval::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #A4FC9D 0%, #570e3180 70%, transparent 100%)
}

.ptl-root .ptl-longval-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 72px;
  align-items: start
}

.ptl-root .ptl-longval-left {
  display: flex;
  flex-direction: column;
  gap: 36px
}

.ptl-root .ptl-longval-tag {
  font-size: 16px;
  line-height: 1.4;
  color: #A4FC9D;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block
}

.ptl-root .ptl-longval-h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 200;
  letter-spacing: -.02em;
  color: #e8f5e5
}

.ptl-root .ptl-longval-p {
  font-size: 18px;
  line-height: 1.7;
  color: #b8d4b4
}

.ptl-root .ptl-longval-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.ptl-root .ptl-longval-card {
  padding: 16px;
  border-radius: 8px;
  background: #a4fc9d08;
  border: 1px solid #a4fc9d1a;
  transition: border-color .6s ease, background .6s ease
}

.ptl-root .ptl-longval-card:hover {
  border-color: #a4fc9d40;
  background: #a4fc9d12
}

.ptl-root .ptl-longval-card-title {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: #A4FC9D;
  margin-bottom: 8px
}

.ptl-root .ptl-longval-card-text {
  font-size: 16px;
  line-height: 1.7;
  color: #7a9e77
}

.ptl-root .ptl-longval-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end
}

.ptl-root .ptl-portrait-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #a4fc9d4d;
  box-shadow: 2px 7px 28px 0 #a4fc9d1a;
  flex-shrink: 0
}

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

.ptl-root .ptl-testimonial-block {
  background: #570e311f;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #570e314d;
  width: 100%
}

.ptl-root .ptl-testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: #b8d4b4;
  margin-bottom: 8px
}

.ptl-root .ptl-testimonial-name {
  font-size: 16px;
  line-height: 1.4;
  color: #A4FC9D;
  font-weight: 600
}

.ptl-root .ptl-testimonial-role {
  font-size: 16px;
  line-height: 1.4;
  color: #7a9e77
}

.ptl-root .ptl-zigzag {
  width: 100%;
  height: 20px;
  position: relative;
  overflow: hidden
}

.ptl-root .ptl-zigzag svg {
  width: 100%;
  height: 100%;
  display: block
}

@keyframes ptl-bg-pulse {

  0%,
  100% {
    opacity: .7
  }

  50% {
    opacity: 1
  }
}

.ptl-root .ptl-pulse-bg {
  animation: ptl-bg-pulse 6s ease-in-out infinite
}

@media (max-width: 1280px) {
  .ptl-root .ptl-title-text-zone {
    padding: 36px 36px 36px 0
  }

  .ptl-root .ptl-h1 {
    font-size: 40px
  }

  .ptl-root .ptl-current-grid {
    gap: 36px
  }
}

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

  .ptl-root .ptl-title-text-zone {
    flex: none;
    padding: 36px 0
  }

  .ptl-root .ptl-title-img-zone {
    flex: none;
    padding: 0
  }

  .ptl-root .ptl-title-img-frame {
    min-height: 280px
  }

  .ptl-root .ptl-h1 {
    font-size: 40px
  }

  .ptl-root .ptl-current-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .ptl-root .ptl-hesitation-inner {
    flex-direction: column;
    gap: 36px
  }

  .ptl-root .ptl-hesitation-text-col {
    text-align: left
  }

  .ptl-root .ptl-hesitation-checklist {
    text-align: left
  }

  .ptl-root .ptl-hesitation-checklist li {
    justify-content: flex-start
  }

  .ptl-root .ptl-check-box {
    order: 0
  }

  .ptl-root .ptl-approach-body {
    grid-template-columns: 1fr
  }

  .ptl-root .ptl-longval-inner {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .ptl-root .ptl-longval-right {
    align-items: flex-start
  }

  .ptl-root .ptl-longval-cols {
    grid-template-columns: 1fr
  }

  .ptl-root .ptl-title-meta {
    flex-wrap: wrap;
    gap: 16px
  }

  .ptl-root .ptl-metric-name {
    flex: 0 0 160px
  }
}

.lp-root {
  background-color: #0d1a0f;
  color: #e8f5e4;
  overflow-x: hidden;
  position: relative
}

.lp-root .lp-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 36px
}

.lp-root .lp-title-band {
  background: linear-gradient(160deg, #0d1a0f 0%, #1a2e1c 45%, #0f1f11 100%);
  padding: 72px 0;
  position: relative;
  border-bottom: 1px solid #a4fc9d1f
}

.lp-root .lp-title-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #A4FC9D 40%, #570E31 80%, transparent 100%)
}

.lp-root .lp-title-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 72px
}

.lp-root .lp-title-left {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px
}

.lp-root .lp-title-right {
  flex: 1 1 auto
}

.lp-root .lp-eyebrow {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #A4FC9D;
  font-weight: 300
}

.lp-root .lp-program-label {
  display: inline-block;
  font-size: 16px;
  line-height: 1.4;
  padding: 4px 16px;
  border: 1px solid #a4fc9d4d;
  border-radius: 3px;
  color: #A4FC9D;
  background: #a4fc9d0f
}

.lp-root .lp-h1 {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 200;
  color: #FFF;
  margin: 0 0 16px
}

.lp-root .lp-h1 .lp-accent-text {
  background: linear-gradient(135deg, #A4FC9D, #570E31);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.lp-root .lp-title-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #e8f5e4bf;
  margin: 0 0 36px;
  max-width: 640px
}

.lp-root .lp-title-meta {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap
}

.lp-root .lp-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.lp-root .lp-meta-val {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 200;
  color: #A4FC9D
}

.lp-root .lp-meta-lbl {
  font-size: 16px;
  line-height: 1.4;
  color: #e8f5e48c
}

.lp-root .lp-meta-divider {
  width: 1px;
  height: 40px;
  background: #a4fc9d33
}

.lp-root .lp-title-cta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #A4FC9D;
  color: #0d1a0f;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color .5s ease, box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 2px 7px 28px 0 #a4fc9d1a
}

.lp-root .lp-title-cta::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: #570E31;
  transition: width .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0
}

.lp-root .lp-title-cta:hover::after {
  width: 100%;
  left: 0;
  right: auto
}

.lp-root .lp-title-cta:hover {
  color: #FFF;
  box-shadow: 2px 12px 60px 0 #a4fc9d1f
}

.lp-root .lp-title-cta span {
  position: relative;
  z-index: 1
}

.lp-root .lp-title-cta:focus-visible {
  outline: 2px solid #A4FC9D !important;
  outline-offset: 3px !important
}

.lp-root .lp-title-stripe {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 320px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #570E31)
}

.lp-root .lp-curriculum {
  padding: 72px 0;
  background: #111d13;
  position: relative
}

.lp-root .lp-curriculum::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 36px;
  right: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a4fc9d26, transparent)
}

.lp-root .lp-curr-layout {
  display: flex;
  flex-direction: row;
  gap: 72px;
  align-items: flex-start
}

.lp-root .lp-curr-sidebar {
  flex: 0 0 320px;
  position: sticky;
  top: 36px
}

.lp-root .lp-curr-sidebar-label {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #a4fc9d99;
  margin-bottom: 16px
}

.lp-root .lp-curr-sidebar-h {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 200;
  letter-spacing: -.02em;
  color: #FFF;
  margin: 0 0 16px
}

.lp-root .lp-curr-sidebar-p {
  font-size: 16px;
  line-height: 1.7;
  color: #e8f5e4a6;
  margin: 0 0 36px
}

.lp-root .lp-progress-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px
}

.lp-root .lp-progress-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.lp-root .lp-progress-name {
  font-size: 16px;
  line-height: 1.4;
  color: #e8f5e4b3;
  flex: 0 0 100px
}

.lp-root .lp-progress-bar-bg {
  flex: 1 1 auto;
  height: 4px;
  background: #a4fc9d1a;
  border-radius: 3px;
  overflow: hidden
}

.lp-root .lp-progress-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #A4FC9D, #570E31);
  transform-origin: left;
  animation: lp-bar-grow 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

@keyframes lp-bar-grow {
  from {
    transform: scaleX(0)
  }

  to {
    transform: scaleX(1)
  }
}

.lp-root .lp-progress-pct {
  font-size: 16px;
  line-height: 1.4;
  color: #A4FC9D;
  flex: 0 0 36px;
  text-align: right
}

.lp-root .lp-curr-modules {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.lp-root .lp-module-card {
  background: #a4fc9d08;
  border: 1px solid #a4fc9d1a;
  border-radius: 8px;
  padding: 36px;
  transition: border-color .6s ease, box-shadow .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .5s ease;
  clip-path: inset(0 100% 0 0);
  animation: lp-reveal-card .8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.lp-root .lp-module-card:nth-child(1) {
  animation-delay: .1s
}

.lp-root .lp-module-card:nth-child(2) {
  animation-delay: .2s
}

.lp-root .lp-module-card:nth-child(3) {
  animation-delay: .3s
}

.lp-root .lp-module-card:nth-child(4) {
  animation-delay: .4s
}

.lp-root .lp-module-card:nth-child(5) {
  animation-delay: .5s
}

@keyframes lp-reveal-card {
  from {
    clip-path: inset(0 100% 0 0)
  }

  to {
    clip-path: inset(0 0% 0 0)
  }
}

.lp-root .lp-module-card:hover {
  border-color: #a4fc9d4d;
  background: #a4fc9d0f;
  box-shadow: 2px 7px 28px 0 #a4fc9d1a
}

.lp-root .lp-module-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px
}

.lp-root .lp-module-num {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 200;
  color: #a4fc9d33;
  letter-spacing: -.03em
}

.lp-root .lp-module-dur {
  font-size: 16px;
  line-height: 1.4;
  color: #e8f5e473;
  padding: 4px 8px;
  border: 1px solid #e8f5e41a;
  border-radius: 3px
}

.lp-root .lp-module-h {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: -.01em;
  color: #FFF;
  margin: 0 0 8px
}

.lp-root .lp-module-p {
  font-size: 16px;
  line-height: 1.7;
  color: #e8f5e4a6;
  margin: 0 0 16px
}

.lp-root .lp-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.lp-root .lp-checklist li {
  font-size: 16px;
  line-height: 1.4;
  color: #e8f5e4b3;
  padding-left: 28px;
  position: relative
}

.lp-root .lp-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border: 1px solid #a4fc9d80;
  border-radius: 3px;
  background: #a4fc9d14
}

.lp-root .lp-checklist li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 9px;
  width: 5px;
  height: 3px;
  border-left: 1.5px solid #A4FC9D;
  border-bottom: 1.5px solid #A4FC9D;
  transform: rotate(-45deg)
}

.lp-root .lp-experts {
  padding: 72px 0;
  background: #0d1a0f;
  position: relative
}

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

.lp-root .lp-experts-heading-grp {
  flex: 0 0 auto;
  max-width: 540px
}

.lp-root .lp-experts-label {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #a4fc9d99;
  margin-bottom: 8px
}

.lp-root .lp-experts-h {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 200;
  letter-spacing: -.02em;
  color: #FFF;
  margin: 0
}

.lp-root .lp-experts-note {
  font-size: 16px;
  line-height: 1.7;
  color: #e8f5e499;
  max-width: 380px;
  text-align: right;
  margin: 0
}

.lp-root .lp-experts-grid {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: stretch
}

.lp-root .lp-expert-card {
  flex: 1 1 0;
  background: #111d13;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #a4fc9d14;
  transition: box-shadow .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .6s ease;
  box-shadow: 2px 3px 6px 0 #a4fc9d0f
}

.lp-root .lp-expert-card:hover {
  box-shadow: 2px 12px 60px 0 #a4fc9d1f;
  border-color: #a4fc9d33
}

.lp-root .lp-expert-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  width: 100%;
  overflow: hidden
}

.lp-root .lp-expert-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter .7s ease, transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.7) saturate(0.6)
}

.lp-root .lp-expert-card:hover .lp-expert-img {
  filter: brightness(0.9) saturate(1);
  transform: scale(1.03)
}

.lp-root .lp-expert-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, #111d13 100%);
  pointer-events: none
}

.lp-root .lp-expert-body {
  padding: 36px
}

.lp-root .lp-expert-name {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 300;
  color: #FFF;
  margin: 0 0 4px
}

.lp-root .lp-expert-role {
  font-size: 16px;
  line-height: 1.4;
  color: #A4FC9D;
  margin: 0 0 16px
}

.lp-root .lp-expert-bio {
  font-size: 16px;
  line-height: 1.7;
  color: #e8f5e4a6;
  margin: 0
}

.lp-root .lp-expert-card-text {
  flex: 1 1 0;
  background: #570e3126;
  border-radius: 16px;
  border: 1px solid #570e314d;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  transition: box-shadow .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.lp-root .lp-expert-card-text:hover {
  box-shadow: 2px 7px 28px 0 #570e311a
}

.lp-root .lp-quote-mark {
  width: 36px;
  height: 28px
}

.lp-root .lp-quote-text {
  font-size: 22px;
  line-height: 1.7;
  font-weight: 200;
  color: #e8f5e4d9;
  margin: 0;
  flex: 1 1 auto
}

.lp-root .lp-quote-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right
}

.lp-root .lp-quote-name {
  font-size: 16px;
  line-height: 1.4;
  color: #A4FC9D
}

.lp-root .lp-quote-detail {
  font-size: 16px;
  line-height: 1.4;
  color: #e8f5e480
}

.lp-root .lp-diamond-accent {
  position: absolute;
  top: 36px;
  right: 36px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #A4FC9D, #570E31);
  transform: rotate(45deg);
  border-radius: 3px;
  opacity: .4;
  pointer-events: none
}

@media (max-width: 1280px) {
  .lp-root .lp-title-inner {
    gap: 36px
  }

  .lp-root .lp-title-left {
    flex: 0 0 260px
  }

  .lp-root .lp-curr-layout {
    gap: 36px
  }

  .lp-root .lp-curr-sidebar {
    flex: 0 0 260px
  }
}

@media (max-width: 768px) {
  .lp-root .lp-title-inner {
    flex-direction: column;
    gap: 36px
  }

  .lp-root .lp-title-left {
    flex: 0 0 auto
  }

  .lp-root .lp-h1 {
    font-size: 40px
  }

  .lp-root .lp-curr-layout {
    flex-direction: column;
    gap: 36px
  }

  .lp-root .lp-curr-sidebar {
    flex: 0 0 auto;
    position: static
  }

  .lp-root .lp-experts-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }

  .lp-root .lp-experts-note {
    text-align: left
  }

  .lp-root .lp-experts-grid {
    flex-direction: column
  }

  .lp-root .lp-title-meta {
    gap: 16px
  }
}

.ab-us {
  background-color: #0d1a0f;
  color: #e8f5e8;
  overflow-x: clip;
  position: relative
}

.ab-us .pill-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #a4fc9d14;
  border: 1px solid #a4fc9d40;
  border-radius: 28px;
  padding: 4px 16px;
  font-size: 16px;
  color: #A4FC9D;
  letter-spacing: .08em;
  font-weight: 400
}

.ab-us .pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #A4FC9D;
  display: inline-block
}

.ab-us .grad-text {
  background: linear-gradient(135deg, #A4FC9D 30%, #570E31 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.ab-us .stripe-deco {
  height: 3px;
  width: 72px;
  background: linear-gradient(90deg, #A4FC9D, #570E31);
  border-radius: 3px;
  display: block
}

.ab-us .ab-title-block {
  background: linear-gradient(180deg, #570e3173 0%, #0d1a0f00 100%);
  padding: 72px 36px 36px;
  position: relative;
  overflow: hidden
}

.ab-us .ab-title-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #A4FC9D 40%, #570E31 70%, transparent)
}

.ab-us .ab-title-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 72px
}

.ab-us .ab-title-primary {
  flex: 3
}

.ab-us .ab-title-secondary {
  flex: 1;
  padding-top: 36px;
  opacity: .55;
  position: relative
}

.ab-us .ab-title-secondary img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  filter: grayscale(30%) brightness(0.6);
  transition: filter .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .5s ease
}

.ab-us .ab-title-secondary:hover img {
  filter: grayscale(0%) brightness(0.85);
  opacity: 1
}

.ab-us .ab-title-secondary:hover {
  opacity: 1
}

.ab-us .ab-heading-main {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 300;
  margin: 16px 0;
  color: #e8f5e8
}

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

.ab-us .ab-counter-num {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 700;
  color: #A4FC9D;
  letter-spacing: -.04em
}

.ab-us .ab-counter-label {
  font-size: 18px;
  line-height: 1.4;
  color: #e8f5e899;
  max-width: 180px
}

.ab-us .ab-lead-text {
  font-size: 18px;
  line-height: 1.7;
  color: #e8f5e8cc;
  max-width: 560px;
  margin-bottom: 36px
}

.ab-us .ab-metrics-strip {
  display: flex;
  flex-direction: row;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 36px
}

.ab-us .ab-metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.ab-us .ab-metric-val {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 600;
  color: #A4FC9D;
  letter-spacing: -.02em
}

.ab-us .ab-metric-desc {
  font-size: 16px;
  line-height: 1.4;
  color: #e8f5e88c
}

.ab-us .ab-team-block {
  padding: 72px 36px;
  background-color: #0a1a0c;
  position: relative
}

.ab-us .ab-team-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 36px;
  right: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a4fc9d33, transparent)
}

.ab-us .ab-team-inner {
  max-width: 1320px;
  margin: 0 auto
}

.ab-us .ab-team-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 72px;
  gap: 36px
}

.ab-us .ab-team-heading {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -.02em;
  color: #e8f5e8;
  max-width: 420px
}

.ab-us .ab-team-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #e8f5e8a6;
  max-width: 380px;
  text-align: right
}

.ab-us .ab-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px
}

.ab-us .ab-person-card {
  background: #a4fc9d08;
  border: 1px solid #a4fc9d1a;
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  transition: border-color .6s ease, background .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ab-us .ab-person-card:hover {
  border-color: #a4fc9d4d;
  background: #a4fc9d0f
}

.ab-us .ab-portrait-wrap {
  flex-shrink: 0;
  width: 120px;
  height: 160px;
  border-radius: 16px;
  overflow: hidden
}

.ab-us .ab-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ab-us .ab-person-card:hover .ab-portrait-wrap img {
  transform: scale(1.04)
}

.ab-us .ab-person-info {
  flex: 1
}

.ab-us .ab-person-name {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  color: #e8f5e8;
  margin-bottom: 4px
}

.ab-us .ab-person-role {
  font-size: 16px;
  line-height: 1.4;
  color: #A4FC9D;
  margin-bottom: 16px;
  font-weight: 400
}

.ab-us .ab-person-bio {
  font-size: 16px;
  line-height: 1.7;
  color: #e8f5e8a6
}

.ab-us .ab-person-no-portrait {
  background: #a4fc9d08;
  border: 1px solid #a4fc9d1a;
  border-radius: 16px;
  padding: 36px;
  transition: border-color .6s ease
}

.ab-us .ab-person-no-portrait:hover {
  border-color: #a4fc9d40
}

.ab-us .ab-person-initials {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: #570e3166;
  border: 1px solid #570e3199;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #a4fc9db3;
  margin-bottom: 16px;
  flex-shrink: 0
}

.ab-us .ab-approach-block {
  padding: 72px 36px;
  position: relative;
  background-color: #0d1a0f
}

.ab-us .ab-approach-block::before {
  content: '';
  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.035'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0
}

.ab-us .ab-approach-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.ab-us .ab-approach-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 72px;
  align-items: start
}

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

.ab-us .ab-approach-heading {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -.02em;
  color: #e8f5e8;
  margin-bottom: 8px
}

.ab-us .ab-approach-subheading {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
  color: #e8f5e88c;
  margin-bottom: 36px
}

.ab-us .ab-two-col-text {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 36px;
  align-items: start
}

.ab-us .ab-text-narrow {
  font-size: 16px;
  line-height: 1.7;
  color: #e8f5e880
}

.ab-us .ab-text-wide {
  font-size: 18px;
  line-height: 1.7;
  color: #e8f5e8bf
}

.ab-us .ab-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ab-us .ab-checklist li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  font-size: 18px;
  line-height: 1.7;
  color: #e8f5e8bf
}

.ab-us .ab-checklist li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  margin-top: 6px;
  width: 14px;
  height: 14px;
  border: 2px solid #A4FC9D;
  border-radius: 3px;
  background: #a4fc9d1a
}

.ab-us .ab-approach-side-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: flex-end
}

.ab-us .ab-side-img-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative
}

.ab-us .ab-side-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #570e3173;
  transition: opacity .6s ease;
  border-radius: 16px
}

.ab-us .ab-side-img-wrap:hover::after {
  opacity: 0
}

.ab-us .ab-side-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px
}

.ab-us .ab-side-img-wrap-2 {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative
}

.ab-us .ab-side-img-wrap-2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #0d1a0f80;
  transition: opacity .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 16px
}

.ab-us .ab-side-img-wrap-2:hover::after {
  opacity: 0
}

.ab-us .ab-side-img-wrap-2 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px
}

.ab-us .ab-right-accent {
  text-align: right;
  padding: 16px;
  border: 1px solid #a4fc9d26;
  border-radius: 8px;
  background: #a4fc9d0a !important;
  width: 100%
}

.ab-us .ab-right-accent-num {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  color: #A4FC9D
}

.ab-us .ab-right-accent-text {
  font-size: 16px;
  line-height: 1.4;
  color: #e8f5e880
}

.ab-us .ab-content-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px
}

.ab-us .ab-content-img-cell {
  border-radius: 8px;
  overflow: hidden;
  position: relative
}

.ab-us .ab-content-img-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #0d1a0f8c;
  transition: opacity .7s ease
}

.ab-us .ab-content-img-cell:hover::after {
  opacity: 0
}

.ab-us .ab-content-img-cell img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block
}

.ab-us .ab-inline-link {
  color: #A4FC9D;
  text-decoration: none;
  position: relative;
  display: inline;
  padding: 0 4px;
  border-radius: 3px;
  transition: color .5s ease;
  background: linear-gradient(to right, #a4fc9d26 0%, #a4fc9d26 0%) no-repeat left center;
  background-size: 0 100%;
  transition: background-size .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .5s ease
}

.ab-us .ab-inline-link:hover {
  background-size: 100% 100%;
  color: #e8f5e8
}

@keyframes ab-color-shift {
  0% {
    background-position: 0 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0 50%
  }
}

.ab-us .ab-animated-bg-strip {
  height: 2px;
  background: linear-gradient(270deg, #A4FC9D, #570E31, #0d1a0f, #A4FC9D);
  background-size: 400% 400%;
  animation: ab-color-shift 8s ease infinite;
  border-radius: 3px;
  margin: 36px 0
}

@media (max-width: 1280px) {
  .ab-us .ab-title-inner {
    gap: 36px
  }

  .ab-us .ab-approach-layout {
    grid-template-columns: 2fr 1fr;
    gap: 36px
  }
}

@media (max-width: 768px) {
  .ab-us .ab-title-block {
    padding: 36px 16px
  }

  .ab-us .ab-title-inner {
    flex-direction: column;
    gap: 36px
  }

  .ab-us .ab-title-secondary {
    padding-top: 0
  }

  .ab-us .ab-heading-main {
    font-size: 40px
  }

  .ab-us .ab-counter-num {
    font-size: 56px
  }

  .ab-us .ab-metrics-strip {
    gap: 16px
  }

  .ab-us .ab-team-block {
    padding: 36px 16px
  }

  .ab-us .ab-team-top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 36px
  }

  .ab-us .ab-team-desc {
    text-align: left
  }

  .ab-us .ab-team-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .ab-us .ab-person-card {
    flex-direction: column;
    gap: 16px;
    padding: 16px
  }

  .ab-us .ab-approach-block {
    padding: 36px 16px
  }

  .ab-us .ab-approach-layout {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .ab-us .ab-approach-side-col {
    align-items: flex-start
  }

  .ab-us .ab-two-col-text {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .ab-us .ab-content-img-row {
    grid-template-columns: 1fr
  }

  .ab-us .ab-team-heading {
    font-size: 28px
  }

  .ab-us .ab-approach-heading {
    font-size: 28px
  }
}

.cu-pg {
  background: #0d1a0f;
  min-height: 100vh;
  overflow: hidden
}

.cu-pg .pg-bound {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 36px
}

.cu-pg .sep-tri {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 0
}

.cu-pg .sep-tri svg {
  display: block
}

.cu-pg .sep-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a4fc9d40, transparent)
}

.cu-pg .top-band {
  padding: 72px 0 36px;
  position: relative
}

.cu-pg .top-band-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: center
}

.cu-pg .top-card-vis {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #a4fc9d2e;
  box-shadow: 2px 7px 28px 0 #a4fc9d1a;
  background: linear-gradient(160deg, #132415 0%, #0d1a0f 60%, #1a0a13 100%);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.cu-pg .top-card-vis::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 50% 50%, #a4fc9d1f 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.cu-pg .top-card-vis::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 50% 50%, #570e3159 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.cu-pg .card-label {
  font-size: 16px;
  color: #a4fc9db3;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.4
}

.cu-pg .card-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid #a4fc9d14
}

.cu-pg .card-contact-item:last-child {
  border-bottom: none
}

.cu-pg .card-contact-type {
  font-size: 16px;
  color: #ffffff73;
  line-height: 1.4
}

.cu-pg .card-contact-val {
  font-size: 18px;
  color: #fff;
  line-height: 1.4;
  text-decoration: none;
  transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block
}

.cu-pg .card-contact-val:hover {
  color: #A4FC9D
}

.cu-pg .top-text-zone {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.cu-pg .pg-eyebrow {
  font-size: 16px;
  color: #a4fc9d99;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.4
}

.cu-pg .pg-h1 {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 300;
  color: #fff;
  margin: 0
}

.cu-pg .pg-h1 .accent-word {
  background: linear-gradient(135deg, #A4FC9D 0%, #570E31 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600
}

.cu-pg .pg-lead {
  font-size: 18px;
  color: #ffffffa6;
  line-height: 1.7;
  max-width: 520px
}

.cu-pg .pg-lead-detail {
  font-size: 16px;
  color: #ffffff73;
  line-height: 1.7
}

.cu-pg .dashed-feat {
  border: 1px dashed #a4fc9d38;
  border-radius: 8px;
  padding: 16px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.cu-pg .dashed-feat-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #ffffffb3;
  line-height: 1.4
}

.cu-pg .feat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #A4FC9D;
  flex-shrink: 0
}

.cu-pg .form-band {
  padding: 36px 0 72px;
  position: relative
}

.cu-pg .form-band-bg {
  background: linear-gradient(180deg, #0d1a0f 0%, #110d17 50%, #0d1a0f 100%);
  border-radius: 28px;
  padding: 72px;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 12px 60px 0 #570e311f
}

.cu-pg .form-band-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 300px 200px at 10% 20%, #570e312e 0%, transparent 100%), radial-gradient(ellipse 250px 180px at 90% 80%, #a4fc9d0f 0%, transparent 100%);
  pointer-events: none;
  border-radius: 28px
}

.cu-pg .form-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1
}

.cu-pg .form-aside {
  display: flex;
  flex-direction: column;
  gap: 36px
}

.cu-pg .form-aside-h {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0
}

.cu-pg .form-aside-p {
  font-size: 16px;
  color: #ffffff8c;
  line-height: 1.7
}

.cu-pg .aside-steps {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.cu-pg .aside-step {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: 8px;
  background: #a4fc9d0a;
  border: 1px solid #a4fc9d14;
  transition: background .65s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cu-pg .aside-step:hover {
  background: #a4fc9d14;
  border-color: #a4fc9d33
}

.cu-pg .aside-step-num {
  font-size: 16px;
  color: #a4fc9d80;
  line-height: 1.4
}

.cu-pg .aside-step-label {
  font-size: 16px;
  color: #fffc;
  line-height: 1.4
}

.cu-pg .contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.cu-pg .form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.cu-pg .field-grp {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.cu-pg .field-lbl {
  font-size: 16px;
  color: #ffffffa6;
  line-height: 1.4
}

.cu-pg .field-lbl .req-mark {
  color: #A4FC9D;
  margin-left: 2px
}

.cu-pg .field-inp {
  background: #ffffff0a;
  border: 1px solid #a4fc9d26;
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
  color: #fff;
  line-height: 1.4;
  outline: none;
  transition: border-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  box-sizing: border-box
}

.cu-pg .field-inp::placeholder {
  color: #ffffff40;
  font-weight: 300
}

.cu-pg .field-inp:focus {
  border-color: #a4fc9d80;
  background: #ffffff12;
  box-shadow: 2px 3px 6px 0 #a4fc9d0f
}

.cu-pg .budget-grp {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.cu-pg .budget-lbl-main {
  font-size: 16px;
  color: #ffffffa6;
  line-height: 1.4
}

.cu-pg .budget-options {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.cu-pg .budget-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #a4fc9d1a;
  background: #ffffff05;
  transition: background .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative
}

.cu-pg .budget-opt:hover {
  background: #a4fc9d0f;
  border-color: #a4fc9d40
}

.cu-pg .budget-opt input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #a4fc9d59;
  background: transparent;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color .55s ease, background .55s ease;
  box-shadow: none
}

.cu-pg .budget-opt input[type="radio"]:checked {
  border-color: #A4FC9D;
  background: #A4FC9D;
  box-shadow: inset 0 0 0 3px #0d1a0f
}

.cu-pg .budget-opt input[type="radio"]:checked~.budget-opt-text {
  color: #A4FC9D
}

.cu-pg .budget-opt-text {
  font-size: 16px;
  color: #ffffffb3;
  line-height: 1.4;
  transition: color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cu-pg .budget-opt-price {
  margin-left: auto;
  font-size: 16px;
  color: #fff6;
  line-height: 1.4
}

.cu-pg .privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  background: #570e3114;
  border: 1px solid #570e3133
}

.cu-pg .privacy-chk {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 3px;
  border: 2px solid #a4fc9d59;
  background: transparent;
  cursor: pointer;
  margin-top: 2px;
  transition: background .5s ease, border-color .5s ease;
  position: relative
}

.cu-pg .privacy-chk:checked {
  background: #A4FC9D;
  border-color: #A4FC9D;
  box-shadow: inset 0 0 0 2px #0d1a0f
}

.cu-pg .privacy-text {
  font-size: 16px;
  color: #ffffff8c;
  line-height: 1.7
}

.cu-pg .privacy-text a {
  color: #a4fc9dcc;
  text-decoration: none;
  display: inline;
  padding: 0 4px;
  border-radius: 3px;
  background: transparent;
  transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-image: linear-gradient(to right, #a4fc9d26 0%, #a4fc9d26 100%);
  background-size: 0 100%;
  background-repeat: no-repeat;
  background-position: left center;
  transition: background-size .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cu-pg .privacy-text a:hover {
  background-size: 100% 100%;
  color: #A4FC9D
}

.cu-pg .submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 8px;
  border: 1px solid #a4fc9d4d;
  background: #a4fc9d14;
  color: #A4FC9D;
  font-size: 18px;
  line-height: 1.4;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  align-self: flex-start
}

.cu-pg .submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  background: #A4FC9D;
  transition: left .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0
}

.cu-pg .submit-btn:hover::before {
  left: 0
}

.cu-pg .submit-btn:hover {
  color: #0d1a0f;
  border-color: #A4FC9D
}

.cu-pg .submit-btn:active {
  box-shadow: inset 2px 3px 6px 0 #a4fc9d0f
}

.cu-pg .submit-btn-txt {
  position: relative;
  z-index: 1
}

.cu-pg .submit-btn svg {
  position: relative;
  z-index: 1
}

.cu-pg .info-band {
  padding: 36px 0 72px
}

.cu-pg .info-band-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start
}

.cu-pg .info-text-col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.cu-pg .info-h2 {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0;
  text-align: right
}

.cu-pg .info-p {
  font-size: 16px;
  color: #fff9;
  line-height: 1.7;
  text-align: right
}

.cu-pg .info-p strong {
  color: #ffffffd9;
  font-weight: 500
}

.cu-pg .info-right-col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.cu-pg .info-metric-card {
  border-radius: 16px;
  padding: 36px;
  background: linear-gradient(135deg, #132415 0%, #0d1a0f 100%);
  border: 1px solid #a4fc9d1f;
  box-shadow: 2px 7px 28px 0 #a4fc9d1a;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: scale(0.8);
  animation: card-appear .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) .15s forwards
}

.cu-pg .info-metric-card.secondary-card {
  background: linear-gradient(135deg, #1a0a13 0%, #0d1a0f 100%);
  border-color: #570e3159;
  box-shadow: 2px 7px 28px 0 #570e311a;
  animation-delay: .3s
}

@keyframes card-appear {
  from {
    transform: scale(0.8);
    opacity: .4
  }

  85% {
    transform: scale(1.03)
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.cu-pg .metric-num {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #A4FC9D 0%, #570E31 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.cu-pg .metric-desc {
  font-size: 16px;
  color: #ffffff8c;
  line-height: 1.7
}

.cu-pg .criteria-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0
}

.cu-pg .criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #ffffffa6;
  line-height: 1.7;
  padding: 8px 0;
  border-bottom: 1px solid #a4fc9d0f
}

.cu-pg .criteria-item:last-child {
  border-bottom: none
}

.cu-pg .crit-check {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 3px;
  border: 1.5px solid #a4fc9d66;
  margin-top: 3px;
  position: relative;
  background: #a4fc9d14
}

.cu-pg .crit-check::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 4px;
  width: 5px;
  height: 8px;
  border-right: 1.5px solid #A4FC9D;
  border-bottom: 1.5px solid #A4FC9D;
  transform: rotate(45deg)
}

@media (max-width: 1280px) {
  .cu-pg .top-band-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 36px
  }

  .cu-pg .form-band-bg {
    padding: 36px
  }

  .cu-pg .form-layout {
    gap: 36px
  }

  .cu-pg .info-band-inner {
    gap: 36px
  }
}

@media (max-width: 768px) {
  .cu-pg .pg-bound {
    padding: 0 16px
  }

  .cu-pg .top-band {
    padding: 36px 0 16px
  }

  .cu-pg .top-band-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .cu-pg .pg-h1 {
    font-size: 40px
  }

  .cu-pg .form-band-bg {
    padding: 36px 16px;
    border-radius: 16px
  }

  .cu-pg .form-layout {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .cu-pg .form-row-two {
    grid-template-columns: 1fr
  }

  .cu-pg .info-band-inner {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .cu-pg .info-h2,
  .cu-pg .info-p {
    text-align: left
  }

  .cu-pg .form-aside-h {
    font-size: 28px
  }
}

.success-page-root {
  min-height: 100vh;
  background: #0d1f0e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 16px
}

.success-page-root .success-card {
  max-width: 560px;
  width: 100%;
  background: #111f12;
  border: 1px solid #a4fc9d2e;
  border-radius: 16px;
  padding: 72px 36px;
  text-align: center;
  box-shadow: 2px 12px 60px 0 #a4fc9d1f
}

.success-page-root .success-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 36px;
  border-radius: 50%;
  border: 2px solid #A4FC9D;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 7px 28px 0 #a4fc9d1a
}

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

.success-page-root .success-heading {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 300;
  color: #A4FC9D;
  margin: 0 0 16px
}

.success-page-root .success-subtext {
  font-size: 18px;
  line-height: 1.7;
  color: #ffffffb8;
  margin: 0 0 36px
}

.success-page-root .success-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, #A4FC9D, #570E31);
  margin: 0 auto 36px;
  border: none
}

.success-page-root .success-meta {
  font-size: 16px;
  line-height: 1.4;
  color: #ffffff73;
  margin: 0 0 36px
}

.success-page-root .success-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  background: transparent;
  border: 1px solid #a4fc9d4d;
  border-radius: 8px;
  padding: 16px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .5s ease
}

.success-page-root .success-back-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #A4FC9D;
  transform: translateX(100%);
  transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
  border-radius: 8px
}

.success-page-root .success-back-link:hover::before {
  transform: translateX(0)
}

.success-page-root .success-back-link:hover {
  color: #0d1f0e;
  border-color: #A4FC9D
}

.success-page-root .success-back-link:focus-visible {
  outline: 2px solid #A4FC9D;
  outline-offset: 4px
}

.success-page-root .success-back-link span {
  position: relative;
  z-index: 1
}

.success-page-root .success-brand {
  margin-top: 36px;
  font-size: 16px;
  line-height: 1.4;
  color: #ffffff47;
  letter-spacing: .08em;
  text-transform: uppercase
}

@media (max-width: 768px) {
  .success-page-root .success-card {
    padding: 36px 16px
  }

  .success-page-root .success-heading {
    font-size: 28px
  }
}