*::before,
*::after {
  box-sizing: inherit;
  content: none;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
}

.site-head {
  background: linear-gradient(135deg, #ffffff 0%, #EFF3E6 60%, #D1C7A9 100%);
  box-shadow: 0 7px 25px -2px rgba(134, 163, 81, 0.09);
  padding: 0;
  position: relative;
  z-index: 100;
}

.head-band {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1320px;
  padding: 0 32px;
}

.head-top {
  align-items: center;
  border-bottom: 1px solid rgba(209, 199, 169, 0.4);
  display: flex;
  gap: 32px;
  justify-content: space-between;
  padding: 16px 0;
}

.brand-box {
  align-items: center;
  background: #ffffff;
  border-radius: 9px;
  box-shadow: 0 3px 2px -2px rgba(134, 163, 81, 0.05), 0 7px 25px -2px rgba(134, 163, 81, 0.09);
  display: flex;
  flex-shrink: 0;
  height: 50px;
  justify-content: center;
  padding: 4px;
  width: 50px;
}

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

.head-contact {
  align-items: center;
  display: flex;
  gap: 16px;
}

.head-phone {
  align-items: center;
  color: #2d3a1e;
  display: flex;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.18s ease-out;
}

@media (min-width: 768px) {
  .head-phone:hover {
    color: #86A351;
  }
}

.head-phone svg {
  flex-shrink: 0;
  height: 16px;
  width: 16px;
}

.head-nav-row {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  padding: 8px 0;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: flex;
}

.nav-links a {
  border-radius: 2px;
  color: #2d3a1e;
  display: block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  padding: 8px 16px;
  text-decoration: none;
  transition: color 0.16s ease-out, background-color 0.16s ease-out;
}

@media (min-width: 768px) {
  .nav-links a:hover {
    background-color: rgba(134, 163, 81, 0.1);
    color: #86A351;
  }
}

.nav-links a:focus-visible {
  outline: 2px solid #86A351;
  outline-offset: 2px;
}

.nav-links a.active {
  color: #86A351;
  font-weight: 700;
}

.nav-act {
  flex-shrink: 0;
}

.nav-act a {
  background: #86A351;
  border-radius: 9px;
  color: #ffffff;
  display: block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  min-height: 44px;
  padding: 12px 24px;
  text-decoration: none;
  transition: background-color 0.18s cubic-bezier(0.4, 0, 0.6, 1);
}

@media (min-width: 768px) {
  .nav-act a:hover {
    background-color: #6e8a3f;
  }
}

.nav-act a:focus-visible {
  outline: 2px solid #2d3a1e;
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .head-contact {
    display: none;
  }

  .head-band {
    padding: 0 16px;
  }

  .nav-links a {
    padding: 8px 8px;
    font-size: 15px;
  }

  .nav-act a {
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .head-nav-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav-links {
    gap: 4px;
    width: 100%;
  }

  .nav-act {
    width: 100%;
  }

  .nav-act a {
    text-align: center;
    width: 100%;
  }
}

.foot {
  background: linear-gradient(160deg, #2d3a1e 0%, #1e2a10 100%);
  padding: 64px 32px 32px;
}

.foot-inner {
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 auto;
  max-width: 1320px;
}

.foot-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.foot-logo-box {
  align-items: center;
  background: #ffffff;
  border-radius: 9px;
  box-shadow: 0 3px 2px -2px rgba(134, 163, 81, 0.05), 0 7px 25px -2px rgba(134, 163, 81, 0.09);
  display: flex;
  height: 40px;
  justify-content: center;
  padding: 4px;
  width: 40px;
}

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

.foot-desc {
  color: #D1C7A9;
  font-family: 'Literata', serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}

.foot-col-label {
  color: #86A351;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0 0 16px;
  text-transform: uppercase;
}

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

.foot-links a {
  color: #D1C7A9;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.14s ease-out;
}

@media (min-width: 768px) {
  .foot-links a:hover {
    color: #86A351;
  }
}

.foot-links a:focus-visible {
  outline: 2px solid #86A351;
  outline-offset: 2px;
}

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

.foot-contact-list li {
  align-items: flex-start;
  display: flex;
  gap: 8px;
}

.foot-contact-list svg {
  color: #86A351;
  flex-shrink: 0;
  height: 16px;
  margin-top: 4px;
  width: 16px;
}

.foot-contact-list a,
.foot-contact-list span {
  color: #D1C7A9;
  font-family: 'Literata', serif;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.14s ease-out;
}

@media (min-width: 768px) {
  .foot-contact-list a:hover {
    color: #86A351;
  }
}

.foot-bottom {
  border-top: 1px solid rgba(209, 199, 169, 0.15);
  margin: 64px auto 0;
  max-width: 1320px;
  padding-top: 32px;
}

.foot-copy {
  color: rgba(209, 199, 169, 0.5);
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

@media (max-width: 1023px) {
  .foot-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .foot-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .foot {
    padding: 32px 16px 32px;
  }

  .foot-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .foot-brand-col {
    grid-column: auto;
  }

  .foot-bottom {
    margin-top: 32px;
  }
}

.ck-bar {
  background: #ffffff;
  border-radius: 9px;
  box-shadow: 0 8px 40px -2px rgba(134, 163, 81, 0.12);
  display: none;
  left: 50%;
  max-width: 560px;
  padding: 32px;
  position: fixed;
  top: 16px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  z-index: 8000;
}

.ck-bar-desc {
  color: #2d3a1e;
  font-family: 'Literata', serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.ck-toggles {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.ck-toggles.open {
  display: flex;
}

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

.ck-toggle-label {
  color: #2d3a1e;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.ck-toggle-sub {
  color: #5a6b40;
  display: block;
  font-family: 'Literata', serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 4px;
}

.ck-switch {
  appearance: none;
  background: #D1C7A9;
  border-radius: 24px;
  cursor: pointer;
  flex-shrink: 0;
  height: 24px;
  position: relative;
  transition: background-color 0.16s ease-out;
  width: 44px;
}

.ck-switch::after {
  background: #ffffff;
  border-radius: 50%;
  content: "";
  height: 18px;
  left: 3px;
  position: absolute;
  top: 3px;
  transition: transform 0.16s ease-out;
  width: 18px;
}

.ck-switch:checked {
  background: #86A351;
}

.ck-switch:checked::after {
  transform: translateX(20px);
}

.ck-switch:focus-visible {
  outline: 2px solid #86A351;
  outline-offset: 2px;
}

.ck-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.ck-btn {
  background: transparent;
  border: 1.5px solid #86A351;
  border-radius: 9px;
  color: #86A351;
  cursor: pointer;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  min-height: 44px;
  padding: 8px 16px;
  transition: background-color 0.16s ease-out, color 0.16s ease-out;
}

@media (min-width: 768px) {
  .ck-btn:hover {
    background: #86A351;
    color: #ffffff;
  }
}

.ck-btn:focus-visible {
  outline: 2px solid #2d3a1e;
  outline-offset: 2px;
}

.ck-settings-link {
  background: none;
  border: none;
  color: #5a6b40;
  cursor: pointer;
  font-family: 'Literata', serif;
  font-size: 15px;
  line-height: 1.6;
  padding: 0;
  text-decoration: underline;
  transition: color 0.14s ease-out;
}

@media (min-width: 768px) {
  .ck-settings-link:hover {
    color: #86A351;
  }
}

.pref-tab {
  background: #ffffff;
  border-radius: 9px 0 0 9px;
  box-shadow: 0 7px 25px -2px rgba(134, 163, 81, 0.09);
  display: none;
  padding: 32px;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  z-index: 7999;
}

.pref-tab.showing {
  display: block;
}

.pref-tab-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pref-tab-label {
  color: #2d3a1e;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.pref-close {
  background: none;
  border: none;
  color: #5a6b40;
  cursor: pointer;
  display: flex;
  min-height: 44px;
  min-width: 44px;
  padding: 8px;
  transition: color 0.14s ease-out;
}

@media (min-width: 768px) {
  .pref-close:hover {
    color: #86A351;
  }
}

.pref-open-btn {
  background: #86A351;
  border: none;
  border-radius: 9px 0 0 9px;
  bottom: 64px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  min-height: 44px;
  padding: 12px 16px;
  position: fixed;
  right: 0;
  transition: background-color 0.18s cubic-bezier(0.4, 0, 0.6, 1);
  z-index: 7998;
}

@media (min-width: 768px) {
  .pref-open-btn:hover {
    background-color: #6e8a3f;
  }
}

.pref-open-btn:focus-visible {
  outline: 2px solid #2d3a1e;
  outline-offset: 2px;
}

.pref-open-btn svg {
  height: 20px;
  width: 20px;
}

.pref-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.pref-save {
  background: #86A351;
  border: none;
  border-radius: 9px;
  color: #ffffff;
  cursor: pointer;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  min-height: 44px;
  padding: 12px 24px;
  transition: background-color 0.18s cubic-bezier(0.4, 0, 0.6, 1);
  width: 100%;
}

@media (min-width: 768px) {
  .pref-save:hover {
    background-color: #6e8a3f;
  }
}

@media (max-width: 480px) {
  .ck-bar {
    top: 8px;
    width: calc(100% - 16px);
  }

  .pref-tab {
    width: 280px;
  }
}

.agreement-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 32px;
}

.agreement-section p {
  font-size: 17px;
  line-height: 1.6;
  color: #2c2c2c;
  margin-bottom: 16px;
}

.agreement-section ul,
.agreement-section ol {
  margin: 16px 0 16px 32px;
  padding: 0;
}

.agreement-section li {
  font-size: 17px;
  line-height: 1.6;
  color: #2c2c2c;
  margin-bottom: 8px;
}

.agreement-section ul li {
  list-style-type: disc;
}

.agreement-section ol li {
  list-style-type: decimal;
}

.agreement-section ul ul,
.agreement-section ol ol,
.agreement-section ul ol,
.agreement-section ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

.agreement-section strong,
.agreement-section b {
  font-weight: 700;
  color: #1e1e1e;
}

.agreement-section em,
.agreement-section i {
  font-style: italic;
  color: #3a3a3a;
}

.agreement-section a {
  color: #86A351;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

@media (min-width: 768px) {
  .agreement-section a {
    transition: color 0.18s ease-out, text-decoration-color 0.18s ease-out;
  }
}

.agreement-section a:hover {
  color: #5e7338;
  text-decoration-color: #86A351;
}

.agreement-section a:visited {
  color: #6b8440;
}

.agreement-section div {
  margin-bottom: 16px;
}

.agreement-section div+div {
  margin-top: 4px;
}

@media (max-width: 768px) {
  .agreement-section {
    padding: 32px 16px;
  }

  .agreement-section p,
  .agreement-section li {
    font-size: 15px;
  }

  .agreement-section ul,
  .agreement-section ol {
    margin-left: 16px;
  }
}

@media (min-width: 1024px) {
  .agreement-section {
    padding: 64px 64px;
  }
}

@media (min-width: 1440px) {
  .agreement-section {
    padding: 64px 32px;
  }
}

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

.anlt .pg-top {
  background: #1b2214;
  padding: 64px 16px;
  position: relative;
}

.anlt .pg-top-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
}

.anlt .pg-top-left {
  flex: 0 0 auto;
  width: 58%;
}

.anlt .pg-top-right {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 32px;
}

.anlt .fade-num {
  font-size: 68px;
  font-weight: 900;
  color: #86A351;
  opacity: 0.13;
  line-height: 1.2;
  letter-spacing: -4px;
  user-select: none;
  pointer-events: none;
}

.anlt .pg-eyebrow {
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #86A351;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.6;
}

.anlt .pg-h1 {
  font-size: 68px;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #EFF3E6;
  font-weight: 900;
  margin-bottom: 32px;
}

.anlt .pg-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #D1C7A9;
  max-width: 540px;
}

.anlt .pg-deco-line {
  width: 2px;
  height: 80px;
  background: #86A351;
  margin-bottom: 16px;
  opacity: 0.6;
}

.anlt .pg-tag {
  font-size: 15px;
  color: #86A351;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.anlt .pg-eyebrow {
  animation: fadeUp 0.18s ease-out both;
  animation-delay: 0.06s;
}

.anlt .pg-h1 {
  animation: fadeUp 0.22s ease-out both;
  animation-delay: 0.14s;
}

.anlt .pg-sub {
  animation: fadeUp 0.18s ease-out both;
  animation-delay: 0.22s;
}

.anlt .divider-cross {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 0;
  overflow: hidden;
}

.anlt .divider-cross .cross-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: nowrap;
}

.anlt .divider-cross .cr {
  width: 10px;
  height: 10px;
  position: relative;
  flex-shrink: 0;
}

.anlt .divider-cross .cr::before,
.anlt .divider-cross .cr::after {
  content: "";
  position: absolute;
  background: #D1C7A9;
}

.anlt .divider-cross .cr::before {
  width: 2px;
  height: 10px;
  left: 4px;
  top: 0;
}

.anlt .divider-cross .cr::after {
  width: 10px;
  height: 2px;
  left: 0;
  top: 4px;
}

.anlt .metrics-band {
  background: #86A351;
  padding: 64px 16px;
}

.anlt .metrics-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}

.anlt .metric-card {
  background: #fff;
  border-radius: 9px;
  padding: 32px;
  box-shadow: 0 8px 40px -2px rgba(134, 163, 81, 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 4px solid #1b2214;
  animation: fadeUp 0.22s ease-out both;
}

.anlt .metric-card:nth-child(1) {
  animation-delay: 0.08s;
}

.anlt .metric-card:nth-child(2) {
  animation-delay: 0.14s;
}

.anlt .metric-card:nth-child(3) {
  animation-delay: 0.18s;
}

.anlt .metric-card:nth-child(4) {
  animation-delay: 0.22s;
}

.anlt .metric-val {
  font-size: 51px;
  font-weight: 900;
  color: #86A351;
  line-height: 1.2;
  letter-spacing: -2px;
}

.anlt .metric-label {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1b2214;
  line-height: 1.6;
}

.anlt .metric-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-top: 4px;
}

.anlt .divider-dashed {
  border: none;
  border-top: 2px dashed #D1C7A9;
  margin: 0 auto;
  max-width: 1320px;
  width: calc(100% - 32px);
}

.anlt .deep-sec {
  background: #EFF3E6;
  padding: 64px 16px;
}

.anlt .deep-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.anlt .deep-sidebar {
  position: sticky;
  top: 32px;
  border-right: 3px solid #86A351;
  padding-right: 32px;
}

.anlt .deep-sidebar-tag {
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #86A351;
  margin-bottom: 16px;
  line-height: 1.6;
}

.anlt .deep-sidebar-h {
  font-size: 37px;
  font-weight: 900;
  color: #1b2214;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.anlt .deep-sidebar-p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.anlt .deep-sidebar-img {
  margin-top: 32px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 8px 40px -2px rgba(134, 163, 81, 0.12);
}

.anlt .deep-sidebar-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.anlt .deep-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.anlt .insight-item {
  background: #fff;
  border-radius: 9px;
  padding: 32px;
  box-shadow: 0 7px 25px -2px rgba(134, 163, 81, 0.09);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.anlt .insight-item-h {
  font-size: 21px;
  font-weight: 700;
  color: #1b2214;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.anlt .insight-item-p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
}

.anlt .insight-quote {
  background: #1b2214;
  border-radius: 9px;
  padding: 32px;
  box-shadow: 0 8px 40px -2px rgba(134, 163, 81, 0.12);
}

.anlt .insight-quote-text {
  font-size: 21px;
  color: #EFF3E6;
  line-height: 1.6;
  font-style: italic;
}

.anlt .insight-quote-attr {
  font-size: 15px;
  color: #86A351;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 16px;
  line-height: 1.6;
}

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

.anlt .arrow-list li {
  font-size: 17px;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.anlt .arrow-list li .arr {
  flex-shrink: 0;
  margin-top: 4px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anlt .arrow-list li .arr svg {
  width: 14px;
  height: 14px;
  stroke: #86A351;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.anlt .divider-cross2 {
  background: #EFF3E6;
  padding: 8px 0;
  overflow: hidden;
}

.anlt .divider-cross2 .cross-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: nowrap;
  justify-content: center;
}

.anlt .divider-cross2 .cr2 {
  width: 10px;
  height: 10px;
  position: relative;
  flex-shrink: 0;
}

.anlt .divider-cross2 .cr2::before,
.anlt .divider-cross2 .cr2::after {
  content: "";
  position: absolute;
  background: #86A351;
}

.anlt .divider-cross2 .cr2::before {
  width: 2px;
  height: 10px;
  left: 4px;
  top: 0;
}

.anlt .divider-cross2 .cr2::after {
  width: 10px;
  height: 2px;
  left: 0;
  top: 4px;
}

.anlt .prog-sec {
  background: #fff;
  padding: 64px 16px;
}

.anlt .prog-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.anlt .prog-head {
  text-align: center;
  margin-bottom: 64px;
}

.anlt .prog-head-tag {
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #86A351;
  margin-bottom: 16px;
  line-height: 1.6;
}

.anlt .prog-head-h {
  font-size: 37px;
  font-weight: 900;
  color: #1b2214;
  line-height: 1.2;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.anlt .prog-head-p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
  margin: 16px auto 0;
}

.anlt .prog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.anlt .prog-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 32px;
  border-radius: 9px;
  background: #EFF3E6;
  box-shadow: 0 3px 2px -2px rgba(134, 163, 81, 0.05);
  transition: box-shadow 0.18s ease-out;
}

@media (min-width: 1024px) {
  .anlt .prog-item:hover {
    box-shadow: 0 8px 40px -2px rgba(134, 163, 81, 0.12);
  }
}

.anlt .prog-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #86A351;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anlt .prog-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.anlt .prog-item-body {
  flex: 1 1 auto;
}

.anlt .prog-item-h {
  font-size: 17px;
  font-weight: 700;
  color: #1b2214;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.anlt .prog-item-p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.anlt .prog-deco-connect {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 32px 0;
}

.anlt .prog-deco-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #86A351;
}

.anlt .prog-deco-dash {
  flex: 1 1 auto;
  border-top: 2px dashed #D1C7A9;
  max-width: 200px;
}

.anlt .divider-plain {
  border: none;
  border-top: 1px solid #D1C7A9;
  max-width: 1320px;
  margin: 0 auto;
  width: calc(100% - 32px);
}

@media (max-width: 1024px) {
  .anlt .pg-h1 {
    font-size: 51px;
  }

  .anlt .pg-top-inner {
    gap: 32px;
  }

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

  .anlt .deep-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .anlt .deep-sidebar {
    position: static;
    border-right: none;
    padding-right: 0;
    border-bottom: 3px solid #86A351;
    padding-bottom: 32px;
  }

  .anlt .prog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .anlt .pg-h1 {
    font-size: 37px;
    letter-spacing: -1px;
  }

  .anlt .pg-top-inner {
    flex-direction: column;
    gap: 16px;
  }

  .anlt .pg-top-left {
    width: 100%;
  }

  .anlt .pg-top-right {
    align-items: flex-start;
    flex-direction: row;
    gap: 16px;
  }

  .anlt .pg-tag {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .anlt .metrics-inner {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .anlt .metric-val {
    font-size: 37px;
  }

  .anlt .deep-sidebar-h {
    font-size: 27px;
  }

  .anlt .prog-item {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .anlt .metrics-inner {
    grid-template-columns: 1fr;
  }

  .anlt .metric-card {
    padding: 16px;
  }

  .anlt .insight-item {
    padding: 16px;
  }

  .anlt .prog-item {
    padding: 16px;
  }

  .anlt .fade-num {
    font-size: 51px;
  }
}

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

.opn .pg-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.opn .clip-reveal {
  clip-path: inset(0 0 100% 0);
  animation: clipDown 0.55s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

@media (max-width: 768px) {
  .opn .clip-reveal {
    animation: none;
    clip-path: none;
  }
}

@keyframes clipDown {
  to {
    clip-path: inset(0 0 0% 0);
  }
}

.opn .clip-reveal-delay {
  clip-path: inset(0 0 100% 0);
  animation: clipDown 0.55s cubic-bezier(0.4, 0, 0.6, 1) 0.18s forwards;
}

@media (max-width: 768px) {
  .opn .clip-reveal-delay {
    animation: none;
    clip-path: none;
  }
}

.opn .t1 {
  background-color: #2a2e24;
  position: relative;
  padding: 64px 0;
}

.opn .t1-dot-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.opn .t1-dot-grid svg {
  width: 100%;
  height: 100%;
  opacity: 0.18;
}

.opn .t1-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.opn .t1-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.opn .t1-eyebrow {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #86A351;
  font-weight: 700;
}

.opn .t1-h1 {
  font-size: 51px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #EFF3E6;
  font-weight: 800;
  margin: 0;
}

@media (max-width: 768px) {
  .opn .t1-h1 {
    font-size: 37px;
  }
}

@media (max-width: 480px) {
  .opn .t1-h1 {
    font-size: 27px;
  }
}

.opn .t1-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #D1C7A9;
  margin: 0;
  max-width: 480px;
}

.opn .t1-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #EFF3E6;
  text-decoration: none;
  border-bottom: 2px solid #86A351;
  padding-bottom: 4px;
  width: fit-content;
  transition: color 0.16s ease-out, border-color 0.16s ease-out;
}

@media (min-width: 769px) {
  .opn .t1-link:hover {
    color: #86A351;
    border-color: #EFF3E6;
  }

  .opn .t1-link:hover .t1-arrow {
    transform: translateX(4px);
  }
}

.opn .t1-arrow {
  transition: transform 0.14s ease-out;
}

.opn .t1-img-col {
  flex: 1;
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  min-height: 420px;
}

.opn .t1-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.opn .t1-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, #2a2e24 0%, transparent 100%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .opn .t1-inner {
    flex-direction: column;
    gap: 32px;
  }

  .opn .t1-img-col {
    min-height: 260px;
  }
}

.opn .grad-sec {
  background: #EFF3E6;
  padding: 64px 0;
  position: relative;
}

.opn .grad-sec-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2386A351' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.opn .grad-divider-top {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}

.opn .grad-divider-top svg {
  display: block;
  width: 100%;
}

.opn .grad-col-wrap {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.opn .grad-text-col {
  flex: 1;
}

.opn .grad-h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2a2e24;
  font-weight: 800;
  margin: 0 0 32px 0;
  text-transform: uppercase;
}

.opn .grad-body {
  font-size: 17px;
  line-height: 1.6;
  color: #3a3f30;
  margin: 0 0 16px 0;
}

.opn .grad-outcomes {
  list-style: none;
  padding: 0;
  margin: 32px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.opn .grad-outcomes li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 17px;
  line-height: 1.6;
  color: #2a2e24;
}

.opn .grad-outcomes li .arr {
  color: #86A351;
  flex-shrink: 0;
  margin-top: 4px;
}

.opn .grad-img-col {
  flex: 0 0 420px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 7px 25px -2px rgba(134, 163, 81, 0.09);
}

.opn .grad-img-col img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .opn .grad-img-col {
    flex: 0 0 320px;
  }
}

@media (max-width: 768px) {
  .opn .grad-col-wrap {
    flex-direction: column;
    gap: 32px;
  }

  .opn .grad-img-col {
    flex: none;
    width: 100%;
  }

  .opn .grad-img-col img {
    height: 240px;
  }

  .opn .grad-h2 {
    font-size: 27px;
  }
}

.opn .fit-sec {
  background: #2a2e24;
  padding: 64px 0;
  position: relative;
}

.opn .fit-sec-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D1C7A9' fill-opacity='0.03'%3E%3Cpath d='M0 0h80v80H0z'/%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='%23D1C7A9' stroke-opacity='0.05' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.opn .fit-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}

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

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

.opn .fit-h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #EFF3E6;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 16px 0;
}

.opn .fit-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #D1C7A9;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px auto;
}

.opn .fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

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

  .opn .fit-h2 {
    font-size: 27px;
  }
}

.opn .fit-card {
  background: rgba(209, 199, 169, 0.06);
  border: 1px solid rgba(209, 199, 169, 0.12);
  border-radius: 9px;
  padding: 32px;
  position: relative;
}

.opn .fit-card.yes {
  border-color: rgba(134, 163, 81, 0.3);
}

.opn .fit-card-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.opn .fit-card.yes .fit-card-label {
  color: #86A351;
}

.opn .fit-card.no .fit-card-label {
  color: #D1C7A9;
}

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

.opn .fit-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #D1C7A9;
}

.opn .fit-list li .arr {
  flex-shrink: 0;
  margin-top: 3px;
}

.opn .fit-card.yes .fit-list li .arr {
  color: #86A351;
}

.opn .fit-card.no .fit-list li .arr {
  color: #6b6b5a;
}

.opn .hes-sec {
  background: #ffffff;
  padding: 64px 0;
  position: relative;
}

.opn .hes-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}

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

.opn .hes-inner {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.opn .hes-quote-col {
  flex: 0 0 340px;
}

.opn .hes-quote-block {
  background: #EFF3E6;
  border-radius: 9px;
  padding: 32px;
  box-shadow: 0 3px 2px -2px rgba(134, 163, 81, 0.05);
}

.opn .hes-quote-text {
  font-size: 21px;
  line-height: 1.6;
  color: #2a2e24;
  font-weight: 600;
  font-style: italic;
  margin: 0 0 16px 0;
}

.opn .hes-quote-attr {
  font-size: 15px;
  color: #86A351;
  font-weight: 700;
  margin: 0;
}

.opn .hes-text-col {
  flex: 1;
}

.opn .hes-h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2a2e24;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 32px 0;
}

.opn .hes-body {
  font-size: 17px;
  line-height: 1.6;
  color: #3a3f30;
  margin: 0 0 16px 0;
}

.opn .hes-body:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .opn .hes-quote-col {
    flex: 0 0 280px;
  }
}

@media (max-width: 768px) {
  .opn .hes-inner {
    flex-direction: column;
    gap: 32px;
  }

  .opn .hes-quote-col {
    flex: none;
    width: 100%;
  }

  .opn .hes-h2 {
    font-size: 27px;
  }
}

.opn .exp-sec {
  background: #EFF3E6;
  padding: 64px 0;
  position: relative;
}

.opn .exp-sec-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2386A351' fill-opacity='0.05'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.opn .exp-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}

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

.opn .exp-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.opn .exp-h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2a2e24;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.opn .exp-story {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.opn .exp-story.rev {
  flex-direction: row-reverse;
}

.opn .exp-story-img {
  flex: 0 0 360px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 8px 40px -2px rgba(134, 163, 81, 0.12);
}

.opn .exp-story-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.opn .exp-story-text {
  flex: 1;
}

.opn .exp-person-name {
  font-size: 21px;
  font-weight: 800;
  color: #2a2e24;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.opn .exp-person-role {
  font-size: 15px;
  color: #86A351;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.opn .exp-story-body {
  font-size: 17px;
  line-height: 1.6;
  color: #3a3f30;
  margin: 0 0 16px 0;
}

.opn .exp-story-body:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {

  .opn .exp-story,
  .opn .exp-story.rev {
    flex-direction: column;
    gap: 32px;
  }

  .opn .exp-story-img {
    flex: none;
    width: 100%;
  }

  .opn .exp-story-img img {
    height: 220px;
  }

  .opn .exp-h2 {
    font-size: 27px;
  }
}

.opn .curr-sec {
  background: #2a2e24;
  padding: 64px 0;
  position: relative;
}

.opn .curr-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}

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

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

.opn .curr-top {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 64px;
}

.opn .curr-text {
  flex: 1;
}

.opn .curr-h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #EFF3E6;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 32px 0;
}

.opn .curr-body {
  font-size: 17px;
  line-height: 1.6;
  color: #D1C7A9;
  margin: 0 0 16px 0;
}

.opn .curr-body:last-child {
  margin-bottom: 0;
}

.opn .curr-chart-col {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.opn .curr-chart-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #86A351;
  text-align: center;
}

.opn .spider-wrap {
  width: 320px;
  height: 320px;
  position: relative;
}

.opn .spider-wrap svg {
  width: 100%;
  height: 100%;
}

.opn .curr-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.opn .curr-pillar {
  background: rgba(209, 199, 169, 0.06);
  border: 1px solid rgba(209, 199, 169, 0.12);
  border-radius: 9px;
  padding: 32px 16px;
  text-align: center;
  transition: border-color 0.18s ease-out;
}

@media (min-width: 769px) {
  .opn .curr-pillar:hover {
    border-color: rgba(134, 163, 81, 0.4);
  }

  .opn .curr-pillar:hover .curr-pillar-icon {
    transform: translateY(-3px);
  }
}

.opn .curr-pillar-icon {
  color: #86A351;
  margin-bottom: 8px;
  transition: transform 0.14s ease-out;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.opn .curr-pillar-name {
  font-size: 15px;
  font-weight: 700;
  color: #EFF3E6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px 0;
}

.opn .curr-pillar-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #D1C7A9;
  margin: 0;
}

@media (max-width: 1024px) {
  .opn .curr-chart-col {
    flex: 0 0 300px;
  }

  .opn .spider-wrap {
    width: 260px;
    height: 260px;
  }
}

@media (max-width: 768px) {
  .opn .curr-top {
    flex-direction: column;
    gap: 32px;
  }

  .opn .curr-chart-col {
    flex: none;
    width: 100%;
  }

  .opn .curr-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .opn .curr-h2 {
    font-size: 27px;
  }
}

@media (max-width: 480px) {
  .opn .curr-pillars {
    grid-template-columns: 1fr;
  }
}

.opn .res-sec {
  background: #ffffff;
  padding: 64px 0;
  position: relative;
}

.opn .res-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}

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

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

.opn .res-h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2a2e24;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 16px 0;
}

.opn .res-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #5a5f4a;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 64px auto;
}

.opn .res-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.opn .res-item {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  border-bottom: 1px solid #EFF3E6;
  padding-bottom: 32px;
}

.opn .res-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.opn .res-num {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 2px;
  background: #EFF3E6;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 800;
  color: #86A351;
  line-height: 1.2;
}

.opn .res-content {
  flex: 1;
}

.opn .res-person {
  font-size: 17px;
  font-weight: 800;
  color: #2a2e24;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.opn .res-role {
  font-size: 15px;
  color: #86A351;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.opn .res-quote {
  font-size: 17px;
  line-height: 1.6;
  color: #3a3f30;
  font-style: italic;
  margin: 0 0 8px 0;
  padding: 16px;
  background: #EFF3E6;
  border-radius: 9px;
}

.opn .res-result {
  font-size: 15px;
  line-height: 1.6;
  color: #5a5f4a;
  margin: 8px 0 0 0;
}

@media (max-width: 768px) {
  .opn .res-item {
    flex-direction: column;
    gap: 16px;
  }

  .opn .res-h2 {
    font-size: 27px;
  }
}

.opn a {
  color: inherit;
}

.opn a:hover {
  text-shadow: 0 2px 8px rgba(134, 163, 81, 0.25);
}

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

.ct-us .pg-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.ct-us .top-band {
  position: relative;
  padding: 64px 0 48px;
  overflow: hidden;
}

.ct-us .top-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(127deg, #EFF3E6 0%, #D1C7A9 52%, #86A351 100%);
  z-index: 0;
}

.ct-us .top-band .curve-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.ct-us .top-band .curve-bg svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.ct-us .top-band .band-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
}

.ct-us .top-band .band-text {
  flex: 1;
  min-width: 0;
}

.ct-us .top-band .band-label {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3d4a28;
  margin-bottom: 16px;
  padding: 4px 16px;
  background: rgba(134, 163, 81, 0.15);
  border-radius: 2px;
}

.ct-us .top-band .band-h1 {
  font-size: 51px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #2a3318;
  margin: 0 0 16px;
}

.ct-us .top-band .band-h1 .accent-word {
  background: linear-gradient(127deg, #86A351 20%, #3d6b1a 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct-us .top-band .band-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #3d4a28;
  max-width: 480px;
  margin: 0;
}

.ct-us .top-band .band-img-col {
  flex: 0 0 340px;
  position: relative;
}

.ct-us .top-band .img-blur-wrap {
  width: 340px;
  height: 280px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 8px 40px -2px rgba(134, 163, 81, 0.12);
  position: relative;
}

.ct-us .top-band .img-blur-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ct-us .top-band .img-blur-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(209, 199, 169, 0.45) 100%);
  pointer-events: none;
}

.ct-us .top-band .metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 32px;
}

.ct-us .top-band .met-card {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 9px;
  padding: 16px;
  box-shadow: 0 3px 2px -2px rgba(134, 163, 81, 0.05);
}

.ct-us .top-band .met-num {
  font-size: 27px;
  font-weight: 800;
  color: #86A351;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ct-us .top-band .met-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #3d4a28;
  margin: 4px 0 0;
}

.ct-us .diag-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 220px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
}

.ct-us .contact-block {
  padding: 64px 0;
  background: #fff;
  position: relative;
}

.ct-us .contact-block .cb-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.ct-us .contact-block .cb-info {
  flex: 0 0 320px;
  padding-top: 32px;
}

.ct-us .contact-block .cb-info-head {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2a3318;
  margin: 0 0 16px;
}

.ct-us .contact-block .cb-info-body {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5236;
  margin: 0 0 32px;
}

.ct-us .contact-block .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-us .contact-block .info-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.ct-us .contact-block .info-list .info-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: #86A351;
  margin-top: 2px;
}

.ct-us .contact-block .info-list .info-text {
  font-size: 15px;
  line-height: 1.6;
  color: #2a3318;
}

.ct-us .contact-block .info-list .info-text a {
  color: #2a3318;
  text-decoration: none;
  box-shadow: 0 1px 0 #86A351;
  transition: color 0.18s ease-out, box-shadow 0.18s ease-out;
}

.ct-us .contact-block .info-list .info-text a:hover {
  color: #86A351;
  box-shadow: 0 2px 0 #86A351, 0 0 4px rgba(134, 163, 81, 0.18);
  text-shadow: 0 1px 6px rgba(134, 163, 81, 0.25);
}

.ct-us .contact-block .cb-img-wrap {
  width: 100%;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 7px 25px -2px rgba(134, 163, 81, 0.09);
  margin-top: 32px;
}

.ct-us .contact-block .cb-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.ct-us .contact-block .cb-form-col {
  flex: 1;
  min-width: 0;
}

.ct-us .contact-block .form-head {
  font-size: 37px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2a3318;
  margin: 0 0 8px;
}

.ct-us .contact-block .form-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #4a5236;
  margin: 0 0 32px;
}

.ct-us .contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-us .contact-form .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ct-us .contact-form .field-grp {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-us .contact-form .field-grp label {
  font-size: 15px;
  font-weight: 600;
  color: #2a3318;
  letter-spacing: 0.02em;
}

.ct-us .contact-form .field-grp input[type="text"],
.ct-us .contact-form .field-grp input[type="email"],
.ct-us .contact-form .field-grp input[type="tel"],
.ct-us .contact-form .field-grp textarea,
.ct-us .contact-form .field-grp select {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: #2a3318;
  background: #f5f6f0;
  border: 1.5px solid #D1C7A9;
  border-radius: 9px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.18s ease-out, box-shadow 0.18s ease-out;
  -webkit-appearance: none;
  appearance: none;
}

.ct-us .contact-form .field-grp input::placeholder,
.ct-us .contact-form .field-grp textarea::placeholder {
  font-size: 15px;
  color: #8a9070;
}

.ct-us .contact-form .field-grp input:focus,
.ct-us .contact-form .field-grp textarea:focus,
.ct-us .contact-form .field-grp select:focus {
  border-color: #86A351;
  box-shadow: 0 0 0 3px rgba(134, 163, 81, 0.15);
}

.ct-us .contact-form .field-grp textarea {
  resize: vertical;
  min-height: 120px;
}

.ct-us .contact-form .topic-grp {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-us .contact-form .topic-grp label {
  font-size: 15px;
  font-weight: 600;
  color: #2a3318;
  letter-spacing: 0.02em;
}

.ct-us .contact-form .topic-sel-wrap {
  position: relative;
}

.ct-us .contact-form .topic-sel-wrap select {
  width: 100%;
  padding: 16px 48px 16px 16px;
  font-size: 17px;
  line-height: 1.6;
  color: #2a3318;
  background: #f5f6f0;
  border: 1.5px solid #D1C7A9;
  border-radius: 9px;
  box-sizing: border-box;
  outline: none;
  cursor: pointer;
  transition: border-color 0.18s ease-out, box-shadow 0.18s ease-out;
  -webkit-appearance: none;
  appearance: none;
}

.ct-us .contact-form .topic-sel-wrap select:focus {
  border-color: #86A351;
  box-shadow: 0 0 0 3px rgba(134, 163, 81, 0.15);
}

.ct-us .contact-form .topic-sel-wrap .sel-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #86A351;
}

.ct-us .contact-form .cond-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-us .contact-form .cond-label {
  font-size: 15px;
  font-weight: 600;
  color: #2a3318;
}

.ct-us .contact-form .cond-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-us .contact-form .cond-field label {
  font-size: 15px;
  font-weight: 600;
  color: #2a3318;
}

.ct-us .contact-form .cond-toggle-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.ct-us .contact-form .cond-toggle-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #86A351;
  cursor: pointer;
  flex-shrink: 0;
}

.ct-us .contact-form .cond-toggle-row .cond-toggle-lbl {
  font-size: 15px;
  color: #4a5236;
  cursor: pointer;
}

.ct-us .contact-form .cond-extra {
  display: none;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.ct-us .contact-form #has-org:checked~.cond-extra {
  display: flex;
}

.ct-us .contact-form .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  background: #EFF3E6;
  border-radius: 9px;
}

.ct-us .contact-form .privacy-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #86A351;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.ct-us .contact-form .privacy-row .priv-text {
  font-size: 15px;
  line-height: 1.6;
  color: #3d4a28;
}

.ct-us .contact-form .privacy-row .priv-text a {
  color: #86A351;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ct-us .contact-form .privacy-row .priv-text a:hover {
  text-shadow: 0 1px 6px rgba(134, 163, 81, 0.3);
}

.ct-us .contact-form .submit-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.ct-us .contact-form .submit-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: #86A351;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  box-shadow: 0 7px 25px -2px rgba(134, 163, 81, 0.09);
  transition: background 0.15s cubic-bezier(0.4, 0, 0.6, 1), box-shadow 0.15s cubic-bezier(0.4, 0, 0.6, 1);
  position: relative;
}

.ct-us .contact-form .submit-btn:hover {
  background: #6d8a3e;
  box-shadow: 0 8px 40px -2px rgba(134, 163, 81, 0.12);
}

.ct-us .contact-form .submit-btn:focus-visible {
  outline: 3px solid #2a3318 !important;
  outline-offset: 3px !important;
}

.ct-us .contact-form .submit-btn .btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.ct-us .contact-form .submit-btn.loading .btn-text {
  display: none;
}

.ct-us .contact-form .submit-btn.loading .btn-spinner {
  display: block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.ct-us .contact-form .submit-hint {
  font-size: 15px;
  color: #6a7558;
  line-height: 1.6;
}

.ct-us .contact-form .field-grp input:focus-visible,
.ct-us .contact-form .field-grp textarea:focus-visible,
.ct-us .contact-form .field-grp select:focus-visible,
.ct-us .contact-form .topic-sel-wrap select:focus-visible {
  outline: 3px solid #2a3318 !important;
  outline-offset: 2px !important;
}

.ct-us .contact-block .cb-info .drift-accent {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(134, 163, 81, 0.13) 0%, rgba(209, 199, 169, 0.07) 60%, transparent 100%);
  pointer-events: none;
  animation: drift-move 8s ease-out infinite alternate;
}

@keyframes drift-move {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 16px);
  }
}

@media (max-width: 1024px) {
  .ct-us .top-band .band-inner {
    flex-direction: column;
    gap: 32px;
  }

  .ct-us .top-band .band-img-col {
    flex: 0 0 auto;
    width: 100%;
  }

  .ct-us .top-band .img-blur-wrap {
    width: 100%;
    height: 220px;
  }

  .ct-us .contact-block .cb-inner {
    flex-direction: column;
    gap: 32px;
  }

  .ct-us .contact-block .cb-info {
    flex: 0 0 auto;
    width: 100%;
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .ct-us .top-band {
    padding: 48px 0 32px;
  }

  .ct-us .top-band .band-h1 {
    font-size: 37px;
  }

  .ct-us .contact-form .row-2 {
    grid-template-columns: 1fr;
  }

  .ct-us .contact-block .form-head {
    font-size: 27px;
  }

  .ct-us .pg-wrap {
    padding: 0 16px;
  }

  .ct-us .top-band .band-inner {
    padding: 0 16px;
  }

  .ct-us .contact-block .cb-inner {
    padding: 0 16px;
  }

  .ct-us .top-band .metrics-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .ct-us .top-band .band-h1 {
    font-size: 27px;
  }

  .ct-us .top-band .metrics-row {
    grid-template-columns: 1fr;
  }

  .ct-us .contact-form .submit-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .ct-us .contact-form .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 769px) {

  .ct-us .contact-form .field-grp input,
  .ct-us .contact-form .field-grp textarea,
  .ct-us .contact-form .topic-sel-wrap select {
    transition: border-color 0.18s ease-out, box-shadow 0.18s ease-out;
  }

  .ct-us .contact-block .info-list .info-text a {
    transition: color 0.18s ease-out, box-shadow 0.18s ease-out, text-shadow 0.18s ease-out;
  }

  .ct-us .contact-form .submit-btn {
    transition: background 0.15s cubic-bezier(0.4, 0, 0.6, 1), box-shadow 0.15s cubic-bezier(0.4, 0, 0.6, 1);
  }
}

@media (max-width: 768px) {

  .ct-us .contact-form .field-grp input,
  .ct-us .contact-form .field-grp textarea,
  .ct-us .contact-form .topic-sel-wrap select {
    transition: none;
  }
}

.ct-us .tooltip-anchor {
  position: relative;
  display: inline-block;
}

.ct-us .tooltip-anchor .tip-box {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #2a3318;
  color: #EFF3E6;
  font-size: 15px;
  line-height: 1.6;
  padding: 8px 16px;
  border-radius: 9px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 7px 25px -2px rgba(134, 163, 81, 0.09);
}

.ct-us .tooltip-anchor:focus-within .tip-box,
.ct-us .tooltip-anchor:focus .tip-box {
  opacity: 1;
}

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

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

.abt-pg .sec-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 0;
}

.abt-pg .sec-divider span {
  height: 1px;
  width: 120px;
  background: linear-gradient(90deg, transparent, #D1C7A9, transparent);
  display: block;
}

.abt-pg .diamond {
  width: 8px;
  height: 8px;
  background: #86A351;
  transform: rotate(45deg);
  display: inline-block;
  flex-shrink: 0;
}

.abt-pg .abt-title-blk {
  position: relative;
  padding: 48px 0 96px;
  background: linear-gradient(137deg, #EFF3E6 0%, #EFF3E6 45%, #D1C7A9 100%);
}

.abt-pg .abt-title-blk .abt-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}

.abt-pg .title-txt-zone {
  position: relative;
  z-index: 1;
  padding-bottom: 16px;
}

.abt-pg .title-txt-zone .label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #86A351;
  margin-bottom: 16px;
}

.abt-pg .title-txt-zone .label-tag .diamond {
  width: 6px;
  height: 6px;
}

.abt-pg .t-lg {
  font-size: 68px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1e2a14;
  margin: 0 0 8px;
}

.abt-pg .t-md {
  font-size: 37px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #3a4f22;
  margin: 0 0 32px;
}

.abt-pg .t-body {
  font-size: 17px;
  line-height: 1.6;
  color: #2c3820;
  max-width: 440px;
}

.abt-pg .title-img-zone {
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  box-shadow: 0 8px 40px -2px rgba(134, 163, 81, 0.12);
}

.abt-pg .title-img-zone img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.abt-pg .title-img-zone .img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to left, transparent 40%, rgba(239, 243, 230, 0.72) 100%);
}

.abt-pg .title-deco {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 30% 30%, rgba(134, 163, 81, 0.18), rgba(209, 199, 169, 0.10), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.abt-pg .title-deco-2 {
  position: absolute;
  bottom: 64px;
  left: 64px;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(134, 163, 81, 0.22);
  border-radius: 2px;
  transform: rotate(18deg);
  pointer-events: none;
}

.abt-pg .stat-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 32px;
}

.abt-pg .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt-pg .stat-num {
  font-size: 37px;
  line-height: 1.2;
  font-weight: 800;
  color: #86A351;
  letter-spacing: -0.02em;
}

.abt-pg .stat-lbl {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5e30;
}

.abt-pg .abt-story {
  background: #ffffff;
  padding: 80px 0;
}

.abt-pg .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.abt-pg .story-col-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.abt-pg .story-col-center {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 64px;
}

.abt-pg .story-col-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.abt-pg .story-img-wrap {
  overflow: hidden;
  border-radius: 9px;
  box-shadow: 0 7px 25px -2px rgba(134, 163, 81, 0.09);
}

.abt-pg .story-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.abt-pg .story-img-wrap.tall img {
  height: 340px;
}

.abt-pg .story-img-wrap.short img {
  height: 200px;
}

.abt-pg .txt-card {
  background: #EFF3E6;
  border-radius: 9px;
  padding: 32px;
  box-shadow: 0 3px 2px -2px rgba(134, 163, 81, 0.05);
}

.abt-pg .txt-card .card-head {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1e2a14;
  margin: 0 0 16px;
}

.abt-pg .txt-card .card-body {
  font-size: 17px;
  line-height: 1.6;
  color: #2c3820;
}

.abt-pg .quote-blk {
  border-radius: 2px;
  background: #1e2a14;
  padding: 32px;
  position: relative;
}

.abt-pg .quote-blk .q-mark {
  width: 32px;
  height: 24px;
  margin-bottom: 16px;
  display: block;
}

.abt-pg .quote-blk .q-text {
  font-size: 21px;
  line-height: 1.6;
  color: #EFF3E6;
  font-style: italic;
  margin: 0 0 16px;
}

.abt-pg .quote-blk .q-attr {
  font-size: 15px;
  line-height: 1.6;
  color: #86A351;
  font-weight: 600;
}

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

.abt-pg .arrow-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 17px;
  line-height: 1.6;
  color: #2c3820;
}

.abt-pg .arrow-list li .arr {
  flex-shrink: 0;
  margin-top: 4px;
  display: inline-block;
}

.abt-pg .arrow-list li .arr svg {
  display: block;
}

.abt-pg .sec2-head {
  text-align: center;
  margin-bottom: 64px;
}

.abt-pg .sec2-head .s2-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #86A351;
  margin-bottom: 16px;
}

.abt-pg .sec2-head h2 {
  font-size: 51px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #1e2a14;
  margin: 0 0 16px;
}

.abt-pg .sec2-head p {
  font-size: 17px;
  line-height: 1.6;
  color: #2c3820;
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .abt-pg .abt-title-blk .abt-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .abt-pg .t-lg {
    font-size: 51px;
  }

  .abt-pg .t-md {
    font-size: 27px;
  }

  .abt-pg .story-grid {
    grid-template-columns: 1fr 1fr;
  }

  .abt-pg .story-col-center {
    padding-top: 0;
  }

  .abt-pg .story-col-right {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .abt-pg .story-col-right .story-img-wrap {
    flex: 1;
  }

  .abt-pg .story-col-right .txt-card {
    flex: 1;
  }
}

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

  .abt-pg .abt-title-blk {
    padding: 32px 0 64px;
  }

  .abt-pg .t-lg {
    font-size: 37px;
  }

  .abt-pg .t-md {
    font-size: 21px;
  }

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

  .abt-pg .stat-num {
    font-size: 27px;
  }

  .abt-pg .story-grid {
    grid-template-columns: 1fr;
  }

  .abt-pg .story-col-center {
    padding-top: 0;
  }

  .abt-pg .story-col-right {
    flex-direction: column;
  }

  .abt-pg .abt-story {
    padding: 48px 0;
  }

  .abt-pg .sec2-head h2 {
    font-size: 37px;
  }

  .abt-pg .title-img-zone img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .abt-pg .t-lg {
    font-size: 27px;
  }

  .abt-pg .t-md {
    font-size: 17px;
  }

  .abt-pg .abt-title-blk {
    padding: 32px 0 48px;
  }

  .abt-pg .sec2-head h2 {
    font-size: 27px;
  }

  .abt-pg .quote-blk .q-text {
    font-size: 17px;
  }
}

@media (min-width: 769px) {
  .abt-pg .story-img-wrap img {
    transition: transform 0.18s cubic-bezier(0.4, 0, 0.6, 1);
  }

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

  .abt-pg .txt-card {
    transition: box-shadow 0.15s ease-out;
  }

  .abt-pg .txt-card:hover {
    box-shadow: 0 7px 25px -2px rgba(134, 163, 81, 0.09);
  }

  .abt-pg .arrow-list li .arr svg {
    transition: transform 0.12s ease-out;
  }

  .abt-pg .arrow-list li:hover .arr svg {
    transform: translateX(3px);
  }
}

.succ-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
  background-color: #EFF3E6;
}

.succ-page .succ-wrap {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 7px 25px -2px rgba(134, 163, 81, 0.09);
  max-width: 560px;
  width: 100%;
  padding: 64px 32px;
  text-align: center;
}

.succ-page .succ-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.succ-page .succ-icon svg {
  width: 64px;
  height: 64px;
}

.succ-page .succ-title {
  font-size: 37px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2b2b2b;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.succ-page .succ-msg {
  font-size: 17px;
  line-height: 1.6;
  color: #3d3d3d;
  margin: 0 0 32px;
}

.succ-page .succ-divider {
  width: 48px;
  height: 2px;
  background: #86A351;
  border-radius: 2px;
  margin: 0 auto 32px;
}

.succ-page .succ-note {
  font-size: 15px;
  line-height: 1.6;
  color: #5a5a5a;
  margin: 0 0 32px;
}

.succ-page .succ-back {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #86A351;
  text-decoration: none;
  border-bottom: 1px solid #86A351;
  padding-bottom: 4px;
  letter-spacing: 0.04em;
  transition: color 0.18s ease-out, border-color 0.14s cubic-bezier(0.4, 0, 0.6, 1);
}

@media (min-width: 480px) {
  .succ-page .succ-wrap {
    padding: 64px 64px;
  }
}

@media (hover: hover) {
  .succ-page .succ-back:hover {
    color: #5e7a38;
    border-color: #5e7a38;
  }
}