* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  font-family: 'Noto Serif', Georgia, serif;
  background-color: #fff;
}

.site-hd {
  position: relative;
  z-index: 100;
  background: linear-gradient(160deg, rgba(51, 184, 98, 0.10) 0%, rgba(121, 194, 200, 0.13) 55%, rgba(180, 180, 214, 0.09) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(51, 184, 98, 0.18);
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09);
  padding: 0;
}

.hd-top-band {
  background: linear-gradient(90deg, rgba(51, 184, 98, 0.07) 0%, rgba(121, 194, 200, 0.10) 100%);
  border-bottom: 1px solid rgba(121, 194, 200, 0.22);
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.hd-contact-strip {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hd-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #1a3a26;
  text-decoration: none;
  font-family: 'Noto Serif', Georgia, serif;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.hd-contact-item:hover {
  color: #33B862;
}

.hd-contact-item:focus-visible {
  outline: 2px solid #33B862;
  outline-offset: 2px;
  border-radius: 4px;
}

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

.hd-proof-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(180, 180, 214, 0.18);
  border: 1px solid rgba(180, 180, 214, 0.38);
  border-radius: 42px;
  padding: 4px 16px;
  font-size: 13px;
  line-height: 1.5;
  color: #2d2d4a;
  font-family: 'Noto Serif', Georgia, serif;
}

.hd-proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 42px;
  background: #33B862;
  flex-shrink: 0;
  box-shadow: 0 2px 2px -2px rgba(51, 184, 98, 0.06);
}

.hd-logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 32px 16px;
}

.hd-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(51, 184, 98, 0.30);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 2px 2px -2px rgba(51, 184, 98, 0.06), inset 0 1px 4px rgba(121, 194, 200, 0.12);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  padding: 4px;
  position: relative;
}

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

.hd-brand-name {
  margin-left: 16px;
  font-size: 37px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-family: 'Noto Serif', Georgia, serif;
  color: #1a3a26;
  font-style: italic;
}

.hd-brand-accent {
  color: #33B862;
}

.hd-nav-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 32px 24px;
}

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

.hd-nav-list li {
  display: flex;
}

.hd-nav-link {
  display: flex;
  align-items: center;
  padding: 8px 24px;
  font-size: 14px;
  line-height: 1.5;
  font-family: 'Noto Serif', Georgia, serif;
  font-weight: 700;
  color: #1a3a26;
  text-decoration: none;
  border-radius: 42px;
  border: 1px solid transparent;
  transition: background-color 0.24s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  outline: none;
}

.hd-nav-link:hover {
  background-color: rgba(51, 184, 98, 0.10);
  border-color: rgba(51, 184, 98, 0.28);
  color: #33B862;
  clip-path: polygon(2% 0, 98% 0, 100% 100%, 0% 100%);
}

.hd-nav-link:focus-visible {
  outline: 2px solid #33B862;
  outline-offset: 2px;
}

.hd-nav-link.active {
  background-color: rgba(51, 184, 98, 0.14);
  border-color: rgba(51, 184, 98, 0.36);
  color: #1a6b3a;
  box-shadow: 0 2px 2px -2px rgba(51, 184, 98, 0.06);
}

.hd-nav-sep {
  width: 4px;
  height: 4px;
  border-radius: 42px;
  background: rgba(121, 194, 200, 0.50);
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 992px) {
  .hd-top-band {
    padding: 8px 16px;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .hd-contact-strip {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .hd-logo-row {
    padding: 16px 16px 8px;
  }

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

  .hd-nav-row {
    padding: 0 16px 16px;
  }
}

@media (max-width: 576px) {
  .hd-top-band {
    padding: 8px;
  }

  .hd-contact-item span {
    display: none;
  }

  .hd-brand-name {
    font-size: 37px;
    margin-left: 8px;
  }

  .hd-nav-link {
    padding: 8px 16px;
    font-size: 13px;
  }

  .hd-nav-sep {
    display: none;
  }
}

.site-ft {
  background: linear-gradient(180deg, #f4fbf6 0%, #e8f7ed 40%, #d0edda 100%);
  border-top: 1px solid rgba(51, 184, 98, 0.20);
  box-shadow: 0 -4px 28px -2px rgba(51, 184, 98, 0.09);
  font-family: 'Noto Serif', Georgia, serif;
}

.ft-upper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 32px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}

.ft-brand-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 180px;
}

.ft-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(51, 184, 98, 0.35);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09), inset 0 1px 4px rgba(121, 194, 200, 0.14);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  padding: 4px;
}

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

.ft-brand-label {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #1a3a26;
  font-style: italic;
  letter-spacing: -0.01em;
  text-align: center;
}

.ft-contact-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ft-col-head {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  color: #33B862;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ft-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: #2a3d2e;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.ft-contact-line:hover {
  color: #33B862;
}

.ft-contact-line:focus-visible {
  outline: 2px solid #33B862;
  outline-offset: 2px;
  border-radius: 4px;
}

.ft-contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #79C2C8;
}

.ft-addr {
  font-size: 13px;
  line-height: 1.7;
  color: #2a3d2e;
}

.ft-pages-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ft-page-link {
  font-size: 13px;
  line-height: 1.7;
  color: #2a3d2e;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.24s cubic-bezier(0.0, 0, 0.2, 1);
  outline: none;
}

.ft-page-link:hover {
  color: #33B862;
}

.ft-page-link:focus-visible {
  outline: 2px solid #33B862;
  outline-offset: 2px;
  border-radius: 4px;
}

.ft-page-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.ft-lower {
  border-top: 1px solid rgba(51, 184, 98, 0.16);
  background: rgba(51, 184, 98, 0.05);
}

.ft-lower-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.ft-legal-nav li a {
  font-size: 13px;
  line-height: 1.5;
  color: #2a3d2e;
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 184, 98, 0.25);
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.ft-legal-nav li a:hover {
  color: #33B862;
  border-color: #33B862;
}

.ft-legal-nav li a:focus-visible {
  outline: 2px solid #33B862;
  outline-offset: 2px;
  border-radius: 4px;
}

.ft-copy {
  font-size: 13px;
  line-height: 1.5;
  color: #4a6b52;
}

@media (max-width: 992px) {
  .ft-upper {
    padding: 32px 16px 24px;
    gap: 24px;
  }

  .ft-lower-inner {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 576px) {
  .ft-upper {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px 16px;
    gap: 24px;
  }

  .ft-brand-col {
    align-items: flex-start;
  }
}

.cookie-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: linear-gradient(90deg, #f4fbf6 0%, #e8f7ed 100%);
  border-bottom: 1px solid rgba(51, 184, 98, 0.28);
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09);
  font-family: 'Noto Serif', Georgia, serif;
  transform: translateY(-100%);
  transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-bar.visible {
  transform: translateY(0);
}

.cookie-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.cookie-bar-text {
  font-size: 13px;
  line-height: 1.7;
  color: #1a3a26;
  flex: 1 1 300px;
}

.cookie-bar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 4px;
  border: 1px solid #33B862;
  background: transparent;
  color: #1a3a26;
  cursor: pointer;
  min-height: 44px;
  transition: background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  position: relative;
  overflow: hidden;
}

.cookie-btn:hover {
  background-color: rgba(51, 184, 98, 0.12);
  color: #1a6b3a;
}

.cookie-btn:focus-visible {
  outline: 2px solid #33B862;
  outline-offset: 2px;
}

.cookie-btn.primary {
  background: rgba(51, 184, 98, 0.14);
  border-color: #33B862;
}

.cookie-btn.primary:hover {
  background-color: rgba(51, 184, 98, 0.26);
}

.cookie-expand-toggle {
  background: none;
  border: none;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 13px;
  line-height: 1.5;
  color: #33B862;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px 8px;
  min-height: 44px;
  outline: none;
}

.cookie-expand-toggle:focus-visible {
  outline: 2px solid #33B862;
  outline-offset: 2px;
  border-radius: 4px;
}

.cookie-expand-panel {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px 16px;
  display: none;
}

.cookie-expand-panel.open {
  display: block;
}

.cookie-pref-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  border-top: 1px solid rgba(51, 184, 98, 0.16);
}

.cookie-pref-label {
  font-size: 13px;
  line-height: 1.7;
  color: #1a3a26;
  flex: 1 1 200px;
}

.cookie-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-toggle-input {
  width: 20px;
  height: 20px;
  accent-color: #33B862;
  cursor: pointer;
}

.cookie-toggle-label {
  font-size: 13px;
  line-height: 1.5;
  color: #2a3d2e;
  cursor: pointer;
}

.cookie-datasale-notice {
  font-size: 13px;
  line-height: 1.7;
  color: #4a3a1a;
  background: rgba(180, 180, 214, 0.16);
  border: 1px solid rgba(180, 180, 214, 0.36);
  border-radius: 4px;
  padding: 8px 16px;
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.pref-gear-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1999;
  width: 44px;
  height: 44px;
  border-radius: 42px;
  border: 1px solid rgba(51, 184, 98, 0.35);
  background: #fff;
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  pointer-events: auto;
}

.pref-gear-btn:hover {
  background-color: rgba(51, 184, 98, 0.10);
  box-shadow: 0 12px 48px -2px rgba(51, 184, 98, 0.14);
}

.pref-gear-btn:focus-visible {
  outline: 2px solid #33B862;
  outline-offset: 2px;
}

.pref-gear-btn svg {
  width: 20px;
  height: 20px;
  color: #33B862;
}

@media (max-width: 576px) {
  .cookie-bar-inner {
    padding: 16px;
  }

  .cookie-expand-panel {
    padding: 0 16px 16px;
  }

  .pref-gear-btn {
    bottom: 16px;
    right: 16px;
  }
}

.policy-main-ie {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 32px;
  color: #2a2a35;
  line-height: 1.7;
}

.policy-main-ie h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1b1b28;
  margin-bottom: 32px;
  margin-top: 0;
  padding-bottom: 24px;
  border-bottom: 2px solid #79C2C8;
}

.policy-main-ie h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1e1e2e;
  margin-top: 64px;
  margin-bottom: 24px;
}

.policy-main-ie h3 {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #33B862;
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: 700;
}

.policy-main-ie h4 {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #2a2a3e;
  margin-top: 24px;
  margin-bottom: 8px;
  font-weight: 700;
}

.policy-main-ie h5 {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #3a3a50;
  margin-top: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.policy-main-ie h6 {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #5a5a78;
  margin-top: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.policy-main-ie p {
  font-size: 14px;
  line-height: 1.7;
  color: #2e2e42;
  margin-top: 0;
  margin-bottom: 16px;
  max-width: 72ch;
}

.policy-main-ie em,
.policy-main-ie i {
  font-style: italic;
  color: #4a4a62;
}

.policy-main-ie a {
  color: #1a7a42;
  text-decoration: underline;
  text-decoration-color: rgba(51, 184, 98, 0.45);
  text-underline-offset: 3px;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-main-ie a:hover {
  color: #33B862;
  text-decoration-color: rgba(51, 184, 98, 0.9);
}

.policy-main-ie a:focus-visible {
  outline: 2px solid #33B862;
  outline-offset: 2px;
  border-radius: 4px;
}

.policy-main-ie hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, #79C2C8 0%, #B4B4D6 60%, transparent 100%);
  margin-top: 32px;
  margin-bottom: 32px;
  opacity: 0.55;
}

@media (max-width: 1200px) {
  .policy-main-ie {
    padding: 64px 24px;
  }

  .policy-main-ie h1 {
    font-size: 37px;
  }

  .policy-main-ie h2 {
    font-size: 37px;
  }
}

@media (max-width: 992px) {
  .policy-main-ie {
    padding: 32px 24px;
  }

  .policy-main-ie h1 {
    font-size: 37px;
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .policy-main-ie h2 {
    font-size: 37px;
    margin-top: 32px;
  }
}

@media (max-width: 576px) {
  .policy-main-ie {
    padding: 32px 16px;
  }

  .policy-main-ie h1 {
    font-size: 37px;
    letter-spacing: -0.02em;
  }

  .policy-main-ie h2 {
    font-size: 37px;
    margin-top: 32px;
    margin-bottom: 16px;
  }

  .policy-main-ie p {
    max-width: 100%;
  }
}

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

.clres .schema-data {
  display: none;
}

.clres .pg-band {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.clres .tb-wrap {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 560px;
  position: relative;
  background: #f4f8f6;
  overflow: hidden;
}

.clres .tb-img-col {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.clres .tb-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.18) brightness(0.96);
  transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.clres .tb-img-col:hover img {
  transform: scale(1.04);
}

.clres .tb-channel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(73deg, rgba(51, 184, 98, 0.22) 18%, rgba(121, 194, 200, 0.13) 100%);
  pointer-events: none;
}

.clres .tb-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.clres .tb-circles span {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(51, 184, 98, 0.13);
}

.clres .tb-circles span:nth-child(1) {
  width: 220px;
  height: 220px;
  top: -60px;
  right: -60px;
}

.clres .tb-circles span:nth-child(2) {
  width: 140px;
  height: 140px;
  bottom: 40px;
  left: 20px;
  border-color: rgba(121, 194, 200, 0.15);
}

.clres .tb-circles span:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 120px;
  left: 60px;
  border-color: rgba(180, 180, 214, 0.18);
}

.clres .tb-text-col {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 64px 64px 64px;
  position: relative;
}

.clres .tb-eyebrow {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #33B862;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.clres .tb-h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #1b2d22;
}

.clres .tb-h1 .outlined {
  -webkit-text-stroke: 2px #33B862;
  color: transparent;
}

.clres .tb-h1 .solid {
  color: #1b2d22;
}

.clres .tb-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: #2e4038;
  text-align: justified;
  max-width: 420px;
  margin-bottom: 32px;
}

.clres .tb-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.clres .btn-prim {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  padding: 16px 32px;
  border-radius: 4px;
  background: #33B862;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09);
}

.clres .btn-prim:hover {
  background: #28a055;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}

.clres .btn-prim:focus {
  outline: 3px solid #33B862;
  outline-offset: 2px;
}

.clres .btn-sec {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  padding: 16px 32px;
  border-radius: 4px;
  background: #e8f7ef;
  color: #1b2d22;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 0.25s cubic-bezier(0.0, 0, 0.2, 1), background 0.25s cubic-bezier(0.0, 0, 0.2, 1);
  box-shadow: 0 2px 2px -2px rgba(51, 184, 98, 0.06);
}

.clres .btn-sec:hover {
  background: #d2f0de;
  clip-path: polygon(3% 0, 97% 0, 100% 100%, 0 100%);
}

.clres .btn-sec:focus {
  outline: 3px solid #79C2C8;
  outline-offset: 2px;
}

.clres .metrics-sec {
  background: linear-gradient(73deg, #1b2d22 38%, #2e4a38 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.clres .metrics-sec::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(51, 184, 98, 0.07);
  top: -160px;
  right: -100px;
  pointer-events: none;
}

.clres .metrics-anim-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  animation: contrast-breathe 6s ease-in-out infinite;
}

@keyframes contrast-breathe {

  0%,
  100% {
    filter: contrast(1);
  }

  50% {
    filter: contrast(1.09);
  }
}

.clres .metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.clres .metric-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: left;
  border: 1px solid rgba(51, 184, 98, 0.18);
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09);
  transition: background 0.24s cubic-bezier(0.4, 0, 0.2, 1), transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.clres .metric-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}

.clres .metric-num {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #33B862;
  display: block;
  margin-bottom: 8px;
}

.clres .metric-label {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
}

.clres .metric-arrow {
  display: inline-block;
  width: 18px;
  height: 12px;
  margin-left: 6px;
  vertical-align: middle;
}

.clres .metric-arrow svg {
  width: 18px;
  height: 12px;
}

.clres .editorial-sec {
  padding: 64px 0;
  background: #fff;
}

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

.clres .ed-text-col {
  flex: 1 1 0;
}

.clres .ed-h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #1b2d22;
}

.clres .ed-h2 .w1 {
  color: #33B862;
}

.clres .ed-h2 .w2 {
  color: #1b2d22;
}

.clres .ed-para {
  font-size: 14px;
  line-height: 1.7;
  color: #2e4038;
  text-align: justify;
  margin-bottom: 16px;
}

.clres .ed-para .para-num {
  font-size: 13px;
  color: #33B862;
  font-weight: 700;
  margin-right: 8px;
}

.clres .ed-accent-arrow {
  display: inline-block;
  margin-left: 6px;
  color: #33B862;
}

.clres .ed-img-col {
  flex: 0 0 420px;
  position: relative;
}

.clres .ed-img-frame {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(51, 184, 98, 0.22);
  box-shadow: 0 12px 48px -2px rgba(51, 184, 98, 0.14);
}

.clres .ed-img-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.clres .ed-img-frame:hover img {
  transform: scale(1.05);
}

.clres .ed-caption {
  font-size: 13px;
  line-height: 1.5;
  color: #5a7a66;
  margin-top: 8px;
  padding-left: 4px;
}

.clres .featured-sec {
  padding: 64px 0;
  background: linear-gradient(73deg, #eaf6f0 12%, #e8f4f7 100%);
  position: relative;
}

.clres .featured-geo {
  position: absolute;
  top: -60px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(121, 194, 200, 0.09);
  pointer-events: none;
}

.clres .feat-header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 32px;
}

.clres .feat-h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1b2d22;
  max-width: 560px;
}

.clres .feat-h2 .w1 {
  color: #79C2C8;
}

.clres .feat-h2 .w2 {
  color: #1b2d22;
}

.clres .feat-sub {
  font-size: 14px;
  line-height: 1.7;
  color: #2e4038;
  max-width: 320px;
  text-align: right;
}

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

.clres .feat-card {
  background: #fff;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 2px 2px -2px rgba(51, 184, 98, 0.06), 0 4px 28px -2px rgba(51, 184, 98, 0.09);
  border: 1px solid rgba(180, 180, 214, 0.22);
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.clres .feat-card:hover {
  box-shadow: 0 12px 48px -2px rgba(51, 184, 98, 0.14);
  transform: translateY(-3px);
  clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}

.clres .feat-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf6f0;
  border-radius: 4px;
  box-shadow: inset 0 2px 6px rgba(51, 184, 98, 0.10);
}

.clres .feat-icon svg {
  width: 22px;
  height: 22px;
}

.clres .feat-card-h {
  font-size: 14px;
  line-height: 1.5;
  color: #1b2d22;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.clres .feat-card-p {
  font-size: 13px;
  line-height: 1.7;
  color: #3a5a46;
  text-align: justify;
}

.clres .feat-img-span {
  grid-column: span 2;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(51, 184, 98, 0.18);
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09);
  min-height: 220px;
}

.clres .feat-img-span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.clres .feat-img-span:hover img {
  transform: scale(1.04);
}

@media (max-width: 1200px) {
  .clres .tb-text-col {
    padding: 64px 32px 64px 32px;
  }

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

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

  .clres .feat-img-span {
    grid-column: span 2;
  }

  .clres .ed-img-col {
    flex: 0 0 320px;
  }
}

@media (max-width: 992px) {
  .clres .tb-wrap {
    flex-direction: column;
  }

  .clres .tb-img-col {
    flex: 0 0 320px;
    height: 320px;
  }

  .clres .tb-text-col {
    flex: 1 1 auto;
    padding: 32px 24px;
  }

  .clres .tb-h1 {
    font-size: 37px;
  }

  .clres .editorial-inner {
    flex-direction: column;
    gap: 32px;
  }

  .clres .ed-img-col {
    flex: 0 0 auto;
    width: 100%;
  }

  .clres .feat-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .clres .feat-sub {
    text-align: left;
    max-width: 100%;
  }

  .clres .feat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .clres .tb-h1 {
    font-size: 37px;
  }

  .clres .tb-text-col {
    padding: 24px 16px;
  }

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

  .clres .metric-num {
    font-size: 37px;
  }

  .clres .feat-grid {
    grid-template-columns: 1fr;
  }

  .clres .feat-img-span {
    grid-column: span 1;
  }

  .clres .pg-band {
    padding: 0 16px;
  }

  .clres .metrics-sec {
    padding: 32px 0;
  }

  .clres .editorial-sec {
    padding: 32px 0;
  }

  .clres .featured-sec {
    padding: 32px 0;
  }

  .clres .ed-h2 {
    font-size: 37px;
  }

  .clres .feat-h2 {
    font-size: 37px;
  }
}

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

.cu-pg .cu-wrap {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.cu-pg .reveal {
  opacity: 0;
  transform: translateY(24px) rotate(-1.2deg);
  animation: cu-reveal 0.26s cubic-bezier(0.0, 0, 0.2, 1) forwards;
}

@keyframes cu-reveal {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.cu-pg .reveal-delay-1 {
  animation-delay: 0.08s;
}

.cu-pg .reveal-delay-2 {
  animation-delay: 0.14s;
}

.cu-pg .reveal-delay-3 {
  animation-delay: 0.20s;
}

.cu-pg .reveal-delay-4 {
  animation-delay: 0.26s;
}

.cu-pg ::selection {
  background: rgba(51, 184, 98, 0.18);
  color: #111;
}

.cu-pg input::placeholder,
.cu-pg textarea::placeholder {
  color: rgba(22, 22, 40, 0.4);
}

.cu-pg .sch-data {
  display: none;
}

.cu-pg .pg-band {
  background: linear-gradient(73deg, #e8f7ee 18%, #d6eef4 72%, #e4e4f2 100%);
  padding-top: 64px;
  padding-bottom: 32px;
  position: relative;
}

.cu-pg .pg-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(73deg, rgba(51, 184, 98, 0.07) 0%, rgba(121, 194, 200, 0.09) 55%, rgba(180, 180, 214, 0.08) 100%);
  pointer-events: none;
}

.cu-pg .pg-band-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 64px;
}

.cu-pg .pg-band-text {
  flex: 1 1 0;
  min-width: 0;
}

.cu-pg .pg-band-deco {
  flex: 0 0 auto;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.cu-pg .pg-eyebrow {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #33B862;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cu-pg .pg-h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #111;
  margin-bottom: 24px;
}

.cu-pg .pg-h1 span {
  color: #33B862;
}

.cu-pg .pg-lead {
  font-size: 14px;
  line-height: 1.7;
  color: #2a2a3a;
  max-width: 520px;
  text-align: justified;
}

.cu-pg .deco-shape {
  width: 180px;
  height: 180px;
  clip-path: polygon(20% 0%, 80% 4%, 100% 30%, 96% 78%, 72% 100%, 18% 96%, 0% 68%, 4% 22%);
  background: linear-gradient(73deg, rgba(51, 184, 98, 0.22) 0%, rgba(121, 194, 200, 0.28) 100%);
  pointer-events: none;
}

.cu-pg .deco-line {
  width: 120px;
  height: 3px;
  background: linear-gradient(73deg, #33B862 30%, #79C2C8 100%);
  border-radius: 4px;
}

.cu-pg .deco-dot-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.cu-pg .deco-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #B4B4D6;
}

.cu-pg .deco-dot.active {
  background: #33B862;
  width: 24px;
}

.cu-pg .band-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #33B862;
  margin-left: 8px;
  vertical-align: middle;
}

.cu-pg .split-row {
  background: #fff;
  padding-top: 64px;
  padding-bottom: 64px;
  box-shadow: 0 2px 2px -2px rgba(51, 184, 98, 0.06);
}

.cu-pg .split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cu-pg .form-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cu-pg .form-h {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #111;
}

.cu-pg .form-h span {
  color: #79C2C8;
}

.cu-pg .form-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #2a2a3a;
  text-align: justify;
}

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

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

.cu-pg .field-lbl {
  font-size: 13px;
  line-height: 1.5;
  color: #2a2a3a;
  letter-spacing: 0.02em;
}

.cu-pg .field-lbl .req {
  color: #33B862;
  margin-left: 4px;
}

.cu-pg .cu-input {
  font-size: 14px;
  line-height: 1.5;
  color: #16162a;
  background: #f4f9f6;
  border: 1.5px solid rgba(51, 184, 98, 0.2);
  border-radius: 4px;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  box-shadow: inset 0 2px 6px rgba(51, 184, 98, 0.04);
}

.cu-pg .cu-input:focus {
  border-color: #33B862;
  box-shadow: 0 0 0 3px rgba(51, 184, 98, 0.13), inset 0 2px 6px rgba(51, 184, 98, 0.06);
}

.cu-pg .cu-textarea {
  resize: vertical;
  min-height: 120px;
}

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

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

.cu-pg .privacy-txt {
  font-size: 13px;
  line-height: 1.7;
  color: #2a2a3a;
}

.cu-pg .privacy-txt a {
  color: #33B862;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cu-pg .privacy-txt a:hover {
  color: #1e8a44;
}

.cu-pg .submit-btn {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  background: #33B862;
  border: none;
  border-radius: 4px;
  padding: 16px 32px;
  cursor: pointer;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  transition: background 0.24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1), clip-path 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09);
}

.cu-pg .submit-btn:hover {
  background: #259a50;
  clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
  box-shadow: 0 12px 48px -2px rgba(51, 184, 98, 0.14);
}

.cu-pg .submit-btn:focus {
  outline: 3px solid rgba(51, 184, 98, 0.4);
  outline-offset: 2px;
}

.cu-pg .submit-btn:active {
  background: #1e8a44;
}

.cu-pg .submit-btn .btn-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 0 4px 4px;
  transition: width 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.cu-pg .submit-btn:active .btn-fill {
  width: 100%;
}

.cu-pg .info-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.cu-pg .info-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09);
}

.cu-pg .info-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(51, 184, 98, 0.18);
  border-radius: 4px;
  pointer-events: none;
}

.cu-pg .info-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.cu-pg .info-img-wrap:hover .info-img {
  transform: scale(1.03);
}

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

.cu-pg .c-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #f4f9f6;
  border-radius: 4px;
  padding: 16px;
  box-shadow: 0 2px 2px -2px rgba(51, 184, 98, 0.06);
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.cu-pg .c-card:hover {
  background: #eaf6f0;
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09);
}

.cu-pg .c-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: linear-gradient(73deg, #33B862 0%, #79C2C8 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 2px 4px rgba(51, 184, 98, 0.12);
}

.cu-pg .c-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.cu-pg .c-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cu-pg .c-label {
  font-size: 13px;
  line-height: 1.5;
  color: #33B862;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cu-pg .c-val {
  font-size: 14px;
  line-height: 1.5;
  color: #16162a;
}

.cu-pg .c-val a {
  color: #16162a;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cu-pg .c-val a:hover {
  color: #33B862;
}

.cu-pg .detail-band {
  background: linear-gradient(73deg, #f0f7f4 0%, #e8f3f6 60%, #eeeef6 100%);
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
}

.cu-pg .detail-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #33B862 0%, #79C2C8 100%);
  pointer-events: none;
}

.cu-pg .detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.cu-pg .detail-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cu-pg .detail-h {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #111;
}

.cu-pg .detail-h span {
  color: #B4B4D6;
}

.cu-pg .detail-body {
  font-size: 14px;
  line-height: 1.7;
  color: #2a2a3a;
  text-align: justify;
}

.cu-pg .num-para {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}

.cu-pg .num-idx {
  font-size: 13px;
  line-height: 1.5;
  color: #33B862;
  font-weight: 700;
  flex-shrink: 0;
  width: 24px;
  padding-top: 2px;
}

.cu-pg .detail-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cu-pg .img2-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 48px -2px rgba(121, 194, 200, 0.14);
}

.cu-pg .img2-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(121, 194, 200, 0.22);
  border-radius: 4px;
  pointer-events: none;
}

.cu-pg .img2 {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.cu-pg .img2-wrap:hover .img2 {
  transform: scale(1.04);
}

.cu-pg .notch-block {
  position: relative;
  padding-left: 16px;
}

.cu-pg .notch-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: #79C2C8;
  border-radius: 4px;
}

.cu-pg .notch-txt {
  font-size: 13px;
  line-height: 1.7;
  color: #2a2a3a;
}

.cu-pg .char-hover {
  display: inline-block;
}

.cu-pg .char-hover .ch {
  display: inline-block;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cu-pg .char-hover:hover .ch:nth-child(1) {
  color: #33B862;
  transition-delay: 0s;
}

.cu-pg .char-hover:hover .ch:nth-child(2) {
  color: #33B862;
  transition-delay: 0.03s;
}

.cu-pg .char-hover:hover .ch:nth-child(3) {
  color: #33B862;
  transition-delay: 0.06s;
}

.cu-pg .char-hover:hover .ch:nth-child(4) {
  color: #33B862;
  transition-delay: 0.09s;
}

.cu-pg .char-hover:hover .ch:nth-child(5) {
  color: #33B862;
  transition-delay: 0.12s;
}

.cu-pg .char-hover:hover .ch:nth-child(6) {
  color: #33B862;
  transition-delay: 0.15s;
}

.cu-pg .char-hover:hover .ch:nth-child(7) {
  color: #33B862;
  transition-delay: 0.18s;
}

.cu-pg .char-hover:hover .ch:nth-child(8) {
  color: #33B862;
  transition-delay: 0.21s;
}

.cu-pg .char-hover:hover .ch:nth-child(9) {
  color: #33B862;
  transition-delay: 0.24s;
}

.cu-pg .char-hover:hover .ch:nth-child(10) {
  color: #33B862;
  transition-delay: 0.27s;
}

.cu-pg .addr-block {
  background: #fff;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cu-pg .addr-h {
  font-size: 13px;
  line-height: 1.5;
  color: #33B862;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.cu-pg .addr-line {
  font-size: 14px;
  line-height: 1.7;
  color: #16162a;
}

@media (max-width: 992px) {
  .cu-pg .pg-band-inner {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .cu-pg .pg-band-deco {
    display: none;
  }

  .cu-pg .split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cu-pg .detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cu-pg .pg-h1 {
    font-size: 37px;
  }
}

@media (max-width: 576px) {
  .cu-pg .cu-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cu-pg .pg-band {
    padding-top: 32px;
    padding-bottom: 16px;
  }

  .cu-pg .pg-h1 {
    font-size: 37px;
  }

  .cu-pg .split-row {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .cu-pg .detail-band {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .cu-pg .submit-btn {
    width: 100%;
    align-self: stretch;
  }
}

.srv-pg {
  background: #fff;
  overflow-x: clip;
  position: relative;
}

.srv-pg .lead-band {
  background: linear-gradient(73deg, #33B862 0%, #79C2C8 62%, #B4B4D6 100%);
  padding: 64px 24px 64px;
  position: relative;
  overflow: hidden;
}

.srv-pg .lead-band::before {
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.07) 0px, rgba(255, 255, 255, 0.07) 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0px, rgba(255, 255, 255, 0.07) 1px, transparent 1px, transparent 48px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.srv-pg .lead-band::after {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 42px;
  content: "";
  height: 320px;
  pointer-events: none;
  position: absolute;
  right: -64px;
  top: -80px;
  width: 320px;
}

.srv-pg .lead-inner {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  gap: 64px;
  margin: 0 auto;
  max-width: 1400px;
}

.srv-pg .lead-text {
  flex: 1 1 0;
}

.srv-pg .lead-eyebrow {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.srv-pg .lead-h1 {
  color: #fff;
  font-size: 52px;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 24px;
}

.srv-pg .lead-h1 span {
  color: rgba(255, 255, 255, 0.55);
}

.srv-pg .lead-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.7;
  max-width: 520px;
  text-align: justify;
}

.srv-pg .lead-visual {
  flex: 0 0 340px;
  position: relative;
}

.srv-pg .lead-img-frame {
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 12% 100%, 0 88%);
  overflow: hidden;
  transition: clip-path 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-pg .lead-img-frame:hover {
  clip-path: polygon(0 0, 94% 0, 100% 6%, 100% 100%, 6% 100%, 0 94%);
}

.srv-pg .lead-img-frame img {
  box-shadow: 0 2px 2px -2px rgba(51, 184, 98, 0.06), 0 4px 28px -2px rgba(51, 184, 98, 0.09);
  display: block;
  filter: brightness(0.88);
  height: 280px;
  object-fit: cover;
  transition: filter 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  width: 340px;
}

.srv-pg .lead-img-frame:hover img {
  filter: brightness(1.04);
}

.srv-pg .lead-badge {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  bottom: -16px;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  padding: 8px 16px;
  position: absolute;
  right: 8px;
}

.srv-pg .lead-badge strong {
  display: block;
  font-size: 37px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.srv-pg .svc-main {
  background: #fff;
  padding: 64px 24px;
}

.srv-pg .svc-inner {
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr 2fr;
  margin: 0 auto;
  max-width: 1400px;
}

.srv-pg .svc-aside {
  position: relative;
}

.srv-pg .svc-aside::before {
  background: linear-gradient(73deg, rgba(51, 184, 98, 0.08) 0%, rgba(121, 194, 200, 0.04) 100%);
  border-radius: 42px;
  content: "";
  height: 180px;
  left: -32px;
  pointer-events: none;
  position: absolute;
  top: -32px;
  width: 180px;
}

.srv-pg .aside-quote {
  border-radius: 4px;
  box-shadow: 0 2px 2px -2px rgba(51, 184, 98, 0.06), 0 4px 28px -2px rgba(51, 184, 98, 0.09), 0 12px 48px -2px rgba(51, 184, 98, 0.14);
  box-shadow: inset 0 1px 0 rgba(51, 184, 98, 0.12), 0 4px 28px -2px rgba(51, 184, 98, 0.09);
  overflow: hidden;
  padding: 32px 24px;
  position: relative;
}

.srv-pg .aside-quote::before {
  background: linear-gradient(73deg, #33B862 0%, #79C2C8 100%);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.srv-pg .quote-mark {
  color: #33B862;
  font-size: 52px;
  line-height: 1.2;
  opacity: 0.28;
}

.srv-pg .quote-text {
  color: #1e3a2a;
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.srv-pg .quote-attr {
  color: #33B862;
  font-size: 13px;
  line-height: 1.5;
}

.srv-pg .aside-img-wrap {
  border: 1px solid rgba(121, 194, 200, 0.28);
  border-radius: 4px;
  margin-top: 32px;
  overflow: hidden;
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-pg .aside-img-wrap:hover {
  box-shadow: 0 12px 48px -2px rgba(121, 194, 200, 0.14);
}

.srv-pg .aside-img-wrap img {
  display: block;
  filter: brightness(0.86);
  height: 220px;
  object-fit: cover;
  transition: filter 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.srv-pg .aside-img-wrap:hover img {
  filter: brightness(1.0);
}

.srv-pg .svc-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.srv-pg .svc-body-heading {
  color: #33B862;
  font-size: 37px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.srv-pg .svc-body-heading span {
  color: #1e3a2a;
}

.srv-pg .svc-cards {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.srv-pg .svc-card {
  animation: svc-shadow-build 0.26s cubic-bezier(0.0, 0, 0.2, 1) forwards;
  border: 1px solid rgba(180, 180, 214, 0.22);
  border-radius: 4px;
  box-shadow: 0 2px 2px -2px rgba(51, 184, 98, 0.06);
  padding: 24px;
  position: relative;
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), clip-path 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-pg .svc-card:hover {
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09), 0 12px 48px -2px rgba(51, 184, 98, 0.14);
  clip-path: inset(0px round 4px 42px 4px 4px);
}

@keyframes svc-shadow-build {
  from {
    box-shadow: 0 0 0 0 rgba(51, 184, 98, 0);
  }

  to {
    box-shadow: 0 2px 2px -2px rgba(51, 184, 98, 0.06);
  }
}

.srv-pg .svc-card-num {
  color: rgba(51, 184, 98, 0.22);
  font-size: 37px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  position: absolute;
  right: 16px;
  top: 8px;
}

.srv-pg .svc-card-h {
  color: #1e3a2a;
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 1.5;
  margin-bottom: 8px;
}

.srv-pg .svc-card-p {
  color: #2e4a3a;
  font-size: 13px;
  line-height: 1.7;
  text-align: justify;
}

.srv-pg .svc-card-p::after {
  color: #33B862;
  content: " →";
  font-style: normal;
}

.srv-pg .svc-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srv-pg .faq-h {
  color: #33B862;
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 1.5;
  margin-bottom: 8px;
}

.srv-pg .faq-h span {
  color: #1e3a2a;
}

.srv-pg .faq-item {
  border: 1px solid rgba(121, 194, 200, 0.2);
  border-radius: 4px;
}

.srv-pg .faq-toggle {
  display: none;
}

.srv-pg .faq-label {
  align-items: center;
  color: #1e3a2a;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  font-size: 14px;
  gap: 16px;
  justify-content: space-between;
  line-height: 1.5;
  padding: 16px;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.srv-pg .faq-label:hover {
  background: rgba(51, 184, 98, 0.04);
}

.srv-pg .faq-icon {
  flex-shrink: 0;
  height: 16px;
  position: relative;
  width: 16px;
}

.srv-pg .faq-icon::before,
.srv-pg .faq-icon::after {
  background: #33B862;
  border-radius: 4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 7px;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  width: 16px;
}

.srv-pg .faq-icon::after {
  transform: rotate(90deg);
}

.srv-pg .faq-panel {
  color: #2e4a3a;
  font-size: 13px;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  text-align: justify;
  transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1), padding 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-pg .faq-item.open .faq-panel {
  max-height: 320px;
  padding: 0 16px 16px;
}

.srv-pg .faq-item.open .faq-icon::after {
  opacity: 0;
  transform: rotate(0deg);
}

.srv-pg .svc-results-link {
  align-items: center;
  background: linear-gradient(73deg, #33B862 0%, #5aaa8a 100%);
  border: none;
  border-radius: 4px;
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09);
  color: #fff;
  display: inline-flex;
  flex-direction: row;
  font-size: 14px;
  gap: 8px;
  line-height: 1.5;
  padding: 16px 32px;
  position: relative;
  text-decoration: none;
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), clip-path 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-pg .svc-results-link:hover {
  box-shadow: 0 12px 48px -2px rgba(51, 184, 98, 0.14);
  clip-path: inset(0px round 4px 4px 42px 4px);
}

.srv-pg .svc-results-link:focus-visible {
  outline: 2px solid #33B862;
  outline-offset: 4px;
}

.srv-pg .link-arrow {
  font-size: 16px;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-pg .svc-results-link:hover .link-arrow {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .srv-pg .lead-inner {
    flex-direction: column;
    gap: 32px;
  }

  .srv-pg .lead-visual {
    flex: 0 0 auto;
  }

  .srv-pg .lead-img-frame img {
    width: 100%;
  }

  .srv-pg .svc-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .srv-pg .svc-cards {
    grid-template-columns: 1fr;
  }

  .srv-pg .lead-h1 {
    font-size: 37px;
  }
}

@media (max-width: 576px) {
  .srv-pg .lead-band {
    padding: 32px 16px;
  }

  .srv-pg .svc-main {
    padding: 32px 16px;
  }

  .srv-pg .lead-h1 {
    font-size: 37px;
  }

  .srv-pg .svc-body-heading {
    font-size: 37px;
  }

  .srv-pg .svc-results-link {
    padding: 16px 24px;
  }
}

.ab-us {
  background: #fff;
  overflow-x: clip;
  position: relative;
}

.ab-us .bg-flicker {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(73deg, rgba(51, 184, 98, 0.03) 30%, rgba(121, 194, 200, 0.04) 100%);
  animation: flicker-bg 7s infinite alternate;
  z-index: 0;
}

@keyframes flicker-bg {
  0% {
    opacity: 0.7;
  }

  18% {
    opacity: 1;
  }

  35% {
    opacity: 0.82;
  }

  60% {
    opacity: 0.95;
  }

  78% {
    opacity: 0.75;
  }

  100% {
    opacity: 1;
  }
}

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

.ab-us .pg-wrap.wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.ab-us .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ab-us .title-blk {
  position: relative;
  z-index: 1;
  padding: 64px 0 0;
}

.ab-us .title-blk .pg-wrap {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: stretch;
}

.ab-us .title-blk .img-col {
  flex: 0 0 52%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.ab-us .title-blk .img-col img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  border: 1.5px solid rgba(51, 184, 98, 0.18);
}

.ab-us .title-blk .img-col .tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(73deg, rgba(51, 184, 98, 0.13) 0%, rgba(121, 194, 200, 0.09) 100%);
  border-radius: 4px;
  pointer-events: none;
}

.ab-us .title-blk .img-col .bg-num {
  position: absolute;
  bottom: -16px;
  right: 8px;
  font-size: 160px;
  font-weight: 900;
  color: rgba(51, 184, 98, 0.07);
  line-height: 1.2;
  pointer-events: none;
  user-select: none;
  letter-spacing: -8px;
}

.ab-us .title-blk .txt-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 32px 0;
}

.ab-us .title-blk .txt-col .accent-line {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.ab-us .title-blk .txt-col .accent-line .dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #33B862;
  flex-shrink: 0;
}

.ab-us .title-blk .txt-col .accent-line span {
  font-size: 13px;
  line-height: 1.5;
  color: #33B862;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ab-us .title-blk .txt-col h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0;
}

.ab-us .title-blk .txt-col h1 .first-word {
  color: #33B862;
}

.ab-us .title-blk .txt-col h1 .rest {
  color: #1a2e22;
}

.ab-us .title-blk .txt-col .lead-p {
  font-size: 14px;
  line-height: 1.7;
  color: #2c3e32;
  text-align: justify;
  margin: 0;
}

.ab-us .title-blk .txt-col .arrow-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #33B862;
  font-weight: 600;
}

.ab-us .title-blk .txt-col .arrow-accent .arr {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ab-us .title-blk .txt-col .arrow-accent .arr svg {
  width: 18px;
  height: 18px;
}

.ab-us .title-blk-divider {
  position: relative;
  height: 48px;
  overflow: hidden;
  margin-top: -1px;
}

.ab-us .title-blk-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ab-us .identity-sec {
  position: relative;
  z-index: 1;
  background: linear-gradient(73deg, #f2faf5 0%, #eaf6f7 100%);
  padding: 64px 0 64px;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 3% 100%, 0 96%);
  margin-bottom: 32px;
}

.ab-us .identity-sec .pg-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.ab-us .identity-sec .id-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ab-us .identity-sec .id-main .side-line-head {
  position: relative;
  padding-left: 16px;
}

.ab-us .identity-sec .id-main .side-line-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #33B862 0%, #79C2C8 100%);
  border-radius: 4px;
}

.ab-us .identity-sec .id-main .side-line-head h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.ab-us .identity-sec .id-main .side-line-head h2 .fw {
  color: #33B862;
}

.ab-us .identity-sec .id-main .side-line-head h2 .rw {
  color: #1a2e22;
}

.ab-us .identity-sec .id-main .body-paras {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ab-us .identity-sec .id-main .body-paras .np {
  font-size: 14px;
  line-height: 1.7;
  color: #2c3e32;
  text-align: justify;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.ab-us .identity-sec .id-main .body-paras .np .pnum {
  font-size: 13px;
  line-height: 1.7;
  color: #33B862;
  font-weight: 700;
  flex-shrink: 0;
  min-width: 20px;
}

.ab-us .identity-sec .id-main .body-paras .np .ptxt {
  flex: 1;
}

.ab-us .identity-sec .id-narrow {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ab-us .identity-sec .id-narrow .stat-card {
  background: #fff;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.ab-us .identity-sec .id-narrow .stat-card:hover {
  box-shadow: 0 12px 48px -2px rgba(51, 184, 98, 0.14);
  transform: translateY(-2px);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
}

.ab-us .identity-sec .id-narrow .stat-card .sc-num {
  font-size: 37px;
  line-height: 1.2;
  color: #33B862;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ab-us .identity-sec .id-narrow .stat-card .sc-label {
  font-size: 13px;
  line-height: 1.5;
  color: #2c3e32;
}

.ab-us .identity-sec .id-narrow2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ab-us .identity-sec .id-narrow2 .img-frame {
  border-radius: 4px;
  overflow: hidden;
  border: 1.5px solid rgba(121, 194, 200, 0.22);
  box-shadow: 0 2px 2px -2px rgba(121, 194, 200, 0.06);
}

.ab-us .identity-sec .id-narrow2 .img-frame img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.ab-us .identity-sec .id-narrow2 .snippet-block {
  background: #1a2e22;
  border-radius: 4px;
  padding: 16px;
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09), inset 0 1px 4px rgba(51, 184, 98, 0.08);
}

.ab-us .identity-sec .id-narrow2 .snippet-block .sn-label {
  font-size: 13px;
  line-height: 1.5;
  color: #79C2C8;
  margin-bottom: 8px;
}

.ab-us .identity-sec .id-narrow2 .snippet-block pre {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #B4B4D6;
  white-space: pre-wrap;
  word-break: break-word;
}

.ab-us .identity-sec .id-narrow2 .snippet-block pre .kw {
  color: #33B862;
}

.ab-us .identity-sec .id-narrow2 .snippet-block pre .val {
  color: #79C2C8;
}

.ab-us .team-sec {
  position: relative;
  z-index: 1;
  padding: 64px 0 64px;
  background: #fff;
}

.ab-us .team-sec .pg-wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.ab-us .team-sec .ts-top {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: center;
}

.ab-us .team-sec .ts-top .ts-imgs {
  flex: 0 0 48%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ab-us .team-sec .ts-top .ts-imgs .img-item {
  border-radius: 4px;
  overflow: hidden;
  border: 1.5px solid rgba(180, 180, 214, 0.22);
  box-shadow: 0 2px 2px -2px rgba(121, 194, 200, 0.06);
  transition: box-shadow 0.25s cubic-bezier(0.0, 0, 0.2, 1);
}

.ab-us .team-sec .ts-top .ts-imgs .img-item:hover {
  box-shadow: 0 12px 48px -2px rgba(121, 194, 200, 0.14);
}

.ab-us .team-sec .ts-top .ts-imgs .img-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.ab-us .team-sec .ts-top .ts-imgs .img-item.tall img {
  height: 376px;
}

.ab-us .team-sec .ts-top .ts-txt {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ab-us .team-sec .ts-top .ts-txt h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.ab-us .team-sec .ts-top .ts-txt h2 .fw {
  color: #79C2C8;
}

.ab-us .team-sec .ts-top .ts-txt h2 .rw {
  color: #1a2e22;
}

.ab-us .team-sec .ts-top .ts-txt .body-p {
  font-size: 14px;
  line-height: 1.7;
  color: #2c3e32;
  text-align: justify;
  margin: 0;
}

.ab-us .team-sec .ts-top .ts-txt .np {
  font-size: 14px;
  line-height: 1.7;
  color: #2c3e32;
  text-align: justify;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.ab-us .team-sec .ts-top .ts-txt .np .pnum {
  font-size: 13px;
  line-height: 1.7;
  color: #79C2C8;
  font-weight: 700;
  flex-shrink: 0;
  min-width: 20px;
}

.ab-us .team-sec .ts-top .ts-txt .np .ptxt {
  flex: 1;
}

.ab-us .team-sec .ts-vals {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ab-us .team-sec .ts-vals h3 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.ab-us .team-sec .ts-vals h3 .fw {
  color: #B4B4D6;
}

.ab-us .team-sec .ts-vals h3 .rw {
  color: #1a2e22;
}

.ab-us .team-sec .ts-vals .vals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ab-us .team-sec .ts-vals .val-item {
  background: linear-gradient(73deg, #f2faf5 0%, #eaf6f7 100%);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 2px -2px rgba(51, 184, 98, 0.06);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-us .team-sec .ts-vals .val-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(73deg, rgba(51, 184, 98, 0.09) 0%, rgba(121, 194, 200, 0.09) 100%);
  transition: height 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.ab-us .team-sec .ts-vals .val-item:hover::after {
  height: 100%;
}

.ab-us .team-sec .ts-vals .val-item:hover {
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09);
}

.ab-us .team-sec .ts-vals .val-item .vi-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.ab-us .team-sec .ts-vals .val-item h4 {
  font-size: 14px;
  line-height: 1.5;
  color: #1a2e22;
  margin: 0;
  font-weight: 700;
}

.ab-us .team-sec .ts-vals .val-item .vi-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #2c3e32;
  margin: 0;
}

@media (max-width: 1200px) {
  .ab-us .title-blk .pg-wrap {
    gap: 32px;
  }

  .ab-us .title-blk .txt-col h1 {
    font-size: 37px;
  }

  .ab-us .identity-sec .pg-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .ab-us .identity-sec .id-narrow2 {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 24px;
  }

  .ab-us .identity-sec .id-narrow2 .img-frame {
    flex: 1;
  }

  .ab-us .identity-sec .id-narrow2 .snippet-block {
    flex: 1;
  }
}

@media (max-width: 992px) {
  .ab-us .title-blk .pg-wrap {
    flex-direction: column;
    gap: 24px;
  }

  .ab-us .title-blk .img-col {
    flex: none;
  }

  .ab-us .title-blk .img-col img {
    height: 320px;
  }

  .ab-us .identity-sec .pg-wrap {
    grid-template-columns: 1fr;
  }

  .ab-us .identity-sec .id-narrow2 {
    flex-direction: column;
  }

  .ab-us .team-sec .ts-top {
    flex-direction: column;
    gap: 32px;
  }

  .ab-us .team-sec .ts-top .ts-imgs {
    flex: none;
    width: 100%;
  }

  .ab-us .team-sec .ts-vals .vals-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .ab-us .title-blk {
    padding: 32px 0 0;
  }

  .ab-us .title-blk .txt-col h1 {
    font-size: 37px;
  }

  .ab-us .identity-sec {
    padding: 32px 0 48px;
  }

  .ab-us .team-sec {
    padding: 32px 0 32px;
  }

  .ab-us .team-sec .pg-wrap {
    gap: 32px;
  }

  .ab-us .team-sec .ts-top .ts-imgs {
    grid-template-columns: 1fr;
  }

  .ab-us .team-sec .ts-top .ts-imgs .img-item.tall img {
    height: 220px;
  }

  .ab-us .team-sec .ts-vals .vals-grid {
    grid-template-columns: 1fr;
  }

  .ab-us .identity-sec .id-narrow2 {
    flex-direction: column;
  }
}

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

.prm-idx .num-par {
  counter-reset: par-count;
}

.prm-idx .num-par p {
  counter-increment: par-count;
  position: relative;
  padding-left: 24px;
}

.prm-idx .num-par p::before {
  content: counter(par-count, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #33B862;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.prm-idx .accent-arrow {
  display: inline-block;
  width: 18px;
  height: 14px;
  margin-left: 8px;
  vertical-align: middle;
  flex-shrink: 0;
}

.prm-idx .divider-accent {
  width: 64px;
  height: 2px;
  background: #33B862;
  margin-bottom: 24px;
}

.prm-idx .divider-sec {
  width: 48px;
  height: 2px;
  background: #79C2C8;
  margin-bottom: 24px;
}

.prm-idx .divider-ter {
  width: 56px;
  height: 2px;
  background: #B4B4D6;
  margin-bottom: 24px;
}

.prm-idx .img-frame {
  border: 1.5px solid transparent;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
  overflow: hidden;
}

.prm-idx .img-frame:hover {
  border-color: #33B862;
}

.prm-idx .img-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prm-idx .read-dir-arrow {
  position: absolute;
  opacity: 0.13;
  pointer-events: none;
}

.prm-idx .split-h span.col-a {
  color: #33B862;
}

.prm-idx .split-h span.col-b {
  color: #1b2d22;
}

.prm-idx .split-h-b span.col-a {
  color: #79C2C8;
}

.prm-idx .split-h-b span.col-b {
  color: #1b2d22;
}

.prm-idx .split-h-c span.col-a {
  color: #B4B4D6;
}

.prm-idx .split-h-c span.col-b {
  color: #1b2d22;
}

.prm-idx .tblock {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 32px;
  padding-bottom: 64px;
  position: relative;
}

.prm-idx .tblock-text {
  padding: 64px 64px 64px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  position: relative;
}

.prm-idx .tblock-text h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0;
  color: #1b2d22;
}

.prm-idx .tblock-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #2c3e30;
  margin: 0;
  text-align: justify;
}

.prm-idx .tblock-text .tagline {
  font-size: 13px;
  line-height: 1.5;
  color: #33B862;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
}

.prm-idx .tblock-img {
  position: relative;
  min-height: 520px;
}

.prm-idx .tblock-img .img-frame {
  position: absolute;
  inset: 0;
  border-radius: 4px;
}

.prm-idx .tblock-img .img-frame img {
  filter: blur(0px);
}

.prm-idx .tblock-img .img-frame img.dof {
  object-position: center 30%;
}

.prm-idx .tblock-deco {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  pointer-events: none;
  z-index: 0;
}

.prm-idx .tblock-deco-shape {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 180px;
  height: 180px;
  border-radius: 42px;
  background: linear-gradient(73deg, rgba(51, 184, 98, 0.10) 30%, rgba(121, 194, 200, 0.07) 100%);
  pointer-events: none;
}

.prm-idx .tblock-deco-shape2 {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 80px;
  height: 80px;
  border-radius: 42px;
  background: linear-gradient(73deg, rgba(180, 180, 214, 0.13) 0%, rgba(121, 194, 200, 0.09) 100%);
  pointer-events: none;
}

.prm-idx .commit-sec {
  background: linear-gradient(73deg, #f2fdf6 30%, #eaf7f8 100%);
  padding: 64px 0;
}

.prm-idx .commit-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: start;
}

.prm-idx .commit-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.prm-idx .commit-left h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
}

.prm-idx .commit-img-pair {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.prm-idx .commit-img-pair .img-frame {
  height: 200px;
}

.prm-idx .commit-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.prm-idx .commit-right p {
  font-size: 14px;
  line-height: 1.7;
  color: #1b2d22;
  margin: 0;
  text-align: justify;
}

.prm-idx .commit-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.prm-idx .pillar {
  background: #fff;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prm-idx .pillar-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.prm-idx .pillar h5 {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 0;
  color: #1b2d22;
}

.prm-idx .pillar p {
  font-size: 13px;
  line-height: 1.7;
  color: #2c3e30;
  margin: 0;
  text-align: left;
}

.prm-idx .clients-sec {
  padding: 64px 0;
  background: #fff;
  position: relative;
}

.prm-idx .clients-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.prm-idx .clients-head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
  margin-bottom: 32px;
}

.prm-idx .clients-head h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
  flex: 0 0 auto;
  max-width: 340px;
}

.prm-idx .clients-head p {
  font-size: 14px;
  line-height: 1.7;
  color: #2c3e30;
  margin: 0;
  text-align: justify;
  flex: 1;
  padding-top: 8px;
}

.prm-idx .client-stories {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.prm-idx .story-card {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 2px -2px rgba(51, 184, 98, 0.06), 0 4px 28px -2px rgba(51, 184, 98, 0.09);
  display: flex;
  flex-direction: column;
}

.prm-idx .story-img {
  height: 220px;
  flex-shrink: 0;
}

.prm-idx .story-img .img-frame {
  height: 100%;
  border-radius: 0;
}

.prm-idx .story-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  background: #fff;
}

.prm-idx .story-name {
  font-size: 13px;
  line-height: 1.5;
  color: #33B862;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.prm-idx .story-body h4 {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 0;
  color: #1b2d22;
}

.prm-idx .story-body p {
  font-size: 13px;
  line-height: 1.7;
  color: #2c3e30;
  margin: 0;
  text-align: justify;
}

.prm-idx .story-outcome {
  margin-top: 8px;
  padding: 8px 16px;
  background: linear-gradient(73deg, #f2fdf6 30%, #eaf7f8 100%);
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.5;
  color: #1b2d22;
  font-weight: 600;
}

.prm-idx .limits-sec {
  background: linear-gradient(73deg, #eaf7f8 20%, #f4f4f9 100%);
  padding: 64px 0;
  position: relative;
}

.prm-idx .limits-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.prm-idx .limits-img-col {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prm-idx .limits-img-col .img-frame {
  height: 320px;
}

.prm-idx .limits-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.prm-idx .limits-text h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
}

.prm-idx .limits-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #1b2d22;
  margin: 0;
  text-align: justify;
}

.prm-idx .limit-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prm-idx .limit-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  box-shadow: 0 2px 2px -2px rgba(121, 194, 200, 0.06);
}

.prm-idx .limit-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.prm-idx .limit-item p {
  font-size: 13px;
  line-height: 1.7;
  color: #1b2d22;
  margin: 0;
  text-align: left;
}

.prm-idx .objection-sec {
  padding: 64px 0;
  background: #fff;
  position: relative;
}

.prm-idx .objection-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.prm-idx .objection-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: center;
}

.prm-idx .objection-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.prm-idx .objection-text h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
}

.prm-idx .objection-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #1b2d22;
  margin: 0;
  text-align: justify;
}

.prm-idx .objection-img {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prm-idx .objection-img .img-frame {
  height: 360px;
}

.prm-idx .q-block {
  background: linear-gradient(73deg, #f2fdf6 30%, #eaf7f8 100%);
  border-radius: 42px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 48px -2px rgba(51, 184, 98, 0.14);
}

.prm-idx .q-block .q-label {
  font-size: 13px;
  line-height: 1.5;
  color: #33B862;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.prm-idx .q-block blockquote {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #1b2d22;
  font-style: italic;
}

.prm-idx .scale-sec {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}

.prm-idx .scale-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/post-thumbnail-19_20260711.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.45);
  transform: scale(1.08);
  pointer-events: none;
}

.prm-idx .scale-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.prm-idx .scale-inner h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
  color: #fff;
}

.prm-idx .scale-inner h2 span.col-a {
  color: #33B862;
}

.prm-idx .scale-inner h2 span.col-b {
  color: #fff;
}

.prm-idx .scale-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.prm-idx .metric {
  background: rgba(255, 255, 255, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09);
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.prm-idx .metric:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(51, 184, 98, 0.55);
}

.prm-idx .metric .met-num {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #33B862;
  font-weight: 800;
}

.prm-idx .metric .met-label {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.prm-idx .metric .met-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

.prm-idx .scale-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.prm-idx .scale-text p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  text-align: justify;
}

@keyframes colorwash {
  0% {
    background-position: 0% 50%;
  }

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

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

.prm-idx .commit-sec {
  background-size: 200% 200%;
  animation: colorwash 14s ease-in-out infinite;
}

.prm-idx .btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #33B862;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09);
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.26s cubic-bezier(0.0, 0, 0.2, 1);
  text-decoration: none;
}

.prm-idx .btn-primary::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: rgba(255, 255, 255, 0.18);
  transition: width 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.prm-idx .btn-primary:hover {
  background: #2aa055;
  box-shadow: 0 12px 48px -2px rgba(51, 184, 98, 0.14);
  clip-path: inset(0 0 0 0 round 4px);
}

.prm-idx .btn-primary:active::after {
  width: 100%;
}

.prm-idx .btn-primary:focus-visible {
  outline: 2px solid #33B862;
  outline-offset: 3px;
}

@media (max-width: 1200px) {
  .prm-idx .tblock {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 48px;
  }

  .prm-idx .tblock-text {
    padding: 48px 32px 48px 24px;
  }

  .prm-idx .tblock-text h1 {
    font-size: 37px;
  }

  .prm-idx .scale-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .prm-idx .client-stories {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .prm-idx .tblock {
    grid-template-columns: 1fr;
  }

  .prm-idx .tblock-img {
    min-height: 320px;
    order: -1;
  }

  .prm-idx .tblock-text {
    padding: 32px 24px;
  }

  .prm-idx .commit-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .prm-idx .commit-img-pair {
    flex-direction: row;
  }

  .prm-idx .commit-img-pair .img-frame {
    flex: 1;
    height: 160px;
  }

  .prm-idx .clients-head {
    flex-direction: column;
    gap: 16px;
  }

  .prm-idx .clients-head h2 {
    max-width: none;
  }

  .prm-idx .client-stories {
    grid-template-columns: 1fr;
  }

  .prm-idx .limits-inner {
    flex-direction: column;
    gap: 32px;
  }

  .prm-idx .limits-img-col {
    flex: none;
    width: 100%;
  }

  .prm-idx .objection-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .prm-idx .scale-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .prm-idx .scale-text {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .prm-idx .tblock-text h1 {
    font-size: 37px;
  }

  .prm-idx .commit-pillars {
    grid-template-columns: 1fr;
  }

  .prm-idx .scale-metrics {
    grid-template-columns: 1fr;
  }

  .prm-idx .commit-img-pair {
    flex-direction: column;
  }

  .prm-idx .limits-img-col {
    flex: none;
  }

  .prm-idx .limits-img-col .img-frame {
    height: 220px;
  }

  .prm-idx .tblock-text {
    padding: 24px 16px;
  }

  .prm-idx .commit-inner,
  .prm-idx .clients-inner,
  .prm-idx .limits-inner,
  .prm-idx .objection-inner,
  .prm-idx .scale-inner {
    padding: 0 16px;
  }

  .prm-idx .scale-metrics {
    gap: 16px;
  }
}

.success-pg {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  background: linear-gradient(73deg, #f4fdf7 38%, #eaf6f7 100%);
}

.success-pg .success-wrap {
  max-width: 1400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.success-pg .icon-ring {
  width: 80px;
  height: 80px;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09), 0 12px 48px -2px rgba(51, 184, 98, 0.14);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.success-pg .icon-ring svg {
  display: block;
}

.success-pg .success-card {
  background: #fff;
  border-radius: 42px;
  box-shadow: 0 2px 2px -2px rgba(51, 184, 98, 0.06), 0 4px 28px -2px rgba(51, 184, 98, 0.09), 0 12px 48px -2px rgba(51, 184, 98, 0.14);
  padding: 64px;
  max-width: 620px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  border: 1.5px solid rgba(51, 184, 98, 0.13);
  box-sizing: border-box;
}

.success-pg .success-card .card-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.success-pg .success-card .success-label {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #33B862;
  text-transform: uppercase;
  font-weight: 600;
}

.success-pg .success-card .success-heading {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  color: #1b2a22;
}

.success-pg .success-card .success-heading span {
  color: #33B862;
}

.success-pg .success-card .success-body {
  font-size: 14px;
  line-height: 1.7;
  color: #2e3d35;
  margin: 0;
  text-align: justify;
}

.success-pg .success-card .divider-line {
  width: 100%;
  height: 1.5px;
  background: linear-gradient(73deg, rgba(51, 184, 98, 0.18) 38%, rgba(121, 194, 200, 0.13) 100%);
  border-radius: 4px;
}

.success-pg .success-card .meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #4a6155;
}

.success-pg .success-card .meta-row .dot {
  width: 6px;
  height: 6px;
  border-radius: 42px;
  background: #79C2C8;
  flex-shrink: 0;
  display: inline-block;
}

.success-pg .success-card .arrow-accent {
  display: inline-block;
  margin-left: 6px;
  color: #33B862;
  font-style: normal;
}

.success-pg .back-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #33B862;
  color: #fff;
  border-radius: 4px;
  border: none;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 28px -2px rgba(51, 184, 98, 0.09);
  transition: background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.0, 0, 0.2, 1), clip-path 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  clip-path: inset(0 0 0 0 round 4px);
  position: relative;
  overflow: hidden;
}

.success-pg .back-btn:hover {
  background: #2aa354;
  box-shadow: 0 12px 48px -2px rgba(51, 184, 98, 0.14);
  clip-path: inset(-1px -2px -1px -2px round 4px);
}

.success-pg .back-btn:focus-visible {
  outline: 2.5px solid #33B862;
  outline-offset: 3px;
}

.success-pg .back-btn:active {
  background: #238f49;
}

.success-pg .back-btn svg {
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .success-pg {
    padding: 32px 16px;
  }

  .success-pg .success-card {
    padding: 32px 24px;
    border-radius: 42px;
    gap: 16px;
  }

  .success-pg .success-card .success-heading {
    font-size: 37px;
  }
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
