* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: "Lexend", sans-serif;
}

:focus-visible {
  outline: 2px solid #62959A;
  outline-offset: 3px;
  transition: outline-offset 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.util-bar {
  background: linear-gradient(90deg, #5F656B 0%, #62959A 100%);
  padding: 8px 0;
}

.util-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.util-bar__contact {
  display: flex;
  align-items: center;
  gap: 32px;
}

.util-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.util-bar__item:hover {
  color: #C1C7C8;
}

.util-bar__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.util-bar__tagline {
  font-size: 15px;
  line-height: 1.5;
  color: #C1C7C8;
  letter-spacing: 0.02em;
}

.site-header {
  position: relative;
  background: #ffffff;
  box-shadow: 0 5px 20px 1px rgba(98, 149, 154, 0.08);
  z-index: 100;
}

.header-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 72px;
}

.brand-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-card {
  background: #ffffff;
  border: 1px solid #C1C7C8;
  box-shadow: 0 3px 3px 1px rgba(95, 101, 107, 0.05);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 60px;
}

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

.brand-name {
  font-size: 31px;
  font-weight: 700;
  color: #5F656B;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.primary-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

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

.nav-list__item {
  position: relative;
}

.nav-list__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #5F656B;
  text-decoration: none;
  border-radius: 7px;
  font-weight: 400;
  transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  min-height: 44px;
}

.nav-list__link:hover {
  background: rgba(98, 149, 154, 0.08);
  color: #62959A;
}

.nav-list__link--has-sub {
  padding-right: 12px;
}

.sub-arrow {
  width: 10px;
  height: 10px;
  display: inline-block;
  flex-shrink: 0;
}

.sub-arrow svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.nav-list__item--parent {
  position: relative;
}

.sub-menu-box {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #ffffff;
  border: 1px solid #C1C7C8;
  border-radius: 12px;
  box-shadow: 0 8px 60px 1px rgba(98, 149, 154, 0.12);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 200;
}

.nav-list__item--parent:hover .sub-menu-box,
.sub-menu-box:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sub-menu-box__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #5F656B;
  text-decoration: none;
  border-radius: 7px;
  white-space: nowrap;
  min-height: 44px;
  transition: background 0.15s cubic-bezier(0.4, 0, 0.2, 1), color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.sub-menu-box__link:hover {
  background: rgba(98, 149, 154, 0.08);
  color: #62959A;
}

.sub-menu-box__arrow {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.sub-menu-box__arrow svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.site-footer {
  background: linear-gradient(180deg, #f4f6f6 0%, #e8ecec 60%, #d0d8d9 100%);
  padding: 64px 0 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-grid {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-about {
  flex: 1;
  min-width: 220px;
}

.footer-about__text {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
}

.footer-addr {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.footer-addr__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: #5F656B;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-addr__item:hover {
  color: #62959A;
}

.footer-addr__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}

.footer-links-col__heading {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #5F656B;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}

.footer-links-col__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: #5F656B;
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 4px 0;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links-col__link:hover {
  color: #62959A;
}

.footer-link-arrow {
  display: inline-flex;
}

.footer-link-arrow svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-logo-anchor {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.footer-logo-card {
  background: #ffffff;
  border: 1px solid #C1C7C8;
  box-shadow: 0 3px 3px 1px rgba(95, 101, 107, 0.05);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 60px;
}

.footer-logo-card img {
  width: 36px;
  height: 44px;
  object-fit: contain;
  display: block;
}

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

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

.footer-copy {
  font-size: 15px;
  line-height: 1.5;
  color: #5F656B;
  letter-spacing: 0.01em;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal__link {
  font-size: 15px;
  line-height: 1.5;
  color: #5F656B;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-legal__link:hover {
  color: #62959A;
}

.consent-popup {
  display: none;
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 560px;
  max-width: calc(100vw - 32px);
  background: #ffffff;
  border: 1px solid #C1C7C8;
  border-radius: 20px;
  box-shadow: 0 8px 60px 1px rgba(98, 149, 154, 0.12);
  padding: 32px;
  z-index: 4000;
  transform: translateY(-120%);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.consent-popup.visible {
  transform: translateY(0);
}

.consent-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
}

.consent-actions {
  display: flex;
  gap: 16px;
}

.consent-btn {
  flex: 1;
  padding: 8px 16px;
  font-family: "Lexend", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  border-radius: 7px;
  cursor: pointer;
  min-height: 44px;
  font-weight: 400;
  position: relative;
  transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.consent-btn--accept {
  background: #62959A;
  color: #ffffff;
  border: 2px solid #62959A;
}

.consent-btn--accept:hover {
  background: #5F656B;
  border-color: #5F656B;
}

.consent-btn--accept:focus-visible {
  outline: 2px solid #5F656B;
  outline-offset: 3px;
}

.consent-btn--decline {
  background: transparent;
  color: #5F656B;
  border: 2px solid #C1C7C8;
}

.consent-btn--decline:hover {
  border-color: #5F656B;
  color: #5F656B;
}

.consent-btn--decline:focus-visible {
  outline: 2px solid #62959A;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .util-bar__tagline {
    display: none;
  }

  .util-bar__contact {
    gap: 16px;
  }

  .header-main {
    padding: 0 16px;
    flex-wrap: wrap;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .nav-list {
    gap: 8px;
  }

  .nav-list__link {
    padding: 8px 12px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

  .footer-logo-anchor {
    justify-content: flex-start;
  }

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

  .footer-inner {
    padding: 0 16px;
  }

  .util-bar__inner {
    padding: 0 16px;
  }
}

@media (max-width: 360px) {
  .brand-name {
    font-size: 15px;
  }

  .consent-actions {
    flex-direction: column;
  }

  .util-bar__contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (min-width: 1440px) {
  .header-main {
    padding: 0 64px;
  }

  .util-bar__inner {
    padding: 0 64px;
  }

  .footer-inner {
    padding: 0 64px;
  }
}

.terms-area {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 32px;
  color: #3a3f43;
  line-height: 1.9;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.terms-area p {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  margin-top: 0;
  margin-bottom: 16px;
  color: #3a3f43;
}

.terms-area strong,
.terms-area b {
  font-weight: 700;
  color: #2e3235;
  letter-spacing: 0.02em;
}

.terms-area ul,
.terms-area ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 32px;
}

.terms-area ul {
  list-style: none;
  padding-left: 16px;
}

.terms-area ul li {
  position: relative;
  padding-left: 16px;
}

.terms-area ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 48px;
  background-color: #62959A;
  flex-shrink: 0;
}

.terms-area ol {
  list-style: none;
  counter-reset: policy-counter;
  padding-left: 16px;
}

.terms-area ol li {
  counter-increment: policy-counter;
  position: relative;
  padding-left: 32px;
}

.terms-area ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 15px;
  font-weight: 700;
  color: #62959A;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.terms-area li {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  color: #3a3f43;
}

.terms-area li:last-child {
  margin-bottom: 0;
}

.terms-area hr {
  border: none;
  border-top: 1px solid #C1C7C8;
  margin-top: 32px;
  margin-bottom: 32px;
  opacity: 0.7;
}

.terms-area div {
  margin-bottom: 16px;
}

.terms-area table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 3px 1px rgba(98, 149, 154, 0.05), 0 5px 20px 1px rgba(98, 149, 154, 0.08);
}

.terms-area thead {
  background-color: #62959A;
}

.terms-area thead th {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 16px;
  text-align: left;
  border: none;
}

.terms-area tbody tr {
  background-color: #ffffff;
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.terms-area tbody tr:nth-child(even) {
  background-color: #f2f5f5;
}

.terms-area tbody tr:hover {
  background-color: #e6eeef;
}

.terms-area td {
  padding: 16px;
  font-size: 15px;
  line-height: 1.5;
  color: #3a3f43;
  border-bottom: 1px solid #C1C7C8;
  vertical-align: top;
}

.terms-area tbody tr:last-child td {
  border-bottom: none;
}

.terms-area th {
  padding: 16px;
  font-size: 15px;
  line-height: 1.5;
  vertical-align: top;
}

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

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

  .terms-area thead th,
  .terms-area td {
    padding: 8px 16px;
  }
}

@media (max-width: 360px) {
  .terms-area {
    padding: 32px 8px;
  }

  .terms-area ul,
  .terms-area ol {
    padding-left: 8px;
  }
}

.svc-det {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  overflow: hidden;
}

.svc-det .pub-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #C1C7C8;
  gap: 16px;
  flex-wrap: wrap;
}

.svc-det .pub-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: #5F656B;
  line-height: 1.5;
}

.svc-det .pub-date {
  letter-spacing: 0.02em;
}

.svc-det .btn-print {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #5F656B;
  background: none;
  border: 1px solid #C1C7C8;
  border-radius: 7px;
  padding: 8px 16px;
  cursor: pointer;
  letter-spacing: 0.01em;
  line-height: 1.5;
  position: relative;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.0, 0, 0.2, 1);
}

.svc-det .btn-print::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.svc-det .btn-print:hover {
  color: #62959A;
  border-color: #62959A;
}

.svc-det .btn-print:hover::after {
  border-color: #62959A;
}

.svc-det .btn-print:focus-visible {
  outline: 2px solid #62959A;
  outline-offset: 3px;
}

.svc-det .btn-print svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.svc-det .t-block {
  padding: 64px 0 32px;
  position: relative;
}

.svc-det .t-block .bg-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 85%, rgba(98, 149, 154, 0.13) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.svc-det .t-block .dots-path {
  position: absolute;
  top: 32px;
  right: 0;
  width: 180px;
  height: 120px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.svc-det .t-block .t-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.svc-det .t-block .t-label {
  font-size: 15px;
  color: #62959A;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-transform: uppercase;
}

.svc-det .t-block h1 {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #2d3235;
  font-weight: 300;
  max-width: 820px;
}

.svc-det .t-block .img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 60px 1px rgba(98, 149, 154, 0.12);
  max-height: 440px;
}

.svc-det .t-block .img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-det .t-block .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(45, 50, 53, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(45, 50, 53, 0.18) 0%, transparent 45%);
  pointer-events: none;
}

.svc-det .t-block .price-badge {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: rgba(98, 149, 154, 0.09);
  border: 1px solid rgba(98, 149, 154, 0.25);
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 15px;
  color: #3a5f63;
  letter-spacing: 0.01em;
  line-height: 1.5;
  align-self: flex-start;
}

.svc-det .price-val {
  font-size: 31px;
  font-weight: 600;
  color: #3a5f63;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.svc-det .divider-diamond {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 32px 0 16px;
}

.svc-det .divider-diamond .d-line {
  flex: 1;
  height: 1px;
  background: #C1C7C8;
}

.svc-det .divider-diamond .d-gem {
  width: 8px;
  height: 8px;
  background: #62959A;
  transform: rotate(45deg);
  border-radius: 2px;
  flex-shrink: 0;
}

.svc-det .desc-block {
  padding: 32px 0 64px;
}

.svc-det .desc-block .desc-full {
  font-size: 15px;
  line-height: 1.9;
  color: #3a3f43;
  letter-spacing: 0.01em;
  max-width: 100%;
  text-align: justify;
  margin-bottom: 32px;
}

.svc-det .desc-block .desc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.svc-det .desc-block .desc-col {
  font-size: 15px;
  line-height: 1.9;
  color: #3a3f43;
  letter-spacing: 0.01em;
  text-align: justify;
}

.svc-det .desc-block .desc-col>* {
  margin-bottom: 16px;
}

.svc-det .desc-block .desc-col ul {
  padding-left: 0;
  list-style: none;
}

.svc-det .desc-block .desc-col ul li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}

.svc-det .desc-block .desc-col ul li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: #62959A;
}

.svc-det .prog-block {
  padding: 64px 0;
  background: linear-gradient(160deg, rgba(193, 199, 200, 0.12) 0%, rgba(98, 149, 154, 0.07) 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.svc-det .prog-block .circles-dec {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  pointer-events: none;
  overflow: hidden;
}

.svc-det .prog-block .circles-dec span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(98, 149, 154, 0.15);
}

.svc-det .prog-block .circles-dec span:nth-child(1) {
  width: 80px;
  height: 80px;
  bottom: 40px;
  right: 40px;
}

.svc-det .prog-block .circles-dec span:nth-child(2) {
  width: 130px;
  height: 130px;
  bottom: 15px;
  right: 15px;
}

.svc-det .prog-block .circles-dec span:nth-child(3) {
  width: 180px;
  height: 180px;
  bottom: -10px;
  right: -10px;
}

.svc-det .prog-block .prog-inner {
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.svc-det .prog-block h2 {
  font-size: 31px;
  font-weight: 300;
  color: #2d3235;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 32px;
}

.svc-det .prog-block .prog-body {
  font-size: 15px;
  line-height: 1.9;
  color: #3a3f43;
  letter-spacing: 0.01em;
}

.svc-det .prog-block .prog-body h2,
.svc-det .prog-block .prog-body h3 {
  font-size: 31px;
  font-weight: 400;
  color: #2d3235;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 16px;
  margin-top: 32px;
}

.svc-det .prog-block .prog-body p {
  margin-bottom: 16px;
  text-align: justify;
}

.svc-det .prog-block .prog-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.svc-det .prog-block .prog-body ul li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}

.svc-det .prog-block .prog-body ul li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: #62959A;
}

.svc-det .prog-block .prog-body dl {
  margin-bottom: 16px;
}

.svc-det .prog-block .prog-body dt {
  font-weight: 600;
  color: #2d3235;
  margin-top: 16px;
}

.svc-det .prog-block .prog-body dd {
  margin-left: 16px;
  color: #3a3f43;
}

.svc-det .prog-block .prog-body blockquote {
  border-left: 3px solid #62959A;
  border-top: 1px solid rgba(98, 149, 154, 0.2);
  padding: 16px;
  margin: 16px 0;
  background: rgba(98, 149, 154, 0.05);
  border-radius: 7px;
  font-style: italic;
  color: #5F656B;
}

.svc-det .prog-block .prog-body mark {
  background: rgba(98, 149, 154, 0.18);
  color: #2d3235;
  border-radius: 3px;
  padding: 0 4px;
}

.svc-det .prog-block .prog-body details {
  border: 1px solid rgba(193, 199, 200, 0.6);
  border-radius: 7px;
  padding: 8px 16px;
  margin-bottom: 8px;
}

.svc-det .prog-block .prog-body summary {
  cursor: pointer;
  color: #3a5f63;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.svc-det .cta-strip {
  padding: 64px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid #C1C7C8;
}

.svc-det .cta-strip .cta-txt h3 {
  font-size: 31px;
  font-weight: 300;
  color: #2d3235;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.svc-det .cta-strip .cta-txt p {
  font-size: 15px;
  color: #5F656B;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.svc-det .cta-strip .cta-acts {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.svc-det .btn-primary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #62959A;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.01em;
  line-height: 1.5;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid #62959A;
  position: relative;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.svc-det .btn-primary::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid transparent;
  border-radius: 9px;
  transition: border-color 0.18s cubic-bezier(0.0, 0, 0.2, 1);
  pointer-events: none;
}

.svc-det .btn-primary:hover {
  background: #3a5f63;
  border-color: #3a5f63;
}

.svc-det .btn-primary:hover::after {
  border-color: rgba(255, 255, 255, 0.3);
}

.svc-det .btn-primary:focus-visible {
  outline: 2px solid #62959A;
  outline-offset: 3px;
}

.svc-det .btn-secondary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: none;
  color: #5F656B;
  font-size: 15px;
  letter-spacing: 0.01em;
  line-height: 1.5;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid #C1C7C8;
  position: relative;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.svc-det .btn-secondary:hover {
  color: #62959A;
  border-color: #62959A;
}

.svc-det .btn-secondary:hover::after {
  border-color: rgba(98, 149, 154, 0.3);
}

.svc-det .btn-secondary:focus-visible {
  outline: 2px solid #62959A;
  outline-offset: 3px;
}

.svc-det .arr-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.svc-det .clip-reveal {
  animation: clipWipe 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  clip-path: inset(0 100% 0 0);
}

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

.svc-det .t-block h1 {
  animation: clipWipe 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.05s both;
}

.svc-det .t-block .img-wrap {
  animation: clipWipe 0.65s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
}

@media (max-width: 1024px) {
  .svc-det .t-block h1 {
    font-size: 60px;
  }

  .svc-det .desc-block .desc-cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .svc-det {
    padding: 0 16px;
  }

  .svc-det .t-block h1 {
    font-size: 31px;
  }

  .svc-det .t-block {
    padding: 32px 0 16px;
  }

  .svc-det .t-block .img-wrap img {
    height: 240px;
  }

  .svc-det .t-block .img-wrap {
    max-height: 240px;
  }

  .svc-det .prog-block {
    padding: 32px 0;
  }

  .svc-det .prog-block .prog-inner {
    padding: 0 16px;
  }

  .svc-det .cta-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 0;
  }

  .svc-det .cta-strip .cta-acts {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .svc-det .btn-primary,
  .svc-det .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .svc-det .desc-block {
    padding: 16px 0 32px;
  }
}

@media (max-width: 360px) {
  .svc-det .t-block h1 {
    font-size: 31px;
  }

  .svc-det .pub-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media print {

  .svc-det .pub-bar,
  .svc-det .cta-strip,
  .svc-det .btn-print {
    display: none;
  }
}

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

.cmp-pg .run-schema {
  display: none;
}

.cmp-pg .pg-bound {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.cmp-pg .divider-curve {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.cmp-pg .divider-curve svg {
  display: block;
  width: 100%;
}

.cmp-pg .title-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 520px;
  background: #ffffff;
  position: relative;
}

.cmp-pg .title-row .tr-left {
  flex: 1 1 50%;
  padding: 96px 64px 96px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 2px solid #C1C7C8;
  margin-left: 32px;
}

.cmp-pg .title-row .tr-right {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
}

.cmp-pg .title-row .tr-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.08) brightness(0.97);
}

.cmp-pg .title-row .tr-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(98, 149, 154, 0.08);
  pointer-events: none;
}

.cmp-pg .title-row .tr-right .grain-layer {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='0.07'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.cmp-pg .tr-eyebrow {
  font-size: 15px;
  color: #62959A;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.5;
}

.cmp-pg .tr-h1 {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #2d3236;
  font-weight: 300;
  margin-bottom: 32px;
}

.cmp-pg .tr-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  max-width: 440px;
  text-align: justify;
}

.cmp-pg .dot-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 32px;
  align-items: center;
}

.cmp-pg .dot-row .dot {
  width: 6px;
  height: 6px;
  border-radius: 48px;
  background: #C1C7C8;
  display: block;
}

.cmp-pg .dot-row .dot.active {
  background: #62959A;
  width: 18px;
}

.cmp-pg .cmp-table-sec {
  background: #f4f6f7;
  padding: 96px 0;
}

.cmp-pg .cmp-table-sec .sec-label {
  font-size: 15px;
  color: #62959A;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  line-height: 1.5;
}

.cmp-pg .cmp-table-sec .sec-h2 {
  font-size: 31px;
  font-weight: 400;
  color: #2d3236;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.cmp-pg .cmp-table-sec .sec-intro {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  max-width: 620px;
  margin-bottom: 64px;
  text-align: justify;
}

.cmp-pg .cmp-tbl {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px 1px rgba(98, 149, 154, 0.08);
  overflow: hidden;
}

.cmp-pg .cmp-tbl thead tr {
  background: #62959A;
}

.cmp-pg .cmp-tbl thead th {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  padding: 16px 32px;
  text-align: left;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.cmp-pg .cmp-tbl thead th:first-child {
  border-radius: 12px 0 0 0;
  width: 38%;
}

.cmp-pg .cmp-tbl thead th:last-child {
  border-radius: 0 12px 0 0;
}

.cmp-pg .cmp-tbl thead th.col-ours {
  background: #4a7a7e;
}

.cmp-pg .cmp-tbl tbody tr {
  border-bottom: 1px solid #e8ecee;
  transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.cmp-pg .cmp-tbl tbody tr:last-child {
  border-bottom: none;
}

.cmp-pg .cmp-tbl tbody tr:hover {
  background: #f0f5f5;
}

.cmp-pg .cmp-tbl tbody td {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  padding: 16px 32px;
  vertical-align: middle;
}

.cmp-pg .cmp-tbl tbody td.row-label {
  font-weight: 600;
  color: #2d3236;
}

.cmp-pg .cmp-tbl tbody td.col-ours {
  background: rgba(98, 149, 154, 0.04);
  color: #2d3236;
  font-weight: 500;
}

.cmp-pg .check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 48px;
  background: #62959A;
  flex-shrink: 0;
}

.cmp-pg .check-icon svg {
  display: block;
}

.cmp-pg .cross-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 48px;
  background: #C1C7C8;
  flex-shrink: 0;
}

.cmp-pg .td-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.cmp-pg .div-wave-1 {
  background: #f4f6f7;
  line-height: 0;
}

.cmp-pg .accent-break {
  animation: bg-osc 4s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  padding: 96px 0;
}

@keyframes bg-osc {
  0% {
    background: #62959A;
  }

  100% {
    background: #5a8a8f;
  }
}

.cmp-pg .accent-break .ab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cmp-pg .accent-break .ab-left .ab-h2 {
  font-size: 31px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.cmp-pg .accent-break .ab-left .ab-body {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  text-align: justify;
}

.cmp-pg .accent-break .ab-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cmp-pg .ab-metric {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.22s cubic-bezier(0.0, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.0, 0, 0.2, 1);
}

.cmp-pg .ab-metric:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.cmp-pg .ab-metric .metric-num {
  font-size: 31px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  min-width: 80px;
}

.cmp-pg .ab-metric .metric-desc {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 8px;
}

.cmp-pg .div-wave-2 {
  line-height: 0;
}

.cmp-pg .detail-sec {
  background: #ffffff;
  padding: 96px 0;
}

.cmp-pg .detail-sec .ds-top {
  display: flex;
  flex-direction: row;
  gap: 64px;
  margin-bottom: 64px;
}

.cmp-pg .detail-sec .ds-top .ds-head {
  flex: 0 0 340px;
}

.cmp-pg .detail-sec .ds-top .ds-head .ds-h2 {
  font-size: 31px;
  font-weight: 400;
  color: #2d3236;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.cmp-pg .detail-sec .ds-top .ds-body-col {
  flex: 1 1 auto;
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  text-align: justify;
}

.cmp-pg .detail-sec .ds-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cmp-pg .ds-card {
  border: 1px solid #e0e6e8;
  border-radius: 12px;
  padding: 32px;
  position: relative;
  transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
}

.cmp-pg .ds-card:hover {
  box-shadow: 0 8px 60px 1px rgba(98, 149, 154, 0.12);
  border-color: #62959A;
}

.cmp-pg .ds-card::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cmp-pg .ds-card:hover::before {
  border-color: rgba(98, 149, 154, 0.25);
}

.cmp-pg .ds-card .card-num {
  font-size: 60px;
  font-weight: 300;
  color: #C1C7C8;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.cmp-pg .ds-card .card-h {
  font-size: 15px;
  font-weight: 600;
  color: #2d3236;
  line-height: 1.5;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.cmp-pg .ds-card .card-p {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  text-align: justify;
}

.cmp-pg .ds-card .card-dash-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.cmp-pg .ds-card .card-dash-list li {
  font-size: 15px;
  line-height: 1.5;
  color: #5F656B;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.cmp-pg .ds-card .card-dash-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 1px;
  background: #62959A;
}

.cmp-pg .detail-sec .ds-img-row {
  margin-top: 64px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.cmp-pg .detail-sec .ds-img-row .dashed-frame {
  flex: 0 0 380px;
  border: 2px dashed #C1C7C8;
  border-radius: 12px;
  padding: 8px;
}

.cmp-pg .detail-sec .ds-img-row .dashed-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 7px;
  display: block;
  box-shadow: 0 5px 20px 1px rgba(95, 101, 107, 0.08);
}

.cmp-pg .detail-sec .ds-img-row .ds-img-text {
  flex: 1 1 auto;
}

.cmp-pg .detail-sec .ds-img-row .ds-img-text .dit-h {
  font-size: 31px;
  font-weight: 300;
  color: #2d3236;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.cmp-pg .detail-sec .ds-img-row .ds-img-text .dit-p {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  text-align: justify;
  margin-bottom: 16px;
}

.cmp-pg .detail-sec .ds-img-row .ds-img-text .dit-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #62959A;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.5;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.cmp-pg .detail-sec .ds-img-row .ds-img-text .dit-link:hover {
  border-color: #62959A;
  color: #4a7a7e;
}

.cmp-pg .detail-sec .ds-img-row .ds-img-text .dit-link .arr {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cmp-pg .tstm-strip {
  margin-top: 64px;
  padding: 32px;
  background: radial-gradient(circle at 0% 100%, rgba(98, 149, 154, 0.12) 0%, transparent 70%);
  border-radius: 20px;
  border: 1px solid #e0e6e8;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.cmp-pg .tstm-strip .tstm-portrait {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 3px 3px 1px rgba(95, 101, 107, 0.05);
}

.cmp-pg .tstm-strip .tstm-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cmp-pg .tstm-strip .tstm-body {
  flex: 1 1 auto;
}

.cmp-pg .tstm-strip .tstm-body .tstm-q {
  font-size: 15px;
  line-height: 1.9;
  color: #2d3236;
  font-style: italic;
  margin-bottom: 8px;
  text-align: justify;
}

.cmp-pg .tstm-strip .tstm-body .tstm-name {
  font-size: 15px;
  font-weight: 600;
  color: #62959A;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.cmp-pg .tstm-strip .tstm-body .tstm-role {
  font-size: 15px;
  color: #5F656B;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .cmp-pg .title-row .tr-left {
    padding: 64px 32px 64px 32px;
  }

  .cmp-pg .tr-h1 {
    font-size: 60px;
  }

  .cmp-pg .detail-sec .ds-cards {
    grid-template-columns: 1fr 1fr;
  }

  .cmp-pg .detail-sec .ds-top {
    flex-direction: column;
    gap: 32px;
  }

  .cmp-pg .detail-sec .ds-top .ds-head {
    flex: none;
  }
}

@media (max-width: 768px) {
  .cmp-pg .title-row {
    flex-direction: column;
    min-height: auto;
  }

  .cmp-pg .title-row .tr-left {
    padding: 64px 32px;
    margin-left: 0;
    border-left: none;
    border-top: 2px solid #C1C7C8;
    order: 2;
  }

  .cmp-pg .title-row .tr-right {
    order: 1;
    min-height: 260px;
    flex: none;
  }

  .cmp-pg .tr-h1 {
    font-size: 31px;
  }

  .cmp-pg .accent-break .ab-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cmp-pg .detail-sec .ds-cards {
    grid-template-columns: 1fr;
  }

  .cmp-pg .detail-sec .ds-img-row {
    flex-direction: column;
  }

  .cmp-pg .detail-sec .ds-img-row .dashed-frame {
    flex: none;
    width: 100%;
  }

  .cmp-pg .tstm-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .cmp-pg .cmp-tbl thead th,
  .cmp-pg .cmp-tbl tbody td {
    padding: 16px;
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .cmp-pg .pg-bound {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cmp-pg .tr-h1 {
    font-size: 31px;
  }

  .cmp-pg .cmp-table-sec {
    padding: 64px 0;
  }

  .cmp-pg .detail-sec {
    padding: 64px 0;
  }

  .cmp-pg .accent-break {
    padding: 64px 0;
  }
}

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

.ab-us .grid {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.ab-us .title-wrap {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
  background-color: #f5f6f7;
  overflow: hidden;
}

.ab-us .title-wrap .bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(98, 149, 154, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 149, 154, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.ab-us .title-wrap .inner-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.ab-us .title-wrap .img-side {
  flex: 0 0 220px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
}

.ab-us .title-wrap .img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ab-us .title-wrap .img-side .grad-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, rgba(98, 149, 154, 0.55) 0%, transparent 70%);
  pointer-events: none;
}

.ab-us .title-wrap .img-side.right-img .grad-overlay {
  background: radial-gradient(circle at 100% 100%, rgba(95, 101, 107, 0.45) 0%, transparent 70%);
}

.ab-us .title-wrap .txt-mid {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.ab-us .title-wrap .pre-label {
  font-size: 15px;
  line-height: 1.5;
  color: #62959A;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.ab-us .title-wrap .main-heading {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-weight: 300;
  color: #3a3e42;
  margin-bottom: 16px;
}

.ab-us .title-wrap .sub-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  text-align: justify;
  max-width: 480px;
}

.ab-us .story-band {
  background-color: #fff;
  padding-top: 96px;
  padding-bottom: 96px;
  border-left: 4px solid #62959A;
  position: relative;
}

.ab-us .story-band .inner-row {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.ab-us .story-band .left-col {
  flex: 0 0 340px;
  position: relative;
}

.ab-us .story-band .feat-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  display: block;
  box-shadow: 0 8px 60px 1px rgba(98, 149, 154, 0.12);
}

.ab-us .story-band .badge-block {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: #62959A;
  color: #fff;
  border-radius: 12px;
  padding: 16px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  box-shadow: 0 5px 20px 1px rgba(98, 149, 154, 0.08);
  max-width: 160px;
}

.ab-us .story-band .badge-block strong {
  display: block;
  font-size: 31px;
  line-height: 1.1;
  font-weight: 700;
}

.ab-us .story-band .right-col {
  flex: 1 1 0;
  padding-top: 8px;
}

.ab-us .story-band .sec-heading {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 300;
  color: #3a3e42;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.ab-us .story-band .body-intro {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  text-align: justify;
  margin-bottom: 16px;
}

.ab-us .story-band .body-cols {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.ab-us .story-band .body-cols .col-p {
  flex: 1 1 0;
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  text-align: justify;
}

.ab-us .story-band .dash-list {
  margin-top: 32px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ab-us .story-band .dash-list li {
  font-size: 15px;
  line-height: 1.5;
  color: #5F656B;
  padding-left: 16px;
  position: relative;
  letter-spacing: 0.01em;
}

.ab-us .story-band .dash-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: #62959A;
}

.ab-us .team-strip {
  background-color: #eef2f3;
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
}

.ab-us .team-strip::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #C1C7C8;
  pointer-events: none;
}

.ab-us .team-strip .sec-heading {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 300;
  color: #3a3e42;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.ab-us .team-strip .profiles-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.ab-us .team-strip .profile-card {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.ab-us .team-strip .portrait-wrap {
  width: 140px;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 3px 3px 1px rgba(98, 149, 154, 0.05);
  flex-shrink: 0;
}

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

.ab-us .team-strip .profile-name {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #3a3e42;
  letter-spacing: 0.01em;
}

.ab-us .team-strip .profile-role {
  font-size: 15px;
  line-height: 1.5;
  color: #62959A;
  letter-spacing: 0.01em;
}

.ab-us .team-strip .profile-bio {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  text-align: justify;
}

.ab-us .team-strip .team-body {
  flex: 1 1 0;
  padding-top: 8px;
}

.ab-us .team-strip .team-body .body-p {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  text-align: justify;
  margin-bottom: 16px;
}

.ab-us .team-strip .dashed-accent {
  border: 1.5px dashed #62959A;
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  transition: border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-us .team-strip .dashed-accent:hover {
  border-color: #5F656B;
}

.ab-us .values-row-sec {
  background-color: #fff;
  padding-top: 96px;
  padding-bottom: 96px;
}

.ab-us .values-row-sec .sec-heading {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 300;
  color: #3a3e42;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  max-width: 480px;
}

.ab-us .values-row-sec .narrow-col {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ab-us .values-row-sec .val-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.ab-us .values-row-sec .val-item {
  background: #f5f6f7;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 3px 3px 1px rgba(95, 101, 107, 0.05);
  transition: box-shadow 0.22s cubic-bezier(0.0, 0, 0.2, 1), transform 0.22s cubic-bezier(0.0, 0, 0.2, 1);
  transform: scale(1);
  position: relative;
}

.ab-us .values-row-sec .val-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.ab-us .values-row-sec .val-item:hover::before {
  border-color: #62959A;
}

.ab-us .values-row-sec .val-item:hover {
  box-shadow: 0 5px 20px 1px rgba(98, 149, 154, 0.08);
  transform: scale(1.01);
}

.ab-us .values-row-sec .val-num {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 700;
  color: #C1C7C8;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.ab-us .values-row-sec .val-label {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #3a3e42;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.ab-us .values-row-sec .val-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  text-align: justify;
}

.ab-us .values-row-sec .img-accent {
  margin-top: 32px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  display: block;
  box-shadow: 0 5px 20px 1px rgba(98, 149, 154, 0.08);
}

.ab-us .cta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.ab-us .btn-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: #62959A;
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 7px;
  border: 1.5px solid #62959A;
  background: transparent;
  position: relative;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.ab-us .btn-link::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.ab-us .btn-link:hover::after {
  border-color: #62959A;
}

.ab-us .btn-link:hover {
  color: #3a3e42;
  border-color: #5F656B;
}

.ab-us .btn-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-us .btn-link:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .ab-us .title-wrap .img-side {
    flex: 0 0 160px;
    min-height: 260px;
  }

  .ab-us .title-wrap .main-heading {
    font-size: 31px;
  }

  .ab-us .story-band .inner-row {
    gap: 32px;
  }

  .ab-us .story-band .left-col {
    flex: 0 0 260px;
  }

  .ab-us .values-row-sec .narrow-col {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .ab-us .title-wrap .inner-row {
    flex-direction: column;
    gap: 16px;
  }

  .ab-us .title-wrap .img-side {
    flex: none;
    width: 100%;
    min-height: 180px;
    max-height: 200px;
  }

  .ab-us .title-wrap .txt-mid {
    padding: 16px;
  }

  .ab-us .title-wrap .main-heading {
    font-size: 31px;
  }

  .ab-us .story-band .inner-row {
    flex-direction: column;
  }

  .ab-us .story-band .left-col {
    flex: none;
    width: 100%;
  }

  .ab-us .story-band .feat-img {
    height: 260px;
  }

  .ab-us .story-band .badge-block {
    right: 8px;
    bottom: -8px;
  }

  .ab-us .story-band .body-cols {
    flex-direction: column;
    gap: 16px;
  }

  .ab-us .team-strip .profiles-row {
    flex-direction: column;
    gap: 32px;
  }

  .ab-us .team-strip .profile-card {
    flex: none;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
  }

  .ab-us .values-row-sec .val-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .ab-us .grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ab-us .title-wrap {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .ab-us .story-band {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .ab-us .team-strip .profile-card {
    flex-direction: column;
  }
}

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

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

.ct-us .lead-band {
  background: linear-gradient(160deg, #f2f5f5 0%, #e8eef0 60%, #d6e4e6 100%);
  padding: 64px 0 64px;
  position: relative;
  overflow: hidden;
}

.ct-us .lead-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%2362959A' fill-opacity='0.08'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  pointer-events: none;
}

.ct-us .lead-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
  position: relative;
}

.ct-us .lead-text {
  flex: 1 1 0;
}

.ct-us .lead-anchor {
  font-size: 72px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #62959A;
  opacity: 0.18;
  font-weight: 700;
  position: absolute;
  right: 0;
  top: -16px;
  pointer-events: none;
  user-select: none;
}

.ct-us .lead-tag {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #62959A;
  border: 1px solid #C1C7C8;
  border-radius: 7px;
  padding: 8px 16px;
  margin-bottom: 32px;
}

.ct-us .lead-h1 {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-weight: 300;
  color: #3a4044;
  margin: 0 0 16px;
}

.ct-us .lead-h1 strong {
  font-weight: 700;
  color: #5F656B;
}

.ct-us .lead-desc {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #5F656B;
  max-width: 480px;
  text-align: left;
}

.ct-us .lead-meta {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.ct-us .meta-item {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 3px 3px 1px rgba(98, 149, 154, 0.05), 0 5px 20px 1px rgba(98, 149, 154, 0.08);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.ct-us .meta-item:hover {
  box-shadow: 0 3px 3px 1px rgba(98, 149, 154, 0.07), 0 8px 60px 1px rgba(98, 149, 154, 0.12);
}

.ct-us .meta-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8eef0 0%, #d6e4e6 100%);
  border-radius: 7px;
}

.ct-us .meta-icon svg {
  width: 16px;
  height: 16px;
  stroke: #62959A;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.ct-us .meta-label {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #9aa3a8;
  display: block;
  margin-bottom: 8px;
}

.ct-us .meta-val {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #3a4044;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.ct-us .meta-val:hover {
  color: #62959A;
}

.ct-us .form-band {
  background: #fff;
  padding: 64px 0;
  border-top: 1px solid #e8eef0;
  border-bottom: 1px solid #e8eef0;
}

.ct-us .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ct-us .form-aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ct-us .aside-h2 {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-weight: 300;
  color: #3a4044;
  margin: 0;
}

.ct-us .aside-h2 em {
  font-style: normal;
  font-weight: 700;
  color: #62959A;
}

.ct-us .aside-body {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #5F656B;
  text-align: justify;
}

.ct-us .aside-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-us .stat-row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f2f5f5 0%, #e8eef0 100%);
}

.ct-us .stat-num {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #5F656B;
}

.ct-us .stat-num .frac {
  color: #62959A;
  font-size: 15px;
}

.ct-us .stat-desc {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #5F656B;
}

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

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

.ct-us .cf-label {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #5F656B;
  font-weight: 600;
}

.ct-us .cf-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.ct-us .cf-input-wrap .fi {
  position: absolute;
  left: 16px;
  width: 16px;
  height: 16px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-us .cf-input-wrap .fi svg {
  width: 14px;
  height: 14px;
  stroke: #9aa3a8;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ct-us .cf-input {
  width: 100%;
  padding: 16px 16px 16px 44px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #3a4044;
  background: #f7f9f9;
  border: 1px solid #C1C7C8;
  border-radius: 12px;
  outline: none;
  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;
}

.ct-us .cf-input::placeholder {
  color: #9aa3a8;
}

.ct-us .cf-input:focus {
  border-color: #62959A;
  box-shadow: 0 0 0 3px rgba(98, 149, 154, 0.12);
  background: #fff;
}

.ct-us .cf-select {
  width: 100%;
  padding: 16px 16px 16px 44px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #3a4044;
  background: #f7f9f9;
  border: 1px solid #C1C7C8;
  border-radius: 12px;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.0, 0, 0.2, 1);
  box-sizing: border-box;
}

.ct-us .cf-select:focus {
  border-color: #62959A;
  box-shadow: 0 0 0 3px rgba(98, 149, 154, 0.12);
  background: #fff;
}

.ct-us .cf-select-arrow {
  position: absolute;
  right: 16px;
  pointer-events: none;
}

.ct-us .cf-select-arrow svg {
  width: 14px;
  height: 14px;
  stroke: #9aa3a8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ct-us .cf-priority {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

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

.ct-us .cf-priority label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  border: 1px solid #C1C7C8;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #5F656B;
  background: #f7f9f9;
  transition: border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.ct-us .cf-priority label:hover {
  border-color: #62959A;
  background: #eef4f5;
}

.ct-us .cf-priority input[type="radio"]:checked+label {
  border-color: #62959A;
  background: #e0eff0;
  color: #3a4044;
  font-weight: 600;
}

.ct-us .prio-dot {
  width: 10px;
  height: 10px;
  border-radius: 48px;
  flex-shrink: 0;
}

.ct-us .prio-dot.low {
  background: #C1C7C8;
}

.ct-us .prio-dot.med {
  background: #62959A;
}

.ct-us .prio-dot.urg {
  background: #5F656B;
}

.ct-us .cf-privacy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #f7f9f9;
  border-radius: 12px;
  border: 1px solid #e8eef0;
}

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

.ct-us .cf-privacy-text {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #5F656B;
}

.ct-us .cf-privacy-text a {
  color: #62959A;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.ct-us .cf-privacy-text a:hover {
  color: #3a4044;
}

.ct-us .cf-submit {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: #fff;
  background: #5F656B;
  border: 2px solid #5F656B;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  outline: 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);
  align-self: flex-start;
}

.ct-us .cf-submit::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0);
  border-radius: 7px;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ct-us .cf-submit:hover {
  background: #62959A;
  border-color: #62959A;
}

.ct-us .cf-submit:hover::before {
  border-color: rgba(255, 255, 255, 0.4);
}

.ct-us .cf-submit:focus {
  box-shadow: 0 0 0 3px rgba(98, 149, 154, 0.25);
}

.ct-us .cf-submit svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.ct-us .cf-submit:hover svg {
  transform: translateX(4px);
}

.ct-us .detail-band {
  padding: 64px 0;
  background: linear-gradient(160deg, #e8eef0 0%, #f2f5f5 100%);
  position: relative;
  overflow: hidden;
}

.ct-us .detail-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='1' height='60' fill='%2362959A' fill-opacity='0.04'/%3E%3Crect x='0' y='0' width='60' height='1' fill='%2362959A' fill-opacity='0.04'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

.ct-us .detail-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
}

.ct-us .detail-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ct-us .detail-h3 {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-weight: 300;
  color: #3a4044;
  margin: 0;
}

.ct-us .detail-body {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #5F656B;
  text-align: justify;
}

.ct-us .detail-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px 1px rgba(95, 101, 107, 0.08);
  height: 200px;
}

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

.ct-us .detail-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-us .detail-col-h {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #3a4044;
  text-transform: uppercase;
  margin: 0;
}

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

.ct-us .detail-list li {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #5F656B;
  padding-left: 16px;
  position: relative;
}

.ct-us .detail-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: #C1C7C8;
}

.ct-us .hours-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 3px 3px 1px rgba(98, 149, 154, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-us .hours-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #5F656B;
}

.ct-us .hours-row.active {
  color: #3a4044;
  font-weight: 600;
}

.ct-us .hours-row .day {
  color: #9aa3a8;
}

.ct-us .hours-row.active .day {
  color: #5F656B;
}

@keyframes dropbounce {
  0% {
    opacity: 0;
    transform: translateY(-32px);
  }

  60% {
    opacity: 1;
    transform: translateY(6px);
  }

  80% {
    transform: translateY(-3px);
  }

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

.ct-us .lead-text {
  animation: dropbounce 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.ct-us .lead-meta {
  animation: dropbounce 0.65s 0.1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.ct-us .meta-item:hover .meta-icon {
  box-shadow: 0 0 0 6px rgba(98, 149, 154, 0.1), 0 0 18px 2px rgba(98, 149, 154, 0.13);
}

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

  .ct-us .lead-meta {
    flex: none;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .ct-us .lead-anchor {
    font-size: 60px;
  }

  .ct-us .form-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ct-us .detail-inner {
    grid-template-columns: 1fr 1fr;
  }

  .ct-us .detail-main {
    grid-column: 1 / -1;
  }
}

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

  .ct-us .lead-band {
    padding: 32px 0;
  }

  .ct-us .lead-h1 {
    font-size: 31px;
  }

  .ct-us .lead-anchor {
    font-size: 31px;
  }

  .ct-us .lead-meta {
    grid-template-columns: 1fr;
  }

  .ct-us .form-band {
    padding: 32px 0;
  }

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

  .ct-us .detail-band {
    padding: 32px 0;
  }

  .ct-us .detail-inner {
    grid-template-columns: 1fr;
  }

  .ct-us .detail-main {
    grid-column: auto;
  }
}

@media (max-width: 360px) {
  .ct-us .lead-h1 {
    font-size: 31px;
  }

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

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

.bs-root .pg-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.bs-root .title-blk {
  position: relative;
  padding: 96px 0 64px;
  background: radial-gradient(circle at 20% 100%, rgba(98, 149, 154, 0.18) 0%, rgba(193, 199, 200, 0.08) 55%, transparent 80%);
  overflow: hidden;
}

.bs-root .title-blk .atm-spot {
  position: absolute;
  border-radius: 48px;
  pointer-events: none;
  z-index: 0;
}

.bs-root .title-blk .atm-spot.s1 {
  width: 320px;
  height: 320px;
  background: rgba(98, 149, 154, 0.10);
  filter: blur(72px);
  top: -80px;
  right: 60px;
}

.bs-root .title-blk .atm-spot.s2 {
  width: 200px;
  height: 200px;
  background: rgba(95, 101, 107, 0.07);
  filter: blur(48px);
  bottom: 0;
  left: 30%;
}

.bs-root .title-blk .pg-wrap {
  position: relative;
  z-index: 1;
}

.bs-root .title-blk .t-label {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #62959A;
  margin-bottom: 16px;
  display: block;
}

.bs-root .title-blk .t-head {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #2c3336;
  font-weight: 300;
  margin: 0 0 32px;
  max-width: 680px;
}

.bs-root .title-blk .t-head .kw-mark {
  display: inline;
  border-bottom: 2px solid #62959A;
  padding-bottom: 2px;
}

.bs-root .title-blk .t-sub {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #4a5055;
  max-width: 520px;
  text-align: left;
  margin-bottom: 32px;
}

.bs-root .title-blk .t-img-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 32px;
  align-items: flex-end;
}

.bs-root .title-blk .t-img-main {
  flex: 2;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.bs-root .title-blk .t-img-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bs-root .title-blk .t-img-main::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(30, 38, 42, 0.45), transparent);
  pointer-events: none;
}

.bs-root .title-blk .t-stat-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bs-root .title-blk .t-stat {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 5px 20px 1px rgba(98, 149, 154, 0.08);
}

.bs-root .title-blk .t-stat .st-num {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #62959A;
  font-weight: 600;
  display: block;
}

.bs-root .title-blk .t-stat .st-desc {
  font-size: 15px;
  line-height: 1.5;
  color: #5F656B;
  display: block;
  margin-top: 8px;
}

.bs-root .commit-blk {
  padding: 64px 0;
  background: #fff;
}

.bs-root .commit-blk .cb-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.bs-root .commit-blk .cb-aside {
  position: sticky;
  top: 32px;
}

.bs-root .commit-blk .cb-aside .aside-tag {
  font-size: 15px;
  line-height: 1.5;
  color: #62959A;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 16px;
}

.bs-root .commit-blk .cb-aside h2 {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #2c3336;
  font-weight: 300;
  margin: 0;
}

.bs-root .commit-blk .cb-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bs-root .commit-blk .cb-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(193, 199, 200, 0.5);
}

.bs-root .commit-blk .cb-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bs-root .commit-blk .cb-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: rgba(98, 149, 154, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 3px 1px rgba(98, 149, 154, 0.05);
}

.bs-root .commit-blk .cb-icon svg {
  width: 20px;
  height: 20px;
}

.bs-root .commit-blk .cb-text h4 {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #2c3336;
  font-weight: 600;
  margin: 0 0 8px;
}

.bs-root .commit-blk .cb-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #4a5055;
  margin: 0;
  text-align: justify;
}

.bs-root .scale-blk {
  padding: 96px 0;
  background: linear-gradient(160deg, rgba(98, 149, 154, 0.08) 0%, rgba(193, 199, 200, 0.06) 60%, rgba(255, 255, 255, 0) 100%);
  position: relative;
}

.bs-root .scale-blk .poly-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 260px;
  clip-path: polygon(100% 0%, 100% 100%, 30% 100%, 0% 30%, 40% 0%);
  background: rgba(98, 149, 154, 0.06);
  pointer-events: none;
}

.bs-root .scale-blk .pg-wrap {
  position: relative;
  z-index: 1;
}

.bs-root .scale-blk .sc-head-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 32px;
}

.bs-root .scale-blk .sc-head-row h2 {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #2c3336;
  font-weight: 300;
  margin: 0;
  max-width: 400px;
}

.bs-root .scale-blk .sc-head-row p {
  font-size: 15px;
  line-height: 1.9;
  color: #4a5055;
  max-width: 380px;
  margin: 0;
  text-align: justify;
}

.bs-root .scale-blk .metrics-dash {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.bs-root .scale-blk .met-cell {
  background: #fff;
  border-radius: 12px;
  padding: 32px 16px;
  text-align: center;
  box-shadow: 0 5px 20px 1px rgba(95, 101, 107, 0.08);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.bs-root .scale-blk .met-cell:hover {
  box-shadow: 0 8px 60px 1px rgba(98, 149, 154, 0.12);
  transform: translateY(-2px);
}

.bs-root .scale-blk .met-cell .mc-val {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #62959A;
  font-weight: 300;
  display: block;
}

.bs-root .scale-blk .met-cell .mc-unit {
  font-size: 31px;
  line-height: 1.1;
  color: #62959A;
  font-weight: 300;
}

.bs-root .scale-blk .met-cell .mc-label {
  font-size: 15px;
  line-height: 1.5;
  color: #5F656B;
  display: block;
  margin-top: 8px;
  letter-spacing: 0.01em;
}

.bs-root .scale-blk .sc-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.bs-root .scale-blk .sc-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.25s cubic-bezier(0.0, 0, 0.2, 1);
}

.bs-root .scale-blk .sc-img-wrap:hover img {
  transform: scale(1.02);
}

.bs-root .clients-blk {
  padding: 64px 0;
  background: #fff;
}

.bs-root .clients-blk .cl-top {
  margin-bottom: 64px;
}

.bs-root .clients-blk .cl-top h2 {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #2c3336;
  font-weight: 300;
  margin: 0 0 16px;
}

.bs-root .clients-blk .cl-top p {
  font-size: 15px;
  line-height: 1.9;
  color: #4a5055;
  max-width: 560px;
  margin: 0;
}

.bs-root .clients-blk .cl-cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.bs-root .clients-blk .case-card {
  border-radius: 12px;
  border: 1px solid rgba(193, 199, 200, 0.6);
  padding: 32px;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.bs-root .clients-blk .case-card:hover {
  border-color: rgba(98, 149, 154, 0.4);
  box-shadow: 0 5px 20px 1px rgba(98, 149, 154, 0.08);
}

.bs-root .clients-blk .case-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  background: rgba(98, 149, 154, 0.04);
}

.bs-root .clients-blk .case-portrait {
  width: 120px;
}

.bs-root .clients-blk .case-portrait img {
  width: 120px;
  height: 160px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bs-root .clients-blk .case-meta .cm-name {
  font-size: 15px;
  line-height: 1.5;
  color: #2c3336;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.bs-root .clients-blk .case-meta .cm-role {
  font-size: 15px;
  line-height: 1.5;
  color: #62959A;
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.bs-root .clients-blk .case-meta .cm-body {
  font-size: 15px;
  line-height: 1.9;
  color: #4a5055;
  margin: 0;
  text-align: justify;
}

.bs-root .clients-blk .case-card .cc-sector {
  font-size: 15px;
  line-height: 1.5;
  color: #62959A;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 8px;
}

.bs-root .clients-blk .case-card h4 {
  font-size: 15px;
  line-height: 1.5;
  color: #2c3336;
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

.bs-root .clients-blk .case-card .cc-body {
  font-size: 15px;
  line-height: 1.9;
  color: #4a5055;
  margin: 0;
  text-align: justify;
}

.bs-root .clients-blk .case-card .cc-outcome {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(193, 199, 200, 0.5);
  font-size: 15px;
  line-height: 1.5;
  color: #5F656B;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.bs-root .clients-blk .case-card .cc-outcome::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 48px;
  background: #62959A;
}

.bs-root .sits-blk {
  padding: 96px 0 64px;
  background: linear-gradient(160deg, rgba(193, 199, 200, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  position: relative;
}

.bs-root .sits-blk .sb-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  height: 180px;
  clip-path: polygon(0% 100%, 100% 100%, 0% 20%);
  background: rgba(98, 149, 154, 0.05);
  pointer-events: none;
}

.bs-root .sits-blk .pg-wrap {
  position: relative;
  z-index: 1;
}

.bs-root .sits-blk .sb-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}

.bs-root .sits-blk .sb-intro h2 {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #2c3336;
  font-weight: 300;
  margin: 0;
}

.bs-root .sits-blk .sb-intro p {
  font-size: 15px;
  line-height: 1.9;
  color: #4a5055;
  margin: 0;
  text-align: justify;
}

.bs-root .sits-blk .sb-img-full {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 64px;
}

.bs-root .sits-blk .sb-img-full img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bs-root .sits-blk .sit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bs-root .sits-blk .sit-item {
  padding: 32px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 3px 3px 1px rgba(95, 101, 107, 0.05);
  transition: box-shadow 0.17s cubic-bezier(0.4, 0, 0.2, 1);
}

.bs-root .sits-blk .sit-item:hover {
  box-shadow: 0 8px 60px 1px rgba(98, 149, 154, 0.12);
}

.bs-root .sits-blk .sit-item .si-num {
  font-size: 31px;
  line-height: 1.1;
  color: #C1C7C8;
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.bs-root .sits-blk .sit-item h4 {
  font-size: 15px;
  line-height: 1.5;
  color: #2c3336;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}

.bs-root .sits-blk .sit-item p {
  font-size: 15px;
  line-height: 1.9;
  color: #4a5055;
  margin: 0;
}

@keyframes shadow-build {
  from {
    box-shadow: 0 0 0 0 rgba(98, 149, 154, 0);
  }

  to {
    box-shadow: 0 8px 60px 1px rgba(98, 149, 154, 0.12);
  }
}

.bs-root .title-blk .t-stat {
  animation: shadow-build 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@media (max-width: 1024px) {
  .bs-root .scale-blk .metrics-dash {
    grid-template-columns: repeat(2, 1fr);
  }

  .bs-root .commit-blk .cb-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bs-root .commit-blk .cb-aside {
    position: static;
  }
}

@media (max-width: 768px) {
  .bs-root .title-blk {
    padding: 64px 0 32px;
  }

  .bs-root .title-blk .t-head {
    font-size: 31px;
  }

  .bs-root .title-blk .t-img-row {
    flex-direction: column;
  }

  .bs-root .title-blk .t-stat-col {
    flex-direction: row;
  }

  .bs-root .scale-blk .sc-head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .bs-root .scale-blk .metrics-dash {
    grid-template-columns: repeat(2, 1fr);
  }

  .bs-root .clients-blk .cl-cases {
    grid-template-columns: 1fr;
  }

  .bs-root .clients-blk .case-card.featured {
    grid-template-columns: 1fr;
  }

  .bs-root .sits-blk .sb-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bs-root .sits-blk .sit-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .bs-root .pg-wrap {
    padding: 0 16px;
  }

  .bs-root .title-blk .t-head {
    font-size: 31px;
  }

  .bs-root .scale-blk .metrics-dash {
    grid-template-columns: 1fr;
  }

  .bs-root .title-blk .t-stat-col {
    flex-direction: column;
  }
}

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

.afl-pg .bound {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.afl-pg .lead-block {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
  background: #f2f4f4;
  overflow: hidden;
}

.afl-pg .lead-block::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at bottom left, rgba(98, 149, 154, 0.18) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 48px;
}

.afl-pg .lead-block::after {
  content: '';
  position: absolute;
  top: -40px;
  right: 80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at bottom left, rgba(95, 101, 107, 0.1) 0%, transparent 65%);
  pointer-events: none;
  border-radius: 48px;
}

.afl-pg .lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.afl-pg .lead-text {
  position: relative;
  z-index: 1;
}

.afl-pg .lead-kicker {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #62959A;
  border-bottom: 1.5px solid #62959A;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.afl-pg .lead-h1 {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-weight: 300;
  color: #2e3436;
  margin-bottom: 32px;
}

.afl-pg .lead-h1 .num-badge {
  display: inline-block;
  font-size: 31px;
  font-weight: 700;
  color: #62959A;
  vertical-align: middle;
  margin-left: 8px;
  letter-spacing: 0.01em;
}

.afl-pg .lead-desc {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #5F656B;
  margin-bottom: 32px;
  text-align: justify;
}

.afl-pg .lead-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #2e3436;
  background: transparent;
  border: 1.5px solid #62959A;
  border-radius: 7px;
  padding: 16px 32px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.afl-pg .lead-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #62959A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  border-radius: 7px;
}

.afl-pg .lead-btn:hover::before {
  transform: scaleX(1);
}

.afl-pg .lead-btn:hover {
  color: #fff;
  border-color: #62959A;
}

.afl-pg .lead-btn span {
  position: relative;
  z-index: 1;
}

.afl-pg .lead-btn .arr {
  position: relative;
  z-index: 1;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.afl-pg .lead-btn:hover .arr {
  transform: translateX(4px);
}

.afl-pg .lead-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 60px 1px rgba(98, 149, 154, 0.12);
  z-index: 1;
}

.afl-pg .lead-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.afl-pg .lead-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(46, 52, 54, 0.45) 100%);
  border-radius: 20px;
  pointer-events: none;
}

.afl-pg .divider-zig {
  width: 100%;
  display: block;
  line-height: 0;
  background: #f2f4f4;
}

.afl-pg .divider-zig svg {
  display: block;
  width: 100%;
}

.afl-pg .terms-block {
  background: #fff;
  padding-top: 64px;
  padding-bottom: 64px;
}

.afl-pg .terms-label {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #62959A;
  margin-bottom: 16px;
  display: block;
}

.afl-pg .terms-h2 {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #2e3436;
  margin-bottom: 32px;
}

.afl-pg .terms-intro {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  text-align: justify;
}

.afl-pg .terms-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.afl-pg .term-card {
  border: 1.5px solid #C1C7C8;
  border-radius: 12px;
  padding: 32px;
  position: relative;
  background: #fff;
  box-shadow: 0 3px 3px 1px rgba(95, 101, 107, 0.05);
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.afl-pg .term-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #62959A;
  border-radius: 12px 0 0 12px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.afl-pg .term-card:hover::after {
  transform: scaleY(1);
}

.afl-pg .term-card:hover {
  box-shadow: 0 5px 20px 1px rgba(98, 149, 154, 0.08);
  border-color: #62959A;
}

.afl-pg .term-num {
  font-size: 31px;
  font-weight: 700;
  color: #C1C7C8;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.afl-pg .term-card h4 {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  color: #2e3436;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.afl-pg .term-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  letter-spacing: 0.01em;
  text-align: justify;
}

.afl-pg .divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #C1C7C8 30%, #C1C7C8 70%, transparent);
  margin: 0;
}

.afl-pg .process-block {
  background: #eef1f1;
  padding-top: 96px;
  padding-bottom: 96px;
}

.afl-pg .process-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.afl-pg .process-aside h2 {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #2e3436;
  margin-bottom: 16px;
}

.afl-pg .process-aside p {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  letter-spacing: 0.01em;
  text-align: justify;
}

.afl-pg .process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.afl-pg .step-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #C1C7C8;
  position: relative;
}

.afl-pg .step-row:last-child {
  border-bottom: none;
}

.afl-pg .step-idx {
  font-size: 31px;
  font-weight: 700;
  color: #C1C7C8;
  line-height: 1.1;
  letter-spacing: 0.01em;
  padding-top: 8px;
  transition: color 0.18s cubic-bezier(0.0, 0, 0.2, 1);
}

.afl-pg .step-row:hover .step-idx {
  color: #62959A;
}

.afl-pg .step-body h5 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #2e3436;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.afl-pg .step-body p {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  letter-spacing: 0.01em;
  text-align: justify;
}

.afl-pg .divider-zig2 {
  width: 100%;
  display: block;
  line-height: 0;
  background: #eef1f1;
}

.afl-pg .divider-zig2 svg {
  display: block;
  width: 100%;
}

.afl-pg .partners-block {
  background: #fff;
  padding-top: 64px;
  padding-bottom: 96px;
}

.afl-pg .partners-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

.afl-pg .partners-h2 {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #2e3436;
  margin-bottom: 16px;
}

.afl-pg .partners-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  letter-spacing: 0.01em;
  text-align: justify;
}

.afl-pg .partners-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.afl-pg .req-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 7px;
  background: #f2f4f4;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.afl-pg .req-item:hover {
  background: #e6ecec;
}

.afl-pg .req-dash {
  color: #62959A;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  flex-shrink: 0;
}

.afl-pg .req-item p {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  letter-spacing: 0.01em;
  margin: 0;
}

.afl-pg .reviews-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.afl-pg .review-card {
  border-radius: 20px;
  padding: 32px;
  background: #f2f4f4;
  box-shadow: 0 3px 3px 1px rgba(95, 101, 107, 0.05);
  border: 1.5px solid transparent;
  transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.afl-pg .review-card:hover {
  border-color: #C1C7C8;
  box-shadow: 0 5px 20px 1px rgba(98, 149, 154, 0.08);
}

.afl-pg .review-quote {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  letter-spacing: 0.01em;
  text-align: justify;
  margin-bottom: 16px;
}

.afl-pg .review-author {
  font-size: 15px;
  font-weight: 600;
  color: #2e3436;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.afl-pg .review-role {
  font-size: 15px;
  color: #62959A;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.afl-pg .contact-strip {
  margin-top: 64px;
  padding: 32px;
  border-radius: 12px;
  border: 1.5px solid #C1C7C8;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #f2f4f4;
}

.afl-pg .contact-strip p {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  letter-spacing: 0.01em;
  margin: 0;
}

.afl-pg .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #2e3436;
  text-decoration: none;
  border-bottom: 1.5px solid #62959A;
  padding-bottom: 4px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.afl-pg .contact-link:hover {
  color: #62959A;
}

@media (max-width: 1024px) {
  .afl-pg .lead-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .afl-pg .lead-h1 {
    font-size: 31px;
  }

  .afl-pg .terms-cols {
    grid-template-columns: 1fr 1fr;
  }

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

  .afl-pg .partners-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .afl-pg .bound {
    padding-left: 16px;
    padding-right: 16px;
  }

  .afl-pg .lead-block {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .afl-pg .lead-h1 {
    font-size: 31px;
  }

  .afl-pg .terms-cols {
    grid-template-columns: 1fr;
  }

  .afl-pg .reviews-row {
    grid-template-columns: 1fr;
  }

  .afl-pg .contact-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .afl-pg .process-block {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 360px) {
  .afl-pg .lead-h1 {
    font-size: 31px;
  }

  .afl-pg .lead-btn {
    padding: 16px;
    font-size: 15px;
  }
}

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

.srv-pg .bounded {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.srv-pg .title-blk {
  position: relative;
  padding: 96px 32px 64px;
  background: radial-gradient(circle at 20% 110%, rgba(98, 149, 154, 0.18) 0%, rgba(193, 199, 200, 0.07) 55%, transparent 80%);
}

.srv-pg .title-blk::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: radial-gradient(circle at 50% 50%, #62959A 0%, transparent 70%);
}

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

.srv-pg .title-blk .t-text {
  flex: 0 0 65%;
}

.srv-pg .title-blk .t-accent-bar {
  width: 48px;
  height: 3px;
  background: #62959A;
  margin-bottom: 16px;
  border-radius: 7px;
}

.srv-pg .t-h1 {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #2e3336;
  font-weight: 700;
  margin: 0 0 32px;
}

.srv-pg .t-h1 .grad-word {
  background: radial-gradient(circle at 0% 100%, #62959A 0%, #5F656B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.srv-pg .t-lead {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: #3a3f43;
  max-width: 520px;
  text-align: left;
}

.srv-pg .title-blk .t-img-side {
  flex: 1;
  position: relative;
  align-self: stretch;
  min-height: 240px;
  border-radius: 20px;
  overflow: hidden;
}

.srv-pg .title-blk .t-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  display: block;
}

.srv-pg .title-blk .t-img-side::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
  pointer-events: none;
}

.srv-pg .title-blk .t-deco {
  position: absolute;
  top: 32px;
  right: 0;
  width: 200px;
  height: 80px;
  pointer-events: none;
}

.srv-pg .title-blk .t-deco svg {
  width: 100%;
  height: 100%;
}

.srv-pg .cards-sec {
  padding: 64px 32px;
  background: #fff;
}

.srv-pg .cards-sec .sec-label {
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #62959A;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.srv-pg .cards-sec .sec-h2 {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #2e3336;
  font-weight: 700;
  margin: 0 0 32px;
}

.srv-pg .card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.srv-pg .svc-card {
  border-radius: 20px;
  background: #f4f6f7;
  box-shadow: 0 3px 3px 1px rgba(95, 101, 107, 0.05), 0 5px 20px 1px rgba(95, 101, 107, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-pg .svc-card:hover {
  box-shadow: 0 5px 20px 1px rgba(98, 149, 154, 0.12), 0 8px 60px 1px rgba(98, 149, 154, 0.12);
  transform: translateY(-3px);
}

.srv-pg .svc-card .card-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(98, 149, 154, 0.12) 0%, rgba(193, 199, 200, 0.18) 100%);
}

.srv-pg .svc-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  display: block;
}

.srv-pg .svc-card .card-img-wrap .card-date {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 15px;
  color: #5F656B;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.85);
  padding: 4px 12px;
  border-radius: 7px;
}

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

.srv-pg .svc-card .card-h {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #2e3336;
  font-weight: 700;
  margin: 0 0 16px;
}

.srv-pg .svc-card .card-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #3a3f43;
  letter-spacing: 0.01em;
  text-align: justify;
  flex: 1;
  margin: 0 0 32px;
}

.srv-pg .svc-card .card-foot {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.srv-pg .svc-card .price-tag {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 700;
  color: #62959A;
  letter-spacing: 0.01em;
}

.srv-pg .svc-card .card-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #5F656B;
  text-decoration: none;
  letter-spacing: 0.02em;
  font-weight: 600;
  position: relative;
  padding: 8px 16px;
  border: 1.5px solid #C1C7C8;
  border-radius: 12px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-pg .svc-card .card-link::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid transparent;
  border-radius: 9px;
  transition: border-color 0.25s cubic-bezier(0.0, 0, 0.2, 1);
}

.srv-pg .svc-card .card-link:hover {
  color: #62959A;
  border-color: #62959A;
}

.srv-pg .svc-card .card-link:hover::after {
  border-color: rgba(98, 149, 154, 0.35);
}

.srv-pg .svc-card .card-link .arrow-ico {
  display: inline-block;
  width: 14px;
  height: 14px;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-pg .svc-card .card-link:hover .arrow-ico {
  transform: translateX(3px);
}

.srv-pg .process-sec {
  padding: 64px 32px;
  position: relative;
  background: linear-gradient(160deg, rgba(193, 199, 200, 0.13) 0%, rgba(255, 255, 255, 0) 60%);
}

.srv-pg .process-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: radial-gradient(circle at 50% 50%, #C1C7C8 0%, transparent 70%);
}

.srv-pg .process-sec .proc-split {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.srv-pg .process-sec .proc-left {
  flex: 0 0 30%;
  position: sticky;
  top: 32px;
}

.srv-pg .process-sec .proc-accent {
  width: 40px;
  height: 3px;
  background: #62959A;
  border-radius: 7px;
  margin-bottom: 16px;
}

.srv-pg .process-sec .proc-h {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #2e3336;
  font-weight: 700;
  margin: 0 0 16px;
}

.srv-pg .process-sec .proc-sub {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  letter-spacing: 0.01em;
}

.srv-pg .process-sec .proc-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.srv-pg .proc-step {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 3px 3px 1px rgba(95, 101, 107, 0.05), 0 5px 20px 1px rgba(95, 101, 107, 0.08);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-pg .proc-step:hover {
  box-shadow: 0 5px 20px 1px rgba(98, 149, 154, 0.1), 0 8px 60px 1px rgba(98, 149, 154, 0.08);
}

.srv-pg .proc-step .step-num {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: radial-gradient(circle at 0% 100%, rgba(98, 149, 154, 0.22) 0%, rgba(193, 199, 200, 0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #62959A;
  letter-spacing: 0.01em;
}

.srv-pg .proc-step .step-body {
  flex: 1;
}

.srv-pg .proc-step .step-h {
  font-size: 15px;
  font-weight: 700;
  color: #2e3336;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  line-height: 1.5;
}

.srv-pg .proc-step .step-p {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  letter-spacing: 0.01em;
  margin: 0;
  text-align: justify;
}

.srv-pg .compare-sec {
  padding: 64px 32px;
  position: relative;
  background: #fff;
}

.srv-pg .compare-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: radial-gradient(circle at 50% 50%, #62959A 0%, transparent 70%);
}

.srv-pg .compare-sec .cmp-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.srv-pg .compare-sec .cmp-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 32px;
}

.srv-pg .compare-sec .cmp-accent {
  width: 40px;
  height: 3px;
  background: #62959A;
  border-radius: 7px;
  margin-bottom: 16px;
}

.srv-pg .compare-sec .cmp-h {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #2e3336;
  font-weight: 700;
  margin: 0;
}

.srv-pg .compare-sec .cmp-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #5F656B;
  text-decoration: none;
  letter-spacing: 0.02em;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 16px;
  border: 1.5px solid #C1C7C8;
  border-radius: 12px;
  position: relative;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-pg .compare-sec .cmp-link::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid transparent;
  border-radius: 9px;
  transition: border-color 0.22s cubic-bezier(0.0, 0, 0.2, 1);
}

.srv-pg .compare-sec .cmp-link:hover {
  color: #62959A;
  border-color: #62959A;
}

.srv-pg .compare-sec .cmp-link:hover::after {
  border-color: rgba(98, 149, 154, 0.3);
}

.srv-pg .cmp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px 1px rgba(95, 101, 107, 0.08);
}

.srv-pg .cmp-table thead tr {
  background: radial-gradient(circle at 0% 100%, rgba(98, 149, 154, 0.14) 0%, rgba(193, 199, 200, 0.1) 100%);
}

.srv-pg .cmp-table th {
  font-size: 15px;
  font-weight: 700;
  color: #2e3336;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  text-align: left;
  border-bottom: 1.5px solid #C1C7C8;
}

.srv-pg .cmp-table td {
  font-size: 15px;
  line-height: 1.9;
  color: #3a3f43;
  letter-spacing: 0.01em;
  padding: 16px 32px;
  border-bottom: 1px solid rgba(193, 199, 200, 0.4);
  vertical-align: middle;
}

.srv-pg .cmp-table tbody tr:last-child td {
  border-bottom: none;
}

.srv-pg .cmp-table tbody tr:nth-child(odd) {
  background: #f4f6f7;
}

.srv-pg .cmp-table tbody tr:nth-child(even) {
  background: #fff;
}

.srv-pg .cmp-table .chk {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.srv-pg .cmp-table .chk svg {
  width: 18px;
  height: 18px;
}

.srv-pg .review-sec {
  padding: 96px 32px 64px;
  position: relative;
  background: linear-gradient(160deg, rgba(98, 149, 154, 0.07) 0%, rgba(193, 199, 200, 0.06) 50%, rgba(255, 255, 255, 0) 100%);
}

.srv-pg .review-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: radial-gradient(circle at 50% 50%, #C1C7C8 0%, transparent 70%);
}

.srv-pg .review-sec .rev-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.srv-pg .review-sec .rev-top {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 64px;
  align-items: start;
}

.srv-pg .review-sec .rev-accent {
  width: 40px;
  height: 3px;
  background: #62959A;
  border-radius: 7px;
  margin-bottom: 16px;
}

.srv-pg .review-sec .rev-h {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #2e3336;
  font-weight: 700;
  margin: 0 0 16px;
}

.srv-pg .review-sec .rev-sub {
  font-size: 15px;
  line-height: 1.9;
  color: #5F656B;
  letter-spacing: 0.01em;
}

.srv-pg .rev-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 3px 3px 1px rgba(95, 101, 107, 0.05), 0 5px 20px 1px rgba(95, 101, 107, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srv-pg .rev-card .rev-person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.srv-pg .rev-card .rev-portrait {
  width: 80px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.srv-pg .rev-card .rev-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.srv-pg .rev-card .rev-name {
  font-size: 15px;
  font-weight: 700;
  color: #2e3336;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  line-height: 1.5;
}

.srv-pg .rev-card .rev-role {
  font-size: 15px;
  color: #62959A;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.5;
}

.srv-pg .rev-card .rev-text {
  font-size: 15px;
  line-height: 1.9;
  color: #3a3f43;
  letter-spacing: 0.01em;
  text-align: justify;
  margin: 0;
}

.srv-pg .rev-card .rev-stars {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.srv-pg .rev-card .rev-stars .star {
  width: 14px;
  height: 14px;
}

.srv-pg .rev-card .rev-stars .star svg {
  width: 14px;
  height: 14px;
}

.srv-pg .wavy-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32px;
  pointer-events: none;
  overflow: hidden;
}

.srv-pg .wavy-deco svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .srv-pg .title-blk .t-inner {
    gap: 32px;
  }

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

  .srv-pg .process-sec .proc-split {
    gap: 32px;
  }

  .srv-pg .review-sec .rev-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .srv-pg .title-blk .t-inner {
    flex-direction: column;
    gap: 32px;
  }

  .srv-pg .title-blk .t-text {
    flex: none;
  }

  .srv-pg .title-blk .t-img-side {
    width: 100%;
    min-height: 160px;
  }

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

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

  .srv-pg .process-sec .proc-split {
    flex-direction: column;
    gap: 32px;
  }

  .srv-pg .process-sec .proc-left {
    flex: none;
    position: static;
  }

  .srv-pg .compare-sec .cmp-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .srv-pg .cmp-table th,
  .srv-pg .cmp-table td {
    padding: 16px;
  }
}

@media (max-width: 360px) {
  .srv-pg .title-blk {
    padding: 64px 16px 32px;
  }

  .srv-pg .cards-sec,
  .srv-pg .process-sec,
  .srv-pg .compare-sec,
  .srv-pg .review-sec {
    padding-left: 16px;
    padding-right: 16px;
  }

  .srv-pg .svc-card .card-body {
    padding: 16px;
  }

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

.succ-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
  background: #fff;
}

.succ-page .succ-wrap {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.succ-page .succ-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.succ-page .succ-icon circle {
  fill: none;
  stroke: #62959A;
  stroke-width: 2;
}

.succ-page .succ-icon polyline {
  fill: none;
  stroke: #62959A;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.succ-page .succ-heading {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #2e3336;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.succ-page .succ-body {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #5F656B;
  text-align: center;
  max-width: 480px;
  margin: 0;
}

.succ-page .succ-divider {
  width: 48px;
  height: 2px;
  background: #C1C7C8;
  border-radius: 7px;
}

.succ-page .succ-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #5F656B;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid #C1C7C8;
  border-radius: 12px;
  position: relative;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.0, 0, 0.2, 1);
}

.succ-page .succ-link::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid transparent;
  border-radius: 9px;
  transition: border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.succ-page .succ-link:hover {
  color: #62959A;
  border-color: #62959A;
}

.succ-page .succ-link:hover::after {
  border-color: #62959A;
}

.succ-page .succ-link:focus-visible {
  outline: 2px solid #62959A;
  outline-offset: 4px;
}

.succ-page .succ-arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .succ-page {
    padding: 64px 16px;
  }
}

@media (max-width: 360px) {
  .succ-page .succ-heading {
    font-size: 31px;
  }
}