@charset "UTF-8";

* {
  box-sizing: border-box;
}

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

.hd-shell {
  background: linear-gradient(180deg, #125158 0%, #0e3f45 60%, rgba(18, 81, 88, 0.92) 100%);
  position: relative;
  z-index: 100;
}

.hd-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 32px 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FEFEFD;
  border-radius: 34px;
  padding: 8px 32px 8px 16px;
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
  border: 1px solid rgba(114, 180, 138, 0.25);
}

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

.brand-name {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #125158;
  line-height: 1.1;
  text-transform: uppercase;
}

.hd-nav-shell {
  border-top: 1px solid rgba(114, 180, 138, 0.18);
  padding: 0 32px;
}

.hd-nav {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0;
}

.hd-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(254, 254, 253, 0.88);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 5px;
  letter-spacing: 0.04em;
  line-height: 1.3;
  border: 1px solid transparent;
  transition: color 0.1s ease-out, background 0.1s ease-out, border-color 0.12s linear;
  white-space: nowrap;
}

.hd-nav a:hover {
  color: #FEFEFD;
  background: rgba(114, 180, 138, 0.18);
  border-color: rgba(114, 180, 138, 0.35);
}

.hd-nav a:focus {
  outline: 2px dashed rgba(114, 180, 138, 0.8);
  outline-offset: 2px;
}

.hd-nav a[data-current="true"] {
  color: #72B48A;
  background: rgba(114, 180, 138, 0.12);
  border-color: rgba(114, 180, 138, 0.3);
}

.hd-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #72B48A 40%, #125158 100%);
}

.ft-shell {
  background: #125158;
  color: #FEFEFD;
}

.ft-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}

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

.ft-logo-pill {
  display: inline-flex;
  align-items: center;
  background: #FEFEFD;
  border-radius: 20px;
  padding: 8px 16px;
  box-shadow: -1px 1px 3px 0 rgba(18, 81, 88, 0.06);
  border: 1px solid rgba(114, 180, 138, 0.3);
  width: fit-content;
}

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

.ft-tagline {
  font-size: 15px;
  font-weight: 300;
  color: rgba(254, 254, 253, 0.72);
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.ft-col-head {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #72B48A;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.1;
}

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

.ft-links li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(254, 254, 253, 0.78);
  text-decoration: none;
  line-height: 1.55;
  transition: color 0.08s ease-out;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ft-links li a:hover {
  color: #72B48A;
}

.ft-links li a:focus {
  outline: 2px dashed rgba(114, 180, 138, 0.7);
  outline-offset: 2px;
}

.ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.ft-contact-item .ti {
  font-size: 19px;
  color: #72B48A;
  flex-shrink: 0;
  margin-top: 2px;
}

.ft-contact-item span,
.ft-contact-item a {
  font-size: 15px;
  font-weight: 400;
  color: rgba(254, 254, 253, 0.78);
  line-height: 1.55;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

.ft-contact-item a:hover {
  color: #72B48A;
}

.ft-contact-item a:focus {
  outline: 2px dashed rgba(114, 180, 138, 0.7);
  outline-offset: 2px;
}

.ft-divider {
  max-width: 1280px;
  margin: 0 auto;
  height: 1px;
  background: rgba(114, 180, 138, 0.2);
  margin-left: 32px;
  margin-right: 32px;
}

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

.ft-copy {
  font-size: 15px;
  font-weight: 300;
  color: rgba(254, 254, 253, 0.5);
  line-height: 1.55;
  letter-spacing: 0.02em;
}

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

.ft-legal-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(254, 254, 253, 0.5);
  text-decoration: none;
  transition: color 0.08s ease-out;
}

.ft-legal-links a:hover {
  color: #72B48A;
}

.ft-legal-links a:focus {
  outline: 2px dashed rgba(114, 180, 138, 0.7);
  outline-offset: 2px;
}

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

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

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

  .hd-nav {
    gap: 8px;
  }

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

  .ft-main {
    grid-template-columns: 1fr 1fr;
    padding: 32px 16px 16px;
    gap: 32px;
  }

  .ft-bottom {
    padding: 16px 16px 32px;
  }

  .ft-divider {
    margin-left: 16px;
    margin-right: 16px;
  }
}

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

  .logo-pill {
    padding: 8px 16px 8px 8px;
  }

  .ft-main {
    grid-template-columns: 1fr;
  }

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

.ck-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  max-width: 1280px;
  background: #FEFEFD;
  border-bottom: 1px solid rgba(18, 81, 88, 0.12);
  border-radius: 0 0 5px 5px;
  box-shadow: -1px 8px 48px 0 rgba(18, 81, 88, 0.11);
  z-index: 1200;
  padding: 16px 32px;
  display: none;
}

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

.ck-strip-text {
  font-size: 15px;
  font-weight: 400;
  color: #125158;
  line-height: 1.55;
  flex: 1;
  min-width: 200px;
}

.ck-strip-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ck-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #125158;
  background: #125158;
  color: #FEFEFD;
  transition: background 0.1s ease-out, width 0.1s ease-out;
  white-space: nowrap;
  min-width: 44px;
  min-height: 44px;
}

.ck-btn:hover {
  background: #0e3f45;
  padding-left: 24px;
  padding-right: 24px;
}

.ck-btn:focus {
  outline: 2px dashed #125158;
  outline-offset: 2px;
}

.ck-btn.secondary {
  background: transparent;
  color: #125158;
}

.ck-btn.secondary:hover {
  background: rgba(18, 81, 88, 0.06);
}

.ck-settings-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #72B48A;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  min-height: 44px;
}

.ck-settings-link:focus {
  outline: 2px dashed #72B48A;
  outline-offset: 2px;
}

.ck-toggles {
  display: none;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 81, 88, 0.1);
  margin-top: 16px;
  gap: 16px;
  flex-wrap: wrap;
}

.ck-toggle-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 400;
  color: #125158;
  line-height: 1.3;
}

.ck-toggle-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #125158;
  cursor: pointer;
}

.policy-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px;
  color: #125158;
}

.policy-content h1 {
  font-size: 58px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  margin-top: 0;
  color: #125158;
}

.policy-content h2 {
  font-size: 31px;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin-top: 64px;
  margin-bottom: 16px;
  color: #125158;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(18, 81, 88, 0.12);
  border-top: none;
  border-left: none;
  border-right: none;
}

.policy-content h3 {
  font-size: 23px;
  line-height: 1.3;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #125158;
}

.policy-content h4 {
  font-size: 19px;
  line-height: 1.55;
  margin-top: 32px;
  margin-bottom: 8px;
  color: #125158;
  letter-spacing: 0.02em;
}

.policy-content h5 {
  font-size: 15px;
  line-height: 1.55;
  margin-top: 16px;
  margin-bottom: 8px;
  color: #125158;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.policy-content h6 {
  font-size: 15px;
  line-height: 1.55;
  margin-top: 16px;
  margin-bottom: 8px;
  color: rgba(18, 81, 88, 0.72);
  letter-spacing: 0.04em;
}

.policy-content p {
  font-size: 19px;
  line-height: 1.75;
  margin-top: 0;
  margin-bottom: 16px;
  color: #125158;
}

.policy-content em,
.policy-content i {
  font-style: italic;
  color: rgba(18, 81, 88, 0.85);
}

.policy-content a {
  color: #72B48A;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.1s ease-out, text-decoration-color 0.08s linear;
}

.policy-content a:hover {
  color: #125158;
  text-decoration-color: #125158;
}

.policy-content a:visited {
  color: rgba(114, 180, 138, 0.8);
}

.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.55;
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
  border-radius: 5px;
  overflow: hidden;
}

.policy-content thead {
  background-color: #125158;
  color: #FEFEFD;
}

.policy-content thead th {
  padding: 16px;
  text-align: left;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FEFEFD;
  border: none;
  font-weight: 600;
}

.policy-content tbody tr {
  border-bottom: 1px solid rgba(18, 81, 88, 0.1);
  transition: background-color 0.1s ease-out;
}

.policy-content tbody tr:last-child {
  border-bottom: none;
}

.policy-content tbody tr:nth-child(even) {
  background-color: rgba(114, 180, 138, 0.06);
}

.policy-content tbody tr:hover {
  background-color: rgba(114, 180, 138, 0.12);
}

.policy-content th {
  padding: 16px;
  text-align: left;
  color: #125158;
  font-weight: 600;
}

.policy-content td {
  padding: 16px;
  color: #125158;
  font-size: 15px;
  line-height: 1.55;
  vertical-align: top;
}

.policy-content div {
  font-size: 19px;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .policy-content {
    padding: 64px 32px;
  }

  .policy-content h1 {
    font-size: 31px;
  }
}

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

  .policy-content h1 {
    font-size: 31px;
    line-height: 1.3;
  }

  .policy-content h2 {
    font-size: 23px;
    margin-top: 32px;
  }

  .policy-content h3 {
    font-size: 19px;
  }

  .policy-content p {
    font-size: 15px;
  }

  .policy-content div {
    font-size: 15px;
  }

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

@media (max-width: 480px) {
  .policy-content {
    padding: 32px 8px;
  }

  .policy-content h1 {
    font-size: 23px;
  }

  .policy-content h2 {
    font-size: 19px;
  }

  .policy-content td,
  .policy-content th {
    padding: 8px;
  }
}

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

.abt-pg .schema-data {
  display: none;
}

.abt-pg .pg-band {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 64px;
  padding-right: 64px;
}

.abt-pg .lead-block {
  padding-top: 96px;
  padding-bottom: 64px;
  text-align: center;
  position: relative;
}

.abt-pg .lead-block .bg-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.abt-pg .lead-block .bg-circles span {
  position: absolute;
  border-radius: 34px;
  border: 1px solid rgba(18, 81, 88, 0.08);
  background: transparent;
}

.abt-pg .lead-block .bg-circles span:nth-child(1) {
  width: 420px;
  height: 420px;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}

.abt-pg .lead-block .bg-circles span:nth-child(2) {
  width: 620px;
  height: 620px;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  border-color: rgba(114, 180, 138, 0.06);
}

.abt-pg .lead-block .bg-circles span:nth-child(3) {
  width: 820px;
  height: 820px;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  border-color: rgba(18, 81, 88, 0.04);
}

.abt-pg .lead-img-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
}

.abt-pg .lead-img-wrap img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(18, 81, 88, 0.14);
  box-shadow: -1px 8px 48px 0 rgba(18, 81, 88, 0.11);
  display: block;
  filter: blur(0px);
}

.abt-pg .lead-img-wrap .img-fore {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid rgba(18, 81, 88, 0.18);
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
  filter: blur(2.5px);
}

.abt-pg .lead-label {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #72B48A;
  margin-bottom: 16px;
  display: block;
  line-height: 1.3;
}

.abt-pg .lead-h {
  font-size: 58px;
  line-height: 1.1;
  color: #125158;
  margin-bottom: 32px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.abt-pg .lead-h .num-accent {
  color: #72B48A;
}

.abt-pg .lead-desc {
  font-size: 19px;
  line-height: 1.55;
  color: #2a4a4e;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.abt-pg .divider-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 64px auto;
  max-width: 1280px;
  padding-left: 64px;
  padding-right: 64px;
}

.abt-pg .divider-cross .d-line {
  flex: 1;
  height: 1px;
  background: rgba(18, 81, 88, 0.12);
}

.abt-pg .divider-cross .d-cross {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}

.abt-pg .divider-cross .d-cross::before,
.abt-pg .divider-cross .d-cross::after {
  content: '';
  position: absolute;
  background: rgba(18, 81, 88, 0.25);
  border-radius: 1px;
}

.abt-pg .divider-cross .d-cross::before {
  width: 16px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.abt-pg .divider-cross .d-cross::after {
  width: 1px;
  height: 16px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.abt-pg .detail-block {
  background: linear-gradient(307deg, #FEFEFD, rgba(114, 180, 138, 0.06) 60%, rgba(18, 81, 88, 0.04));
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
}

.abt-pg .detail-block .mesh-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 1px;
}

.abt-pg .detail-block .mesh-bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 34px;
  background: radial-gradient(ellipse at 30% 70%, rgba(114, 180, 138, 0.09) 0%, transparent 65%);
  top: -100px;
  right: -100px;
  animation: spotdrift 18s ease-in-out infinite alternate;
}

.abt-pg .detail-block .mesh-bg::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 34px;
  background: radial-gradient(ellipse at 70% 30%, rgba(18, 81, 88, 0.05) 0%, transparent 65%);
  bottom: -80px;
  left: -60px;
  animation: spotdrift 22s ease-in-out infinite alternate-reverse;
}

@keyframes spotdrift {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(40px, 30px);
  }
}

.abt-pg .detail-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}

.abt-pg .detail-left {
  position: sticky;
  top: 32px;
}

.abt-pg .detail-left img {
  width: 340px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(18, 81, 88, 0.13);
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
  display: block;
}

.abt-pg .detail-left .stat-strip {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-pg .stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #FEFEFD;
  border-radius: 5px;
  border: 1px solid rgba(18, 81, 88, 0.09);
  box-shadow: -1px 1px 3px 0 rgba(18, 81, 88, 0.06);
  transition: box-shadow 0.12s ease-out;
}

.abt-pg .stat-item:hover {
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
}

.abt-pg .stat-item .stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: rgba(18, 81, 88, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #125158;
}

.abt-pg .stat-item .stat-icon i {
  font-size: 19px;
}

.abt-pg .stat-item .stat-val {
  font-size: 23px;
  line-height: 1.1;
  color: #125158;
  font-weight: 700;
}

.abt-pg .stat-item .stat-lbl {
  font-size: 15px;
  line-height: 1.3;
  color: #3d6468;
}

.abt-pg .detail-right {
  padding-top: 8px;
}

.abt-pg .section-kicker {
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #72B48A;
  display: block;
  margin-bottom: 16px;
  line-height: 1.3;
}

.abt-pg .detail-right h2 {
  font-size: 31px;
  line-height: 1.3;
  color: #125158;
  margin-bottom: 32px;
}

.abt-pg .detail-right h2 .dot-acc {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 34px;
  background: #72B48A;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.abt-pg .about-para {
  font-size: 19px;
  line-height: 1.55;
  color: #2a4a4e;
  margin-bottom: 32px;
}

.abt-pg .about-para .num-accent {
  color: #125158;
  font-weight: 600;
}

.abt-pg .team-row {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.abt-pg .team-card {
  background: #FEFEFD;
  border-radius: 20px;
  border: 1px solid rgba(18, 81, 88, 0.1);
  box-shadow: -1px 1px 3px 0 rgba(18, 81, 88, 0.06);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.1s ease-out;
}

.abt-pg .team-card:hover {
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
}

.abt-pg .team-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid rgba(18, 81, 88, 0.1);
  display: block;
}

.abt-pg .team-card .tc-name {
  font-size: 19px;
  line-height: 1.3;
  color: #125158;
  font-weight: 600;
}

.abt-pg .team-card .tc-role {
  font-size: 15px;
  line-height: 1.3;
  color: #72B48A;
  letter-spacing: 0.06em;
}

.abt-pg .team-card .tc-bio {
  font-size: 15px;
  line-height: 1.55;
  color: #3d6468;
}

.abt-pg .approach-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-pg .appr-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 5px;
  background: rgba(18, 81, 88, 0.03);
  border: 1px solid rgba(18, 81, 88, 0.07);
  transition: background 0.12s ease-out;
}

.abt-pg .appr-item:hover {
  background: rgba(18, 81, 88, 0.06);
}

.abt-pg .appr-item .appr-mark {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  background: #125158;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.abt-pg .appr-item .appr-mark svg {
  width: 14px;
  height: 14px;
  stroke: #FEFEFD;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.abt-pg .appr-item .appr-txt h5 {
  font-size: 19px;
  line-height: 1.3;
  color: #125158;
  margin-bottom: 8px;
}

.abt-pg .appr-item .appr-txt p {
  font-size: 15px;
  line-height: 1.55;
  color: #3d6468;
}

.abt-pg .bracket-frame {
  position: relative;
  margin-top: 32px;
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(307deg, rgba(18, 81, 88, 0.04), transparent);
  border: 1px solid rgba(18, 81, 88, 0.1);
}

.abt-pg .bracket-frame::before,
.abt-pg .bracket-frame::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #72B48A;
  border-style: solid;
}

.abt-pg .bracket-frame::before {
  top: 8px;
  left: 8px;
  border-width: 2px 0 0 2px;
  border-radius: 1px;
}

.abt-pg .bracket-frame::after {
  bottom: 8px;
  right: 8px;
  border-width: 0 2px 2px 0;
  border-radius: 1px;
}

.abt-pg .bracket-frame blockquote {
  font-size: 19px;
  line-height: 1.55;
  color: #125158;
  font-style: italic;
}

.abt-pg .bracket-frame .bq-attr {
  margin-top: 16px;
  font-size: 15px;
  color: #72B48A;
  letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  .abt-pg .pg-band {
    padding-left: 32px;
    padding-right: 32px;
  }

  .abt-pg .divider-cross {
    padding-left: 32px;
    padding-right: 32px;
  }

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

  .abt-pg .detail-left img {
    width: 280px;
    height: 320px;
  }

  .abt-pg .lead-h {
    font-size: 31px;
  }

  .abt-pg .lead-img-wrap img {
    width: 280px;
    height: 280px;
  }
}

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

  .abt-pg .divider-cross {
    padding-left: 16px;
    padding-right: 16px;
    margin: 32px auto;
  }

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

  .abt-pg .lead-h {
    font-size: 31px;
  }

  .abt-pg .lead-img-wrap img {
    width: 240px;
    height: 240px;
  }

  .abt-pg .lead-img-wrap .img-fore {
    width: 80px;
    height: 80px;
  }

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

  .abt-pg .detail-left {
    position: static;
  }

  .abt-pg .detail-left img {
    width: 100%;
    height: 260px;
  }

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

  .abt-pg .detail-block {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .abt-pg .lead-h {
    font-size: 23px;
  }

  .abt-pg .lead-img-wrap img {
    width: 200px;
    height: 200px;
  }

  .abt-pg .lead-img-wrap .img-fore {
    display: none;
  }

  .abt-pg .about-para {
    font-size: 15px;
  }

  .abt-pg .bracket-frame {
    padding: 16px;
  }
}

.tst-pg {
  background: #FEFEFD;
  overflow-x: clip;
  position: relative;
}

.tst-pg .pg-lead {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 64px 64px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.tst-pg .lead-txt {
  position: relative;
}

.tst-pg .lead-label {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #72B48A;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
  line-height: 1.3;
}

.tst-pg .lead-h1 {
  font-size: 58px;
  line-height: 1.1;
  color: #125158;
  margin: 0 0 32px 0;
  position: relative;
}

.tst-pg .lead-h1 .grad-word {
  background: linear-gradient(307deg, #125158, #72B48A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tst-pg .lead-quote-mark {
  position: absolute;
  top: -16px;
  left: -32px;
  font-size: 200px;
  line-height: 1;
  color: #72B48A;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.tst-pg .lead-desc {
  font-size: 19px;
  line-height: 1.55;
  color: #2a4a4d;
  margin: 0 0 32px 0;
  position: relative;
  z-index: 1;
}

.tst-pg .lead-divider {
  width: 64px;
  height: 2px;
  background: #72B48A;
  margin-bottom: 32px;
}

.tst-pg .lead-meta {
  font-size: 15px;
  line-height: 1.55;
  color: #125158;
  opacity: 0.7;
}

.tst-pg .lead-img-col {
  position: relative;
}

.tst-pg .img-geo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 34px 5px 34px 5px;
  border: 1px solid rgba(18, 81, 88, 0.13);
  box-shadow: -1px 8px 48px 0 rgba(18, 81, 88, 0.11);
}

.tst-pg .img-geo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.82) brightness(0.97);
  transition: filter 0.12s ease-out;
}

.tst-pg .img-geo-wrap:hover img {
  filter: saturate(1) brightness(1);
}

.tst-pg .img-curve-deco {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 120px;
  height: 120px;
  pointer-events: none;
  overflow: hidden;
}

.tst-pg .img-curve-deco svg {
  width: 100%;
  height: 100%;
}

.tst-pg .reviews-band {
  background: #125158;
  position: relative;
  overflow: hidden;
}

.tst-pg .reviews-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 64px;
}

.tst-pg .band-drift {
  position: absolute;
  top: 0;
  left: -120px;
  width: 340px;
  height: 340px;
  background: radial-gradient(ellipse at 30% 40%, rgba(114, 180, 138, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: spotdrift 9s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes spotdrift {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(80px, 60px);
  }
}

.tst-pg .band-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.tst-pg .band-dots span {
  position: absolute;
  border-radius: 50%;
  background: rgba(114, 180, 138, 0.18);
}

.tst-pg .band-dots span:nth-child(1) {
  width: 6px;
  height: 6px;
  top: 18%;
  left: 12%;
}

.tst-pg .band-dots span:nth-child(2) {
  width: 3px;
  height: 3px;
  top: 55%;
  left: 28%;
}

.tst-pg .band-dots span:nth-child(3) {
  width: 9px;
  height: 9px;
  top: 30%;
  left: 68%;
}

.tst-pg .band-dots span:nth-child(4) {
  width: 4px;
  height: 4px;
  top: 72%;
  left: 80%;
}

.tst-pg .band-dots span:nth-child(5) {
  width: 7px;
  height: 7px;
  top: 85%;
  left: 44%;
}

.tst-pg .band-dots span:nth-child(6) {
  width: 3px;
  height: 3px;
  top: 10%;
  left: 90%;
}

.tst-pg .band-eyebrow {
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #72B48A;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  line-height: 1.3;
}

.tst-pg .band-h2 {
  font-size: 31px;
  line-height: 1.3;
  color: #FEFEFD;
  margin: 0 0 64px 0;
  max-width: 520px;
}

.tst-pg .band-h2::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #72B48A;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.tst-pg .rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tst-pg .rev-card {
  background: rgba(254, 254, 253, 0.06);
  border: 1px solid rgba(114, 180, 138, 0.2);
  border-radius: 20px;
  padding: 32px;
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
  transition: background 0.1s ease-out, border-color 0.1s ease-out;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tst-pg .rev-card:hover {
  background: rgba(254, 254, 253, 0.10);
  border-color: rgba(114, 180, 138, 0.4);
}

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

.tst-pg .rev-stars svg {
  width: 16px;
  height: 16px;
  fill: #72B48A;
}

.tst-pg .rev-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(254, 254, 253, 0.82);
  flex: 1;
}

.tst-pg .rev-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(114, 180, 138, 0.15);
}

.tst-pg .rev-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(307deg, #125158, #72B48A);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tst-pg .rev-avatar svg {
  width: 22px;
  height: 22px;
  stroke: #FEFEFD;
  fill: none;
}

.tst-pg .rev-name {
  font-size: 15px;
  line-height: 1.3;
  color: #FEFEFD;
  font-weight: 600;
}

.tst-pg .rev-role {
  font-size: 15px;
  line-height: 1.3;
  color: rgba(114, 180, 138, 0.85);
}

.tst-pg .timeline-strip {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 64px;
}

.tst-pg .strip-head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 32px;
}

.tst-pg .strip-h2 {
  font-size: 31px;
  line-height: 1.3;
  color: #125158;
  margin: 0;
  max-width: 480px;
}

.tst-pg .strip-note {
  font-size: 15px;
  line-height: 1.55;
  color: #2a4a4d;
  max-width: 320px;
  text-align: right;
}

.tst-pg .strip-divider {
  width: 100%;
  height: 2px;
  background: #72B48A;
  margin-bottom: 64px;
  opacity: 0.4;
}

.tst-pg .exp-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tst-pg .exp-item {
  display: grid;
  grid-template-columns: 180px 2px 1fr;
  gap: 0 32px;
  position: relative;
  padding-bottom: 64px;
}

.tst-pg .exp-item:last-child {
  padding-bottom: 0;
}

.tst-pg .exp-period {
  font-size: 15px;
  line-height: 1.55;
  color: #72B48A;
  letter-spacing: 0.06em;
  text-align: right;
  padding-top: 4px;
}

.tst-pg .exp-line-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.tst-pg .exp-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #72B48A;
  flex-shrink: 0;
  box-shadow: -1px 1px 3px 0 rgba(114, 180, 138, 0.06), 0 0 0 3px rgba(114, 180, 138, 0.15);
  margin-top: 4px;
}

.tst-pg .exp-vert {
  flex: 1;
  width: 2px;
  background: rgba(114, 180, 138, 0.25);
  margin-top: 8px;
}

.tst-pg .exp-item:last-child .exp-vert {
  display: none;
}

.tst-pg .exp-body {
  padding-bottom: 8px;
}

.tst-pg .exp-person {
  font-size: 19px;
  line-height: 1.3;
  color: #125158;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.tst-pg .exp-ctx {
  font-size: 15px;
  line-height: 1.3;
  color: #72B48A;
  margin: 0 0 16px 0;
}

.tst-pg .exp-quote {
  font-size: 19px;
  line-height: 1.55;
  color: #2a4a4d;
  margin: 0 0 16px 0;
}

.tst-pg .exp-detail {
  font-size: 15px;
  line-height: 1.75;
  color: #3a5a5e;
}

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

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

  .tst-pg .img-geo-wrap {
    aspect-ratio: 16/9;
  }

  .tst-pg .rev-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tst-pg .reviews-band-inner {
    padding: 64px 32px;
  }

  .tst-pg .timeline-strip {
    padding: 64px 32px;
  }

  .tst-pg .strip-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .tst-pg .strip-note {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .tst-pg .pg-lead {
    padding: 32px 16px;
  }

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

  .tst-pg .rev-grid {
    grid-template-columns: 1fr;
  }

  .tst-pg .reviews-band-inner {
    padding: 32px 16px;
  }

  .tst-pg .timeline-strip {
    padding: 32px 16px;
  }

  .tst-pg .exp-item {
    grid-template-columns: 100px 2px 1fr;
    gap: 0 16px;
  }

  .tst-pg .exp-period {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .tst-pg .lead-h1 {
    font-size: 23px;
  }

  .tst-pg .exp-item {
    grid-template-columns: 80px 2px 1fr;
  }

  .tst-pg .strip-head {
    gap: 16px;
  }

  .tst-pg .band-h2 {
    font-size: 23px;
  }
}

.ctus-pg {
  background: #FEFEFD;
  overflow-x: clip;
  position: relative;
}

.ctus-pg .pg-band {
  position: fixed;
  left: 0;
  top: 0;
  width: 3px;
  height: 100vh;
  background: linear-gradient(307deg, #125158, #72B48A);
  z-index: 10;
  pointer-events: none;
}

.ctus-pg .splash-wrap {
  width: 100%;
  background: linear-gradient(307deg, #125158 0%, #1a6b74 60%, #72B48A 100%);
  padding: 64px 0 64px;
  position: relative;
  overflow: hidden;
}

.ctus-pg .splash-wrap::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(254, 254, 253, 0.08);
  pointer-events: none;
}

.ctus-pg .splash-wrap::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(254, 254, 253, 0.06);
  pointer-events: none;
}

.ctus-pg .splash-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.ctus-pg .splash-label {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: rgba(254, 254, 253, 0.65);
  line-height: 1.3;
  text-transform: uppercase;
}

.ctus-pg .splash-h1 {
  font-size: 58px;
  line-height: 1.1;
  color: #FEFEFD;
  margin: 0;
  font-weight: 700;
}

.ctus-pg .splash-h1 span {
  color: #72B48A;
}

.ctus-pg .splash-sub {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(254, 254, 253, 0.8);
  max-width: 560px;
  margin: 0;
}

.ctus-pg .splash-meta {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.ctus-pg .splash-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: rgba(254, 254, 253, 0.75);
  font-size: 15px;
  line-height: 1.3;
}

.ctus-pg .splash-item i {
  color: #72B48A;
  font-size: 19px;
}

.ctus-pg .form-area {
  width: 100%;
  background: #FEFEFD;
  padding: 64px 0;
  position: relative;
}

.ctus-pg .form-area::before {
  content: '';
  position: absolute;
  left: -60px;
  bottom: 40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(18, 81, 88, 0.06);
  pointer-events: none;
}

.ctus-pg .form-area::after {
  content: '';
  position: absolute;
  left: -30px;
  bottom: 70px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(18, 81, 88, 0.05);
  pointer-events: none;
}

.ctus-pg .form-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.ctus-pg .aside-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ctus-pg .aside-head {
  font-size: 31px;
  line-height: 1.3;
  color: #125158;
  margin: 0;
  font-weight: 700;
}

.ctus-pg .aside-head::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #72B48A;
  margin-left: 6px;
  vertical-align: middle;
  margin-bottom: 4px;
}

.ctus-pg .aside-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #2d5a5e;
  margin: 0;
}

.ctus-pg .contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ctus-pg .contact-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.ctus-pg .c-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: linear-gradient(307deg, rgba(18, 81, 88, 0.08), rgba(114, 180, 138, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: -1px 1px 3px 0 rgba(18, 81, 88, 0.06);
  transition: box-shadow 0.12s ease-out;
}

.ctus-pg .contact-list li:hover .c-icon-wrap {
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
}

.ctus-pg .c-icon-wrap i {
  color: #125158;
  font-size: 19px;
}

.ctus-pg .c-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctus-pg .c-detail-label {
  font-size: 15px;
  letter-spacing: 0.08em;
  color: rgba(18, 81, 88, 0.5);
  text-transform: uppercase;
  line-height: 1.1;
}

.ctus-pg .c-detail-val {
  font-size: 15px;
  line-height: 1.55;
  color: #125158;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.1s linear;
}

.ctus-pg .c-detail-val:hover {
  color: #72B48A;
  text-decoration: underline;
}

.ctus-pg .form-col {
  background: #FEFEFD;
  border-radius: 20px;
  padding: 32px;
  box-shadow: -1px 8px 48px 0 rgba(18, 81, 88, 0.11);
  border: 1px solid rgba(18, 81, 88, 0.07);
  position: relative;
}

.ctus-pg .form-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(307deg, #125158, #72B48A);
}

.ctus-pg .form-head {
  font-size: 23px;
  line-height: 1.3;
  color: #125158;
  margin: 0 0 32px;
  font-weight: 700;
}

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

.ctus-pg .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.ctus-pg .field-grp label {
  font-size: 15px;
  line-height: 1.3;
  color: #125158;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ctus-pg .field-grp input[type="text"],
.ctus-pg .field-grp input[type="email"] {
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(18, 81, 88, 0.2);
  border-radius: 5px;
  font-size: 15px;
  line-height: 1.55;
  color: #125158;
  background: #FEFEFD;
  outline: none;
  transition: border-color 0.1s ease-out, box-shadow 0.12s ease-out;
  width: 100%;
  box-sizing: border-box;
}

.ctus-pg .field-grp input[type="text"]::placeholder,
.ctus-pg .field-grp input[type="email"]::placeholder {
  color: rgba(18, 81, 88, 0.35);
}

.ctus-pg .field-grp input[type="text"]:focus,
.ctus-pg .field-grp input[type="email"]:focus {
  border-color: #125158;
  box-shadow: inset 0 0 0 2px rgba(18, 81, 88, 0.08), -1px 1px 3px 0 rgba(18, 81, 88, 0.06);
}

.ctus-pg .size-label {
  font-size: 15px;
  line-height: 1.3;
  color: #125158;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ctus-pg .size-opts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.ctus-pg .size-opts input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.ctus-pg .size-opts label {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid rgba(18, 81, 88, 0.2);
  border-radius: 5px;
  font-size: 15px;
  line-height: 1.3;
  color: #125158;
  cursor: pointer;
  transition: background 0.1s ease-out, border-color 0.1s ease-out;
  user-select: none;
  background: transparent;
}

.ctus-pg .size-opts input[type="radio"]:checked+label {
  background: #125158;
  color: #FEFEFD;
  border-color: #125158;
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
}

.ctus-pg .size-opts label:hover {
  border-color: #125158;
  background: rgba(18, 81, 88, 0.05);
}

.ctus-pg .size-opts input[type="radio"]:checked+label:hover {
  background: #125158;
}

.ctus-pg .priv-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  margin-top: 8px;
}

.ctus-pg .priv-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #125158;
  cursor: pointer;
}

.ctus-pg .priv-text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(18, 81, 88, 0.65);
  margin: 0;
}

.ctus-pg .priv-text a {
  color: #125158;
  text-decoration: none;
  border-bottom: 1px solid rgba(18, 81, 88, 0.3);
  transition: border-color 0.1s linear;
}

.ctus-pg .priv-text a:hover {
  border-color: #125158;
}

.ctus-pg .submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 32px;
  background: #125158;
  color: #FEFEFD;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.1s ease-out, width 0.12s ease-out, padding 0.12s ease-out;
  align-self: flex-start;
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
}

.ctus-pg .submit-btn:hover {
  background: #0e3f45;
  padding: 0 40px;
}

.ctus-pg .submit-btn:focus {
  outline: 2px solid #72B48A;
  outline-offset: 2px;
}

.ctus-pg .submit-btn:active {
  transform: scale(0.99);
}

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

  .ctus-pg .aside-col {
    gap: 16px;
  }

  .ctus-pg .splash-h1 {
    font-size: 31px;
  }
}

@media (max-width: 768px) {
  .ctus-pg .splash-wrap {
    padding: 32px 0;
  }

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

  .ctus-pg .splash-meta {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .ctus-pg .form-area {
    padding: 32px 0;
  }

  .ctus-pg .form-grid {
    padding: 0 16px;
  }

  .ctus-pg .field-row {
    grid-template-columns: 1fr;
  }

  .ctus-pg .form-col {
    padding: 16px;
  }

  .ctus-pg .size-opts {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .ctus-pg .splash-h1 {
    font-size: 23px;
  }

  .ctus-pg .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

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

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

.faq-pg .split-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  position: relative;
}

.faq-pg .split-top .txt-side {
  background: #125158;
  padding: 64px 64px 64px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.faq-pg .split-top .txt-side::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(114, 180, 138, 0.18);
  border-radius: 34px;
  pointer-events: none;
}

.faq-pg .split-top .txt-side::before {
  content: '';
  position: absolute;
  bottom: 32px;
  left: 32px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(254, 254, 253, 0.1);
  border-radius: 20px;
  pointer-events: none;
}

.faq-pg .split-top .pg-label {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #72B48A;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.faq-pg .split-top .pg-h1 {
  font-size: 58px;
  line-height: 1.1;
  color: #FEFEFD;
  margin: 0 0 32px 0;
}

.faq-pg .split-top .pg-h1 em {
  font-style: normal;
  color: #72B48A;
}

.faq-pg .split-top .pg-desc {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(254, 254, 253, 0.78);
  max-width: 420px;
}

.faq-pg .split-top .img-side {
  position: relative;
  overflow: hidden;
}

.faq-pg .split-top .img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-pg .split-top .img-side .scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      rgba(18, 81, 88, 0.07) 0px,
      rgba(18, 81, 88, 0.07) 1px,
      transparent 1px,
      transparent 4px);
  pointer-events: none;
}

.faq-pg .split-top .img-side .img-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(18, 81, 88, 0.22);
  pointer-events: none;
}

.faq-pg .split-top .img-side .dark-reveal {
  position: absolute;
  inset: 0;
  background: rgba(18, 81, 88, 0.78);
  opacity: 0;
  transition: opacity 0.12s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.faq-pg .split-top .img-side:hover .dark-reveal {
  opacity: 1;
}

.faq-pg .split-top .img-side .dark-reveal p {
  font-size: 19px;
  line-height: 1.55;
  color: #FEFEFD;
  text-align: center;
}

.faq-pg .divider-asym {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 32px 32px 0 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.faq-pg .divider-asym .line-long {
  flex: 3;
  height: 1px;
  background: linear-gradient(307deg, #125158, transparent);
}

.faq-pg .divider-asym .line-short {
  flex: 1;
  height: 1px;
  background: rgba(114, 180, 138, 0.3);
}

.faq-pg .faq-area {
  padding: 64px 32px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.faq-pg .faq-area::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #72B48A 0%, transparent 100%);
  border-radius: 1px;
}

.faq-pg .faq-area .area-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: start;
}

.faq-pg .faq-area .area-head .sticky-lbl {
  position: sticky;
  top: 32px;
}

.faq-pg .faq-area .area-head .sticky-lbl h2 {
  font-size: 31px;
  line-height: 1.3;
  color: #125158;
  margin: 0 0 16px 0;
}

.faq-pg .faq-area .area-head .sticky-lbl h2 .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #72B48A;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.faq-pg .faq-area .area-head .sticky-lbl p {
  font-size: 15px;
  line-height: 1.75;
  color: #3a6a6e;
}

.faq-pg .faq-area .area-head .intro-txt p {
  font-size: 19px;
  line-height: 1.55;
  color: #2a4a4e;
  margin: 0 0 16px 0;
}

.faq-pg .faq-area .area-head .intro-txt p:last-child {
  margin-bottom: 0;
}

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

.faq-pg .faq-item {
  border: 1px solid rgba(18, 81, 88, 0.12);
  border-radius: 5px;
  background: #FEFEFD;
  box-shadow: -1px 1px 3px 0 rgba(18, 81, 88, 0.06);
  overflow: hidden;
}

.faq-pg .faq-item details {
  width: 100%;
}

.faq-pg .faq-item details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 32px;
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  line-height: 1.3;
  color: #125158;
  font-weight: 600;
  transition: background 0.1s ease-out, color 0.1s ease-out;
}

.faq-pg .faq-item details summary::-webkit-details-marker {
  display: none;
}

.faq-pg .faq-item details summary:hover {
  background: rgba(18, 81, 88, 0.04);
}

.faq-pg .faq-item details[open] summary {
  background: rgba(18, 81, 88, 0.05);
  color: #125158;
}

.faq-pg .faq-item details summary .sum-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 20px;
  background: rgba(114, 180, 138, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.1s ease-out, transform 0.12s ease-out;
}

.faq-pg .faq-item details[open] summary .sum-icon {
  background: #72B48A;
  transform: rotate(45deg);
}

.faq-pg .faq-item details summary .sum-icon svg {
  width: 18px;
  height: 18px;
  stroke: #125158;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.faq-pg .faq-item details[open] summary .sum-icon svg {
  stroke: #FEFEFD;
}

.faq-pg .faq-item .ans-body {
  padding: 0 32px 32px 32px;
  border-top: 1px solid rgba(18, 81, 88, 0.08);
}

.faq-pg .faq-item .ans-body p {
  font-size: 15px;
  line-height: 1.75;
  color: #2a4a4e;
  margin: 16px 0 0 0;
}

.faq-pg .faq-item .ans-body p:first-child {
  margin-top: 16px;
}

.faq-pg .faq-cats {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.faq-pg .faq-cats .cat-tag {
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 5px;
  background: rgba(18, 81, 88, 0.07);
  color: #125158;
  border: 1px solid rgba(18, 81, 88, 0.14);
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-pg .faq-cats .cat-tag i {
  font-size: 16px;
  color: #72B48A;
}

.faq-pg .faq-item .ans-body .note-box {
  margin-top: 16px;
  padding: 16px;
  background: rgba(114, 180, 138, 0.1);
  border-radius: 5px;
  font-size: 15px;
  line-height: 1.55;
  color: #125158;
}

@media (max-width: 1024px) {
  .faq-pg .split-top {
    grid-template-columns: 1fr;
  }

  .faq-pg .split-top .img-side {
    height: 320px;
  }

  .faq-pg .split-top .txt-side {
    padding: 64px 32px;
  }

  .faq-pg .split-top .pg-h1 {
    font-size: 31px;
  }

  .faq-pg .faq-area .area-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-pg .faq-area .area-head .sticky-lbl {
    position: static;
  }
}

@media (max-width: 768px) {
  .faq-pg .split-top .txt-side {
    padding: 64px 32px 32px 32px;
  }

  .faq-pg .faq-area {
    padding: 64px 16px;
  }

  .faq-pg .faq-item details summary {
    padding: 16px;
    font-size: 15px;
  }

  .faq-pg .faq-item .ans-body {
    padding: 0 16px 16px 16px;
  }

  .faq-pg .divider-asym {
    padding: 32px 16px 0 16px;
  }
}

@media (max-width: 480px) {
  .faq-pg .split-top .pg-h1 {
    font-size: 23px;
  }

  .faq-pg .faq-area {
    padding: 32px 16px;
  }

  .faq-pg .faq-cats {
    gap: 8px;
  }
}

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

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

.strt .ttl-blk {
  background: linear-gradient(307deg, #125158 0%, #72B48A 55%, #FEFEFD 100%);
  position: relative;
  padding: 64px 0;
}

.strt .ttl-blk::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(254, 254, 253, 0.25);
  pointer-events: none;
  border-radius: 1px;
}

.strt .ttl-blk::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 1px solid rgba(254, 254, 253, 0.12);
  pointer-events: none;
  border-radius: 1px;
}

.strt .ttl-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}

.strt .ttl-text {
  flex: 1 1 55%;
}

.strt .ttl-label {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: rgba(254, 254, 253, 0.75);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.strt .ttl-h1 {
  font-size: 58px;
  line-height: 1.1;
  color: #FEFEFD;
  margin: 0 0 32px 0;
}

.strt .ttl-sub {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(254, 254, 253, 0.88);
  margin: 0 0 32px 0;
}

.strt .ttl-act {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FEFEFD;
  color: #125158;
  padding: 16px 32px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.18);
  transition: padding 0.1s ease-out, box-shadow 0.12s ease-out;
  letter-spacing: 0.04em;
}

.strt .ttl-act:hover {
  padding: 16px 42px;
  box-shadow: -1px 8px 48px 0 rgba(18, 81, 88, 0.22);
}

.strt .ttl-img-wrap {
  flex: 1 1 40%;
  position: relative;
}

.strt .ttl-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 5px;
  border: 2px solid rgba(254, 254, 253, 0.3);
  filter: saturate(0.7) contrast(1.1);
  display: block;
}

.strt .ttl-img-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(254, 254, 253, 0.15);
  border-radius: 5px;
  pointer-events: none;
}

.strt .out-blk {
  background: #FEFEFD;
  padding: 64px 0;
}

.strt .out-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.strt .out-aside {
  position: relative;
}

.strt .out-aside img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(18, 81, 88, 0.12);
  box-shadow: -1px 8px 48px 0 rgba(18, 81, 88, 0.11);
  display: block;
}

.strt .out-body {
  padding-top: 32px;
}

.strt .sec-label {
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #72B48A;
  margin-bottom: 16px;
  display: block;
}

.strt .out-h2 {
  font-size: 31px;
  line-height: 1.3;
  color: #125158;
  margin: 0 0 32px 0;
}

.strt .out-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.strt .out-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 5px;
  background: rgba(114, 180, 138, 0.07);
  border: 1px solid rgba(114, 180, 138, 0.18);
}

.strt .out-num {
  font-size: 23px;
  font-weight: 700;
  color: #125158;
  min-width: 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #72B48A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.strt .out-num::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(114, 180, 138, 0.35);
}

.strt .out-item-text {
  font-size: 15px;
  line-height: 1.55;
  color: #2a4a4d;
}

.strt .out-item-text strong {
  color: #125158;
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.strt .appr-blk {
  background: linear-gradient(307deg, rgba(18, 81, 88, 0.06) 0%, rgba(114, 180, 138, 0.08) 100%);
  padding: 64px 0;
  position: relative;
}

.strt .appr-blk .diag-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.strt .appr-blk .diag-line svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.strt .appr-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}

.strt .appr-left .appr-intro {
  font-size: 19px;
  line-height: 1.55;
  color: #125158;
  padding: 32px;
  background: rgba(254, 254, 253, 0.85);
  border-radius: 20px;
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
  margin-bottom: 32px;
  border: 1px solid rgba(18, 81, 88, 0.08);
}

.strt .appr-h2 {
  font-size: 31px;
  line-height: 1.3;
  color: #125158;
  margin: 0 0 16px 0;
}

.strt .appr-body {
  font-size: 15px;
  line-height: 1.75;
  color: #2a4a4d;
}

.strt .appr-right {
  padding-top: 64px;
}

.strt .appr-card {
  background: #FEFEFD;
  border-radius: 20px;
  padding: 32px;
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
  border: 1px solid rgba(18, 81, 88, 0.07);
  margin-bottom: 16px;
}

.strt .appr-card:last-child {
  margin-bottom: 0;
}

.strt .appr-card-h {
  font-size: 15px;
  font-weight: 600;
  color: #125158;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.strt .appr-card-h i {
  color: #72B48A;
  font-size: 19px;
}

.strt .appr-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #3a5a5d;
  margin: 0;
}

.strt .comm-blk {
  background: #125158;
  padding: 64px 0;
  position: relative;
}

.strt .comm-inner {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: center;
}

.strt .comm-img-side {
  flex: 0 0 45%;
}

.strt .comm-img-side img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid rgba(114, 180, 138, 0.35);
  box-shadow: -1px 8px 48px 0 rgba(18, 81, 88, 0.22);
  display: block;
}

.strt .comm-text-side {
  flex: 1 1 auto;
}

.strt .comm-label {
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #72B48A;
  margin-bottom: 16px;
  display: block;
}

.strt .comm-h2 {
  font-size: 31px;
  line-height: 1.3;
  color: #FEFEFD;
  margin: 0 0 32px 0;
}

.strt .comm-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(254, 254, 253, 0.82);
  margin-bottom: 32px;
}

.strt .comm-reqs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.strt .comm-req {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.strt .comm-req-icon {
  width: 36px;
  height: 36px;
  border-radius: 5px;
  background: rgba(114, 180, 138, 0.2);
  border: 1px solid rgba(114, 180, 138, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strt .comm-req-icon i {
  color: #72B48A;
  font-size: 19px;
}

.strt .comm-req-text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(254, 254, 253, 0.82);
}

.strt .comm-req-text strong {
  color: #FEFEFD;
  display: block;
}

.strt .prob-blk {
  background: #FEFEFD;
  padding: 64px 0;
  position: relative;
}

.strt .prob-blk .diag-acc {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.strt .prob-blk .diag-acc svg {
  width: 100%;
  height: 100%;
}

.strt .prob-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}

.strt .prob-h2 {
  font-size: 31px;
  line-height: 1.3;
  color: #125158;
  margin: 0 0 32px 0;
}

.strt .prob-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #2a4a4d;
  margin-bottom: 32px;
}

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

.strt .prob-stat {
  flex: 1 1 auto;
  padding: 16px;
  border-radius: 5px;
  background: linear-gradient(307deg, rgba(18, 81, 88, 0.05) 0%, rgba(114, 180, 138, 0.08) 100%);
  border: 1px solid rgba(18, 81, 88, 0.1);
}

.strt .prob-stat-num {
  font-size: 31px;
  font-weight: 700;
  color: #125158;
  line-height: 1.1;
}

.strt .prob-stat-lbl {
  font-size: 15px;
  color: #3a5a5d;
  line-height: 1.3;
  margin-top: 8px;
}

.strt .prob-right {
  padding-top: 32px;
}

.strt .prob-img-wrap {
  position: relative;
  margin-bottom: 32px;
}

.strt .prob-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(18, 81, 88, 0.1);
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
  display: block;
}

.strt .prob-quote {
  padding: 32px;
  background: rgba(18, 81, 88, 0.04);
  border-radius: 5px;
  border-top: 3px solid #72B48A;
  font-size: 15px;
  line-height: 1.75;
  color: #2a4a4d;
}

.strt .prob-quote cite {
  display: block;
  margin-top: 16px;
  font-size: 15px;
  font-style: normal;
  color: #125158;
  font-weight: 600;
}

.strt .adapt-blk {
  padding: 64px 0;
  background: linear-gradient(307deg, rgba(114, 180, 138, 0.1) 0%, rgba(254, 254, 253, 0.6) 100%);
}

.strt .adapt-top {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px auto;
}

.strt .adapt-h2 {
  font-size: 31px;
  line-height: 1.3;
  color: #125158;
  margin: 0 0 16px 0;
}

.strt .adapt-sub {
  font-size: 15px;
  line-height: 1.75;
  color: #2a4a4d;
}

.strt .adapt-tl {
  max-width: 860px;
  margin: 0 auto;
}

.strt .tl-item {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.strt .tl-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}

.strt .tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #72B48A;
  border: 3px solid #FEFEFD;
  box-shadow: 0 0 0 2px #72B48A;
  flex-shrink: 0;
  animation: bdr-glow 2.4s ease-out infinite;
}

.strt .tl-item.active .tl-dot {
  background: #125158;
  box-shadow: 0 0 0 2px #125158;
}

.strt .tl-line {
  width: 2px;
  flex: 1 1 auto;
  min-height: 48px;
  background: linear-gradient(to bottom, #72B48A, rgba(114, 180, 138, 0.2));
  margin-top: 4px;
}

.strt .tl-card {
  flex: 1 1 auto;
  background: #FEFEFD;
  border-radius: 20px;
  padding: 32px;
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
  border: 1px solid rgba(18, 81, 88, 0.07);
}

.strt .tl-card-h {
  font-size: 19px;
  font-weight: 600;
  color: #125158;
  margin-bottom: 8px;
  line-height: 1.3;
}

.strt .tl-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #3a5a5d;
  margin: 0;
}

.strt .tl-tag {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #72B48A;
  background: rgba(114, 180, 138, 0.1);
  border-radius: 1px;
  padding: 4px 8px;
  margin-bottom: 8px;
}

.strt .adapt-footer-note {
  text-align: center;
  margin-top: 32px;
  font-size: 15px;
  color: #3a5a5d;
  line-height: 1.55;
}

@keyframes bdr-glow {
  0% {
    box-shadow: 0 0 0 2px #72B48A;
  }

  50% {
    box-shadow: 0 0 0 5px rgba(114, 180, 138, 0.25), 0 0 12px rgba(114, 180, 138, 0.3);
  }

  100% {
    box-shadow: 0 0 0 2px #72B48A;
  }
}

.strt .shake-el {
  animation: gentle-shake 6s ease-out infinite;
}

@keyframes gentle-shake {

  0%,
  88%,
  100% {
    transform: translateX(0);
  }

  90% {
    transform: translateX(-3px);
  }

  92% {
    transform: translateX(3px);
  }

  94% {
    transform: translateX(-2px);
  }

  96% {
    transform: translateX(2px);
  }

  98% {
    transform: translateX(0);
  }
}

@media (max-width: 1024px) {
  .strt .ttl-inner {
    padding: 0 32px;
    gap: 32px;
  }

  .strt .ttl-h1 {
    font-size: 31px;
  }

  .strt .out-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .strt .out-aside img {
    height: 280px;
  }

  .strt .appr-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .strt .appr-right {
    padding-top: 0;
  }

  .strt .comm-inner {
    flex-direction: column;
    gap: 32px;
  }

  .strt .comm-img-side {
    flex: 0 0 auto;
    width: 100%;
  }

  .strt .prob-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .strt .prob-right {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .strt .ttl-inner {
    flex-direction: column;
    padding: 0 16px;
    gap: 32px;
  }

  .strt .ttl-img-wrap {
    width: 100%;
  }

  .strt .ttl-img-wrap img {
    height: 260px;
  }

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

  .strt .out-blk,
  .strt .appr-blk,
  .strt .comm-blk,
  .strt .prob-blk,
  .strt .adapt-blk {
    padding: 64px 0;
  }

  .strt .prob-stat-row {
    flex-direction: column;
    gap: 16px;
  }

  .strt .tl-item {
    gap: 16px;
  }

  .strt .tl-card {
    padding: 16px;
  }

  .strt .adapt-top {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .strt .ttl-h1 {
    font-size: 23px;
  }

  .strt .ttl-blk {
    padding: 32px 0;
  }

  .strt .ttl-blk::before,
  .strt .ttl-blk::after {
    display: none;
  }

  .strt .out-body {
    padding-top: 0;
  }
}

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

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

.srvs-pg .reveal-up {
  opacity: 0;
  transform: translateY(32px);
  animation: revealUp 0.55s ease-out forwards;
}

.srvs-pg .reveal-up.d1 {
  animation-delay: 0.08s;
}

.srvs-pg .reveal-up.d2 {
  animation-delay: 0.18s;
}

.srvs-pg .reveal-up.d3 {
  animation-delay: 0.28s;
}

.srvs-pg .reveal-up.d4 {
  animation-delay: 0.38s;
}

.srvs-pg .reveal-up.d5 {
  animation-delay: 0.48s;
}

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

/* ── BLOCK 1: TITLE / SPLIT SCREEN ── */
.srvs-pg .title-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  position: relative;
}

.srvs-pg .title-split::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 580px solid #125158;
  border-right: 80px solid transparent;
  pointer-events: none;
  z-index: 2;
}

.srvs-pg .ts-left {
  background: #125158;
  padding: 64px 64px 64px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.srvs-pg .ts-frame {
  border: 1px solid rgba(114, 180, 138, 0.35);
  padding: 32px;
  position: relative;
}

.srvs-pg .ts-frame::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid rgba(114, 180, 138, 0.15);
  pointer-events: none;
}

.srvs-pg .ts-label {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #72B48A;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.3;
}

.srvs-pg .ts-h1 {
  font-size: 58px;
  line-height: 1.1;
  color: #FEFEFD;
  margin-bottom: 32px;
}

.srvs-pg .ts-h1 span {
  color: #72B48A;
}

.srvs-pg .ts-desc {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(254, 254, 253, 0.78);
}

.srvs-pg .ts-right {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.srvs-pg .ts-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(18, 81, 88, 0.18);
  transition: transform 0.12s ease-out;
}

.srvs-pg .ts-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(307deg, rgba(18, 81, 88, 0.72) 0%, transparent 100%);
  pointer-events: none;
}

.srvs-pg .ts-geo {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srvs-pg .ts-geo-dot {
  width: 6px;
  height: 6px;
  border-radius: 20px;
  background: #72B48A;
  align-self: flex-end;
}

.srvs-pg .ts-geo-line {
  width: 1px;
  height: 48px;
  background: rgba(114, 180, 138, 0.4);
  align-self: flex-end;
}

/* ── BLOCK 2: SERVICES DETAIL ── */
.srvs-pg .svc-detail {
  background: #FEFEFD;
  padding: 64px 0;
  position: relative;
}

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

.srvs-pg .svc-detail-bg::before {
  content: "";
  position: absolute;
  top: -32px;
  right: -32px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(18, 81, 88, 0.06);
  border-radius: 1px;
  transform: rotate(18deg);
}

.srvs-pg .svc-detail-bg::after {
  content: "";
  position: absolute;
  bottom: 32px;
  left: 64px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(114, 180, 138, 0.08);
  border-radius: 1px;
  transform: rotate(9deg);
}

.srvs-pg .svc-hd {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 64px;
  max-width: 640px;
}

.srvs-pg .svc-hd h2 {
  font-size: 31px;
  line-height: 1.3;
  color: #125158;
  margin-bottom: 16px;
}

.srvs-pg .svc-hd h2 .dot-acc {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 20px;
  background: #72B48A;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.srvs-pg .svc-hd p {
  font-size: 19px;
  line-height: 1.55;
  color: #2a4a4d;
}

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

.srvs-pg .svc-img-col {
  position: relative;
}

.srvs-pg .svc-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.srvs-pg .svc-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(18, 81, 88, 0.12);
  border-radius: 1px;
  transition: border-color 0.1s ease-out;
}

.srvs-pg .svc-img-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 2px solid transparent;
  border-radius: 1px;
  transition: border-color 0.1s ease-out;
  pointer-events: none;
  z-index: 1;
}

.srvs-pg .svc-img-wrap:hover::before {
  border-color: #72B48A;
}

.srvs-pg .svc-stat-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.srvs-pg .svc-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(307deg, rgba(18, 81, 88, 0.05) 0%, transparent 100%);
  border-radius: 5px;
  box-shadow: -1px 1px 3px 0 rgba(18, 81, 88, 0.06);
}

.srvs-pg .svc-stat-num {
  font-size: 31px;
  line-height: 1.1;
  color: #125158;
  font-weight: 700;
  min-width: 64px;
}

.srvs-pg .svc-stat-num em {
  color: #72B48A;
  font-style: normal;
}

.srvs-pg .svc-stat-txt {
  font-size: 15px;
  line-height: 1.55;
  color: #2a4a4d;
}

.srvs-pg .svc-list-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.srvs-pg .svc-item {
  padding: 32px;
  background: #FEFEFD;
  border-radius: 5px;
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
  position: relative;
  overflow: hidden;
}

.srvs-pg .svc-item-expand {
  position: absolute;
  inset: 0;
  background: linear-gradient(307deg, rgba(114, 180, 138, 0.07) 0%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.12s ease-out;
  border-radius: 5px;
  pointer-events: none;
}

.srvs-pg .svc-item:hover .svc-item-expand {
  transform: scaleX(1);
}

.srvs-pg .svc-item-ico {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: rgba(18, 81, 88, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #125158;
  font-size: 19px;
}

.srvs-pg .svc-item h4 {
  font-size: 19px;
  line-height: 1.3;
  color: #125158;
  margin-bottom: 8px;
}

.srvs-pg .svc-item p {
  font-size: 15px;
  line-height: 1.55;
  color: #2a4a4d;
}

.srvs-pg .svc-item-check {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.srvs-pg .chk-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: #2a4a4d;
}

.srvs-pg .chk-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.srvs-pg .chk-icon svg {
  display: block;
}

/* ── BLOCK 3: FAQ / DENSE CARD ── */
.srvs-pg .faq-dense {
  background: linear-gradient(307deg, rgba(18, 81, 88, 0.06) 0%, #FEFEFD 100%);
  padding: 64px 0;
  position: relative;
}

.srvs-pg .faq-dense-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.srvs-pg .faq-dense-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #72B48A, transparent);
  opacity: 0.35;
}

.srvs-pg .faq-dense-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #125158, transparent);
  opacity: 0.2;
}

.srvs-pg .faq-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.srvs-pg .faq-aside {
  position: sticky;
  top: 32px;
}

.srvs-pg .faq-aside h2 {
  font-size: 31px;
  line-height: 1.3;
  color: #125158;
  margin-bottom: 16px;
}

.srvs-pg .faq-aside h2 .dot-acc {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 20px;
  background: #72B48A;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.srvs-pg .faq-aside p {
  font-size: 15px;
  line-height: 1.75;
  color: #2a4a4d;
  margin-bottom: 32px;
}

.srvs-pg .faq-contact-card {
  background: #125158;
  border-radius: 5px;
  padding: 32px;
  box-shadow: -1px 8px 48px 0 rgba(18, 81, 88, 0.11);
}

.srvs-pg .faq-contact-card h5 {
  font-size: 15px;
  line-height: 1.3;
  color: #72B48A;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.srvs-pg .faq-contact-card a {
  display: block;
  color: #FEFEFD;
  font-size: 15px;
  line-height: 1.75;
  text-decoration: none;
  transition: color 0.1s ease-out;
}

.srvs-pg .faq-contact-card a:hover {
  color: #72B48A;
  text-decoration: underline;
}

.srvs-pg .faq-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srvs-pg .faq-card {
  background: #FEFEFD;
  border-radius: 5px;
  padding: 32px;
  box-shadow: -1px 1px 3px 0 rgba(18, 81, 88, 0.06);
  border-top: 2px solid rgba(18, 81, 88, 0.1);
  transition: box-shadow 0.1s ease-out, border-color 0.1s ease-out;
}

.srvs-pg .faq-card:hover {
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
  border-color: #72B48A;
}

.srvs-pg .faq-card h5 {
  font-size: 19px;
  line-height: 1.3;
  color: #125158;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.srvs-pg .faq-card h5 .q-mark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 20px;
  background: rgba(114, 180, 138, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #125158;
  font-weight: 700;
  margin-top: 1px;
}

.srvs-pg .faq-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #2a4a4d;
  padding-left: 32px;
}

.srvs-pg .faq-card .faq-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-left: 32px;
}

.srvs-pg .faq-tag {
  font-size: 15px;
  line-height: 1.3;
  color: #125158;
  background: rgba(18, 81, 88, 0.07);
  border-radius: 34px;
  padding: 4px 16px;
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .srvs-pg .title-split {
    grid-template-columns: 1fr;
  }

  .srvs-pg .title-split::after {
    display: none;
  }

  .srvs-pg .ts-left {
    padding: 64px 32px;
  }

  .srvs-pg .ts-right {
    height: 320px;
  }

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

  .srvs-pg .svc-img-wrap img {
    height: 280px;
  }

  .srvs-pg .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .srvs-pg .faq-aside {
    position: static;
  }
}

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

  .srvs-pg .ts-h1 {
    font-size: 31px;
  }

  .srvs-pg .ts-frame {
    padding: 16px;
  }

  .srvs-pg .ts-left {
    padding: 32px 16px;
  }

  .srvs-pg .svc-detail,
  .srvs-pg .faq-dense {
    padding: 32px 0;
  }

  .srvs-pg .svc-hd {
    margin-bottom: 32px;
  }

  .srvs-pg .svc-stat-strip {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .srvs-pg .svc-stat {
    flex: 1 1 140px;
  }
}

@media (max-width: 480px) {
  .srvs-pg .ts-h1 {
    font-size: 23px;
  }

  .srvs-pg .faq-card h5 {
    font-size: 15px;
  }

  .srvs-pg .svc-stat-strip {
    flex-direction: column;
  }
}

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

.succ-page .succ-wrap {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.succ-page .succ-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(307deg, rgba(18, 81, 88, 0.08), rgba(114, 180, 138, 0.15));
  border-radius: 20px;
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
}

.succ-page .succ-icon svg {
  width: 32px;
  height: 32px;
  stroke: #125158;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.succ-page .succ-heading {
  font-size: 31px;
  line-height: 1.3;
  color: #125158;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.succ-page .succ-text {
  font-size: 19px;
  line-height: 1.55;
  color: #2a4a4d;
  margin: 0 0 32px;
}

.succ-page .succ-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(307deg, #125158, #72B48A);
  border-radius: 1px;
  margin: 0 auto 32px;
}

.succ-page .succ-meta {
  font-size: 15px;
  line-height: 1.55;
  color: #4a6e71;
  margin: 0 0 32px;
  letter-spacing: 0.01em;
}

.succ-page .succ-meta a {
  color: #125158;
  text-decoration: none;
  border-bottom: 1px solid rgba(18, 81, 88, 0.3);
  transition: border-color 0.1s ease-out, color 0.1s ease-out;
}

.succ-page .succ-meta a:hover {
  color: #72B48A;
  border-bottom-color: #72B48A;
}

.succ-page .succ-btn {
  display: inline-block;
  padding: 16px 32px;
  background: #125158;
  color: #FEFEFD;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
  transition: background 0.12s ease-out, padding 0.12s ease-out, box-shadow 0.12s ease-out;
}

.succ-page .succ-btn:hover {
  background: #0e3f45;
  padding: 16px 40px;
  box-shadow: -1px 8px 48px 0 rgba(18, 81, 88, 0.11);
}

.succ-page .succ-btn:focus {
  outline: 2px solid #72B48A;
  outline-offset: 3px;
}

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

  .succ-page .succ-heading {
    font-size: 23px;
  }

  .succ-page .succ-text {
    font-size: 15px;
  }
}

.pg404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
  background: #FEFEFD;
}

.pg404 .err-wrap {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}

.pg404 .err-visual {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pg404 .err-visual .code-num {
  font-size: 58px;
  line-height: 1.1;
  font-weight: 700;
  color: #125158;
  letter-spacing: -2px;
  position: relative;
}

.pg404 .err-visual .code-num span {
  color: #72B48A;
}

.pg404 .err-visual .err-dot {
  width: 8px;
  height: 8px;
  border-radius: 34px;
  background: #72B48A;
  display: block;
}

.pg404 .err-divider {
  width: 1px;
  height: 160px;
  background: linear-gradient(307deg, #125158 0%, transparent 100%);
  opacity: 0.18;
  flex: 0 0 auto;
}

.pg404 .err-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pg404 .err-content .err-label {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.12em;
  color: #72B48A;
  text-transform: uppercase;
}

.pg404 .err-content .err-heading {
  font-size: 31px;
  line-height: 1.3;
  color: #125158;
  margin: 0;
}

.pg404 .err-content .err-desc {
  font-size: 19px;
  line-height: 1.75;
  color: #125158;
  opacity: 0.72;
  max-width: 480px;
  margin: 0;
}

.pg404 .err-content .err-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.pg404 .err-content .err-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #125158;
  color: #FEFEFD;
  font-size: 15px;
  line-height: 1.3;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  box-shadow: -1px 6px 22px 0 rgba(18, 81, 88, 0.08);
  transition: padding 0.12s ease-out, background 0.09s linear;
  cursor: pointer;
}

.pg404 .err-content .err-actions .btn-primary:hover {
  padding: 16px 40px;
  background: #0e3f45;
}

.pg404 .err-content .err-actions .btn-primary:focus {
  outline: 2px solid #72B48A;
  outline-offset: 3px;
}

.pg404 .err-content .err-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: #125158;
  font-size: 15px;
  line-height: 1.3;
  border-radius: 5px;
  text-decoration: none;
  border: 1px solid rgba(18, 81, 88, 0.28);
  transition: padding 0.1s ease-out, border-color 0.09s linear;
  cursor: pointer;
}

.pg404 .err-content .err-actions .btn-secondary:hover {
  padding: 16px 40px;
  border-color: #125158;
}

.pg404 .err-content .err-actions .btn-secondary:focus {
  outline: 2px solid #72B48A;
  outline-offset: 3px;
}

.pg404 .err-nav {
  margin-top: 64px;
  max-width: 1280px;
  width: 100%;
  border-top: 1px solid rgba(18, 81, 88, 0.1);
  padding-top: 32px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
}

.pg404 .err-nav .nav-hint {
  font-size: 15px;
  line-height: 1.55;
  color: #125158;
  opacity: 0.55;
}

.pg404 .err-nav .nav-links {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pg404 .err-nav .nav-links li a {
  font-size: 15px;
  line-height: 1.55;
  color: #125158;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.08s ease-out;
}

.pg404 .err-nav .nav-links li a:hover {
  border-bottom-color: #72B48A;
}

@media (max-width: 768px) {
  .pg404 .err-wrap {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .pg404 .err-divider {
    display: none;
  }

  .pg404 .err-visual .code-num {
    font-size: 58px;
  }

  .pg404 .err-content .err-heading {
    font-size: 23px;
  }

  .pg404 .err-content .err-desc {
    font-size: 15px;
  }

  .pg404 .err-nav {
    flex-direction: column;
    gap: 16px;
  }
}

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

  .pg404 .err-content .err-actions {
    flex-direction: column;
  }
}