* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: 'Alegreya', Georgia, serif;
}

.site-hd {
  background: linear-gradient(135deg, #3D584D 0%, #537879 60%, #6AA8A8 100%);
  position: relative;
  overflow: hidden;
}

.site-hd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(61, 88, 77, 0.18) 0%, transparent 100%);
  pointer-events: none;
}

.hd-utility {
  border-bottom: 1px solid rgba(106, 168, 168, 0.28);
  padding: 8px 32px;
}

.hd-utility-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.hd-brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.logo-frame {
  border-top: 2px solid rgba(255, 255, 255, 0.55);
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  padding: 8px 16px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 2px 3px 6px 0 rgba(61, 88, 77, 0.06), inset 0 1px 2px rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  min-height: 96px;
}

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

.brand-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 29px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.brand-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  font-style: italic;
}

.hd-contact-strip {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hd-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 7px;
  transition: background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.hd-contact-item:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.hd-contact-item:focus {
  outline: none;
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.hd-contact-item i {
  font-size: 17px;
  flex-shrink: 0;
}

.hd-nav-bar {
  padding: 0 32px;
}

.hd-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.primary-nav>li {
  position: relative;
}

.primary-nav>li>a,
.nav-parent-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 16px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  border-radius: 7px;
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.0, 0, 0.2, 1);
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Alegreya', Georgia, serif;
  min-height: 44px;
}

.primary-nav>li>a:hover,
.nav-parent-btn:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
}

.primary-nav>li>a:focus,
.nav-parent-btn:focus {
  outline: none;
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.primary-nav>li>a.active-link {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.nav-parent-btn i.drop-arrow {
  font-size: 14px;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item-has-sub:hover .drop-arrow,
.nav-item-has-sub:focus-within .drop-arrow {
  transform: rotate(180deg);
}

.sub-nav {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #3D584D;
  border: 1px solid rgba(106, 168, 168, 0.3);
  border-radius: 7px;
  padding: 8px;
  list-style: none;
  margin: 0;
  min-width: 220px;
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 200;
}

.nav-item-has-sub:hover .sub-nav,
.nav-item-has-sub:focus-within .sub-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-nav li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 17px;
  line-height: 1.6;
  border-radius: 7px;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  min-height: 44px;
}

.sub-nav li a:hover {
  background: rgba(106, 168, 168, 0.22);
  color: #ffffff;
}

.sub-nav li a:focus {
  outline: none;
  transform: scale(1.02);
  background: rgba(106, 168, 168, 0.28);
  color: #ffffff;
}

.hd-action {
  flex-shrink: 0;
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  font-family: 'Alegreya', Georgia, serif;
  letter-spacing: -0.01em;
  line-height: 1.2;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 48px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
}

.btn-demo::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 44px;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.btn-demo:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: #ffffff;
}

.btn-demo:hover::after {
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-demo:focus {
  outline: none;
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.28);
  border-color: #ffffff;
}

.site-ft {
  background: #ffffff;
  border-top: 1px solid rgba(83, 120, 121, 0.22);
}

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

.ft-contact-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ft-logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ft-logo-frame {
  border-top: 1px solid rgba(83, 120, 121, 0.4);
  border-bottom: 1px solid rgba(83, 120, 121, 0.4);
  padding: 8px 8px;
  border-radius: 7px;
  background: rgba(61, 88, 77, 0.05);
  box-shadow: 2px 3px 6px 0 rgba(83, 120, 121, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 72px;
}

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

.ft-brand-label {
  font-size: 22px;
  font-weight: 700;
  color: #3D584D;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ft-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #537879;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  padding: 4px 8px;
  border: 1px solid transparent;
  border-radius: 7px;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
}

.ft-contact-link:hover {
  border-color: rgba(83, 120, 121, 0.35);
  color: #3D584D;
  background: rgba(61, 88, 77, 0.04);
}

.ft-contact-link:focus {
  outline: none;
  transform: scale(1.02);
  border-color: rgba(83, 120, 121, 0.5);
  color: #3D584D;
}

.ft-contact-link i {
  font-size: 17px;
  color: #6AA8A8;
  flex-shrink: 0;
}

.ft-addr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #537879;
  font-size: 14px;
  line-height: 1.6;
  padding: 4px 8px;
}

.ft-addr i {
  font-size: 17px;
  color: #6AA8A8;
  flex-shrink: 0;
}

.ft-policy-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ft-policy-link {
  color: #537879;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 7px;
  border: 1px solid transparent;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.ft-policy-link:hover {
  border-color: rgba(83, 120, 121, 0.3);
  color: #3D584D;
  background: rgba(61, 88, 77, 0.04);
}

.ft-policy-link:focus {
  outline: none;
  transform: scale(1.02);
  border-color: rgba(83, 120, 121, 0.45);
  color: #3D584D;
}

.ft-sep {
  color: rgba(83, 120, 121, 0.35);
  font-size: 14px;
  user-select: none;
}

.ft-copy {
  color: rgba(83, 120, 121, 0.6);
  font-size: 14px;
  line-height: 1.6;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hd-utility-inner {
    flex-wrap: wrap;
    gap: 16px;
    padding: 8px 0;
  }

  .hd-contact-strip {
    flex-wrap: wrap;
    gap: 8px;
    margin-left: 0;
  }

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

  .hd-utility {
    padding: 8px 16px;
  }

  .hd-nav-inner {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 0;
  }

  .primary-nav {
    gap: 4px;
  }

  .primary-nav>li>a,
  .nav-parent-btn {
    font-size: 14px;
    padding: 12px 12px;
  }

  .ft-main-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
  }

  .ft-policy-nav {
    justify-content: flex-start;
  }
}

.doc-block {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px;
  color: #2a3a34;
  line-height: 1.9;
}

.doc-block h1 {
  font-size: 55px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #3D584D;
  margin-bottom: 32px;
  margin-top: 0;
  padding-bottom: 16px;
  border-bottom: 2px solid #6AA8A8;
}

.doc-block h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #3D584D;
  margin-top: 32px;
  margin-bottom: 16px;
}

.doc-block h3 {
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #537879;
  margin-top: 32px;
  margin-bottom: 16px;
}

.doc-block h4 {
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: #537879;
  margin-top: 16px;
  margin-bottom: 8px;
}

.doc-block h5 {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  color: #3D584D;
  margin-top: 16px;
  margin-bottom: 8px;
}

.doc-block h6 {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #6AA8A8;
  margin-top: 16px;
  margin-bottom: 8px;
}

.doc-block p {
  font-size: 17px;
  line-height: 1.9;
  color: #2a3a34;
  margin-top: 0;
  margin-bottom: 16px;
}

.doc-block strong,
.doc-block b {
  font-weight: 700;
  color: #3D584D;
}

.doc-block em,
.doc-block i {
  font-style: italic;
  color: #537879;
}

.doc-block hr {
  border: none;
  border-top: 1px solid rgba(106, 168, 168, 0.35);
  margin-top: 32px;
  margin-bottom: 32px;
  box-shadow: inset 0 1px 2px 0 rgba(61, 88, 77, 0.06);
}

.doc-block table {
  width: 100%;
  border-collapse: collapse;
  font-size: 17px;
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 32px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
}

.doc-block thead {
  background-color: #3D584D;
}

.doc-block thead th {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  border-bottom: none;
}

.doc-block tbody tr {
  background-color: #ffffff;
  transition: background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.doc-block tbody tr:nth-child(even) {
  background-color: rgba(106, 168, 168, 0.07);
}

.doc-block tbody tr:hover {
  background-color: rgba(106, 168, 168, 0.14);
}

.doc-block td {
  padding: 16px;
  font-size: 17px;
  color: #2a3a34;
  border-bottom: 1px solid rgba(83, 120, 121, 0.12);
  vertical-align: top;
}

.doc-block th {
  padding: 16px;
  vertical-align: top;
}

.doc-block div {
  font-size: 17px;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .doc-block {
    padding: 16px;
  }

  .doc-block h1 {
    font-size: 40px;
  }

  .doc-block h2 {
    font-size: 29px;
  }

  .doc-block h3 {
    font-size: 22px;
  }

  .doc-block h4 {
    font-size: 17px;
  }

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

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

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

.cd-det .fill-anim {
  display: inline-block;
  background: linear-gradient(97deg, #3D584D 0%, #537879 50%, #6AA8A8 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fillLeft 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes fillLeft {
  0% {
    background-position: 100% 0;
  }

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

.cd-det .char-reveal {
  display: inline-block;
  overflow: hidden;
}

.cd-det .char-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  animation: charUp 0.22s cubic-bezier(0.0, 0, 0.2, 1) forwards;
}

.cd-det .char-reveal span:nth-child(1) {
  animation-delay: 0.05s;
}

.cd-det .char-reveal span:nth-child(2) {
  animation-delay: 0.10s;
}

.cd-det .char-reveal span:nth-child(3) {
  animation-delay: 0.15s;
}

.cd-det .char-reveal span:nth-child(4) {
  animation-delay: 0.20s;
}

.cd-det .char-reveal span:nth-child(5) {
  animation-delay: 0.25s;
}

.cd-det .char-reveal span:nth-child(6) {
  animation-delay: 0.30s;
}

.cd-det .char-reveal span:nth-child(7) {
  animation-delay: 0.35s;
}

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

.cd-det .hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  position: relative;
}

.cd-det .hero-img-side {
  position: relative;
  overflow: hidden;
}

.cd-det .hero-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cd-det .hero-img-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(61, 88, 77, 0.18) 0%, rgba(61, 88, 77, 0.72) 100%);
  pointer-events: none;
}

.cd-det .hero-bg-num {
  position: absolute;
  bottom: -16px;
  right: -8px;
  font-size: 220px;
  font-weight: 900;
  color: rgba(61, 88, 77, 0.07);
  line-height: 1.2;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.cd-det .hero-text-side {
  background: #fff;
  padding: 64px 48px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.cd-det .hero-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(106, 168, 168, 0.12);
  color: #537879;
  border: 1px solid rgba(83, 120, 121, 0.22);
  border-radius: 48px;
  padding: 4px 16px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  width: fit-content;
}

.cd-det .hero-user-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61, 88, 77, 0.07);
  color: #3D584D;
  border-radius: 7px;
  padding: 4px 16px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  width: fit-content;
}

.cd-det .hero-h1 {
  font-size: 55px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1e2d28;
  margin: 0 0 24px 0;
  position: relative;
  z-index: 1;
}

.cd-det .hero-h1 mark {
  background: linear-gradient(97deg, rgba(61, 88, 77, 0.15) 0%, rgba(106, 168, 168, 0.18) 100%);
  color: #3D584D;
  border-radius: 7px;
  padding: 0 8px;
  -webkit-text-fill-color: #3D584D;
}

.cd-det .hero-meta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cd-det .hero-meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #537879;
  line-height: 1.6;
}

.cd-det .hero-meta-item i {
  font-size: 17px;
  color: #6AA8A8;
}

.cd-det .hero-cta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.cd-det .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(97deg, #3D584D 0%, #537879 100%);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 16px 32px;
  font-size: 17px;
  line-height: 1.6;
  cursor: pointer;
  position: relative;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.cd-det .btn-primary::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1.5px solid rgba(255, 255, 255, 0);
  border-radius: 5px;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cd-det .btn-primary:hover {
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
  transform: perspective(600px) rotateX(2deg) rotateY(-1deg);
}

.cd-det .btn-primary:hover::before {
  border-color: rgba(255, 255, 255, 0.38);
}

.cd-det .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #3D584D;
  border: 1.5px solid #3D584D;
  border-radius: 7px;
  padding: 14px 24px;
  font-size: 17px;
  line-height: 1.6;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.cd-det .btn-secondary::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1.5px solid transparent;
  border-radius: 5px;
  transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cd-det .btn-secondary:hover {
  background: rgba(61, 88, 77, 0.06);
  transform: perspective(600px) rotateX(-1.5deg) rotateY(1.5deg);
}

.cd-det .btn-secondary:hover::before {
  border-color: rgba(61, 88, 77, 0.25);
}

.cd-det .detail-body {
  background: #f4f6f5;
  padding: 64px 0;
}

.cd-det .detail-body .pg-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.cd-det .main-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cd-det .desc-block {
  background: #fff;
  border-radius: 7px;
  padding: 32px;
  box-shadow: 2px 3px 6px 0 rgba(61, 88, 77, 0.06);
}

.cd-det .block-label {
  display: inline-block;
  background: linear-gradient(97deg, #3D584D 0%, #537879 100%);
  color: #fff;
  border-radius: 7px;
  padding: 4px 16px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.cd-det .desc-block h2 {
  font-size: 29px;
  line-height: 1.2;
  color: #1e2d28;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.cd-det .desc-block p {
  font-size: 17px;
  line-height: 1.9;
  color: #2e3d38;
  margin: 0 0 16px 0;
}

.cd-det .desc-block p:last-child {
  margin-bottom: 0;
}

.cd-det .desc-block ul {
  padding: 0 0 0 8px;
  margin: 8px 0 0 0;
  list-style: none;
}

.cd-det .desc-block ul li {
  font-size: 17px;
  line-height: 1.9;
  color: #2e3d38;
  padding: 4px 0 4px 24px;
  position: relative;
}

.cd-det .desc-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #6AA8A8;
}

.cd-det .desc-block dl {
  margin: 8px 0 0 0;
}

.cd-det .desc-block dt {
  font-size: 17px;
  font-weight: 700;
  color: #3D584D;
  line-height: 1.6;
  margin-top: 16px;
}

.cd-det .desc-block dd {
  font-size: 17px;
  color: #2e3d38;
  line-height: 1.9;
  margin: 4px 0 0 0;
}

.cd-det .desc-block abbr {
  text-decoration: underline dotted;
  cursor: help;
  color: #537879;
}

.cd-det .desc-block mark {
  background: rgba(106, 168, 168, 0.18);
  color: #3D584D;
  border-radius: 7px;
  padding: 0 4px;
}

.cd-det .prog-block {
  background: #fff;
  border-radius: 7px;
  padding: 32px;
  box-shadow: 2px 3px 6px 0 rgba(61, 88, 77, 0.06);
}

.cd-det .prog-block h2 {
  font-size: 29px;
  line-height: 1.2;
  color: #1e2d28;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.cd-det .prog-block p {
  font-size: 17px;
  line-height: 1.9;
  color: #2e3d38;
  margin: 0 0 16px 0;
}

.cd-det .prog-block ul {
  padding: 0 0 0 8px;
  margin: 8px 0 0 0;
  list-style: none;
}

.cd-det .prog-block ul li {
  font-size: 17px;
  line-height: 1.9;
  color: #2e3d38;
  padding: 4px 0 4px 24px;
  position: relative;
}

.cd-det .prog-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #3D584D;
}

.cd-det .prog-block dl {
  margin: 8px 0 0 0;
}

.cd-det .prog-block dt {
  font-size: 17px;
  font-weight: 700;
  color: #3D584D;
  line-height: 1.6;
  margin-top: 16px;
}

.cd-det .prog-block dd {
  font-size: 17px;
  color: #2e3d38;
  line-height: 1.9;
  margin: 4px 0 0 0;
}

.cd-det .prog-block mark {
  background: rgba(61, 88, 77, 0.12);
  color: #3D584D;
  border-radius: 7px;
  padding: 0 4px;
}

.cd-det .prog-block figure {
  margin: 16px 0;
  border-radius: 7px;
  overflow: hidden;
}

.cd-det .prog-block figure img {
  max-width: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.cd-det .prog-block figcaption {
  font-size: 14px;
  color: #537879;
  line-height: 1.6;
  margin-top: 8px;
}

.cd-det .flow-track {
  background: linear-gradient(97deg, #3D584D 0%, #537879 60%, #6AA8A8 100%);
  border-radius: 7px;
  padding: 32px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.cd-det .flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.cd-det .flow-num {
  width: 40px;
  height: 40px;
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.cd-det .flow-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-align: center;
}

.cd-det .flow-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.cd-det .flow-arrow svg {
  width: 22px;
  height: 22px;
  opacity: 0.6;
}

.cd-det .side-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 32px;
}

.cd-det .price-card {
  background: #fff;
  border-radius: 7px;
  padding: 32px;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cd-det .price-amt {
  font-size: 55px;
  line-height: 1.2;
  font-weight: 900;
  color: #3D584D;
  letter-spacing: -0.03em;
}

.cd-det .price-terms {
  font-size: 14px;
  color: #537879;
  line-height: 1.6;
  padding: 8px 16px;
  background: rgba(106, 168, 168, 0.1);
  border-radius: 7px;
}

.cd-det .price-note {
  font-size: 14px;
  color: #537879;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.cd-det .price-note i {
  color: #6AA8A8;
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cd-det .dur-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  color: #2e3d38;
  line-height: 1.6;
  padding: 8px 0;
  border-top: 1px solid rgba(61, 88, 77, 0.1);
}

.cd-det .dur-row i {
  color: #6AA8A8;
  font-size: 22px;
}

.cd-det .circ-deco {
  position: absolute;
  border-radius: 48px;
  pointer-events: none;
}

.cd-det .hero-text-side .circ-deco.c1 {
  width: 180px;
  height: 180px;
  background: rgba(106, 168, 168, 0.06);
  top: -40px;
  right: -40px;
  border-radius: 48px;
}

.cd-det .hero-text-side .circ-deco.c2 {
  width: 100px;
  height: 100px;
  background: rgba(61, 88, 77, 0.05);
  bottom: 16px;
  right: 80px;
  border-radius: 48px;
}

.cd-det .contact-strip {
  background: #fff;
  border-radius: 7px;
  padding: 16px;
  box-shadow: 2px 3px 6px 0 rgba(83, 120, 121, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cd-det .contact-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #537879;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.cd-det .contact-strip-item i {
  color: #6AA8A8;
  font-size: 17px;
  flex-shrink: 0;
}

.cd-det .contact-strip-item:hover {
  color: #3D584D;
}

.cd-det .desc-two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.cd-det .desc-support {
  background: rgba(106, 168, 168, 0.08);
  border-radius: 7px;
  padding: 16px;
  border: 1px solid rgba(106, 168, 168, 0.2);
}

.cd-det .desc-support h4 {
  font-size: 17px;
  color: #3D584D;
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.cd-det .desc-support p {
  font-size: 14px;
  color: #537879;
  line-height: 1.9;
  margin: 0;
}

.cd-det .desc-support .acc-num {
  font-size: 40px;
  font-weight: 900;
  color: #6AA8A8;
  line-height: 1.2;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 1024px) {
  .cd-det .hero-split {
    grid-template-columns: 1fr;
  }

  .cd-det .hero-img-side {
    height: 320px;
  }

  .cd-det .hero-h1 {
    font-size: 40px;
  }

  .cd-det .detail-body .pg-wrap {
    grid-template-columns: 1fr;
  }

  .cd-det .side-col {
    position: static;
  }

  .cd-det .desc-two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cd-det .hero-text-side {
    padding: 32px 16px 32px 16px;
  }

  .cd-det .pg-wrap {
    padding: 0 16px;
  }

  .cd-det .hero-h1 {
    font-size: 29px;
  }

  .cd-det .price-amt {
    font-size: 40px;
  }

  .cd-det .flow-track {
    flex-direction: column;
    align-items: flex-start;
  }

  .cd-det .flow-arrow {
    transform: rotate(90deg);
  }

  .cd-det .desc-block,
  .cd-det .prog-block {
    padding: 16px;
  }

  .cd-det .price-card {
    padding: 16px;
  }
}

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

.cg-root .pg-top {
  position: relative;
  padding: 80px 32px 48px;
  background: linear-gradient(97deg, #2a3d34 0%, #3D584D 55%, #537879 100%);
  overflow: hidden;
}

.cg-root .pg-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg,
      rgba(106, 168, 168, 0.06) 0px,
      rgba(106, 168, 168, 0.06) 1px,
      transparent 1px,
      transparent 28px);
  pointer-events: none;
}

.cg-root .pg-top-inner {
  max-width: 860px;
  position: relative;
  z-index: 1;
}

.cg-root .pg-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(106, 168, 168, 0.18);
  border: 1px solid rgba(106, 168, 168, 0.38);
  border-radius: 48px;
  padding: 4px 16px;
  font-size: 14px;
  color: #b8dada;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.cg-root .pg-top h1 {
  font-size: 55px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 16px;
}

.cg-root .pg-top h1 .accent-bracket {
  color: #6AA8A8;
}

.cg-root .pg-top-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin: 0 0 32px;
}

.cg-root .pg-top-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cg-root .pg-top-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cg-root .pg-top-stat strong {
  font-size: 29px;
  line-height: 1.2;
  color: #6AA8A8;
  letter-spacing: -0.01em;
}

.cg-root .pg-top-stat span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.cg-root .pg-top-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
}

.cg-root .zigzag-div {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}

.cg-root .zigzag-div svg {
  display: block;
  width: 100%;
}

.cg-root .cards-area {
  padding: 48px 32px 64px;
  background: #f5f7f6;
}

.cg-root .cards-area-label {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #537879;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.cg-root .cards-area-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(83, 120, 121, 0.22);
}

.cg-root .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cg-root .crd {
  background: #fff;
  border-radius: 7px;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  perspective: 800px;
  overflow: hidden;
}

.cg-root .card-grid:hover .crd {
  transform: scale(0.97);
  opacity: 0.85;
}

.cg-root .card-grid:hover .crd:hover {
  transform: scale(1.025) rotateY(-2deg) rotateX(1deg);
  opacity: 1;
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
}

.cg-root .crd-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.cg-root .crd-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

.cg-root .crd-img-wrap .crd-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #3D584D;
  color: #fff;
  font-size: 14px;
  border-radius: 48px;
  padding: 4px 16px;
  letter-spacing: 0.03em;
}

.cg-root .crd-img-wrap .crd-level {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(106, 168, 168, 0.92);
  color: #fff;
  font-size: 14px;
  border-radius: 48px;
  padding: 4px 16px;
}

.cg-root .crd-body {
  padding: 16px 16px 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cg-root .crd-body h4 {
  font-size: 22px;
  line-height: 1.2;
  color: #2a3d34;
  margin: 0;
  letter-spacing: -0.01em;
}

.cg-root .crd-body .crd-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #4a5e58;
  margin: 0;
  flex: 1;
}

.cg-root .crd-body .crd-dur {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #537879;
}

.cg-root .crd-foot {
  padding: 16px;
  border-top: 1px solid rgba(61, 88, 77, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cg-root .crd-price-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.cg-root .crd-price {
  font-size: 29px;
  line-height: 1.2;
  color: #3D584D;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cg-root .crd-pricedes {
  font-size: 14px;
  color: #537879;
  line-height: 1.6;
}

.cg-root .crd-price-note {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

.cg-root .crd-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #3D584D;
  color: #fff;
  font-size: 14px;
  border-radius: 7px;
  padding: 8px 16px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.0, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  align-self: flex-start;
}

.cg-root .crd-btn::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 5px;
  border: 1.5px solid transparent;
  transition: border-color 0.25s cubic-bezier(0.0, 0, 0.2, 1);
  pointer-events: none;
}

.cg-root .crd-btn:hover {
  background: #2a3d34;
  border-color: #6AA8A8;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.12);
}

.cg-root .crd-btn:hover::after {
  border-color: rgba(106, 168, 168, 0.55);
}

.cg-root .crd-btn:focus-visible {
  outline: 2px solid #6AA8A8;
  outline-offset: 2px;
}

.cg-root .why-area {
  padding: 64px 32px;
  background: #fff;
  position: relative;
}

.cg-root .why-area-inner {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  gap: 32px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.cg-root .why-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}

.cg-root .why-side-marker {
  width: 40px;
  height: 40px;
  border-radius: 48px;
  background: #3D584D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cg-root .why-side-marker svg {
  width: 20px;
  height: 20px;
}

.cg-root .why-side-line {
  width: 2px;
  flex: 1;
  min-height: 60px;
  background: linear-gradient(180deg, #3D584D 0%, rgba(83, 120, 121, 0.15) 100%);
  border-radius: 2px;
}

.cg-root .why-side-end {
  width: 12px;
  height: 12px;
  border-radius: 48px;
  border: 2px solid #6AA8A8;
  background: #fff;
}

.cg-root .why-center {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cg-root .why-head-strip {
  display: inline-block;
  background: #3D584D;
  border-radius: 7px;
  padding: 4px 16px;
  margin-bottom: 8px;
}

.cg-root .why-head-strip h2 {
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}

.cg-root .why-head-strip h2 .aq {
  color: #6AA8A8;
}

.cg-root .why-cols {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.cg-root .why-main-text p {
  font-size: 17px;
  line-height: 1.6;
  color: #2e3d38;
  margin: 0 0 16px;
}

.cg-root .why-main-text p:last-child {
  margin-bottom: 0;
}

.cg-root .why-side-col {
  background: #f0f5f3;
  border-radius: 7px;
  padding: 16px;
  border: 1px dashed #6AA8A8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cg-root .why-side-col h5 {
  font-size: 14px;
  color: #3D584D;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cg-root .why-fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cg-root .why-fact strong {
  font-size: 29px;
  color: #3D584D;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cg-root .why-fact span {
  font-size: 14px;
  color: #537879;
  line-height: 1.6;
}

.cg-root .why-fact-sep {
  width: 100%;
  height: 1px;
  background: rgba(83, 120, 121, 0.2);
}

.cg-root .process-area {
  padding: 64px 32px;
  position: relative;
  overflow: hidden;
}

.cg-root .process-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(97deg, #537879 0%, #3D584D 100%);
  z-index: 0;
}

.cg-root .process-area::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 48px;
  background: rgba(106, 168, 168, 0.07);
  transform: rotate(32deg);
  pointer-events: none;
  z-index: 0;
}

.cg-root .process-geom {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 260px;
  height: 260px;
  border-radius: 7px;
  background: rgba(61, 88, 77, 0.18);
  transform: rotate(-18deg);
  pointer-events: none;
  z-index: 0;
}

.cg-root .process-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.cg-root .process-head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cg-root .process-head-strip {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  padding: 4px 16px;
}

.cg-root .process-head-strip h3 {
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}

.cg-root .process-head-strip h3 .aq {
  color: #6AA8A8;
}

.cg-root .process-head-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 360px;
  margin: 0;
}

.cg-root .process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cg-root .step-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  padding: 32px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.24s cubic-bezier(0.4, 0, 0.2, 1), transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.cg-root .step-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: rotateX(2deg) rotateY(-2deg) translateY(-4px);
}

.cg-root .step-num {
  font-size: 40px;
  line-height: 1.2;
  color: #6AA8A8;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.cg-root .step-title {
  font-size: 17px;
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.cg-root .step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.cg-root .contact-area {
  padding: 64px 32px;
  background: #f5f7f6;
  position: relative;
}

.cg-root .contact-split {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.cg-root .contact-img-col {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
}

.cg-root .contact-img-col img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

.cg-root .contact-img-col .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(97deg, transparent 30%, rgba(61, 88, 77, 0.72) 100%);
  pointer-events: none;
}

.cg-root .contact-form-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cg-root .contact-head-strip {
  display: inline-block;
  background: #3D584D;
  border-radius: 7px;
  padding: 4px 16px;
}

.cg-root .contact-head-strip h3 {
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}

.cg-root .contact-head-strip h3 .aq {
  color: #6AA8A8;
}

.cg-root .contact-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #3a4e47;
  margin: 0;
}

.cg-root .cform {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cg-root .cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cg-root .cform-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cg-root .cform-field label {
  font-size: 14px;
  color: #3D584D;
  font-weight: 600;
}

.cg-root .cform-field .input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cg-root .cform-field .input-wrap .field-icon {
  position: absolute;
  left: 12px;
  color: #537879;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.cg-root .cform-field input,
.cg-root .cform-field textarea,
.cg-root .cform-field select {
  width: 100%;
  padding: 8px 8px 8px 36px;
  font-size: 14px;
  border: 1.5px solid rgba(83, 120, 121, 0.3);
  border-radius: 7px;
  background: #fff;
  color: #2a3d34;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  box-shadow: inset 1px 1px 2px 0 rgba(61, 88, 77, 0.04);
}

.cg-root .cform-field input:focus,
.cg-root .cform-field textarea:focus,
.cg-root .cform-field select:focus {
  outline: none;
  border-color: #6AA8A8;
  box-shadow: 0 0 0 3px rgba(106, 168, 168, 0.15), inset 1px 1px 2px 0 rgba(61, 88, 77, 0.04);
}

.cg-root .cform-field textarea {
  min-height: 100px;
  resize: vertical;
}

.cg-root .cform-field.full {
  grid-column: 1 / -1;
}

.cg-root .cform-submit {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #3D584D;
  color: #fff;
  font-size: 17px;
  border-radius: 7px;
  padding: 16px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.0, 0, 0.2, 1);
  position: relative;
  align-self: flex-start;
}

.cg-root .cform-submit::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 5px;
  border: 1.5px solid transparent;
  transition: border-color 0.25s cubic-bezier(0.0, 0, 0.2, 1);
  pointer-events: none;
}

.cg-root .cform-submit:hover {
  background: #2a3d34;
  border-color: #6AA8A8;
}

.cg-root .cform-submit:hover::after {
  border-color: rgba(106, 168, 168, 0.5);
}

.cg-root .cform-submit:focus-visible {
  outline: 2px solid #6AA8A8;
  outline-offset: 2px;
}

@keyframes cg-colorshift {
  0% {
    color: rgba(255, 255, 255, 0.5);
  }

  60% {
    color: #6AA8A8;
  }

  100% {
    color: #fff;
  }
}

.cg-root .pg-top h1 {
  animation: cg-colorshift 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cg-stepfade {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }

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

.cg-root .step-card:nth-child(1) {
  animation: cg-stepfade 0.26s 0.05s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.cg-root .step-card:nth-child(2) {
  animation: cg-stepfade 0.26s 0.12s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.cg-root .step-card:nth-child(3) {
  animation: cg-stepfade 0.26s 0.19s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.cg-root .step-card:nth-child(4) {
  animation: cg-stepfade 0.26s 0.26s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@media (max-width: 1024px) {
  .cg-root .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cg-root .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .cg-root .why-area-inner {
    grid-template-columns: 40px 1fr 40px;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .cg-root .pg-top h1 {
    font-size: 40px;
  }

  .cg-root .card-grid {
    grid-template-columns: 1fr;
  }

  .cg-root .process-steps {
    grid-template-columns: 1fr;
  }

  .cg-root .contact-split {
    grid-template-columns: 1fr;
  }

  .cg-root .contact-img-col {
    display: none;
  }

  .cg-root .why-area-inner {
    grid-template-columns: 1fr;
  }

  .cg-root .why-side {
    display: none;
  }

  .cg-root .why-cols {
    grid-template-columns: 1fr;
  }

  .cg-root .cform-row {
    grid-template-columns: 1fr;
  }

  .cg-root .process-head {
    flex-direction: column;
  }

  .cg-root .pg-top-meta {
    gap: 16px;
  }

  .cg-root .pg-top {
    padding: 48px 16px 32px;
  }

  .cg-root .cards-area {
    padding: 32px 16px 48px;
  }

  .cg-root .why-area {
    padding: 48px 16px;
  }

  .cg-root .process-area {
    padding: 48px 16px;
  }

  .cg-root .contact-area {
    padding: 48px 16px;
  }
}

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

.abt-us ::selection {
  background: #3D584D;
  color: #fff;
}

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

.abt-us .title-blk {
  position: relative;
  background: #f2f5f4;
  padding-top: 80px;
  padding-bottom: 48px;
}

.abt-us .title-blk .pg-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.abt-us .title-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}

.abt-us .title-img-wrap {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
}

.abt-us .title-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.15);
  transition: filter 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-us .title-img-wrap:hover img {
  filter: grayscale(60%) contrast(1.1);
}

.abt-us .title-img-accent {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 80px;
  height: 80px;
  border-radius: 48px;
  background: rgba(61, 88, 77, 0.18);
  pointer-events: none;
}

.abt-us .title-txt-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding-bottom: 8px;
}

.abt-us .title-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #537879;
  text-transform: uppercase;
  border-radius: 7px;
  background: rgba(83, 120, 121, 0.1);
  padding: 4px 16px;
  width: fit-content;
}

.abt-us .title-h1 {
  font-size: 55px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1e2e29;
  margin: 0;
}

.abt-us .title-h1 .acc-word {
  display: inline-block;
  background: #3D584D;
  color: #fff;
  padding: 0 12px;
  border-radius: 7px;
}

.abt-us .title-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #3a4a45;
  max-width: 480px;
  margin: 0;
}

.abt-us .title-meta-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  padding-top: 16px;
  border-top: 1.5px solid rgba(61, 88, 77, 0.14);
}

.abt-us .title-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt-us .title-stat .num {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #3D584D;
  letter-spacing: -0.03em;
}

.abt-us .title-stat .lbl {
  font-size: 14px;
  line-height: 1.6;
  color: #537879;
}

.abt-us .title-deco {
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 340px;
  height: 180px;
  background: rgba(106, 168, 168, 0.07);
  border-radius: 0 48px 48px 0;
  pointer-events: none;
}

.abt-us .story-blk {
  background: #fff;
  padding: 96px 0 80px;
  position: relative;
}

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

.abt-us .story-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.abt-us .story-heading-strip {
  display: inline-block;
  background: rgba(106, 168, 168, 0.15);
  border-radius: 7px;
  padding: 4px 16px;
  margin-bottom: 8px;
}

.abt-us .story-heading-strip h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1e2e29;
  margin: 0;
}

.abt-us .story-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-us .story-body p {
  font-size: 17px;
  line-height: 1.6;
  color: #2e3d39;
  margin: 0;
}

.abt-us .story-body .acc-num {
  color: #3D584D;
  font-weight: 700;
}

.abt-us .story-img-wrap {
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
  border: 2px solid rgba(61, 88, 77, 0.1);
  transition: box-shadow 0.22s cubic-bezier(0.0, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.0, 0, 0.2, 1);
}

.abt-us .story-img-wrap:hover {
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.16);
  border-color: #6AA8A8;
}

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

.abt-us .story-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.abt-us .side-card {
  background: #f2f5f4;
  border-radius: 7px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 2px 3px 6px 0 rgba(61, 88, 77, 0.06);
  transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.abt-us .side-card:hover {
  transform: perspective(600px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
}

.abt-us .side-card .card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3D584D;
  border-radius: 7px;
  color: #fff;
  font-size: 22px;
}

.abt-us .side-card h5 {
  font-size: 17px;
  line-height: 1.2;
  color: #1e2e29;
  margin: 0;
  font-weight: 700;
}

.abt-us .side-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #3a4a45;
  margin: 0;
}

.abt-us .badge-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.abt-us .badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: #537879;
  background: rgba(83, 120, 121, 0.1);
  border-radius: 48px;
  padding: 4px 16px;
  font-weight: 600;
  border: 1px solid rgba(83, 120, 121, 0.18);
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-us .badge:hover {
  background: #537879;
  color: #fff;
}

.abt-us .team-blk {
  background: linear-gradient(97deg, #3D584D 0%, #537879 60%, #6AA8A8 100%);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.abt-us .team-blk-deco {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  transform: rotate(18deg);
}

.abt-us .team-blk-deco2 {
  position: absolute;
  bottom: -40px;
  left: 80px;
  width: 200px;
  height: 200px;
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  transform: rotate(-12deg);
}

.abt-us .team-blk .pg-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.abt-us .team-head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.abt-us .team-heading-strip {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  padding: 4px 16px;
  margin-bottom: 8px;
}

.abt-us .team-heading-strip h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.abt-us .team-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 420px;
  margin: 0;
}

.abt-us .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.abt-us .team-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
  transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.26s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.26s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.abt-us .team-card:hover {
  transform: perspective(700px) rotateY(3deg) rotateX(-1.5deg);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.18);
}

.abt-us .team-card-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.abt-us .team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-us .team-card:hover .team-card-img img {
  transform: scale(1.04);
}

.abt-us .team-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt-us .team-card-body h4 {
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  font-weight: 700;
}

.abt-us .team-card-body .role-tag {
  font-size: 14px;
  line-height: 1.6;
  color: #6AA8A8;
  font-weight: 600;
}

.abt-us .team-card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 8px 0 0;
}

.abt-us .team-card-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.abt-us .team-card-tags .tag {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.abt-us .team-bottom-strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.abt-us .team-bottom-strip p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 560px;
}

.abt-us .btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  color: #3D584D;
  background: #fff;
  border-radius: 7px;
  padding: 16px 32px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
  border: 2px solid transparent;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.abt-us .btn-contact::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 5px;
  border: 1.5px solid transparent;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.abt-us .btn-contact:hover {
  background: #3D584D;
  color: #fff;
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.18);
}

.abt-us .btn-contact:hover::after {
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
  .abt-us .title-img-row {
    grid-template-columns: 1fr;
  }

  .abt-us .title-img-wrap img {
    height: 320px;
  }

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

  .abt-us .story-img-wrap img {
    height: 280px;
  }

  .abt-us .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .abt-us .team-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .abt-us .title-h1 {
    font-size: 40px;
  }

  .abt-us .title-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .abt-us .team-grid {
    grid-template-columns: 1fr;
  }

  .abt-us .team-bottom-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .abt-us .story-heading-strip h2,
  .abt-us .team-heading-strip h2 {
    font-size: 29px;
  }

  .abt-us .title-blk {
    padding-top: 48px;
    padding-bottom: 32px;
  }

  .abt-us .story-blk,
  .abt-us .team-blk {
    padding: 64px 0 48px;
  }
}

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

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

.cont-pg .wave-bg {
  position: relative;
  background: #f4f6f5;
  overflow: hidden;
}

.cont-pg .wave-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 180%;
  height: 100%;
  background: linear-gradient(97deg, rgba(61, 88, 77, 0.07) 0%, rgba(83, 120, 121, 0.04) 40%, rgba(106, 168, 168, 0.09) 70%, rgba(61, 88, 77, 0.05) 100%);
  animation: wave-pass 8s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes wave-pass {
  0% {
    transform: translateX(0) scaleY(1);
    opacity: 0.7;
  }

  100% {
    transform: translateX(12%) scaleY(1.04);
    opacity: 1;
  }
}

.cont-pg .opener {
  padding: 64px 0 48px;
  position: relative;
  z-index: 1;
}

.cont-pg .opener .pg-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 32px;
}

.cont-pg .opener-left {
  flex: 0 0 58%;
  max-width: 58%;
  padding-left: 48px;
}

.cont-pg .opener-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  padding-bottom: 8px;
}

.cont-pg .opener-label {
  display: inline-block;
  font-size: 14px;
  line-height: 1.6;
  color: #537879;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 2px solid #6AA8A8;
  padding-top: 8px;
  margin-bottom: 16px;
}

.cont-pg .opener-h1 {
  font-size: 55px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2a3d35;
  margin: 0 0 16px;
  position: relative;
}

.cont-pg .opener-h1 .num-accent {
  color: #3D584D;
  font-size: 70px;
  line-height: 1;
  display: inline-block;
  position: relative;
}

.cont-pg .num-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  position: relative;
  vertical-align: middle;
  margin-right: 8px;
}

.cont-pg .num-ring svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
}

.cont-pg .num-ring span {
  font-size: 22px;
  line-height: 1.2;
  color: #3D584D;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cont-pg .opener-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #3D584D;
  max-width: 440px;
  margin: 0;
}

.cont-pg .dots-path {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
}

.cont-pg .dot-item {
  border-radius: 48px;
  background: #6AA8A8;
  opacity: 0.22;
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.cont-pg .dot-item:nth-child(1) {
  width: 8px;
  height: 8px;
}

.cont-pg .dot-item:nth-child(2) {
  width: 6px;
  height: 6px;
  opacity: 0.15;
}

.cont-pg .dot-item:nth-child(3) {
  width: 10px;
  height: 10px;
  opacity: 0.28;
}

.cont-pg .dot-item:nth-child(4) {
  width: 5px;
  height: 5px;
  opacity: 0.12;
}

.cont-pg .dot-item:nth-child(5) {
  width: 8px;
  height: 8px;
  opacity: 0.2;
}

.cont-pg .dot-item:nth-child(6) {
  width: 4px;
  height: 4px;
  opacity: 0.1;
}

.cont-pg .opener-stat {
  font-size: 40px;
  line-height: 1.2;
  color: #3D584D;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: right;
}

.cont-pg .opener-stat-label {
  font-size: 14px;
  line-height: 1.6;
  color: #537879;
  text-align: right;
  max-width: 180px;
}

.cont-pg .opener-img-wrap {
  width: 140px;
  height: 96px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
  position: relative;
  flex-shrink: 0;
}

.cont-pg .opener-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.6) contrast(1.1);
}

.cont-pg .opener-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(97deg, rgba(61, 88, 77, 0.38) 0%, rgba(106, 168, 168, 0.22) 100%);
  border-radius: 7px;
  pointer-events: none;
}

.cont-pg .form-belt {
  background: #fff;
  padding: 64px 0 72px;
  position: relative;
}

.cont-pg .form-belt::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(97deg, #3D584D 0%, #6AA8A8 100%);
}

.cont-pg .form-belt .pg-inner {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.cont-pg .form-col {
  flex: 0 0 56%;
  max-width: 56%;
}

.cont-pg .form-aside {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.cont-pg .form-strip-head {
  display: inline-block;
  background: #3D584D;
  color: #fff;
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  padding: 4px 16px;
  border-radius: 7px;
  margin-bottom: 16px;
}

.cont-pg .form-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #3a4a44;
  margin: 0 0 32px;
  max-width: 420px;
}

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

.cont-pg .field-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.cont-pg .field-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.cont-pg .field-label {
  font-size: 14px;
  line-height: 1.6;
  color: #3D584D;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cont-pg .field-input {
  border: 1.5px solid #c5d4cf;
  border-radius: 7px;
  padding: 12px 16px;
  font-size: 17px;
  line-height: 1.6;
  color: #2a3d35;
  background: #f4f6f5;
  outline: none;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.0, 0, 0.2, 1);
  width: 100%;
  box-sizing: border-box;
  box-shadow: inset 1px 1px 2px 0 rgba(61, 88, 77, 0.06);
}

.cont-pg .field-input::placeholder {
  color: #8aada5;
}

.cont-pg .field-input:focus {
  border-color: #6AA8A8;
  box-shadow: 0 0 0 3px rgba(106, 168, 168, 0.13), inset 1px 1px 2px 0 rgba(61, 88, 77, 0.06);
  background: #fff;
}

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

.cont-pg .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #f4f6f5;
  border-radius: 7px;
  border: 1.5px solid #c5d4cf;
}

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

.cont-pg .privacy-text {
  font-size: 14px;
  line-height: 1.6;
  color: #537879;
  margin: 0;
}

.cont-pg .privacy-text a {
  color: #3D584D;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cont-pg .privacy-text a:hover {
  color: #6AA8A8;
}

.cont-pg .submit-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #3D584D;
  color: #fff;
  font-size: 17px;
  line-height: 1.6;
  padding: 12px 32px;
  border-radius: 7px;
  border: 2px solid #3D584D;
  cursor: pointer;
  position: relative;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.0, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
  align-self: flex-start;
  perspective: 600px;
}

.cont-pg .submit-btn::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0);
  border-radius: 5px;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cont-pg .submit-btn:hover {
  background: #2a3d35;
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
  transform: perspective(600px) rotateX(2deg) rotateY(-1deg);
}

.cont-pg .submit-btn:hover::after {
  border-color: rgba(255, 255, 255, 0.35);
}

.cont-pg .submit-btn:focus {
  outline: 3px solid #6AA8A8;
  outline-offset: 3px;
}

.cont-pg .submit-btn:active {
  transform: perspective(600px) rotateX(0deg) rotateY(0deg) scale(0.98);
}

.cont-pg .aside-bubble {
  background: #3D584D;
  color: #fff;
  border-radius: 7px;
  padding: 24px;
  position: relative;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
}

.cont-pg .aside-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 32px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #3D584D;
}

.cont-pg .bubble-name {
  font-size: 14px;
  line-height: 1.6;
  color: #6AA8A8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.cont-pg .bubble-quote {
  font-size: 17px;
  line-height: 1.6;
  color: #e8f0ed;
  margin: 0 0 8px;
  font-style: italic;
}

.cont-pg .bubble-attr {
  font-size: 14px;
  line-height: 1.6;
  color: #6AA8A8;
  margin: 0;
}

.cont-pg .aside-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.cont-pg .contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 7px;
  background: #f4f6f5;
  border: 1.5px solid #dde8e4;
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  perspective: 600px;
}

.cont-pg .contact-item:hover {
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
  transform: perspective(600px) rotateX(1.5deg) rotateY(1deg);
}

.cont-pg .contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: #3D584D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 17px;
}

.cont-pg .contact-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cont-pg .contact-label {
  font-size: 14px;
  line-height: 1.2;
  color: #537879;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cont-pg .contact-val {
  font-size: 17px;
  line-height: 1.6;
  color: #2a3d35;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.cont-pg .contact-val:hover {
  color: #6AA8A8;
}

.cont-pg .info-strip {
  background: linear-gradient(97deg, #3D584D 0%, #537879 60%, #6AA8A8 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.cont-pg .info-strip::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 48px;
  border: 1.5px solid rgba(106, 168, 168, 0.18);
  transform: rotate(18deg);
  pointer-events: none;
}

.cont-pg .info-strip::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 80px;
  width: 140px;
  height: 140px;
  border-radius: 48px;
  border: 1px solid rgba(106, 168, 168, 0.12);
  transform: rotate(-12deg);
  pointer-events: none;
}

.cont-pg .info-strip .pg-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.cont-pg .info-main {
  flex: 0 0 52%;
  max-width: 52%;
}

.cont-pg .info-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cont-pg .info-strip-head {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  padding: 4px 16px;
  border-radius: 7px;
  margin-bottom: 16px;
}

.cont-pg .info-body {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 32px;
  max-width: 440px;
}

.cont-pg .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cont-pg .info-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  perspective: 600px;
}

.cont-pg .info-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: perspective(600px) rotateX(2deg) rotateY(-1.5deg);
}

.cont-pg .info-card-label {
  font-size: 14px;
  line-height: 1.6;
  color: #6AA8A8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 4px;
}

.cont-pg .info-card-val {
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}

.cont-pg .info-card-val a {
  color: #fff;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.cont-pg .info-card-val a:hover {
  color: #6AA8A8;
}

.cont-pg .disclosure-wrap {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.cont-pg .disclosure-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cont-pg .disclosure-item:last-child {
  border-bottom: none;
}

.cont-pg .disclosure-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  cursor: pointer;
  list-style: none;
  color: #fff;
  font-size: 17px;
  line-height: 1.6;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 8px;
}

.cont-pg .disclosure-toggle::-webkit-details-marker {
  display: none;
}

.cont-pg .disclosure-toggle:hover {
  background: rgba(255, 255, 255, 0.07);
}

.cont-pg .disclosure-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #6AA8A8;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.cont-pg details[open] .disclosure-icon {
  transform: rotate(45deg);
}

.cont-pg .disclosure-body {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  padding: 0 16px 16px;
}

.cont-pg .coaching-link-wrap {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  padding: 12px 24px;
  color: #fff;
  font-size: 17px;
  line-height: 1.6;
  text-decoration: none;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  perspective: 600px;
}

.cont-pg .coaching-link-wrap::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 5px;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cont-pg .coaching-link-wrap:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: perspective(600px) rotateX(1.5deg) rotateY(1deg);
}

.cont-pg .coaching-link-wrap:hover::after {
  border-color: rgba(255, 255, 255, 0.25);
}

.cont-pg .coaching-link-wrap:focus {
  outline: 3px solid #6AA8A8;
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .cont-pg .opener .pg-inner {
    flex-direction: column;
    gap: 24px;
  }

  .cont-pg .opener-left {
    flex: none;
    max-width: 100%;
    padding-left: 0;
  }

  .cont-pg .opener-right {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cont-pg .form-belt .pg-inner {
    flex-direction: column;
    gap: 48px;
  }

  .cont-pg .form-col {
    flex: none;
    max-width: 100%;
  }

  .cont-pg .info-strip .pg-inner {
    flex-direction: column;
    gap: 40px;
  }

  .cont-pg .info-main {
    flex: none;
    max-width: 100%;
  }

  .cont-pg .field-row {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .cont-pg .opener-h1 {
    font-size: 40px;
  }

  .cont-pg .pg-inner {
    padding: 0 16px;
  }

  .cont-pg .opener {
    padding: 40px 0 32px;
  }

  .cont-pg .form-belt {
    padding: 40px 0 48px;
  }

  .cont-pg .info-strip {
    padding: 48px 0 40px;
  }

  .cont-pg .info-grid {
    grid-template-columns: 1fr;
  }
}

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

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

.tech-pg img {
  max-width: 100%;
  display: block;
}

.tech-pg ::selection {
  background: #537879;
  color: #fff;
}

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

.tech-pg .title-area {
  background: #3D584D;
  padding-top: 96px;
  padding-bottom: 64px;
  position: relative;
}

.tech-pg .title-area-curves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.tech-pg .title-area-curves svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.13;
}

.tech-pg .title-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.tech-pg .title-label {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #6AA8A8;
  text-transform: uppercase;
  font-weight: 600;
}

.tech-pg .title-h1 {
  font-size: 70px;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.03em;
  max-width: 820px;
  margin: 0;
}

.tech-pg .title-h1 .accent-digit {
  color: #6AA8A8;
}

.tech-pg .title-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(106, 168, 168, 0.55);
  border-radius: 7px;
  padding: 16px 32px;
  text-decoration: none;
  position: relative;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-pg .title-link::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: border-color 0.25s cubic-bezier(0.0, 0, 0.2, 1);
  pointer-events: none;
}

.tech-pg .title-link:hover {
  background: rgba(106, 168, 168, 0.12);
  border-color: #6AA8A8;
}

.tech-pg .title-link:hover::after {
  border-color: rgba(106, 168, 168, 0.4);
}

.tech-pg .title-link:active {
  transform: translateY(1px) scale(0.99);
  transition: transform 0.12s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-pg .divider-zz {
  display: block;
  width: 100%;
  line-height: 0;
}

.tech-pg .stack-area {
  background: #f4f6f5;
  padding-top: 64px;
  padding-bottom: 64px;
}

.tech-pg .stack-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.tech-pg .stack-main-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tech-pg .strip-heading {
  display: inline-block;
  background: #3D584D;
  color: #fff;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  padding: 8px 16px;
  border-radius: 7px;
  margin: 0;
}

.tech-pg .stack-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tech-pg .stack-body p {
  font-size: 17px;
  line-height: 1.9;
  color: #2a3830;
  margin: 0;
}

.tech-pg .stack-side-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tech-pg .stack-metric-card {
  background: #fff;
  border-radius: 7px;
  padding: 16px;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
  border-top: 3px solid #537879;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  perspective: 600px;
}

.tech-pg .stack-metric-card:hover {
  transform: perspective(600px) rotateX(2deg) rotateY(-2deg) translateY(-2px);
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
}

.tech-pg .stack-metric-card:active {
  transform: perspective(600px) scale(0.98) translateY(1px);
}

.tech-pg .metric-num {
  font-size: 40px;
  line-height: 1.2;
  color: #3D584D;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tech-pg .metric-num .accent-digit {
  color: #537879;
}

.tech-pg .metric-label {
  font-size: 14px;
  line-height: 1.6;
  color: #537879;
}

.tech-pg .arch-area {
  background: #fff;
  padding-top: 64px;
  padding-bottom: 64px;
}

.tech-pg .arch-outer {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
}

.tech-pg .arch-img-col {
  position: relative;
}

.tech-pg .arch-img-wrap {
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 2px 9px 36px 0 rgba(83, 120, 121, 0.12);
  width: 100%;
  height: 420px;
}

.tech-pg .arch-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-pg .arch-dashed-accent {
  border: 2px dashed #6AA8A8;
  border-radius: 7px;
  padding: 16px;
  margin-top: 16px;
  background: rgba(106, 168, 168, 0.06);
}

.tech-pg .arch-dashed-accent p {
  font-size: 14px;
  line-height: 1.6;
  color: #3D584D;
  margin: 0;
}

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

.tech-pg .arch-heading {
  display: inline-block;
  background: #537879;
  color: #fff;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  padding: 8px 16px;
  border-radius: 7px;
  margin: 0;
}

.tech-pg .arch-blocks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tech-pg .arch-block {
  background: #f4f6f5;
  border-radius: 7px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 2px 3px 6px 0 rgba(61, 88, 77, 0.06);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-pg .arch-block:hover {
  transform: perspective(700px) rotateY(3deg) rotateX(-1deg);
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
}

.tech-pg .arch-block-icon {
  width: 36px;
  height: 36px;
  background: #3D584D;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  flex-shrink: 0;
}

.tech-pg .arch-block h5 {
  font-size: 17px;
  line-height: 1.6;
  color: #3D584D;
  margin: 0;
  font-weight: 700;
}

.tech-pg .arch-block p {
  font-size: 14px;
  line-height: 1.6;
  color: #4a5e58;
  margin: 0;
}

.tech-pg .arch-contrast-mini {
  background: #3D584D;
  border-radius: 7px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
}

.tech-pg .arch-contrast-mini h6 {
  font-size: 14px;
  line-height: 1.6;
  color: #6AA8A8;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tech-pg .arch-contrast-mini p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.tech-pg .featured-area {
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
}

.tech-pg .featured-bg-blur {
  position: absolute;
  inset: 0;
  background-image: url('./team_photos/site-2024-010.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(14px) brightness(0.38);
  pointer-events: none;
}

.tech-pg .featured-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tech-pg .featured-heading-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.tech-pg .featured-h2 {
  display: inline-block;
  background: rgba(106, 168, 168, 0.22);
  color: #fff;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  padding: 8px 16px;
  border-radius: 7px;
  margin: 0;
}

.tech-pg .featured-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 16px;
  align-items: start;
}

.tech-pg .feat-narrow {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(106, 168, 168, 0.3);
  border-radius: 7px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(4px);
  transition: background 0.26s cubic-bezier(0.4, 0, 0.2, 1), transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-pg .feat-narrow:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: perspective(600px) rotateX(2deg) rotateY(2deg);
}

.tech-pg .feat-narrow h4 {
  font-size: 17px;
  line-height: 1.6;
  color: #6AA8A8;
  margin: 0;
  font-weight: 700;
}

.tech-pg .feat-narrow p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.tech-pg .feat-narrow .feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: rgba(106, 168, 168, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6AA8A8;
  font-size: 22px;
}

.tech-pg .feat-wide {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 7px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
}

.tech-pg .feat-wide h3 {
  font-size: 29px;
  line-height: 1.2;
  color: #3D584D;
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.tech-pg .feat-wide p {
  font-size: 17px;
  line-height: 1.9;
  color: #2a3830;
  margin: 0;
}

.tech-pg .feat-wide .feat-wide-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tech-pg .feat-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.tech-pg .feat-step-num {
  font-size: 22px;
  line-height: 1.2;
  color: #537879;
  font-weight: 700;
  min-width: 32px;
}

.tech-pg .feat-step-text {
  font-size: 14px;
  line-height: 1.6;
  color: #3D584D;
}

.tech-pg .process-area {
  background: #f4f6f5;
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
}

.tech-pg .process-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  border-radius: 48px;
  background: radial-gradient(ellipse at 40% 60%, rgba(106, 168, 168, 0.18) 0%, rgba(83, 120, 121, 0.07) 55%, transparent 80%);
  animation: blob-breathe 6s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  pointer-events: none;
}

@keyframes blob-breathe {
  0% {
    transform: translate(-50%, -50%) scale(0.88);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.12);
    opacity: 1;
  }
}

.tech-pg .process-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tech-pg .process-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.tech-pg .process-h2 {
  display: inline-block;
  background: linear-gradient(97deg, #2a3830 0%, #3D584D 100%);
  color: #fff;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  padding: 8px 16px;
  border-radius: 7px;
  margin: 0 0 16px 0;
}

.tech-pg .process-desc {
  font-size: 17px;
  line-height: 1.9;
  color: #2a3830;
  margin: 0;
}

.tech-pg .process-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tech-pg .process-side-img-wrap {
  border-radius: 7px;
  overflow: hidden;
  width: 100%;
  height: 280px;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
}

.tech-pg .process-side-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-pg .process-steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tech-pg .proc-step {
  background: #fff;
  border-radius: 7px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 2px 3px 6px 0 rgba(61, 88, 77, 0.06);
  position: relative;
  transition: transform 0.28s cubic-bezier(0.0, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.0, 0, 0.2, 1);
}

.tech-pg .proc-step:hover {
  transform: perspective(700px) rotateX(-2deg) rotateY(2deg) translateY(-3px);
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
}

.tech-pg .proc-step:active {
  transform: perspective(700px) scale(0.97) translateY(1px);
  box-shadow: 2px 3px 6px 0 rgba(61, 88, 77, 0.06);
}

.tech-pg .proc-step-bar {
  height: 3px;
  border-radius: 48px;
  background: #6AA8A8;
  width: 40px;
}

.tech-pg .proc-step h5 {
  font-size: 17px;
  line-height: 1.6;
  color: #3D584D;
  margin: 0;
  font-weight: 700;
}

.tech-pg .proc-step p {
  font-size: 14px;
  line-height: 1.6;
  color: #4a5e58;
  margin: 0;
}

.tech-pg .proc-step-num-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 22px;
  line-height: 1.2;
  color: rgba(61, 88, 77, 0.12);
  font-weight: 700;
}

@media (max-width: 900px) {
  .tech-pg .title-h1 {
    font-size: 40px;
  }

  .tech-pg .stack-grid {
    grid-template-columns: 1fr;
  }

  .tech-pg .arch-outer {
    grid-template-columns: 1fr;
  }

  .tech-pg .arch-img-wrap {
    height: 260px;
  }

  .tech-pg .featured-cols {
    grid-template-columns: 1fr;
  }

  .tech-pg .process-top {
    grid-template-columns: 1fr;
  }

  .tech-pg .process-steps-row {
    grid-template-columns: 1fr 1fr;
  }

  .tech-pg .arch-blocks-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .tech-pg .title-h1 {
    font-size: 29px;
  }

  .tech-pg .strip-heading,
  .tech-pg .arch-heading,
  .tech-pg .featured-h2,
  .tech-pg .process-h2 {
    font-size: 29px;
  }

  .tech-pg .process-steps-row {
    grid-template-columns: 1fr;
  }

  .tech-pg .pg-limit {
    padding-left: 16px;
    padding-right: 16px;
  }
}

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

.srv-pg .inner-cap {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.srv-pg .top-band {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f5f6f4;
  overflow: hidden;
}

.srv-pg .top-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(97deg, #3D584D 0%, #537879 55%, #6AA8A8 100%);
  opacity: 0.07;
  pointer-events: none;
}

.srv-pg .top-band-diagonal {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  background: linear-gradient(97deg, transparent 0%, rgba(106, 168, 168, 0.10) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.srv-pg .dot-grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(61, 88, 77, 0.18) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}

.srv-pg .top-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.srv-pg .top-img-card {
  flex: 0 0 320px;
  width: 320px;
  height: 340px;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
}

.srv-pg .top-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  display: block;
}

.srv-pg .top-img-card .img-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(61, 88, 77, 0.82);
  color: #f0f4f2;
  font-size: 14px;
  line-height: 1.6;
  padding: 8px 16px;
  border-radius: 7px;
}

.srv-pg .top-text {
  flex: 1 1 0;
  min-width: 0;
  padding-left: 16px;
}

.srv-pg .top-text .pg-kicker {
  display: inline-block;
  font-size: 14px;
  line-height: 1.6;
  color: #537879;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.srv-pg .top-text h1 {
  font-size: 55px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2a3c33;
  margin: 0 0 16px 0;
}

.srv-pg .top-text h1 .h1-strip {
  background: linear-gradient(97deg, rgba(61, 88, 77, 0.13) 0%, rgba(106, 168, 168, 0.13) 100%);
  padding: 0 8px;
  border-radius: 7px;
}

.srv-pg .top-text .lead-stmt {
  font-size: 22px;
  line-height: 1.6;
  color: #3D584D;
  max-width: 560px;
  margin: 0 0 32px 0;
}

.srv-pg .top-metrics {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
}

.srv-pg .metric-chip {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.srv-pg .metric-chip .mc-val {
  font-size: 40px;
  line-height: 1.2;
  color: #3D584D;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.srv-pg .metric-chip .mc-val span {
  color: #6AA8A8;
}

.srv-pg .metric-chip .mc-label {
  font-size: 14px;
  line-height: 1.6;
  color: #537879;
}

.srv-pg .read-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.22;
  pointer-events: none;
}

.srv-pg .read-arrow svg {
  width: 32px;
  height: 32px;
}

.srv-pg .svc-detail {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
  background-color: #ffffff;
}

.srv-pg .svc-detail .two-tone-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.srv-pg .svc-detail .two-tone-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(97deg, rgba(61, 88, 77, 0.04) 0%, transparent 55%);
}

.srv-pg .svc-detail .two-tone-bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(187deg, rgba(106, 168, 168, 0.06) 0%, transparent 70%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
}

.srv-pg .hlines-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.srv-pg .hlines-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(180deg,
      rgba(83, 120, 121, 0.035) 0px,
      rgba(83, 120, 121, 0.035) 1px,
      transparent 1px,
      transparent 18px,
      rgba(83, 120, 121, 0.02) 18px,
      rgba(83, 120, 121, 0.02) 19px,
      transparent 19px,
      transparent 30px,
      rgba(83, 120, 121, 0.05) 30px,
      rgba(83, 120, 121, 0.05) 2px,
      transparent 32px,
      transparent 56px);
}

.srv-pg .svc-top-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.srv-pg .svc-intro-col {
  flex: 2 1 0;
  min-width: 0;
}

.srv-pg .svc-intro-col h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2a3c33;
  margin: 0 0 16px 0;
}

.srv-pg .svc-intro-col h2 .strip2 {
  display: inline;
  background: rgba(106, 168, 168, 0.18);
  padding: 0 8px;
  border-radius: 7px;
}

.srv-pg .svc-intro-col .body-2col {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.srv-pg .svc-intro-col .body-main {
  flex: 2 1 0;
  min-width: 0;
}

.srv-pg .svc-intro-col .body-side {
  flex: 1 1 0;
  min-width: 0;
}

.srv-pg .svc-intro-col .body-main p,
.srv-pg .svc-intro-col .body-side p {
  font-size: 17px;
  line-height: 1.9;
  color: #2f3e38;
  margin: 0 0 16px 0;
}

.srv-pg .svc-intro-col .body-side p {
  color: #537879;
}

.srv-pg .svc-stat-col {
  flex: 1 1 0;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.srv-pg .stat-pill {
  background: linear-gradient(97deg, #3D584D 0%, #537879 100%);
  border-radius: 7px;
  padding: 16px;
  color: #f0f4f2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.0, 0, 0.2, 1);
}

.srv-pg .stat-pill:hover {
  transform: perspective(600px) rotateX(-3deg) rotateY(2deg);
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.15);
}

.srv-pg .stat-pill .sp-num {
  font-size: 29px;
  line-height: 1.2;
  font-weight: 700;
  color: #b8dede;
}

.srv-pg .stat-pill .sp-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(240, 244, 242, 0.82);
}

.srv-pg .svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}

.srv-pg .svc-card {
  border-radius: 7px;
  padding: 32px;
  background: #f5f7f5;
  box-shadow: 2px 3px 6px 0 rgba(61, 88, 77, 0.06);
  border: 1.5px solid transparent;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.26s cubic-bezier(0.0, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srv-pg .svc-card:hover {
  border-color: #6AA8A8;
  border-style: dashed;
  transform: perspective(700px) rotateY(-2.5deg) rotateX(1.5deg);
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
}

.srv-pg .svc-card.accent-a {
  background: linear-gradient(97deg, rgba(61, 88, 77, 0.07) 0%, rgba(83, 120, 121, 0.06) 100%);
}

.srv-pg .svc-card.accent-b {
  background: linear-gradient(97deg, rgba(83, 120, 121, 0.08) 0%, rgba(106, 168, 168, 0.06) 100%);
}

.srv-pg .svc-card.accent-c {
  background: linear-gradient(97deg, rgba(106, 168, 168, 0.10) 0%, rgba(61, 88, 77, 0.05) 100%);
}

.srv-pg .svc-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.srv-pg .svc-card.accent-a .card-icon {
  background: rgba(61, 88, 77, 0.14);
}

.srv-pg .svc-card.accent-b .card-icon {
  background: rgba(83, 120, 121, 0.14);
}

.srv-pg .svc-card.accent-c .card-icon {
  background: rgba(106, 168, 168, 0.18);
}

.srv-pg .svc-card .card-icon i {
  font-size: 22px;
}

.srv-pg .svc-card.accent-a .card-icon i {
  color: #3D584D;
}

.srv-pg .svc-card.accent-b .card-icon i {
  color: #537879;
}

.srv-pg .svc-card.accent-c .card-icon i {
  color: #4a8f8f;
}

.srv-pg .svc-card h4 {
  font-size: 17px;
  line-height: 1.6;
  color: #2a3c33;
  margin: 0;
  font-weight: 700;
}

.srv-pg .svc-card p {
  font-size: 14px;
  line-height: 1.9;
  color: #3f5248;
  margin: 0;
}

.srv-pg .svc-card .dot-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #3f5248;
}

.srv-pg .svc-card .dot-item .di-dot {
  width: 7px;
  height: 7px;
  border-radius: 48px;
  flex-shrink: 0;
  margin-top: 7px;
}

.srv-pg .svc-card.accent-a .di-dot {
  background: #3D584D;
}

.srv-pg .svc-card.accent-b .di-dot {
  background: #537879;
}

.srv-pg .svc-card.accent-c .di-dot {
  background: #6AA8A8;
}

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

.srv-pg .svc-bottom-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.srv-pg .svc-img-block {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
}

.srv-pg .svc-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  display: block;
}

.srv-pg .svc-img-block .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(97deg, rgba(61, 88, 77, 0.88) 0%, rgba(83, 120, 121, 0.72) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.srv-pg .svc-img-block .img-overlay h3 {
  font-size: 29px;
  line-height: 1.2;
  color: #e8f0ec;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.srv-pg .svc-img-block .img-overlay p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(232, 240, 236, 0.80);
  margin: 0;
}

.srv-pg .svc-process {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srv-pg .svc-process h3 {
  font-size: 22px;
  line-height: 1.2;
  color: #2a3c33;
  margin: 0 0 8px 0;
}

.srv-pg .svc-process h3 .strip3 {
  background: rgba(61, 88, 77, 0.12);
  padding: 0 8px;
  border-radius: 7px;
}

.srv-pg .proc-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 7px;
  background: #f5f7f5;
  border: 1.5px solid rgba(83, 120, 121, 0.12);
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.24s cubic-bezier(0.0, 0, 0.2, 1);
}

.srv-pg .proc-step:hover {
  background: rgba(106, 168, 168, 0.09);
  border-color: rgba(106, 168, 168, 0.35);
  border-style: dashed;
}

.srv-pg .proc-step .step-num {
  width: 36px;
  height: 36px;
  border-radius: 48px;
  background: #3D584D;
  color: #e8f0ec;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.srv-pg .proc-step .step-txt h5 {
  font-size: 14px;
  line-height: 1.6;
  color: #2a3c33;
  margin: 0 0 4px 0;
  font-weight: 700;
}

.srv-pg .proc-step .step-txt p {
  font-size: 14px;
  line-height: 1.6;
  color: #537879;
  margin: 0;
}

.srv-pg .svc-cta-row {
  margin-top: 64px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 32px;
  border-radius: 7px;
  background: linear-gradient(97deg, #3D584D 0%, #537879 60%, #6AA8A8 100%);
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.srv-pg .svc-cta-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 7px;
  pointer-events: none;
}

.srv-pg .svc-cta-row .cta-txt {
  flex: 1 1 0;
  min-width: 0;
}

.srv-pg .svc-cta-row .cta-txt h3 {
  font-size: 29px;
  line-height: 1.2;
  color: #e8f0ec;
  margin: 0 0 8px 0;
}

.srv-pg .svc-cta-row .cta-txt p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(232, 240, 236, 0.80);
  margin: 0;
}

.srv-pg .btn-primary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #f0f4f2;
  color: #3D584D;
  font-size: 17px;
  font-weight: 700;
  border-radius: 7px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.0, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  box-shadow: 2px 3px 6px 0 rgba(61, 88, 77, 0.06);
  position: relative;
}

.srv-pg .btn-primary::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1.5px solid transparent;
  border-radius: 7px;
  transition: border-color 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.srv-pg .btn-primary:hover {
  background: #e0ecec;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.12);
  transform: perspective(600px) rotateX(-2deg);
}

.srv-pg .btn-primary:hover::after {
  border-color: #3D584D;
}

.srv-pg .btn-primary:focus {
  outline: 3px solid #6AA8A8;
  outline-offset: 3px;
}

.srv-pg .btn-sec {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: #e8f0ec;
  font-size: 17px;
  font-weight: 600;
  border-radius: 7px;
  border: 2px solid rgba(232, 240, 236, 0.55);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.24s cubic-bezier(0.0, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
}

.srv-pg .btn-sec::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1.5px solid transparent;
  border-radius: 7px;
  transition: border-color 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.srv-pg .btn-sec:hover {
  border-color: rgba(232, 240, 236, 0.90);
  background: rgba(232, 240, 236, 0.08);
}

.srv-pg .btn-sec:hover::after {
  border-color: rgba(232, 240, 236, 0.40);
}

.srv-pg .btn-sec:focus {
  outline: 3px solid #e8f0ec;
  outline-offset: 3px;
}

@keyframes inner-glow {
  0% {
    opacity: 0.0;
  }

  50% {
    opacity: 1.0;
  }

  100% {
    opacity: 0.0;
  }
}

.srv-pg .svc-detail .glow-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 340px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(106, 168, 168, 0.11) 0%, transparent 80%);
  animation: inner-glow 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1024px) {
  .srv-pg .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .srv-pg .top-layout {
    flex-direction: column;
  }

  .srv-pg .top-img-card {
    flex: 0 0 auto;
    width: 100%;
    height: 220px;
  }

  .srv-pg .top-text {
    padding-left: 0;
  }

  .srv-pg .svc-top-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .srv-pg .top-text h1 {
    font-size: 40px;
  }

  .srv-pg .top-metrics {
    gap: 16px;
  }

  .srv-pg .metric-chip .mc-val {
    font-size: 29px;
  }

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

  .srv-pg .svc-bottom-row {
    flex-direction: column;
  }

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

  .srv-pg .svc-intro-col .body-2col {
    flex-direction: column;
  }

  .srv-pg .inner-cap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .srv-pg .top-band {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .srv-pg .svc-detail {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

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

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

.frst .divider-line {
  height: 1px;
  background: linear-gradient(90deg, #3D584D 0%, #537879 40%, transparent 100%);
  border: none;
  margin: 0;
}

.frst .diamond-sep {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #537879;
  transform: rotate(45deg);
  margin: 0 8px;
  vertical-align: middle;
}

@keyframes mask-reveal {
  0% {
    clip-path: inset(0 50% 0 50%);
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  100% {
    clip-path: inset(0 0% 0 0%);
    opacity: 1;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes dot-appear {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.18;
  }
}

.frst .s1-block {
  background: linear-gradient(97deg, #1e2e28 0%, #3D584D 45%, #537879 78%, #6AA8A8 100%);
  position: relative;
  padding: 96px 0 80px;
}

.frst .s1-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.frst .s1-dots::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(106, 168, 168, 0.55) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  animation: dot-appear 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.frst .s1-inner {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.frst .s1-text {
  flex: 1 1 55%;
  animation: mask-reveal 0.88s cubic-bezier(0.0, 0, 0.2, 1) forwards;
}

.frst .s1-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(106, 168, 168, 0.18);
  border: 1px solid rgba(106, 168, 168, 0.38);
  border-radius: 7px;
  padding: 4px 16px;
  font-size: 14px;
  color: #b8dede;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.frst .s1-h1 {
  font-size: 55px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 16px;
  max-width: 640px;
}

.frst .s1-h1 span {
  color: #6AA8A8;
}

.frst .s1-desc {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 0 32px;
}

.frst .s1-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.frst .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #6AA8A8;
  color: #0f1e1b;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 7px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
  position: relative;
}

.frst .btn-primary::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 5px;
  border: 1.5px solid rgba(255, 255, 255, 0);
  transition: border-color 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.frst .btn-primary:hover {
  background: #5a9898;
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
  transform: perspective(600px) rotateX(2deg) translateY(-2px);
}

.frst .btn-primary:hover::after {
  border-color: rgba(255, 255, 255, 0.55);
}

.frst .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #b8dede;
  font-size: 17px;
  padding: 16px 32px;
  border-radius: 7px;
  border: 1.5px solid rgba(106, 168, 168, 0.5);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.26s cubic-bezier(0.4, 0, 0.2, 1), color 0.26s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.frst .btn-secondary::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 5px;
  border: 1px solid rgba(106, 168, 168, 0);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.frst .btn-secondary:hover {
  border-color: #6AA8A8;
  color: #ffffff;
  transform: perspective(600px) rotateX(2deg) translateY(-2px);
}

.frst .btn-secondary:hover::after {
  border-color: rgba(106, 168, 168, 0.4);
}

.frst .s1-img-col {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  animation: fade-up 0.9s 0.3s cubic-bezier(0.0, 0, 0.2, 1) both;
}

.frst .s1-img-wrap {
  width: 100%;
  max-width: 480px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
  position: relative;
}

.frst .s1-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 40%, rgba(30, 46, 40, 0.55) 100%);
  pointer-events: none;
}

.frst .s1-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.frst .s2-block {
  background: #f2f5f4;
  padding: 80px 0;
}

.frst .s2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.frst .s2-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.frst .s2-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(83, 120, 121, 0.1);
  border: 1px solid rgba(83, 120, 121, 0.25);
  border-radius: 7px;
  padding: 4px 16px;
  font-size: 14px;
  color: #3D584D;
  width: fit-content;
}

.frst .s2-heading {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1a2e27;
  margin: 0;
  padding: 4px 12px;
  background: rgba(106, 168, 168, 0.14);
  border-radius: 7px;
  display: inline-block;
}

.frst .s2-body {
  font-size: 17px;
  line-height: 1.9;
  color: #2a3d35;
  margin: 0;
}

.frst .s2-img-wrap {
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
}

.frst .s2-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.frst .s2-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.frst .s2-stat-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.frst .s2-stat {
  flex: 1;
  background: #ffffff;
  border-radius: 7px;
  padding: 16px;
  box-shadow: 2px 3px 6px 0 rgba(61, 88, 77, 0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.frst .s2-stat:hover {
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
  transform: perspective(500px) rotateY(-3deg) translateY(-2px);
}

.frst .s2-stat-num {
  font-size: 29px;
  line-height: 1.2;
  color: #3D584D;
  font-weight: 700;
}

.frst .s2-stat-num em {
  color: #6AA8A8;
  font-style: normal;
}

.frst .s2-stat-label {
  font-size: 14px;
  line-height: 1.6;
  color: #537879;
}

.frst .s2-partners {
  background: #ffffff;
  border-radius: 7px;
  padding: 16px;
  box-shadow: 2px 3px 6px 0 rgba(61, 88, 77, 0.06);
}

.frst .s2-partners-title {
  font-size: 14px;
  color: #537879;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.frst .s2-partner-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.frst .s2-partner-list li {
  background: rgba(61, 88, 77, 0.07);
  border-radius: 7px;
  padding: 4px 16px;
  font-size: 14px;
  color: #2a3d35;
}

.frst .s3-block {
  background: #ffffff;
  padding: 80px 0 64px;
  position: relative;
}

.frst .s3-geo {
  position: absolute;
  top: -48px;
  right: 0;
  width: 340px;
  height: 340px;
  border-radius: 48px;
  background: linear-gradient(97deg, rgba(106, 168, 168, 0.07) 0%, rgba(83, 120, 121, 0.12) 100%);
  pointer-events: none;
  overflow: hidden;
}

.frst .s3-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.frst .s3-top {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.frst .s3-top-text {
  flex: 2;
}

.frst .s3-top-aside {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.frst .s3-heading {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1a2e27;
  margin: 0 0 16px;
  padding: 4px 12px;
  background: rgba(61, 88, 77, 0.09);
  border-radius: 7px;
  display: inline-block;
}

.frst .s3-body {
  font-size: 17px;
  line-height: 1.9;
  color: #2a3d35;
  margin: 0;
}

.frst .s3-aside-card {
  background: #3D584D;
  border-radius: 7px;
  padding: 16px;
  color: #ffffff;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
}

.frst .s3-aside-card-title {
  font-size: 14px;
  color: #6AA8A8;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.frst .s3-aside-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.frst .s3-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.frst .s3-timeline-title {
  font-size: 22px;
  line-height: 1.2;
  color: #3D584D;
  margin: 0 0 16px;
}

.frst .s3-tl-track {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
}

.frst .s3-tl-track::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3D584D 0%, #6AA8A8 60%, rgba(106, 168, 168, 0.2) 100%);
}

.frst .s3-tl-item {
  flex: 1 1 0;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-top: 0;
  cursor: default;
}

.frst .s3-tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 48px;
  background: #6AA8A8;
  border: 3px solid #ffffff;
  box-shadow: 2px 3px 6px 0 rgba(61, 88, 77, 0.06);
  z-index: 1;
  flex-shrink: 0;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 13px;
}

.frst .s3-tl-item:hover .s3-tl-dot {
  background: #3D584D;
  transform: scale(1.3);
}

.frst .s3-tl-label {
  font-size: 14px;
  font-weight: 700;
  color: #3D584D;
  text-align: center;
  margin-top: 8px;
}

.frst .s3-tl-detail {
  font-size: 14px;
  line-height: 1.6;
  color: #537879;
  text-align: center;
  padding: 0 4px;
}

.frst .s3-complex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.frst .s3-step-card {
  background: #f2f5f4;
  border-radius: 7px;
  padding: 16px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.26s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 3px 6px 0 rgba(61, 88, 77, 0.06);
}

.frst .s3-step-card:hover {
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
  transform: perspective(600px) rotateX(-2deg) translateY(-3px);
  backdrop-filter: blur(2px);
}

.frst .s3-step-num {
  font-size: 29px;
  line-height: 1.2;
  font-weight: 700;
  color: #6AA8A8;
  flex-shrink: 0;
  width: 40px;
}

.frst .s3-step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.frst .s3-step-title {
  font-size: 17px;
  line-height: 1.6;
  color: #1a2e27;
  font-weight: 700;
  margin: 0;
}

.frst .s3-step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #537879;
  margin: 0;
}

.frst .s3-result-preview {
  background: linear-gradient(97deg, #3D584D 0%, #537879 100%);
  border-radius: 7px;
  padding: 32px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
}

.frst .s3-result-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.frst .s3-result-label {
  font-size: 14px;
  color: #6AA8A8;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.frst .s3-result-heading {
  font-size: 29px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

.frst .s3-result-desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.frst .s3-result-img {
  flex: 1;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
}

.frst .s3-result-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.frst .s4-block {
  background: #3D584D;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.frst .s4-geo-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 48px;
  background: radial-gradient(ellipse at center, rgba(106, 168, 168, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.frst .s4-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.frst .s4-header {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-end;
}

.frst .s4-heading {
  flex: 2;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
  padding: 4px 12px;
  background: rgba(106, 168, 168, 0.15);
  border-radius: 7px;
  display: inline-block;
}

.frst .s4-sub {
  flex: 1;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

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

.frst .s4-person {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(106, 168, 168, 0.2);
  border-radius: 7px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), 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: 2px 3px 6px 0 rgba(61, 88, 77, 0.06);
}

.frst .s4-person:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: perspective(600px) rotateY(3deg) translateY(-3px);
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
}

.frst .s4-person-img {
  width: 100%;
  height: 180px;
  border-radius: 7px;
  overflow: hidden;
}

.frst .s4-person-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.frst .s4-person-name {
  font-size: 17px;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 700;
  margin: 0;
}

.frst .s4-person-role {
  font-size: 14px;
  color: #6AA8A8;
  margin: 0;
}

.frst .s4-person-bio {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.frst .s4-creds {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.frst .s4-cred-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: rgba(106, 168, 168, 0.12);
  border-radius: 7px;
  padding: 8px 16px;
}

.frst .s4-cred-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.frst .s4-cred-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.frst .s5-block {
  padding: 80px 0;
  background: #f2f5f4;
  position: relative;
}

.frst .s5-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(106, 168, 168, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.frst .s5-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.frst .s5-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.frst .s5-heading {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1a2e27;
  margin: 0;
  padding: 4px 12px;
  background: rgba(83, 120, 121, 0.1);
  border-radius: 7px;
  display: inline-block;
}

.frst .s5-body {
  font-size: 17px;
  line-height: 1.9;
  color: #2a3d35;
  margin: 0;
}

.frst .s5-objections {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.frst .s5-obj {
  background: #ffffff;
  border-radius: 7px;
  padding: 16px;
  box-shadow: 2px 3px 6px 0 rgba(61, 88, 77, 0.06);
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.frst .s5-obj:hover {
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
  transform: perspective(700px) rotateX(2deg) translateY(-2px);
}

.frst .s5-obj-q {
  font-size: 17px;
  line-height: 1.6;
  color: #3D584D;
  font-weight: 700;
  margin: 0 0 4px;
}

.frst .s5-obj-a {
  font-size: 14px;
  line-height: 1.6;
  color: #537879;
  margin: 0;
}

.frst .s5-obj-icon {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: rgba(106, 168, 168, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #3D584D;
  font-size: 17px;
}

.frst .s5-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 32px;
}

.frst .s5-contact-card {
  background: #3D584D;
  border-radius: 7px;
  padding: 32px;
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.frst .s5-contact-title {
  font-size: 22px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

.frst .s5-contact-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.frst .s5-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.frst .s5-field-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.frst .s5-field-icon {
  position: absolute;
  left: 12px;
  color: #6AA8A8;
  font-size: 17px;
  pointer-events: none;
}

.frst .s5-field {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(106, 168, 168, 0.3);
  border-radius: 7px;
  padding: 12px 16px 12px 40px;
  font-size: 14px;
  color: #ffffff;
  outline: none;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.frst .s5-field::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.frst .s5-field:focus {
  border-color: #6AA8A8;
  background: rgba(255, 255, 255, 0.12);
}

.frst .s5-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #6AA8A8;
  color: #0f1e1b;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 7px;
  border: 2px solid transparent;
  cursor: pointer;
  width: 100%;
  position: relative;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
}

.frst .s5-submit::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 5px;
  border: 1.5px solid rgba(255, 255, 255, 0);
  transition: border-color 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.frst .s5-submit:hover {
  background: #5a9898;
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
  transform: perspective(600px) rotateX(2deg) translateY(-2px);
}

.frst .s5-submit:hover::after {
  border-color: rgba(255, 255, 255, 0.5);
}

.frst .s5-note {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin: 0;
}

@media (max-width: 900px) {
  .frst .s1-inner {
    flex-direction: column;
  }

  .frst .s1-h1 {
    font-size: 40px;
  }

  .frst .s2-inner {
    grid-template-columns: 1fr;
  }

  .frst .s3-top {
    flex-direction: column;
  }

  .frst .s3-complex {
    grid-template-columns: 1fr;
  }

  .frst .s3-result-preview {
    flex-direction: column;
  }

  .frst .s4-grid {
    grid-template-columns: 1fr;
  }

  .frst .s4-header {
    flex-direction: column;
  }

  .frst .s5-inner {
    grid-template-columns: 1fr;
  }

  .frst .s5-right {
    position: static;
  }

  .frst .s3-tl-track {
    gap: 0;
  }
}

@media (max-width: 600px) {
  .frst .s1-block {
    padding: 64px 0 48px;
  }

  .frst .s1-h1 {
    font-size: 29px;
  }

  .frst .s2-block,
  .frst .s3-block,
  .frst .s4-block,
  .frst .s5-block {
    padding: 48px 0;
  }

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

  .frst .s2-stat-row {
    flex-direction: column;
  }

  .frst .s4-person-img {
    height: 140px;
  }

  .frst .s3-tl-item {
    min-width: 100px;
  }
}

.success-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background: linear-gradient(97deg, #3D584D 0%, #537879 60%, #6AA8A8 100%);
}

.success-page .success-card {
  background: #ffffff;
  border-radius: 7px;
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
  max-width: 560px;
  width: 100%;
  padding: 32px;
  text-align: center;
  position: relative;
}

.success-page .success-card .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 48px;
  background: linear-gradient(97deg, #3D584D, #6AA8A8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px auto;
  box-shadow: 2px 5px 28px 0 rgba(83, 120, 121, 0.09);
}

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

.success-page .success-card .success-label {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #537879;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.2;
}

.success-page .success-card .success-heading {
  font-size: 29px;
  line-height: 1.2;
  color: #3D584D;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.success-page .success-card .success-text {
  font-size: 17px;
  line-height: 1.6;
  color: #2c3e35;
  margin-bottom: 32px;
}

.success-page .success-card .success-text strong {
  color: #3D584D;
}

.success-page .success-card .divider-line {
  height: 1px;
  background: linear-gradient(97deg, transparent, #6AA8A8 40%, transparent);
  margin-bottom: 32px;
  border: none;
}

.success-page .success-card .info-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  background: #f4f8f7;
  border-radius: 7px;
  padding: 16px;
  margin-bottom: 32px;
  text-align: left;
  box-shadow: inset 0 1px 2px 0 rgba(61, 88, 77, 0.06);
}

.success-page .success-card .info-row .info-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: #537879;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-page .success-card .info-row .info-text {
  font-size: 14px;
  line-height: 1.6;
  color: #3D584D;
}

.success-page .success-card .info-row .info-text strong {
  display: block;
  font-size: 17px;
  color: #3D584D;
  margin-bottom: 4px;
}

.success-page .success-card .btn-home {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: linear-gradient(97deg, #3D584D, #537879);
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.2;
  padding: 16px 32px;
  border-radius: 7px;
  box-shadow: 2px 5px 28px 0 rgba(61, 88, 77, 0.09);
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.success-page .success-card .btn-home::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: border-color 0.25s cubic-bezier(0.0, 0, 0.2, 1);
  pointer-events: none;
}

.success-page .success-card .btn-home:hover {
  box-shadow: 2px 9px 36px 0 rgba(61, 88, 77, 0.12);
  transform: perspective(600px) rotateX(2deg) translateY(-2px);
}

.success-page .success-card .btn-home:hover::after {
  border-color: rgba(255, 255, 255, 0.35);
}

.success-page .success-card .btn-home:focus-visible {
  outline: 2px solid #6AA8A8;
  outline-offset: 3px;
}

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

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

  .success-page .success-card .info-row {
    flex-direction: column;
    gap: 8px;
  }
}