html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

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

.pg-head {
  position: relative;
  background: linear-gradient(160deg, #224B37 0%, #36665C 55%, #58A975 100%);
  padding: 0 0 80px;
  overflow: hidden;
}

.pg-head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #ffffff);
  pointer-events: none;
}

.pg-head-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 24px 24px;
}

.brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a3326;
  border-radius: 10px 10px 6px 10px;
  padding: 8px;
  box-shadow: 0 4px 20px 0 rgba(34, 75, 55, 0.10), 0 2px 6px 0 rgba(34, 75, 55, 0.08);
  border: 1.5px solid rgba(88, 169, 117, 0.35);
  width: 80px;
  height: 80px;
}

.logo-box img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  display: block;
}

.brand-label {
  font-family: 'Inconsolata', monospace;
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-tagline {
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: center;
  max-width: 360px;
}

.pg-nav {
  display: flex;
  justify-content: center;
  padding: 0 24px 16px;
  position: relative;
  z-index: 10;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 8px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.nav-list li {
  display: flex;
}

.nav-link {
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.1;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.nav-link:focus {
  outline: 2px solid #58A975;
  outline-offset: 2px;
}

.nav-link.active {
  background: #ffffff;
  color: #224B37;
}

@media (max-width: 640px) {
  .pg-head {
    padding: 0 0 64px;
  }

  .nav-list {
    gap: 8px;
    padding: 8px;
  }

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

  .brand-label {
    font-size: 17px;
  }
}

.pg-foot {
  background-color: #1c3529;
  color: #ffffff;
  padding: 40px 0 24px;
  font-family: 'Inconsolata', monospace;
}

.foot-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

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

.foot-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #132b1f;
  border-radius: 10px 6px 10px 10px;
  padding: 8px;
  box-shadow: 0 2px 6px 0 rgba(34, 75, 55, 0.08);
  border: 1.5px solid rgba(88, 169, 117, 0.25);
  width: 80px;
  height: 80px;
}

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

.foot-name {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.1;
}

.foot-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.foot-contact-item {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.20s cubic-bezier(0.4, 0, 0.2, 1);
}

a.foot-contact-item:hover {
  color: #58A975;
}

a.foot-contact-item:focus {
  outline: 2px solid #58A975;
  outline-offset: 2px;
}

.foot-contact-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.foot-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

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

.foot-nav-link {
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  min-height: 44px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: color 0.24s cubic-bezier(0.0, 0, 0.2, 1), border-color 0.24s cubic-bezier(0.0, 0, 0.2, 1), background-color 0.24s cubic-bezier(0.0, 0, 0.2, 1);
  line-height: 1.4;
}

.foot-nav-link:hover {
  color: #ffffff;
  border-color: rgba(88, 169, 117, 0.40);
  background-color: rgba(88, 169, 117, 0.08);
}

.foot-nav-link:focus {
  outline: 2px solid #58A975;
  outline-offset: 2px;
}

.foot-copy {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.4;
  text-align: right;
}

.foot-divider {
  max-width: 1500px;
  margin: 24px auto 0;
  padding: 0 40px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
  .foot-inner {
    padding: 0 24px;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .foot-inner {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 40px;
  }

  .foot-right {
    align-items: flex-start;
  }

  .foot-nav-list {
    align-items: flex-start;
  }

  .foot-copy {
    text-align: left;
  }

  .foot-divider {
    padding: 0 16px;
  }
}

.legal-data {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
  color: #2a2a2a;
  background: #ffffff;
}

.legal-data h1 {
  font-size: 50px;
  line-height: 1.1;
  color: #224B37;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid #58A975;
}

.legal-data h2 {
  font-size: 38px;
  line-height: 1.1;
  color: #224B37;
  margin-top: 80px;
  margin-bottom: 24px;
}

.legal-data h3 {
  font-size: 21px;
  line-height: 1.4;
  color: #36665C;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-data h4 {
  font-size: 17px;
  line-height: 1.4;
  color: #36665C;
  margin-top: 40px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-data h5 {
  font-size: 15px;
  line-height: 1.4;
  color: #224B37;
  margin-top: 24px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal-data h6 {
  font-size: 13px;
  line-height: 1.4;
  color: #36665C;
  margin-top: 24px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal-data p {
  font-size: 17px;
  line-height: 1.7;
  color: #2a2a2a;
  margin-bottom: 24px;
  max-width: 76ch;
}

.legal-data ul,
.legal-data ol {
  margin-bottom: 24px;
  padding-left: 24px;
  max-width: 76ch;
}

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

.legal-data ul li {
  position: relative;
  padding-left: 24px;
  font-size: 17px;
  line-height: 1.7;
  color: #2a2a2a;
  margin-bottom: 8px;
}

.legal-data ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 44px;
  background: #58A975;
}

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

.legal-data ol li {
  position: relative;
  padding-left: 40px;
  font-size: 17px;
  line-height: 1.7;
  color: #2a2a2a;
  margin-bottom: 8px;
  counter-increment: policy-counter;
}

.legal-data ol li::before {
  content: counter(policy-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #224B37;
  color: #ffffff;
  font-size: 13px;
  line-height: 24px;
  text-align: center;
  font-weight: 700;
}

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

.legal-data strong,
.legal-data b {
  font-weight: 700;
  color: #224B37;
}

.legal-data hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, #58A975 0%, rgba(88, 169, 117, 0.08) 100%);
  margin-top: 80px;
  margin-bottom: 80px;
}

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

  .legal-data h1 {
    font-size: 38px;
  }

  .legal-data h2 {
    font-size: 21px;
  }
}

@media (max-width: 640px) {
  .legal-data {
    padding: 40px 16px;
  }

  .legal-data h1 {
    font-size: 38px;
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .legal-data h2 {
    font-size: 21px;
    margin-top: 40px;
    margin-bottom: 16px;
  }

  .legal-data h3 {
    font-size: 17px;
    margin-top: 24px;
  }

  .legal-data h4,
  .legal-data h5,
  .legal-data h6 {
    margin-top: 24px;
  }

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

  .legal-data hr {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.srv {
  background: #fff;
  overflow-x: clip;
  width: 100%;
}

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

.srv .t-block {
  position: relative;
  background: #224B37;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 0;
}

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

.srv .t-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.srv .t-circles span {
  position: absolute;
  border-radius: 44px;
  background: radial-gradient(circle at center, rgba(88, 169, 117, 0.18) 0%, rgba(88, 169, 117, 0) 70%);
}

.srv .t-circles span:nth-child(1) {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
}

.srv .t-circles span:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: -60px;
  left: 200px;
}

.srv .t-circles span:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 40px;
  right: 380px;
}

.srv .t-text {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  padding: 80px 40px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.srv .t-label {
  display: inline-block;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #58A975;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid rgba(88, 169, 117, 0.35);
  border-radius: 44px;
  width: fit-content;
}

.srv .t-h1 {
  font-size: 50px;
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
  margin: 0;
}

.srv .t-h1 em {
  font-style: normal;
  display: block;
  color: #58A975;
}

.srv .t-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0;
}

.srv .t-strip {
  width: 6px;
  background: linear-gradient(180deg, #58A975 0%, #36665C 60%, #224B37 100%);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.srv .t-img-col {
  position: relative;
  z-index: 1;
  width: 340px;
  flex-shrink: 0;
  overflow: hidden;
}

.srv .t-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.7) contrast(1.1) brightness(0.9);
  transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv .t-img-col:hover img {
  transform: scale(1.04);
}

.srv .t-img-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 75, 55, 0.55) 0%, rgba(88, 169, 117, 0.18) 100%);
  pointer-events: none;
}

.srv .svc-area {
  background: #fff;
  padding: 80px 0 80px;
  position: relative;
}

.srv .svc-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #58A975 0%, #36665C 100%);
  border-right: 1px solid rgba(88, 169, 117, 0.2);
}

.srv .svc-head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 40px;
}

.srv .svc-head-left {
  flex: 0 0 auto;
  width: 220px;
}

.srv .svc-aside {
  font-size: 13px;
  line-height: 1.7;
  color: #36665C;
  border-left: 2px solid #58A975;
  border-right: none;
  padding: 8px 0 8px 16px;
  margin: 0;
}

.srv .svc-head-right {
  flex: 1 1 0;
}

.srv .svc-h2 {
  font-size: 38px;
  line-height: 1.1;
  color: #224B37;
  font-weight: 800;
  margin: 0 0 16px;
}

.srv .svc-intro {
  font-size: 17px;
  line-height: 1.7;
  color: #2a3d2f;
  margin: 0;
  max-width: 680px;
}

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

.srv .svc-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px 0 rgba(34, 75, 55, 0.10);
  padding: 40px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 6px 0 rgba(34, 75, 55, 0.08), 0 4px 20px 0 rgba(34, 75, 55, 0.10);
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv .svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #224B37 0%, #58A975 100%);
  border-radius: 10px 10px 0 0;
}

.srv .svc-card:hover {
  box-shadow: inset 0 2px 6px 0 rgba(34, 75, 55, 0.08), 0 12px 52px 0 rgba(34, 75, 55, 0.14);
  transform: translateY(-3px);
}

.srv .svc-card-hover-stripe {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg,
      rgba(88, 169, 117, 0.06) 0px,
      rgba(88, 169, 117, 0.06) 2px,
      transparent 2px,
      transparent 14px);
  opacity: 0;
  transition: opacity 0.20s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  border-radius: 10px;
}

.srv .svc-card:hover .svc-card-hover-stripe {
  opacity: 1;
}

.srv .svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #224B37 0%, #36665C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.srv .svc-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #58A975;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.srv .svc-card-h {
  font-size: 21px;
  line-height: 1.4;
  color: #224B37;
  font-weight: 700;
  margin: 0;
}

.srv .svc-card-p {
  font-size: 15px;
  line-height: 1.7;
  color: #2a3d2f;
  margin: 0;
  flex: 1 1 auto;
}

.srv .svc-tag {
  display: inline-block;
  font-size: 13px;
  line-height: 1.4;
  color: #36665C;
  background: rgba(88, 169, 117, 0.12);
  border-radius: 44px;
  padding: 4px 16px;
  font-weight: 600;
  width: fit-content;
}

.srv .detail-area {
  background: rgba(34, 75, 55, 0.04);
  padding: 80px 0;
  position: relative;
}

.srv .detail-band {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #224B37 0%, #58A975 60%, rgba(88, 169, 117, 0.2) 100%);
}

.srv .detail-inner {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

.srv .detail-main {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.srv .detail-h2 {
  font-size: 38px;
  line-height: 1.1;
  color: #224B37;
  font-weight: 800;
  margin: 0;
}

.srv .detail-h2 strong {
  display: block;
  font-size: 50px;
  color: #58A975;
}

.srv .detail-body {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
}

.srv .detail-aside {
  flex: 0 0 180px;
  font-size: 13px;
  line-height: 1.7;
  color: #36665C;
  border-left: 2px solid #58A975;
  border-right: none;
  padding: 8px 0 8px 16px;
  margin: 0;
}

.srv .detail-text {
  flex: 1 1 0;
}

.srv .detail-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #2a3d2f;
  margin: 0 0 16px;
}

.srv .detail-text p:last-child {
  margin-bottom: 0;
}

.srv .infographic {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: stretch;
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 6px 0 rgba(34, 75, 55, 0.08);
}

.srv .infographic-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  border-radius: 6px;
  background: rgba(34, 75, 55, 0.03);
  text-align: center;
  position: relative;
}

.srv .infographic-item+.infographic-item::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(88, 169, 117, 0.25);
}

.srv .infographic-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(135deg, #224B37 0%, #36665C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.srv .infographic-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #58A975;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.srv .infographic-val {
  font-size: 21px;
  line-height: 1.1;
  color: #224B37;
  font-weight: 800;
}

.srv .infographic-lbl {
  font-size: 13px;
  line-height: 1.4;
  color: #36665C;
  font-weight: 500;
}

.srv .detail-sidebar {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.srv .sidebar-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 7/9;
  box-shadow: 0 12px 52px 0 rgba(34, 75, 55, 0.14);
}

.srv .sidebar-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv .sidebar-img-wrap:hover img {
  transform: scale(1.05);
}

.srv .sidebar-reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srv .review-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: inset 0 2px 6px 0 rgba(34, 75, 55, 0.08), 0 2px 6px 0 rgba(34, 75, 55, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.20s cubic-bezier(0.0, 0, 0.2, 1);
}

.srv .review-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg,
      rgba(88, 169, 117, 0.05) 0px,
      rgba(88, 169, 117, 0.05) 2px,
      transparent 2px,
      transparent 12px);
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.srv .review-card:hover::after {
  opacity: 1;
}

.srv .review-card:hover {
  box-shadow: inset 0 2px 6px 0 rgba(34, 75, 55, 0.08), 0 12px 52px 0 rgba(34, 75, 55, 0.14);
}

.srv .review-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.srv .review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 44px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(88, 169, 117, 0.3);
}

.srv .review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.srv .review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.srv .review-name {
  font-size: 15px;
  line-height: 1.4;
  color: #224B37;
  font-weight: 700;
}

.srv .review-role {
  font-size: 13px;
  line-height: 1.4;
  color: #36665C;
}

.srv .review-q {
  font-size: 15px;
  line-height: 1.7;
  color: #2a3d2f;
  margin: 0;
  font-style: italic;
}

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

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

.srv .t-label {
  animation: fadeUp 0.28s cubic-bezier(0.4, 0, 0.2, 1) 0.05s both;
}

.srv .t-h1 {
  animation: fadeUp 0.28s cubic-bezier(0.4, 0, 0.2, 1) 0.13s both;
}

.srv .t-desc {
  animation: fadeUp 0.26s cubic-bezier(0.4, 0, 0.2, 1) 0.21s both;
}

.srv .svc-card:nth-child(1) {
  animation: fadeUp 0.26s cubic-bezier(0.4, 0, 0.2, 1) 0.08s both;
}

.srv .svc-card:nth-child(2) {
  animation: fadeUp 0.26s cubic-bezier(0.4, 0, 0.2, 1) 0.16s both;
}

.srv .svc-card:nth-child(3) {
  animation: fadeUp 0.26s cubic-bezier(0.4, 0, 0.2, 1) 0.24s both;
}

@media (max-width: 1024px) {
  .srv .t-img-col {
    width: 260px;
  }

  .srv .t-text {
    padding: 80px 24px 80px 40px;
  }

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

  .srv .detail-inner {
    flex-direction: column;
  }

  .srv .detail-sidebar {
    flex: 0 0 auto;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .srv .sidebar-img-wrap {
    display: none !important;
  }

  .srv .sidebar-reviews {
    flex-direction: row;
    flex: 1 1 100%;
  }

  .srv .review-card {
    flex: 1 1 0;
  }

  .srv .svc-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .srv .svc-head-left {
    width: 100%;
  }
}

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

  .srv .t-block {
    flex-direction: column;
  }

  .srv .t-img-col {
    display: none;
  }

  .srv .t-strip {
    display: none;
  }

  .srv .t-text {
    padding: 40px 16px;
  }

  .srv .t-h1 {
    font-size: 38px;
  }

  .srv .svc-area {
    padding: 40px 0;
  }

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

  .srv .detail-area {
    padding: 40px 0;
  }

  .srv .detail-h2 {
    font-size: 21px;
  }

  .srv .detail-h2 strong {
    font-size: 38px;
  }

  .srv .detail-body {
    flex-direction: column;
  }

  .srv .detail-aside {
    flex: 0 0 auto;
    width: 100%;
  }

  .srv .infographic {
    flex-direction: column;
    gap: 16px;
  }

  .srv .infographic-item+.infographic-item::before {
    display: none;
  }

  .srv .sidebar-reviews {
    flex-direction: column;
  }

  .srv .detail-sidebar {
    flex-direction: column;
  }
}

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

.ct-us .band-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}

.ct-us .reach {
  position: relative;
  background: #224B37;
  padding: 80px 0 80px;
  overflow: hidden;
}

.ct-us .reach::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 50%, rgba(88, 169, 117, 0.18) 0%, rgba(34, 75, 55, 0.0) 68%);
  pointer-events: none;
}

.ct-us .reach-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.ct-us .reach-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}

.ct-us .reach-left {
  flex: 0 0 40%;
  position: relative;
}

.ct-us .reach-bracket {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 32px;
  height: 32px;
  border-top: 2px solid rgba(88, 169, 117, 0.7);
  border-left: 2px solid rgba(88, 169, 117, 0.7);
  border-radius: 6px 0 0 0;
  pointer-events: none;
}

.ct-us .reach-bracket-br {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 32px;
  height: 32px;
  border-bottom: 2px solid rgba(88, 169, 117, 0.7);
  border-right: 2px solid rgba(88, 169, 117, 0.7);
  border-radius: 0 0 6px 0;
  pointer-events: none;
}

.ct-us .reach-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #58A975;
  margin-bottom: 24px;
  display: block;
}

.ct-us .reach-h1 {
  font-size: 50px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 24px;
}

.ct-us .reach-h1 span {
  display: block;
}

.ct-us .reach-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 360px;
}

.ct-us .reach-right {
  flex: 0 0 60%;
  position: relative;
}

.ct-us .reach-img-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 52px 0 rgba(34, 75, 55, 0.14);
}

.ct-us .reach-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  filter: brightness(0.82) saturate(1.1);
  mix-blend-mode: luminosity;
  transition: filter 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.ct-us .reach-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 75, 55, 0.55) 0%, rgba(88, 169, 117, 0.18) 100%);
  border-radius: 10px;
  pointer-events: none;
}

.ct-us .reach-img-bracket-tl {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 28px;
  height: 28px;
  border-top: 2px solid rgba(88, 169, 117, 0.9);
  border-left: 2px solid rgba(88, 169, 117, 0.9);
  border-radius: 6px 0 0 0;
  pointer-events: none;
  z-index: 2;
}

.ct-us .reach-img-bracket-br {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  border-bottom: 2px solid rgba(88, 169, 117, 0.9);
  border-right: 2px solid rgba(88, 169, 117, 0.9);
  border-radius: 0 0 6px 0;
  pointer-events: none;
  z-index: 2;
}

.ct-us .div-a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.ct-us .div-a span {
  display: block;
  height: 1px;
  background: rgba(34, 75, 55, 0.13);
}

.ct-us .connect {
  background: #fff;
  padding: 80px 0 80px;
  position: relative;
  border-left: 5px solid #58A975;
}

.ct-us .connect-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
}

.ct-us .connect-aside {
  flex: 0 0 calc(33.333% - 40px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ct-us .connect-aside-note {
  font-size: 13px;
  line-height: 1.7;
  color: #36665C;
  border-top: 1px solid rgba(54, 102, 92, 0.18);
  border-left: 3px solid #58A975;
  padding: 16px 0 16px 16px;
}

.ct-us .connect-h2 {
  font-size: 38px;
  line-height: 1.1;
  color: #224B37;
  margin: 0 0 16px;
}

.ct-us .connect-h2 span {
  display: block;
}

.ct-us .connect-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #2d4a3e;
  margin: 0 0 24px;
}

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

.ct-us .info-list li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-us .info-tag {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #58A975;
}

.ct-us .info-val {
  font-size: 15px;
  line-height: 1.4;
  color: #224B37;
  font-weight: 600;
}

.ct-us .info-val a {
  color: #224B37;
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 75, 55, 0.25);
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ct-us .info-val a:hover {
  color: #36665C;
  border-bottom-color: #58A975;
}

.ct-us .connect-form-wrap {
  flex: 1 1 0;
}

.ct-us .cf {
  background: #f4f8f6;
  border-radius: 10px;
  padding: 40px;
  box-shadow: inset 0 2px 6px 0 rgba(34, 75, 55, 0.08), 0 4px 20px 0 rgba(34, 75, 55, 0.10);
}

.ct-us .cf-head {
  font-size: 21px;
  line-height: 1.4;
  color: #224B37;
  margin: 0 0 8px;
}

.ct-us .cf-note {
  font-size: 13px;
  line-height: 1.7;
  color: #36665C;
  margin: 0 0 24px;
}

.ct-us .cf-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.ct-us .cf-row.last {
  margin-bottom: 24px;
}

.ct-us .cf-label {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #224B37;
  font-weight: 600;
}

.ct-us .cf-input,
.ct-us .cf-select,
.ct-us .cf-textarea {
  width: 100%;
  padding: 16px;
  border: 1.5px solid rgba(34, 75, 55, 0.18);
  border-radius: 6px;
  background: #fff;
  font-size: 15px;
  line-height: 1.4;
  color: #224B37;
  box-shadow: inset 0 2px 6px 0 rgba(34, 75, 55, 0.08);
  transition: border-color 0.24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.ct-us .cf-input::placeholder,
.ct-us .cf-textarea::placeholder {
  color: rgba(34, 75, 55, 0.4);
}

.ct-us .cf-input:focus,
.ct-us .cf-select:focus,
.ct-us .cf-textarea:focus {
  outline: none;
  border-color: #58A975;
  box-shadow: inset 0 2px 6px 0 rgba(34, 75, 55, 0.08), 0 0 0 3px rgba(88, 169, 117, 0.15);
}

.ct-us .cf-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23224B37' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.ct-us .cf-textarea {
  resize: vertical;
  min-height: 120px;
}

.ct-us .cf-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.ct-us .cf-type-opt {
  position: relative;
}

.ct-us .cf-type-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ct-us .cf-type-lbl {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1.5px solid rgba(34, 75, 55, 0.18);
  border-radius: 6px;
  background: #fff;
  font-size: 13px;
  color: #224B37;
  cursor: pointer;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.ct-us .cf-type-lbl:hover {
  border-color: #58A975;
  background: rgba(88, 169, 117, 0.06);
}

.ct-us .cf-type-dot {
  width: 14px;
  height: 14px;
  border-radius: 44px;
  border: 2px solid rgba(34, 75, 55, 0.3);
  flex-shrink: 0;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ct-us .cf-type-opt input[type="radio"]:checked+.cf-type-lbl {
  border-color: #224B37;
  background: rgba(34, 75, 55, 0.06);
}

.ct-us .cf-type-opt input[type="radio"]:checked+.cf-type-lbl .cf-type-dot {
  border-color: #224B37;
  background: #224B37;
}

.ct-us .cf-type-opt input[type="radio"]:focus-visible+.cf-type-lbl {
  outline: 2px solid #58A975;
  outline-offset: 2px;
}

.ct-us .cf-privacy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(34, 75, 55, 0.04);
  border-radius: 6px;
  border: 1px solid rgba(34, 75, 55, 0.1);
}

.ct-us .cf-privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #224B37;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.ct-us .cf-privacy-text {
  font-size: 13px;
  line-height: 1.7;
  color: #36665C;
}

.ct-us .cf-privacy-text a {
  color: #224B37;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ct-us .cf-privacy-text a:hover {
  color: #58A975;
}

.ct-us .cf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border: none;
  border-radius: 44px;
  background: linear-gradient(160deg, #58A975 0%, #224B37 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 20px 0 rgba(34, 75, 55, 0.10);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.12s cubic-bezier(0.0, 0, 0.2, 1);
}

.ct-us .cf-submit:hover {
  box-shadow: 0 12px 52px 0 rgba(34, 75, 55, 0.14);
}

.ct-us .cf-submit:active {
  transform: scale(0.97);
  box-shadow: 0 2px 6px 0 rgba(34, 75, 55, 0.08);
}

.ct-us .cf-submit:focus-visible {
  outline: 2px solid #58A975;
  outline-offset: 3px;
}

.ct-us .div-b {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.ct-us .div-b span {
  display: block;
  height: 1px;
  background: rgba(34, 75, 55, 0.1);
}

.ct-us .pathway {
  background: #f4f8f6;
  padding: 80px 0 80px;
  position: relative;
}

.ct-us .pathway::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background: #224B37;
  pointer-events: none;
}

.ct-us .pathway-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}

.ct-us .pathway-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 40px;
}

.ct-us .pathway-aside {
  flex: 0 0 220px;
}

.ct-us .pathway-aside-note {
  font-size: 13px;
  line-height: 1.7;
  color: #36665C;
  border-top: 1px solid rgba(54, 102, 92, 0.2);
  padding-top: 16px;
}

.ct-us .pathway-body {
  flex: 1 1 0;
}

.ct-us .pathway-h2 {
  font-size: 38px;
  line-height: 1.1;
  color: #224B37;
  margin: 0 0 16px;
}

.ct-us .pathway-h2 span {
  display: block;
}

.ct-us .pathway-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #2d4a3e;
  margin: 0;
  max-width: 560px;
}

.ct-us .steps {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-top: 40px;
}

.ct-us .steps-line {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: linear-gradient(90deg, #224B37 0%, #58A975 100%);
  pointer-events: none;
}

.ct-us .step {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.ct-us .step-num {
  width: 56px;
  height: 56px;
  border-radius: 44px;
  background: #224B37;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px 0 rgba(34, 75, 55, 0.10);
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.ct-us .step:hover .step-num {
  background: #58A975;
  transform: rotate(8deg);
}

.ct-us .step-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 6px 0 rgba(34, 75, 55, 0.08);
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.ct-us .step:hover .step-card {
  box-shadow: 0 4px 20px 0 rgba(34, 75, 55, 0.10);
}

.ct-us .step-card h4 {
  font-size: 15px;
  line-height: 1.4;
  color: #224B37;
  margin: 0 0 8px;
  font-weight: 700;
}

.ct-us .step-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #36665C;
  margin: 0;
}

.ct-us .pathway-img-strip {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 52px 0 rgba(34, 75, 55, 0.14);
  position: relative;
}

.ct-us .pathway-img-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(1.05);
}

.ct-us .pathway-img-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 75, 55, 0.6) 0%, rgba(88, 169, 117, 0.12) 100%);
  pointer-events: none;
}

.ct-us .pathway-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 40px;
  z-index: 2;
}

.ct-us .pathway-img-overlay p {
  font-size: 21px;
  line-height: 1.4;
  color: #fff;
  margin: 0;
  max-width: 560px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .ct-us .reach-inner {
    gap: 40px;
  }

  .ct-us .reach-left {
    flex: 0 0 45%;
  }

  .ct-us .reach-right {
    flex: 0 0 55%;
  }

  .ct-us .connect-inner {
    flex-direction: column;
    gap: 40px;
  }

  .ct-us .connect-aside {
    flex: none;
    width: 100%;
  }

  .ct-us .pathway-top {
    flex-direction: column;
    gap: 24px;
  }

  .ct-us .pathway-aside {
    flex: none;
    width: 100%;
  }

  .ct-us .steps {
    flex-direction: column;
    gap: 24px;
  }

  .ct-us .steps-line {
    display: none;
  }

  .ct-us .step {
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
  }

  .ct-us .step-card {
    text-align: left;
  }

  .ct-us .cf-type-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ct-us .reach-inner {
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
  }

  .ct-us .reach-left,
  .ct-us .reach-right {
    flex: none;
    width: 100%;
  }

  .ct-us .reach-right {
    display: none;
  }

  .ct-us .reach-h1 {
    font-size: 38px;
  }

  .ct-us .reach {
    padding: 40px 0;
  }

  .ct-us .band-wrap,
  .ct-us .reach-inner,
  .ct-us .connect-inner,
  .ct-us .pathway-inner,
  .ct-us .div-a,
  .ct-us .div-b {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ct-us .connect {
    padding: 40px 0;
    border-left: none;
    border-top: 5px solid #58A975;
  }

  .ct-us .pathway {
    padding: 40px 0;
  }

  .ct-us .pathway::after {
    display: none;
  }

  .ct-us .cf {
    padding: 24px 16px;
  }

  .ct-us .connect-h2,
  .ct-us .pathway-h2 {
    font-size: 38px;
  }

  .ct-us .steps {
    flex-direction: column;
    gap: 24px;
  }

  .ct-us .steps-line {
    display: none;
  }

  .ct-us .step {
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
  }

  .ct-us .step-card {
    text-align: left;
  }

  .ct-us .pathway-img-overlay p {
    font-size: 17px;
  }

  .ct-us .cf-type-grid {
    grid-template-columns: 1fr;
  }

  .ct-us .pathway-top {
    gap: 16px;
  }
}

.bs {
  overflow-x: hidden;
  background: #fff;
}

.bs .lim {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.bs .t-block {
  position: relative;
  padding-top: 80px;
  padding-bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, #224B37 100%);
  display: flex;
  flex-direction: column;
}

.bs .t-block .dot-grid {
  position: absolute;
  inset: 0;
  width: 60%;
  height: 100%;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(88, 169, 117, 0.22) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  z-index: 0;
}

.bs .t-block .t-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 0;
}

.bs .t-block .t-text {
  padding-top: 80px;
  padding-bottom: 80px;
}

.bs .t-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #58A975;
  background: rgba(88, 169, 117, 0.12);
  border-radius: 44px;
  padding: 8px 16px;
  margin-bottom: 24px;
}

.bs .t-h1 {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
}

.bs .t-h1 span {
  display: block;
}

.bs .t-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 460px;
  margin-bottom: 40px;
}

.bs .t-btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #224B37;
  background: linear-gradient(135deg, #58A975 0%, #a8e6bf 100%);
  border-radius: 44px;
  padding: 16px 40px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px 0 rgba(34, 75, 55, 0.10);
}

.bs .t-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 52px 0 rgba(34, 75, 55, 0.14);
}

.bs .t-btn:active {
  transform: scale(0.97);
}

.bs .t-img-wrap {
  position: relative;
  align-self: end;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  height: 480px;
}

.bs .t-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: zoom-in-cycle 14s ease-in-out infinite alternate;
}

@keyframes zoom-in-cycle {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

.bs .t-img-wrap .img-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(34, 75, 55, 0) 30%, rgba(34, 75, 55, 0.72) 100%);
  pointer-events: none;
}

.bs .approach {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.bs .approach .math-bg {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 260px;
  line-height: 1.1;
  font-weight: 900;
  color: rgba(34, 75, 55, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.bs .approach .ap-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.bs .ap-aside {
  padding-top: 8px;
}

.bs .ap-aside-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #58A975;
  margin-bottom: 16px;
  display: block;
}

.bs .ap-aside-note {
  font-size: 13px;
  line-height: 1.7;
  color: #36665C;
  border-left: 3px solid #58A975;
  border-top: 1px solid rgba(88, 169, 117, 0.3);
  padding: 16px;
  background: rgba(88, 169, 117, 0.06);
  border-radius: 0 6px 6px 0;
}

.bs .ap-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bs .ap-h2 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  color: #224B37;
}

.bs .ap-h2 span {
  display: block;
}

.bs .ap-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.bs .ap-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 6px 0 rgba(34, 75, 55, 0.08), inset 0 1px 4px 0 rgba(34, 75, 55, 0.05);
  border-top: 3px solid #58A975;
  transition: box-shadow 0.24s cubic-bezier(0.0, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.bs .ap-card:hover {
  box-shadow: 0 12px 52px 0 rgba(34, 75, 55, 0.14);
  transform: translateY(-3px);
}

.bs .ap-card-num {
  font-size: 38px;
  font-weight: 900;
  color: #58A975;
  line-height: 1.1;
  margin-bottom: 8px;
}

.bs .ap-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #224B37;
  margin-bottom: 8px;
}

.bs .ap-card-text {
  font-size: 13px;
  line-height: 1.7;
  color: #36665C;
}

.bs .ap-body {
  font-size: 15px;
  line-height: 1.7;
  color: #36665C;
  max-width: 640px;
}

.bs .hesit {
  background: radial-gradient(circle at 50% 50%, rgba(54, 102, 92, 0.13) 0%, rgba(255, 255, 255, 0) 70%);
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.bs .hesit .topo-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.045;
  background-image:
    repeating-radial-gradient(circle at 30% 50%, transparent 0px, transparent 18px, rgba(34, 75, 55, 1) 19px, transparent 20px),
    repeating-radial-gradient(circle at 70% 40%, transparent 0px, transparent 28px, rgba(34, 75, 55, 1) 29px, transparent 30px);
}

.bs .hesit .h-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
}

.bs .hesit-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bs .hesit-tag {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #224B37;
  background: rgba(34, 75, 55, 0.08);
  border-radius: 6px;
  padding: 8px 16px;
  display: inline-block;
  width: fit-content;
}

.bs .hesit-h2 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  color: #224B37;
}

.bs .hesit-h2 span {
  display: block;
}

.bs .hesit-lead {
  font-size: 17px;
  line-height: 1.4;
  color: #224B37;
  font-weight: 600;
}

.bs .hesit-body {
  font-size: 15px;
  line-height: 1.7;
  color: #36665C;
}

.bs .hesit-pairs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bs .hesit-pair {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 16px;
  align-items: start;
}

.bs .hesit-dot {
  width: 8px;
  height: 8px;
  border-radius: 44px;
  background: #58A975;
  margin-top: 7px;
  flex-shrink: 0;
}

.bs .hesit-pair-text {
  font-size: 15px;
  line-height: 1.7;
  color: #36665C;
}

.bs .hesit-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bs .hesit-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  height: 280px;
  box-shadow: 0 4px 20px 0 rgba(34, 75, 55, 0.10);
}

.bs .hesit-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.bs .hesit-img-wrap:hover img {
  transform: scale(1.04);
}

.bs .hesit-stat {
  background: #224B37;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 12px 52px 0 rgba(34, 75, 55, 0.14);
}

.bs .hesit-stat-num {
  font-size: 38px;
  font-weight: 900;
  color: #58A975;
  line-height: 1.1;
}

.bs .hesit-stat-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.bs .rep {
  background: #224B37;
  padding-top: 80px;
  padding-bottom: 80px;
}

.bs .rep .r-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bs .rep-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.bs .rep-tag {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #58A975;
  margin-bottom: 16px;
  display: block;
}

.bs .rep-h2 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
}

.bs .rep-h2 span {
  display: block;
}

.bs .rep-intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.bs .rep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bs .rep-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid rgba(88, 169, 117, 0.18);
  box-shadow: inset 0 1px 6px 0 rgba(34, 75, 55, 0.14);
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.bs .rep-item:hover {
  background: rgba(88, 169, 117, 0.1);
  border-color: rgba(88, 169, 117, 0.4);
}

.bs .rep-item-head {
  font-size: 15px;
  font-weight: 700;
  color: #58A975;
  margin-bottom: 8px;
}

.bs .rep-item-body {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.bs .rep-portraits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bs .rep-portrait-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid rgba(88, 169, 117, 0.12);
}

.bs .rep-portrait-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.bs .rep-portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bs .rep-portrait-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.bs .rep-portrait-role {
  font-size: 13px;
  color: #58A975;
  margin-bottom: 8px;
}

.bs .rep-portrait-quote {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.bs .comm {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
  position: relative;
}

.bs .comm-divider {
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #224B37 0%, #58A975 50%, #224B37 100%);
  margin-bottom: 80px;
}

.bs .comm .c-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  align-items: start;
}

.bs .comm-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bs .comm-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #58A975;
  display: block;
}

.bs .comm-h2 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  color: #224B37;
}

.bs .comm-h2 span {
  display: block;
}

.bs .comm-lead {
  font-size: 17px;
  line-height: 1.4;
  color: #224B37;
  font-weight: 600;
}

.bs .comm-body {
  font-size: 15px;
  line-height: 1.7;
  color: #36665C;
}

.bs .comm-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bs .comm-path {
  background: rgba(34, 75, 55, 0.04);
  border-radius: 10px;
  padding: 24px;
  border-top: 3px solid #224B37;
  box-shadow: 0 2px 6px 0 rgba(34, 75, 55, 0.08), inset 0 2px 8px 0 rgba(34, 75, 55, 0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bs .comm-path.alt {
  border-top-color: #58A975;
}

.bs .comm-path-title {
  font-size: 15px;
  font-weight: 700;
  color: #224B37;
}

.bs .comm-path-text {
  font-size: 13px;
  line-height: 1.7;
  color: #36665C;
}

.bs .comm-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bs .comm-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 12px 52px 0 rgba(34, 75, 55, 0.14);
}

.bs .comm-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.26s cubic-bezier(0.0, 0, 0.2, 1);
}

.bs .comm-img-wrap:hover img {
  transform: scale(1.05);
}

.bs .comm-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bs .comm-stat-box {
  background: #224B37;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 20px 0 rgba(34, 75, 55, 0.10);
}

.bs .comm-stat-box.light {
  background: rgba(88, 169, 117, 0.1);
}

.bs .comm-stat-num {
  font-size: 38px;
  font-weight: 900;
  color: #58A975;
  line-height: 1.1;
}

.bs .comm-stat-box.light .comm-stat-num {
  color: #224B37;
}

.bs .comm-stat-label {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

.bs .comm-stat-box.light .comm-stat-label {
  color: #36665C;
}

.bs .comm-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #224B37 0%, #36665C 100%);
  border-radius: 44px;
  padding: 16px 40px;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px 0 rgba(34, 75, 55, 0.10);
  width: fit-content;
}

.bs .comm-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 52px 0 rgba(34, 75, 55, 0.14);
}

.bs .comm-link:active {
  transform: scale(0.97);
}

.bs .anim-blur {
  animation: blur-clear 0.72s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes blur-clear {
  0% {
    filter: blur(10px);
    opacity: 0;
  }

  100% {
    filter: blur(0);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .bs .t-block .t-inner {
    grid-template-columns: 1fr;
  }

  .bs .t-img-wrap {
    display: none;
  }

  .bs .approach .ap-inner {
    grid-template-columns: 1fr;
  }

  .bs .ap-cards {
    grid-template-columns: 1fr 1fr;
  }

  .bs .hesit .h-inner {
    grid-template-columns: 1fr;
  }

  .bs .hesit-right {
    display: none;
  }

  .bs .rep-top {
    grid-template-columns: 1fr;
  }

  .bs .rep-portraits {
    grid-template-columns: 1fr;
  }

  .bs .comm .c-inner {
    grid-template-columns: 1fr;
  }

  .bs .comm-right {
    display: none;
  }

  .bs .approach .math-bg {
    display: none;
  }
}

@media (max-width: 640px) {
  .bs .lim {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bs .t-h1 {
    font-size: 38px;
  }

  .bs .ap-cards {
    grid-template-columns: 1fr;
  }

  .bs .rep-grid {
    grid-template-columns: 1fr;
  }

  .bs .comm-dual {
    grid-template-columns: 1fr;
  }

  .bs .comm-stats {
    grid-template-columns: 1fr;
  }

  .bs .ap-h2,
  .bs .hesit-h2,
  .bs .rep-h2,
  .bs .comm-h2 {
    font-size: 38px;
  }

  .bs .rep-portrait-card {
    grid-template-columns: 1fr;
  }

  .bs .rep-portrait-img {
    width: 64px;
    height: 64px;
  }
}

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

.ab .strip-img {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.ab .strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ab .strip-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(34, 75, 55, 0.55) 0%, transparent 40%, transparent 60%, rgba(34, 75, 55, 0.65) 100%);
  z-index: 1;
}

.ab .strip-img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  border-left: 3px solid #58A975;
  border-bottom: 3px solid #58A975;
  border-radius: 0 0 0 10px;
  z-index: 2;
}

.ab .hero-zone {
  background: #224B37;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.ab .hero-zone::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, rgba(88, 169, 117, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.ab .hero-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ab .hero-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #58A975;
  font-weight: 600;
  line-height: 1.4;
}

.ab .hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 560px;
}

.ab .hero-h1 {
  font-size: 50px;
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.ab .hero-h1 span {
  display: block;
}

.ab .hero-h1 .accent {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: radial-gradient(circle at center, #58A975 0%, #36665C 100%);
}

.ab .hero-meta {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.ab .hero-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ab .stat-num {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  color: #58A975;
}

.ab .stat-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ab .hero-divider {
  width: 100%;
  display: block;
  overflow: hidden;
  line-height: 0;
  background: #224B37;
}

.ab .hero-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

@keyframes ab-glow {
  from {
    box-shadow: 0 0 0 0 rgba(88, 169, 117, 0);
  }

  to {
    box-shadow: 0 0 0 4px rgba(88, 169, 117, 0.35), 0 12px 52px 0 rgba(34, 75, 55, 0.14);
  }
}

.ab .about-grid {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.ab .about-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 40px;
}

.ab .aside-note {
  font-size: 13px;
  color: #36665C;
  line-height: 1.7;
  border-left: 3px solid #58A975;
  border-bottom: 1px solid rgba(88, 169, 117, 0.25);
  padding: 16px 16px 16px 16px;
  border-radius: 0 6px 6px 0;
  background: rgba(88, 169, 117, 0.06);
}

.ab .aside-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px 0 rgba(34, 75, 55, 0.10);
  animation: ab-glow 0.22s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.ab .aside-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ab .aside-name {
  font-size: 15px;
  font-weight: 700;
  color: #224B37;
  line-height: 1.4;
}

.ab .aside-role {
  font-size: 13px;
  color: #36665C;
  line-height: 1.4;
}

.ab .about-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ab .about-h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  color: #224B37;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.ab .about-h2 span {
  display: block;
}

.ab .about-p {
  font-size: 17px;
  color: #2a2a2a;
  line-height: 1.7;
  margin: 0;
}

.ab .about-p-sm {
  font-size: 15px;
  color: #3a3a3a;
  line-height: 1.7;
  margin: 0;
}

.ab .cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ab .card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: inset 0 2px 6px 0 rgba(34, 75, 55, 0.08), 0 2px 6px 0 rgba(34, 75, 55, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(88, 169, 117, 0.15);
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.0, 0, 0.2, 1);
}

.ab .card:hover {
  box-shadow: inset 0 2px 6px 0 rgba(34, 75, 55, 0.08), 0 12px 52px 0 rgba(34, 75, 55, 0.14);
  transform: translateY(-2px);
}

.ab .card-icon {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle at center, #58A975 0%, #36665C 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ab .card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ab .card-h {
  font-size: 15px;
  font-weight: 700;
  color: #224B37;
  line-height: 1.4;
  margin: 0;
}

.ab .card-p {
  font-size: 13px;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

.ab .zigzag-div {
  width: 100%;
  display: block;
  line-height: 0;
  overflow: hidden;
}

.ab .zigzag-div svg {
  display: block;
  width: 100%;
  height: 56px;
}

.ab .img-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 260px;
  overflow: hidden;
}

.ab .img-band-item {
  overflow: hidden;
  position: relative;
}

.ab .img-band-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab .img-band-item:hover img {
  transform: scale(1.04);
}

.ab .img-band-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(34, 75, 55, 0.35) 100%);
  pointer-events: none;
}

.ab .subscribe-wrap {
  background: linear-gradient(135deg, #224B37 0%, #36665C 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.ab .subscribe-wrap::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at center, rgba(88, 169, 117, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ab .subscribe-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.ab .sub-h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ab .sub-h2 span {
  display: block;
}

.ab .sub-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.7;
  margin: 0;
}

.ab .sub-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.ab .sub-field {
  width: 100%;
  max-width: 400px;
  padding: 16px;
  border-radius: 6px;
  border: 1.5px solid rgba(88, 169, 117, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.0, 0, 0.2, 1);
  box-sizing: border-box;
}

.ab .sub-field::placeholder {
  color: rgba(255, 255, 255, 0.40);
}

.ab .sub-field:focus {
  border-color: #58A975;
  background: rgba(255, 255, 255, 0.13);
}

.ab .sub-btn {
  padding: 16px 40px;
  border-radius: 44px;
  border: none;
  background: radial-gradient(circle at center, #58A975 0%, #36665C 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.4;
  box-shadow: 0 4px 20px 0 rgba(34, 75, 55, 0.10);
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.0, 0, 0.2, 1);
}

.ab .sub-btn:hover {
  box-shadow: 0 12px 52px 0 rgba(34, 75, 55, 0.14);
  transform: translateY(-1px);
}

.ab .sub-btn:active {
  transform: scale(0.97);
}

.ab .sub-unsub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.7;
}

.ab .sub-link {
  color: #58A975;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s cubic-bezier(0.0, 0, 0.2, 1);
}

.ab .sub-link:hover {
  color: #fff;
}

.ab .texture-bg {
  background-image: url("./img_assets/content-image-13.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.ab .texture-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  pointer-events: none;
}

.ab .texture-inner {
  position: relative;
  z-index: 1;
}

@keyframes ab-border-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(88, 169, 117, 0), 0 2px 6px 0 rgba(34, 75, 55, 0.08);
  }

  100% {
    box-shadow: 0 0 0 3px rgba(88, 169, 117, 0.30), 0 12px 52px 0 rgba(34, 75, 55, 0.14);
  }
}

.ab .glow-card {
  animation: ab-border-glow 0.26s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.ab .about-link {
  color: #224B37;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab .about-link:hover {
  color: #58A975;
}

@media (max-width: 1024px) {
  .ab .about-grid {
    grid-template-columns: 1fr;
    padding: 80px 24px;
  }

  .ab .about-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .ab .cards-row {
    grid-template-columns: 1fr 1fr;
  }

  .ab .img-band {
    grid-template-columns: repeat(2, 1fr);
    height: 320px;
  }

  .ab .hero-zone {
    padding: 80px 24px;
  }

  .ab .subscribe-wrap {
    padding: 80px 24px;
  }
}

@media (max-width: 640px) {
  .ab .strip-img {
    height: 140px;
  }

  .ab .hero-zone {
    padding: 40px 16px;
  }

  .ab .hero-h1 {
    font-size: 38px;
  }

  .ab .hero-meta {
    gap: 24px;
  }

  .ab .about-grid {
    padding: 40px 16px;
    gap: 24px;
  }

  .ab .about-aside {
    display: none;
  }

  .ab .cards-row {
    grid-template-columns: 1fr;
  }

  .ab .img-band {
    display: none;
  }

  .ab .about-h2 {
    font-size: 38px;
  }

  .ab .subscribe-wrap {
    padding: 40px 16px;
  }

  .ab .sub-h2 {
    font-size: 38px;
  }

  .ab .sub-btn {
    width: 100%;
    max-width: 400px;
  }
}

.qz-pg {
  background: #fff;
  overflow-x: hidden;
}

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

.qz-pg .divider-line {
  flex: 1;
  height: 1px;
  background: #224B37;
  opacity: 0.15;
}

.qz-pg .cross-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.qz-pg .cross {
  width: 10px;
  height: 10px;
  position: relative;
  flex-shrink: 0;
}

.qz-pg .cross::before,
.qz-pg .cross::after {
  content: "";
  position: absolute;
  background: #224B37;
  opacity: 0.3;
}

.qz-pg .cross::before {
  width: 10px;
  height: 2px;
  top: 4px;
  left: 0;
}

.qz-pg .cross::after {
  width: 2px;
  height: 10px;
  top: 0;
  left: 4px;
}

.qz-pg .sep {
  width: 100%;
  padding: 8px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.qz-pg .sep-crosses {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: center;
  flex-wrap: nowrap;
}

.qz-pg .bleed-bg {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(88, 169, 117, 0.18) 0%, rgba(88, 169, 117, 0) 70%);
  pointer-events: none;
  animation: bleed-anim 7s ease-in-out infinite alternate;
}

@keyframes bleed-anim {
  0% {
    opacity: 0.3;
    transform: scale(0.8);
  }

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

.qz-pg .wave-item {
  opacity: 0;
  transform: translateY(16px);
  animation: wave-in 0.26s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.qz-pg .wave-item:nth-child(1) {
  animation-delay: 0.05s;
}

.qz-pg .wave-item:nth-child(2) {
  animation-delay: 0.12s;
}

.qz-pg .wave-item:nth-child(3) {
  animation-delay: 0.19s;
}

.qz-pg .wave-item:nth-child(4) {
  animation-delay: 0.26s;
}

.qz-pg .wave-item:nth-child(5) {
  animation-delay: 0.33s;
}

.qz-pg .wave-item:nth-child(6) {
  animation-delay: 0.40s;
}

@keyframes wave-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.qz-pg .hero-band {
  background: #224B37;
  position: relative;
  padding: 80px 40px;
  border-top: 3px solid #58A975;
  border-bottom: 3px solid #58A975;
  overflow: hidden;
}

.qz-pg .hero-band .bleed-bg {
  top: -80px;
  left: -80px;
}

.qz-pg .hero-band .bleed-bg-2 {
  bottom: -80px;
  right: -80px;
  background: radial-gradient(circle at center, rgba(54, 102, 92, 0.35) 0%, rgba(54, 102, 92, 0) 70%);
  animation-delay: 3s;
}

.qz-pg .hero-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.qz-pg .hero-text {
  flex: 1;
}

.qz-pg .hero-label {
  display: inline-block;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #58A975;
  border: 1px solid rgba(88, 169, 117, 0.4);
  border-radius: 6px;
  padding: 8px 16px;
  margin-bottom: 24px;
}

.qz-pg .hero-h1 {
  font-size: 50px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 24px 0;
}

.qz-pg .hero-h1 span {
  display: block;
}

.qz-pg .hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 0 24px 0;
}

.qz-pg .hero-note {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

.qz-pg .hero-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
  padding-top: 40px;
}

.qz-pg .meta-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(88, 169, 117, 0.2);
  border-radius: 10px;
  padding: 16px 24px;
  box-shadow: inset 0 2px 6px 0 rgba(34, 75, 55, 0.08);
}

.qz-pg .meta-num {
  font-size: 38px;
  line-height: 1.1;
  color: #58A975;
}

.qz-pg .meta-lbl {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

.qz-pg .circles-deco {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.qz-pg .deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(88, 169, 117, 0.12);
}

.qz-pg .dc1 {
  width: 400px;
  height: 400px;
  top: -120px;
  right: 200px;
}

.qz-pg .dc2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  right: 400px;
  border-color: rgba(88, 169, 117, 0.08);
}

.qz-pg .dc3 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  border-color: rgba(88, 169, 117, 0.06);
}

.qz-pg .quiz-band {
  background: #f4f7f5;
  padding: 80px 40px;
  border-top: 3px solid rgba(34, 75, 55, 0.08);
  border-bottom: 3px solid rgba(34, 75, 55, 0.08);
  margin-left: 40px;
}

.qz-pg .quiz-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.qz-pg .quiz-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.qz-pg .quiz-top-text {
  flex: 1;
}

.qz-pg .quiz-h2 {
  font-size: 38px;
  line-height: 1.1;
  color: #224B37;
  margin: 0 0 16px 0;
}

.qz-pg .quiz-h2 span {
  display: block;
}

.qz-pg .quiz-aside {
  font-size: 13px;
  line-height: 1.7;
  color: #36665C;
  width: 180px;
  flex-shrink: 0;
  padding-top: 8px;
  border-left: 2px solid #58A975;
  border-top: 2px solid #58A975;
  padding: 8px 0 0 16px;
}

.qz-pg .quiz-body {
  font-size: 15px;
  line-height: 1.7;
  color: #2c4a3a;
  max-width: 640px;
}

.qz-pg .q-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qz-pg .q-card {
  background: #fff;
  border-radius: 10px;
  border-top: 2px solid #58A975;
  border-bottom: 2px solid rgba(34, 75, 55, 0.08);
  box-shadow: 0 4px 20px 0 rgba(34, 75, 55, 0.10);
  padding: 24px;
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.qz-pg .q-card:hover {
  box-shadow: 0 12px 52px 0 rgba(34, 75, 55, 0.14);
}

.qz-pg .q-num {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #58A975;
  margin-bottom: 8px;
}

.qz-pg .q-text {
  font-size: 17px;
  line-height: 1.4;
  color: #224B37;
  margin: 0 0 16px 0;
}

.qz-pg .q-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.qz-pg .q-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid rgba(34, 75, 55, 0.15);
  cursor: pointer;
  transition: background 0.20s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.20s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
}

.qz-pg .q-opt:hover {
  background: rgba(88, 169, 117, 0.08);
  border-color: #58A975;
}

.qz-pg .q-opt input[type="radio"] {
  accent-color: #224B37;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.qz-pg .q-opt-lbl {
  font-size: 15px;
  line-height: 1.4;
  color: #224B37;
  cursor: pointer;
}

.qz-pg .q-opt.selected {
  background: rgba(88, 169, 117, 0.12);
  border-color: #36665C;
}

.qz-pg .q-opt.correct {
  background: rgba(88, 169, 117, 0.2);
  border-color: #58A975;
}

.qz-pg .q-opt.wrong {
  background: rgba(180, 40, 40, 0.08);
  border-color: rgba(180, 40, 40, 0.4);
}

.qz-pg .q-feedback {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #224B37;
  padding: 8px 16px;
  border-radius: 6px;
  background: rgba(88, 169, 117, 0.1);
  display: none;
}

.qz-pg .q-feedback.vis {
  display: block;
}

.qz-pg .q-feedback.err {
  background: rgba(180, 40, 40, 0.07);
  color: #7a1a1a;
}

.qz-pg .quiz-submit-row {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.qz-pg .btn-submit {
  font-size: 17px;
  line-height: 1.4;
  color: #fff;
  background: linear-gradient(135deg, #224B37 0%, #36665C 60%, #58A975 100%);
  border: none;
  border-radius: 44px;
  padding: 16px 40px;
  cursor: pointer;
  box-shadow: 0 4px 20px 0 rgba(34, 75, 55, 0.10);
  transition: box-shadow 0.24s cubic-bezier(0.0, 0, 0.2, 1), transform 0.12s cubic-bezier(0.4, 0, 0.2, 1);
}

.qz-pg .btn-submit:hover {
  box-shadow: 0 12px 52px 0 rgba(34, 75, 55, 0.14);
}

.qz-pg .btn-submit:active {
  transform: scale(0.97);
}

.qz-pg .score-box {
  display: none;
  font-size: 15px;
  line-height: 1.4;
  color: #224B37;
  background: rgba(88, 169, 117, 0.12);
  border-radius: 10px;
  padding: 16px 24px;
  border: 1px solid rgba(88, 169, 117, 0.3);
}

.qz-pg .score-box.vis {
  display: block;
}

.qz-pg .score-num {
  font-size: 38px;
  line-height: 1.1;
  color: #224B37;
}

.qz-pg .level-band {
  background: #fff;
  padding: 80px 40px;
  border-top: 3px solid #58A975;
  border-bottom: 3px solid rgba(34, 75, 55, 0.08);
  margin-right: 40px;
}

.qz-pg .level-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.qz-pg .level-left {
  flex: 1;
}

.qz-pg .level-h2 {
  font-size: 38px;
  line-height: 1.1;
  color: #224B37;
  margin: 0 0 16px 0;
}

.qz-pg .level-h2 span {
  display: block;
}

.qz-pg .level-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #2c4a3a;
  max-width: 480px;
  margin: 0 0 40px 0;
}

.qz-pg .level-bar-wrap {
  margin-bottom: 40px;
}

.qz-pg .level-bar-lbl {
  font-size: 13px;
  line-height: 1.4;
  color: #36665C;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.qz-pg .level-bar {
  display: flex;
  flex-direction: row;
  height: 24px;
  border-radius: 6px;
  overflow: hidden;
  gap: 2px;
  box-shadow: inset 0 2px 6px 0 rgba(34, 75, 55, 0.08);
}

.qz-pg .lv-seg {
  flex: 1;
  border-radius: 6px;
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.qz-pg .lv-seg.s1 {
  background: #b8dfc8;
}

.qz-pg .lv-seg.s2 {
  background: #7ec49a;
}

.qz-pg .lv-seg.s3 {
  background: #58A975;
}

.qz-pg .lv-seg.s4 {
  background: #36665C;
}

.qz-pg .lv-seg.s5 {
  background: #224B37;
}

.qz-pg .lv-seg.dim {
  opacity: 0.25;
}

.qz-pg .level-labels {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 8px;
}

.qz-pg .lv-tag {
  font-size: 13px;
  line-height: 1.4;
  color: #36665C;
}

.qz-pg .level-tips {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qz-pg .tip-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 10px;
  background: rgba(88, 169, 117, 0.06);
  border: 1px solid rgba(88, 169, 117, 0.15);
  box-shadow: 0 2px 6px 0 rgba(34, 75, 55, 0.08);
}

.qz-pg .tip-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #224B37;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qz-pg .tip-icon svg {
  width: 16px;
  height: 16px;
  fill: #58A975;
}

.qz-pg .tip-text {
  font-size: 15px;
  line-height: 1.7;
  color: #224B37;
}

.qz-pg .level-right {
  width: 360px;
  flex-shrink: 0;
  padding-top: 80px;
}

.qz-pg .img-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 52px 0 rgba(34, 75, 55, 0.14);
  position: relative;
}

.qz-pg .img-frame img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) contrast(1.1);
}

.qz-pg .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(34, 75, 55, 0.55) 0%, rgba(88, 169, 117, 0.2) 100%);
}

.qz-pg .img-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.qz-pg .about-band {
  background: #224B37;
  padding: 80px 40px;
  border-top: 3px solid #58A975;
  border-bottom: 3px solid rgba(88, 169, 117, 0.3);
  margin-left: 80px;
  position: relative;
  overflow: hidden;
}

.qz-pg .about-band .bleed-bg {
  bottom: -60px;
  right: -60px;
  background: radial-gradient(circle at center, rgba(88, 169, 117, 0.15) 0%, rgba(88, 169, 117, 0) 70%);
}

.qz-pg .about-inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.qz-pg .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.qz-pg .about-h2 {
  font-size: 38px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 16px 0;
}

.qz-pg .about-h2 span {
  display: block;
}

.qz-pg .about-intro {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
}

.qz-pg .about-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-top: 2px solid rgba(88, 169, 117, 0.4);
  border-bottom: 2px solid rgba(88, 169, 117, 0.1);
  padding: 24px;
  box-shadow: inset 0 2px 6px 0 rgba(34, 75, 55, 0.08);
  transition: background 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.qz-pg .about-card:hover {
  background: rgba(255, 255, 255, 0.09);
}

.qz-pg .about-card-h {
  font-size: 17px;
  line-height: 1.4;
  color: #58A975;
  margin: 0 0 8px 0;
}

.qz-pg .about-card-p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1024px) {
  .qz-pg .hero-inner {
    flex-direction: column;
    gap: 40px;
  }

  .qz-pg .hero-meta {
    flex-direction: row;
    padding-top: 0;
    flex-wrap: wrap;
  }

  .qz-pg .meta-card {
    flex: 1;
    min-width: 140px;
  }

  .qz-pg .quiz-top {
    flex-direction: column;
    gap: 16px;
  }

  .qz-pg .quiz-aside {
    width: 100%;
  }

  .qz-pg .level-inner {
    flex-direction: column;
    gap: 40px;
  }

  .qz-pg .level-right {
    width: 100%;
    padding-top: 0;
  }

  .qz-pg .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .qz-pg .quiz-band {
    margin-left: 16px;
  }

  .qz-pg .level-band {
    margin-right: 16px;
  }

  .qz-pg .about-band {
    margin-left: 24px;
  }
}

@media (max-width: 640px) {
  .qz-pg .hero-band {
    padding: 40px 16px;
  }

  .qz-pg .hero-h1 {
    font-size: 38px;
  }

  .qz-pg .hero-meta {
    flex-direction: column;
  }

  .qz-pg .quiz-band {
    padding: 40px 16px;
    margin-left: 0;
  }

  .qz-pg .q-opts {
    grid-template-columns: 1fr;
  }

  .qz-pg .level-band {
    padding: 40px 16px;
    margin-right: 0;
  }

  .qz-pg .about-band {
    padding: 40px 16px;
    margin-left: 0;
  }

  .qz-pg .about-grid {
    grid-template-columns: 1fr;
  }

  .qz-pg .quiz-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .qz-pg .img-frame img {
    display: none;
  }

  .qz-pg .dc1,
  .qz-pg .dc2,
  .qz-pg .dc3 {
    display: none;
  }
}

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

.suc-page .suc-wrap {
  max-width: 1500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.suc-page .suc-icon {
  width: 72px;
  height: 72px;
  border-radius: 44px;
  background: linear-gradient(135deg, #224B37 0%, #58A975 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px 0 rgba(34, 75, 55, 0.10);
  flex-shrink: 0;
}

.suc-page .suc-icon svg {
  display: block;
}

.suc-page .suc-card {
  background: #ffffff;
  border: 1px solid rgba(34, 75, 55, 0.12);
  border-radius: 10px;
  box-shadow: 0 12px 52px 0 rgba(34, 75, 55, 0.14), inset 0 1px 4px 0 rgba(34, 75, 55, 0.06);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.suc-page .suc-label {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #58A975;
  font-weight: 600;
}

.suc-page .suc-title {
  font-size: 38px;
  line-height: 1.1;
  color: #224B37;
  font-weight: 800;
  margin: 0;
}

.suc-page .suc-title span {
  display: block;
}

.suc-page .suc-body {
  font-size: 17px;
  line-height: 1.7;
  color: #2d2d2d;
  margin: 0;
  max-width: 400px;
}

.suc-page .suc-divider {
  width: 48px;
  height: 3px;
  border-radius: 6px;
  background: linear-gradient(90deg, #224B37, #58A975);
}

.suc-page .suc-note {
  font-size: 15px;
  line-height: 1.4;
  color: #36665C;
  background: rgba(88, 169, 117, 0.08);
  border-left: 3px solid #58A975;
  border-radius: 0 6px 6px 0;
  padding: 16px;
  width: 100%;
  text-align: left;
  box-shadow: 0 2px 6px 0 rgba(34, 75, 55, 0.08);
}

.suc-page .suc-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.suc-page .btn-prim {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #224B37 0%, #36665C 60%, #58A975 100%);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px 0 rgba(34, 75, 55, 0.10);
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.12s cubic-bezier(0.0, 0, 0.2, 1);
  outline-offset: 3px;
}

.suc-page .btn-prim:hover {
  box-shadow: 0 12px 52px 0 rgba(34, 75, 55, 0.14);
}

.suc-page .btn-prim:active {
  transform: scale(0.97);
}

.suc-page .btn-prim:focus-visible {
  outline: 2px solid #58A975;
}

.suc-page .btn-sec {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: #224B37;
  background: #ffffff;
  text-decoration: none;
  border: 2px solid #224B37;
  cursor: pointer;
  transition: background 0.24s cubic-bezier(0.4, 0, 0.2, 1), color 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  outline-offset: 3px;
}

.suc-page .btn-sec:hover {
  background: rgba(34, 75, 55, 0.06);
}

.suc-page .btn-sec:active {
  transform: scale(0.97);
}

.suc-page .btn-sec:focus-visible {
  outline: 2px solid #58A975;
}

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

  .suc-page .suc-card {
    padding: 24px 16px;
    gap: 16px;
  }

  .suc-page .suc-title {
    font-size: 21px;
  }

  .suc-page .suc-body {
    font-size: 15px;
  }

  .suc-page .suc-actions {
    flex-direction: column;
    width: 100%;
  }

  .suc-page .btn-prim,
  .suc-page .btn-sec {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }
}