html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'IBM Plex Mono', monospace;
  min-height: 100dvh;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body:focus-visible {
  outline: none;
}

*:focus-visible {
  outline: 2px solid #358395;
  outline-offset: 3px;
  transition: outline-offset 0.35s cubic-bezier(0.34,1.2,0.64,1);
}

.site-head {
  border-bottom: 2px solid #67C2BA;
  background: linear-gradient(160deg, #ffffff 60%, #E5EFEA 100%);
  padding: 32px 16px 0 16px;
  box-shadow: 0 6px 25px -1px rgba(53,131,149,0.09);
}

.site-head__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2a6b7a;
  border-radius: 5px;
  width: 48px;
  height: 64px;
  background-color: #ffffff;
  box-shadow: 0 2px 2px -1px rgba(53,131,149,0.05), 0 6px 25px -1px rgba(53,131,149,0.09);
  flex-shrink: 0;
  overflow: hidden;
}

.brand__mark img {
  width: 44px;
  height: 58px;
  object-fit: contain;
  display: block;
}

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

.brand__name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  color: #1b4f5a;
  letter-spacing: 0.04em;
}

.brand__tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: #358395;
  letter-spacing: 0.08em;
}

.site-head__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  padding-bottom: 0;
}

.site-head__nav a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #1b4f5a;
  text-decoration: none;
  letter-spacing: 0.06em;
  padding: 12px 16px;
  border-radius: 5px 5px 0 0;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: color 0.38s ease-in-out;
  min-height: 44px;
  box-sizing: border-box;
}

.site-head__nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #358395, #67C2BA);
  transform: translateX(101%);
  transition: transform 0.42s cubic-bezier(0.34,1.2,0.64,1);
  border-radius: 5px 5px 0 0;
  z-index: 0;
}

.site-head__nav a:hover::before,
.site-head__nav a:focus-visible::before {
  transform: translateX(0);
}

.site-head__nav a:hover,
.site-head__nav a:focus-visible {
  color: #ffffff;
}

.site-head__nav a span {
  position: relative;
  z-index: 1;
}

.site-head__nav a[aria-current="page"] {
  color: #358395;
  font-weight: 700;
  border-bottom: 2px solid #358395;
}

.foot {
  background: linear-gradient(170deg, #1b4f5a 0%, #0f3340 100%);
  color: #E5EFEA;
  font-family: 'IBM Plex Mono', monospace;
}

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

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

.foot__col-brand .brand__name {
  color: #E5EFEA;
  font-size: 18px;
}

.foot__col-brand .brand__tagline {
  color: #67C2BA;
  font-size: 14px;
}

.foot__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #b8d8df;
  font-style: normal;
}

.foot__col-head {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  color: #67C2BA;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.foot__links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #b8d8df;
  text-decoration: none;
  transition: color 0.35s ease-in-out;
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
}

.foot__links a:hover,
.foot__links a:focus-visible {
  color: #67C2BA;
}

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

.foot__contact-label {
  font-size: 14px;
  line-height: 1.6;
  color: #67C2BA;
  font-weight: 700;
  white-space: nowrap;
}

.foot__contact-val {
  font-size: 14px;
  line-height: 1.6;
  color: #b8d8df;
  word-break: break-all;
}

.foot__contact-val a {
  color: #b8d8df;
  text-decoration: none;
  transition: color 0.38s ease-in-out;
}

.foot__contact-val a:hover,
.foot__contact-val a:focus-visible {
  color: #67C2BA;
}

.foot__lower {
  border-top: 1px solid rgba(103,194,186,0.2);
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 32px 32px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.foot__copy {
  font-size: 14px;
  line-height: 1.6;
  color: #6fa8b4;
}

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

.foot__legal a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #6fa8b4;
  text-decoration: none;
  transition: color 0.4s ease-in-out;
}

.foot__legal a:hover,
.foot__legal a:focus-visible {
  color: #67C2BA;
}

.foot__logo-end {
  display: flex;
  justify-content: center;
  padding: 16px 32px 32px 32px;
  border-top: 1px solid rgba(103,194,186,0.1);
}

.foot__logo-wrap {
  border: 1px solid rgba(103,194,186,0.4);
  border-radius: 5px;
  width: 44px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.05);
  box-shadow: 0 2px 2px -1px rgba(103,194,186,0.05);
  overflow: hidden;
}

.foot__logo-wrap img {
  width: 38px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.ck-toast {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 1000;
  max-width: 320px;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 10px 44px -1px rgba(53,131,149,0.14), 0 6px 25px -1px rgba(53,131,149,0.09);
  padding: 16px;
  font-family: 'IBM Plex Mono', monospace;
  display: none;
  opacity: 0;
  transition: opacity 0.42s ease-in-out;
  border-top: 3px solid #358395;
}

.ck-toast.ck-visible {
  opacity: 1;
}

.ck-toast__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

.ck-toast__body {
  font-size: 14px;
  line-height: 1.6;
  color: #1b4f5a;
  margin-bottom: 16px;
}

.ck-toast__actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ck-btn-ok {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: #358395;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  cursor: pointer;
  min-height: 44px;
  position: relative;
  overflow: hidden;
  transition: color 0.38s ease-in-out;
  flex: 1;
}

.ck-btn-ok::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #1b4f5a;
  transform: translateX(101%);
  transition: transform 0.42s cubic-bezier(0.34,1.2,0.64,1);
}

.ck-btn-ok:hover::before,
.ck-btn-ok:focus-visible::before {
  transform: translateX(0);
}

.ck-btn-ok span {
  position: relative;
  z-index: 1;
}

.ck-btn-ok:focus-visible {
  outline: 2px solid #358395;
  outline-offset: 3px;
}

.ck-lnk-skip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: #358395;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  min-height: 44px;
  padding: 8px;
  transition: color 0.35s ease-in-out;
}

.ck-lnk-skip:hover,
.ck-lnk-skip:focus-visible {
  color: #1b4f5a;
}

@media (max-width: 768px) {
  .foot__upper {
    grid-template-columns: 1fr 1fr;
    padding: 32px 16px 16px 16px;
  }

  .foot__lower {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ck-toast {
    left: 16px;
    right: 16px;
    max-width: none;
    bottom: 16px;
  }
}

@media (max-width: 375px) {
  .site-head__brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .foot__upper {
    grid-template-columns: 1fr;
  }

  .site-head__nav a {
    padding: 12px 8px;
  }
}.g-rules-text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 32px;
}

.g-rules-text h1 {
    color: #358395;
    font-size: 42px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 32px;
    margin-top: 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #E5EFEA;
}

.g-rules-text h2 {
    color: #358395;
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 16px;
    margin-top: 64px;
}

.g-rules-text h3 {
    color: #2a6a79;
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 16px;
    margin-top: 32px;
}

.g-rules-text h4 {
    color: #2a6a79;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 8px;
    margin-top: 32px;
}

.g-rules-text h5 {
    color: #358395;
    font-size: 15px;
    letter-spacing: 0.06em;
    line-height: 1.6;
    margin-bottom: 8px;
    margin-top: 16px;
    text-transform: uppercase;
}

.g-rules-text h6 {
    color: #67C2BA;
    font-size: 14px;
    letter-spacing: 0.08em;
    line-height: 1.6;
    margin-bottom: 8px;
    margin-top: 16px;
    text-transform: uppercase;
}

.g-rules-text p {
    color: #1e3a40;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    margin-top: 0;
}

.g-rules-text ul {
    color: #1e3a40;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    margin-top: 0;
    padding-left: 32px;
}

.g-rules-text ol {
    color: #1e3a40;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    margin-top: 0;
    padding-left: 32px;
}

.g-rules-text li {
    margin-bottom: 8px;
    padding-left: 4px;
}

.g-rules-text li::marker {
    color: #67C2BA;
}

.g-rules-text ul ul,
.g-rules-text ol ol,
.g-rules-text ul ol,
.g-rules-text ol ul {
    margin-bottom: 8px;
    margin-top: 8px;
}

.g-rules-text em,
.g-rules-text i {
    color: #358395;
    font-style: italic;
}

.g-rules-text a {
    border-bottom: 1px solid #67C2BA;
    color: #358395;
    text-decoration: none;
    transition: color 0.38s cubic-bezier(0.34,1.2,0.64,1), border-color 0.38s cubic-bezier(0.34,1.2,0.64,1);
}

.g-rules-text a:hover {
    border-bottom-color: #358395;
    color: #2a6a79;
}

.g-rules-text a:focus-visible {
    border-radius: 5px;
    outline: 2px solid #358395;
    outline-offset: 2px;
}

.g-rules-text div {
    color: #1e3a40;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .g-rules-text {
        padding: 32px 16px;
    }

    .g-rules-text h1 {
        font-size: 30px;
    }

    .g-rules-text h2 {
        font-size: 22px;
        margin-top: 32px;
    }

    .g-rules-text h3 {
        font-size: 18px;
    }

    .g-rules-text h4 {
        font-size: 15px;
    }

    .g-rules-text ul,
    .g-rules-text ol {
        padding-left: 16px;
    }
}

@media (max-width: 375px) {
    .g-rules-text {
        padding: 16px 8px;
    }

    .g-rules-text h1 {
        font-size: 22px;
    }

    .g-rules-text h2 {
        font-size: 18px;
    }

    .g-rules-text h3 {
        font-size: 15px;
    }

    .g-rules-text p,
    .g-rules-text ul,
    .g-rules-text ol,
    .g-rules-text div {
        font-size: 14px;
    }
}
.an-det {
  max-width: 100%;
  overflow-x: hidden;
}

.an-det .ad-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.an-det .ad-cover {
  padding: 64px 0 0;
  position: relative;
}

.an-det .ad-cover-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.an-det .ad-img-col {
  flex: 0 0 28%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  min-height: 360px;
}

.an-det .ad-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) contrast(1.05);
  transition: filter 0.38s cubic-bezier(0.34,1.2,0.64,1);
}

.an-det .ad-img-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(53,131,149,0.07) 0px,
    rgba(53,131,149,0.07) 1px,
    transparent 1px,
    transparent 4px
  );
  pointer-events: none;
  border-radius: 5px;
}

.an-det .ad-img-col .ad-img-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 3px,
    rgba(53,131,149,0.04) 3px,
    rgba(53,131,149,0.04) 4px
  );
  pointer-events: none;
}

.an-det .ad-txt-col {
  flex: 1;
  padding: 32px 0 32px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.an-det .ad-label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #358395;
  border-left: 3px solid #67C2BA;
  padding-left: 8px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.an-det .ad-post-title {
  font-size: 42px;
  line-height: 1.1;
  color: #1b3a42;
  font-style: italic;
  margin: 0 0 32px;
  max-width: 680px;
}

.an-det .ad-post-title em {
  font-style: normal;
  background: radial-gradient(circle at 100% 100%, #67C2BA, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.an-det .ad-meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.an-det .ad-views {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #4a7a85;
  letter-spacing: 0.06em;
}

.an-det .ad-views svg {
  flex-shrink: 0;
}

.an-det .ad-back-btn {
  display: inline-block;
  font-size: 14px;
  color: #358395;
  border: 1.5px solid #358395;
  border-radius: 5px;
  padding: 8px 16px;
  text-decoration: none;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
  transition: color 0.35s cubic-bezier(0.34,1.2,0.64,1), border-color 0.35s cubic-bezier(0.34,1.2,0.64,1);
  background: transparent;
}

.an-det .ad-back-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #358395;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.34,1.2,0.64,1);
  z-index: 0;
  border-radius: 5px;
}

.an-det .ad-back-btn:hover::before {
  transform: translateX(0);
}

.an-det .ad-back-btn:hover {
  color: #fff;
}

.an-det .ad-back-btn span {
  position: relative;
  z-index: 1;
}

.an-det .ad-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(53,131,149,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53,131,149,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.an-det .ad-cover-inner {
  position: relative;
  z-index: 1;
}

.an-det .ad-divider-a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 32px;
}

.an-det .ad-divider-a::before,
.an-det .ad-divider-a::after {
  content: "";
  display: block;
  width: 28%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #67C2BA 80%);
}

.an-det .ad-divider-a::after {
  background: linear-gradient(270deg, transparent, #67C2BA 80%);
}

.an-det .ad-body-sec {
  padding: 64px 0;
  background: #E5EFEA;
  position: relative;
}

.an-det .ad-body-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 100%, rgba(103,194,186,0.13), transparent 60%);
  pointer-events: none;
}

.an-det .ad-body-layout {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.an-det .ad-sidebar {
  flex: 0 0 calc(33.333% - 32px);
  position: sticky;
  top: 32px;
}

.an-det .ad-sidebar-card {
  background: #fff;
  border-radius: 5px;
  padding: 32px;
  box-shadow: 0 6px 25px -1px rgba(53,131,149,0.09);
  border-top: 3px solid #358395;
}

.an-det .ad-sidebar-card h4 {
  font-size: 15px;
  color: #1b3a42;
  font-style: italic;
  margin: 0 0 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.an-det .ad-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.an-det .ad-sidebar-list li {
  font-size: 14px;
  color: #3a6672;
  line-height: 1.6;
  padding-left: 16px;
  border-left: 2px solid #67C2BA;
  transition: border-color 0.32s ease-in-out, color 0.32s ease-in-out;
}

.an-det .ad-sidebar-list li:hover {
  border-left-color: #358395;
  color: #1b3a42;
}

.an-det .ad-sidebar-link {
  display: block;
  margin-top: 32px;
  text-align: center;
  background: #358395;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.07em;
  padding: 16px;
  border-radius: 5px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s cubic-bezier(0.34,1.2,0.64,1);
}

.an-det .ad-sidebar-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1b3a42;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.34,1.2,0.64,1);
  border-radius: 5px;
}

.an-det .ad-sidebar-link:hover::before {
  transform: translateX(0);
}

.an-det .ad-sidebar-link span {
  position: relative;
  z-index: 1;
}

.an-det .ad-article-body {
  flex: 1;
  min-width: 0;
}

.an-det .ad-article-body p {
  font-size: 18px;
  line-height: 1.6;
  color: #223840;
  margin: 0 0 16px;
}

.an-det .ad-article-body h2 {
  font-size: 30px;
  line-height: 1.1;
  color: #1b3a42;
  font-style: italic;
  margin: 32px 0 16px;
}

.an-det .ad-article-body h4 {
  font-size: 22px;
  line-height: 1.1;
  color: #1b3a42;
  margin: 32px 0 8px;
}

.an-det .ad-article-body em {
  color: #358395;
  font-style: italic;
}

.an-det .ad-article-body del {
  color: #8aacb5;
  text-decoration: line-through;
}

.an-det .ad-article-body ol {
  padding-left: 0;
  margin: 16px 0;
  list-style: none;
  counter-reset: art-ol;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.an-det .ad-article-body ol li {
  font-size: 18px;
  line-height: 1.6;
  color: #223840;
  padding-left: 32px;
  border-left: 2px solid #67C2BA;
  counter-increment: art-ol;
  position: relative;
}

.an-det .ad-article-body ol li::before {
  content: counter(art-ol);
  position: absolute;
  left: 8px;
  top: 0;
  font-size: 14px;
  color: #358395;
  font-weight: 700;
  line-height: 1.6;
}

.an-det .ad-article-body blockquote {
  margin: 32px 0;
  padding: 16px 32px;
  border-left: 4px solid #358395;
  background: rgba(53,131,149,0.05);
  border-radius: 0 5px 5px 0;
  font-size: 18px;
  line-height: 1.6;
  color: #2a5a68;
  font-style: italic;
}

.an-det .ad-article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 2px -1px rgba(53,131,149,0.05);
}

.an-det .ad-article-body th {
  background: #358395;
  color: #fff;
  padding: 16px;
  text-align: left;
  font-size: 14px;
  letter-spacing: 0.07em;
  line-height: 1.6;
}

.an-det .ad-article-body td {
  padding: 16px;
  color: #223840;
  line-height: 1.6;
  border-bottom: 1px solid rgba(53,131,149,0.12);
  background: #fff;
}

.an-det .ad-article-body tbody tr:hover td {
  background: rgba(103,194,186,0.07);
}

.an-det .ad-article-body tfoot td {
  background: rgba(53,131,149,0.06);
  font-size: 14px;
  color: #4a7a85;
  border-bottom: none;
}

.an-det .ad-article-body time {
  font-size: 14px;
  color: #358395;
  letter-spacing: 0.06em;
}

.an-det .ad-divider-b {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.an-det .ad-divider-b-line {
  height: 1.5px;
  flex: 1;
  background: linear-gradient(90deg, #67C2BA, transparent);
}

.an-det .ad-divider-b-line-r {
  background: linear-gradient(270deg, #67C2BA, transparent);
}

.an-det .ad-cta-sec {
  padding: 96px 0 64px;
  position: relative;
  background: #fff;
}

.an-det .ad-cta-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 100%, rgba(103,194,186,0.1), transparent 55%);
  pointer-events: none;
}

.an-det .ad-cta-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.an-det .ad-cta-left {
  flex: 1;
}

.an-det .ad-cta-left h2 {
  font-size: 30px;
  line-height: 1.1;
  color: #1b3a42;
  font-style: italic;
  margin: 0 0 16px;
}

.an-det .ad-cta-left p {
  font-size: 18px;
  line-height: 1.6;
  color: #3a6672;
  margin: 0;
}

.an-det .ad-cta-right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.an-det .ad-btn-primary {
  display: inline-block;
  font-size: 15px;
  color: #fff;
  background: #358395;
  border-radius: 5px;
  padding: 16px 32px;
  text-decoration: none;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
  transition: color 0.38s cubic-bezier(0.34,1.2,0.64,1);
  border: none;
  cursor: pointer;
}

.an-det .ad-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1b3a42;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
  border-radius: 5px;
}

.an-det .ad-btn-primary:hover::before {
  transform: translateX(0);
}

.an-det .ad-btn-primary span {
  position: relative;
  z-index: 1;
}

.an-det .ad-btn-secondary {
  display: inline-block;
  font-size: 15px;
  color: #358395;
  background: transparent;
  border: 1.5px solid #358395;
  border-radius: 5px;
  padding: 16px 32px;
  text-decoration: none;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
  transition: color 0.35s cubic-bezier(0.34,1.2,0.64,1);
}

.an-det .ad-btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #358395;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(0.34,1.2,0.64,1);
  border-radius: 5px;
}

.an-det .ad-btn-secondary:hover::before {
  transform: translateX(0);
}

.an-det .ad-btn-secondary:hover {
  color: #fff;
}

.an-det .ad-btn-secondary span {
  position: relative;
  z-index: 1;
}

.an-det .ad-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  animation: ad-vignette-pulse 4s ease-in-out infinite;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(53,131,149,0.08) 100%);
}

@keyframes ad-vignette-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.an-det .ad-appear-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.an-det .ad-appear-item {
  opacity: 0;
  transform: rotate(-4deg) translateY(8px);
  animation: ad-appear-in 0.4s cubic-bezier(0.34,1.2,0.64,1) forwards;
}

.an-det .ad-appear-item:nth-child(1) { animation-delay: 0.1s; }
.an-det .ad-appear-item:nth-child(2) { animation-delay: 0.22s; }
.an-det .ad-appear-item:nth-child(3) { animation-delay: 0.34s; }

@keyframes ad-appear-in {
  to {
    opacity: 1;
    transform: rotate(0deg) translateY(0);
  }
}

.an-det .ad-stat-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.an-det .ad-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.an-det .ad-stat-num {
  font-size: 30px;
  line-height: 1.1;
  color: #358395;
  font-style: italic;
}

.an-det .ad-stat-desc {
  font-size: 14px;
  color: #4a7a85;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

@media (max-width: 1366px) {
  .an-det .ad-post-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .an-det .ad-cover-grid {
    flex-direction: column;
    padding: 0 16px;
  }

  .an-det .ad-img-col {
    flex: none;
    min-height: 220px;
    width: 100%;
  }

  .an-det .ad-txt-col {
    padding: 32px 0 16px;
  }

  .an-det .ad-post-title {
    font-size: 30px;
  }

  .an-det .ad-body-layout {
    flex-direction: column;
    gap: 32px;
  }

  .an-det .ad-sidebar {
    flex: none;
    position: static;
    width: 100%;
  }

  .an-det .ad-wrap {
    padding: 0 16px;
  }

  .an-det .ad-cta-inner {
    flex-direction: column;
    gap: 32px;
  }

  .an-det .ad-cta-right {
    width: 100%;
  }

  .an-det .ad-divider-a {
    padding: 0 16px;
  }

  .an-det .ad-body-sec {
    padding: 32px 0;
  }

  .an-det .ad-cta-sec {
    padding: 64px 0 32px;
  }

  .an-det .ad-cover {
    padding: 32px 0 0;
  }
}

@media (max-width: 375px) {
  .an-det .ad-post-title {
    font-size: 22px;
  }

  .an-det .ad-meta-row {
    gap: 16px;
  }

  .an-det .ad-stat-row {
    gap: 16px;
  }

  .an-det .ad-cover-grid {
    padding: 0 16px;
  }

  .an-det .ad-article-body h2 {
    font-size: 22px;
  }

  .an-det .ad-article-body h4 {
    font-size: 18px;
  }
}

.proc-pg {
  overflow-x: hidden;
}

.proc-pg .pg-reveal {
  animation: expandHeight 0.42s cubic-bezier(0.34,1.2,0.64,1) both;
}

@keyframes expandHeight {
  from { opacity: 0; transform: scaleY(0.92) translateY(16px); transform-origin: top; }
  to { opacity: 1; transform: scaleY(1) translateY(0); transform-origin: top; }
}

.proc-pg .fade-out-hover {
  transition: opacity 0.44s ease-in-out, box-shadow 0.38s cubic-bezier(0.34,1.2,0.64,1);
}
.proc-pg .fade-out-hover:hover {
  opacity: 0.88;
}

.proc-pg .title-blk {
  background: radial-gradient(circle at 100% 100%, rgba(53,131,149,0.18) 0%, transparent 65%);
  padding: 64px 32px;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.proc-pg .title-blk__circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.proc-pg .title-blk__circles span {
  position: absolute;
  border-radius: 38px;
  border: 1px solid rgba(103,194,186,0.12);
  display: block;
}

.proc-pg .title-blk__circles span:nth-child(1) {
  width: 220px;
  height: 220px;
  top: -64px;
  right: 80px;
  border-radius: 38px;
  opacity: 0.6;
}

.proc-pg .title-blk__circles span:nth-child(2) {
  width: 140px;
  height: 140px;
  top: 32px;
  right: 180px;
  opacity: 0.4;
}

.proc-pg .title-blk__circles span:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 16px;
  left: 120px;
  opacity: 0.3;
}

.proc-pg .title-blk__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}

.proc-pg .title-blk__text {
  flex: 1 1 0;
}

.proc-pg .title-blk__label {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #358395;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.proc-pg .title-blk__h1 {
  font-size: 42px;
  line-height: 1.1;
  color: #1b3a42;
  font-style: italic;
  margin-bottom: 16px;
}

.proc-pg .title-blk__h1 em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: #67C2BA;
  text-underline-offset: 5px;
  color: #358395;
}

.proc-pg .title-blk__desc {
  font-size: 18px;
  line-height: 1.6;
  color: #2e4a52;
  max-width: 520px;
}

.proc-pg .title-blk__img-wrap {
  flex: 0 0 360px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.proc-pg .title-blk__img-wrap img {
  width: 360px;
  height: 280px;
  object-fit: cover;
  border-radius: 5px;
  display: block;
  filter: sepia(0.22) contrast(1.07) brightness(0.94) saturate(0.85);
}

.proc-pg .title-blk__img-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(229,239,234,0.55) 0%, transparent 55%);
  border-radius: 5px;
  pointer-events: none;
}

.proc-pg .arrow-hint {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  opacity: 0.5;
}

.proc-pg .arrow-hint__icon {
  width: 18px;
  height: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.proc-pg .arrow-hint__icon svg {
  display: block;
}

.proc-pg .arrow-hint__text {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #358395;
}

.proc-pg .steps-blk {
  background: #E5EFEA;
  padding: 96px 32px;
}

.proc-pg .steps-blk__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.proc-pg .steps-blk__head {
  margin-bottom: 64px;
  max-width: 640px;
}

.proc-pg .steps-blk__h2 {
  font-size: 30px;
  line-height: 1.1;
  color: #1b3a42;
  margin-bottom: 16px;
  font-style: italic;
}

.proc-pg .steps-blk__h2 strong {
  background: radial-gradient(circle at 100% 100%, #358395, #67C2BA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.proc-pg .steps-blk__sub {
  font-size: 15px;
  line-height: 1.6;
  color: #2e4a52;
}

.proc-pg .steps-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.proc-pg .step-item {
  background: #fff;
  border-radius: 5px;
  padding: 32px;
  box-shadow: 0 6px 25px -1px rgba(53,131,149,0.09);
  border-left: 3px solid #67C2BA;
  transition: box-shadow 0.38s cubic-bezier(0.34,1.2,0.64,1), transform 0.35s cubic-bezier(0.34,1.2,0.64,1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proc-pg .step-item:hover {
  box-shadow: 0 10px 44px -1px rgba(53,131,149,0.14);
  transform: translateY(-2px);
}

.proc-pg .step-item__top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.proc-pg .step-item__num {
  font-size: 42px;
  line-height: 1.1;
  color: rgba(53,131,149,0.15);
  font-style: italic;
  font-weight: 700;
  flex-shrink: 0;
}

.proc-pg .step-item__duration {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #358395;
  background: rgba(53,131,149,0.08);
  border-radius: 38px;
  padding: 4px 16px;
  white-space: nowrap;
  align-self: flex-start;
}

.proc-pg .step-item__h4 {
  font-size: 18px;
  line-height: 1.1;
  color: #1b3a42;
  font-style: italic;
}

.proc-pg .step-item__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #2e4a52;
}

.proc-pg .atm-blk {
  position: relative;
  padding: 96px 32px;
  overflow: hidden;
}

.proc-pg .atm-blk__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.proc-pg .atm-blk__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.proc-pg .atm-blk__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27,58,66,0.82);
  z-index: 1;
}

.proc-pg .atm-blk__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.proc-pg .atm-blk__left {
  flex: 1 1 0;
}

.proc-pg .atm-blk__h2 {
  font-size: 30px;
  line-height: 1.1;
  color: #E5EFEA;
  font-style: italic;
  margin-bottom: 16px;
}

.proc-pg .atm-blk__h2 em {
  font-style: normal;
  color: #67C2BA;
}

.proc-pg .atm-blk__body {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(229,239,234,0.85);
  margin-bottom: 32px;
}

.proc-pg .atm-blk__right {
  flex: 0 0 380px;
}

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

.proc-pg .pillar-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 5px;
  background: rgba(229,239,234,0.07);
  border-left: 3px solid rgba(103,194,186,0.45);
  transition: background 0.4s ease-in-out;
}

.proc-pg .pillar-item:hover {
  background: rgba(229,239,234,0.13);
}

.proc-pg .pillar-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proc-pg .pillar-item__text {
  flex: 1 1 0;
}

.proc-pg .pillar-item__h5 {
  font-size: 15px;
  line-height: 1.1;
  color: #E5EFEA;
  margin-bottom: 8px;
}

.proc-pg .pillar-item__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(229,239,234,0.72);
}

.proc-pg .anchor-icon-blk {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.proc-pg .anchor-icon-blk__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proc-pg .anchor-icon-blk__label {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #67C2BA;
  text-transform: uppercase;
}

.proc-pg .outcomes-blk {
  padding: 96px 32px;
  background: #fff;
}

.proc-pg .outcomes-blk__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.proc-pg .outcomes-blk__img-col {
  flex: 0 0 400px;
  position: relative;
}

.proc-pg .outcomes-blk__img-wrap {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.proc-pg .outcomes-blk__img-wrap img {
  width: 400px;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 5px;
  filter: sepia(0.15) contrast(1.05) brightness(0.96);
}

.proc-pg .outcomes-blk__img-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 100% 100%, rgba(103,194,186,0.22) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 5px;
}

.proc-pg .outcomes-blk__text-col {
  flex: 1 1 0;
}

.proc-pg .outcomes-blk__h2 {
  font-size: 30px;
  line-height: 1.1;
  color: #1b3a42;
  font-style: italic;
  margin-bottom: 16px;
}

.proc-pg .outcomes-blk__h2 strong {
  background: radial-gradient(circle at 100% 100%, #358395, #67C2BA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.proc-pg .outcomes-blk__body {
  font-size: 15px;
  line-height: 1.6;
  color: #2e4a52;
  margin-bottom: 32px;
}

.proc-pg .outcome-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proc-pg .outcome-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(53,131,149,0.1);
}

.proc-pg .outcome-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.proc-pg .outcome-row__num {
  font-size: 22px;
  line-height: 1.1;
  color: rgba(53,131,149,0.25);
  font-weight: 700;
  flex-shrink: 0;
  width: 32px;
  font-style: italic;
}

.proc-pg .outcome-row__body {
  flex: 1 1 0;
}

.proc-pg .outcome-row__h5 {
  font-size: 15px;
  line-height: 1.1;
  color: #1b3a42;
  margin-bottom: 4px;
}

.proc-pg .outcome-row__text {
  font-size: 14px;
  line-height: 1.6;
  color: #2e4a52;
}

.proc-pg .cta-strip {
  background: #358395;
  padding: 32px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 32px;
  box-shadow: 0 10px 44px -1px rgba(53,131,149,0.14);
}

.proc-pg .cta-strip__text {
  font-size: 18px;
  line-height: 1.6;
  color: #E5EFEA;
}

.proc-pg .btn-primary {
  background: #1b3a42;
  color: #E5EFEA;
  font-size: 15px;
  border: none;
  border-radius: 5px;
  padding: 16px 32px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.35s cubic-bezier(0.34,1.2,0.64,1);
  z-index: 0;
}

.proc-pg .btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #67C2BA;
  z-index: -1;
  transition: right 0.38s cubic-bezier(0.34,1.2,0.64,1);
}

.proc-pg .btn-primary:hover::after {
  right: 0;
}

.proc-pg .btn-primary:hover {
  color: #1b3a42;
}

.proc-pg .btn-primary:focus {
  outline: 2px solid #E5EFEA;
  outline-offset: 3px;
}

@media (max-width: 1366px) {
  .proc-pg .title-blk__img-wrap {
    flex: 0 0 300px;
  }
  .proc-pg .title-blk__img-wrap img {
    width: 300px;
    height: 240px;
  }
  .proc-pg .outcomes-blk__img-col {
    flex: 0 0 320px;
  }
  .proc-pg .outcomes-blk__img-wrap img {
    width: 320px;
    height: 280px;
  }
  .proc-pg .atm-blk__right {
    flex: 0 0 300px;
  }
}

@media (max-width: 768px) {
  .proc-pg .title-blk {
    padding: 64px 16px;
  }
  .proc-pg .title-blk__inner {
    flex-direction: column;
    gap: 32px;
  }
  .proc-pg .title-blk__img-wrap {
    flex: 0 0 auto;
    width: 100%;
  }
  .proc-pg .title-blk__img-wrap img {
    width: 100%;
    height: 220px;
  }
  .proc-pg .title-blk__h1 {
    font-size: 30px;
  }
  .proc-pg .steps-blk {
    padding: 64px 16px;
  }
  .proc-pg .steps-list {
    grid-template-columns: 1fr;
  }
  .proc-pg .atm-blk {
    padding: 64px 16px;
  }
  .proc-pg .atm-blk__inner {
    flex-direction: column;
    gap: 32px;
  }
  .proc-pg .atm-blk__right {
    flex: 0 0 auto;
    width: 100%;
  }
  .proc-pg .outcomes-blk {
    padding: 64px 16px;
  }
  .proc-pg .outcomes-blk__inner {
    flex-direction: column;
    gap: 32px;
  }
  .proc-pg .outcomes-blk__img-col {
    flex: 0 0 auto;
    width: 100%;
  }
  .proc-pg .outcomes-blk__img-wrap img {
    width: 100%;
    height: 220px;
  }
  .proc-pg .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 375px) {
  .proc-pg .title-blk__h1 {
    font-size: 22px;
  }
  .proc-pg .steps-blk__h2 {
    font-size: 22px;
  }
  .proc-pg .atm-blk__h2 {
    font-size: 22px;
  }
  .proc-pg .outcomes-blk__h2 {
    font-size: 22px;
  }
  .proc-pg .step-item {
    padding: 16px;
  }
}

.cu-pg {
  display: block;
  width: 100%;
  overflow-x: clip;
}

.cu-pg .reach-strip {
  position: relative;
  padding: 96px 16px 64px;
  background: #fff;
}

.cu-pg .reach-strip::before {
  background: radial-gradient(circle at 100% 100%, #67C2BA 0%, transparent 65%);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: 0.08;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.cu-pg .geo-dot {
  border-radius: 38px;
  height: 180px;
  opacity: 0.04;
  pointer-events: none;
  position: absolute;
  width: 180px;
}

.cu-pg .geo-dot.d1 {
  background: #358395;
  border-radius: 38px;
  height: 220px;
  left: -60px;
  top: 40px;
  width: 220px;
}

.cu-pg .geo-dot.d2 {
  background: #67C2BA;
  border-radius: 38px;
  height: 140px;
  right: 80px;
  top: 20px;
  width: 140px;
}

.cu-pg .strip-img-bar {
  border-radius: 5px;
  height: 7px;
  margin-bottom: 32px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.cu-pg .strip-img-bar img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
  filter: brightness(0.6) saturate(1.2);
  opacity: 0.55;
}

.cu-pg .strip-img-bar::after {
  background: linear-gradient(90deg, #358395 0%, #67C2BA 60%, transparent 100%);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cu-pg .reach-inner {
  display: flex;
  flex-direction: row;
  gap: 64px;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}

.cu-pg .reach-text {
  flex: 0 0 45%;
}

.cu-pg .reach-label {
  color: #358395;
  display: block;
  font-size: 14px;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.cu-pg .reach-h1 {
  font-size: 42px;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cu-pg .reach-h1 .acc-word {
  background: radial-gradient(circle at 100% 100%, #358395 0%, #67C2BA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cu-pg .reach-desc {
  color: #3a4a50;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}

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

.cu-pg .coord-row {
  align-items: flex-start;
  border-left: 3px solid #E5EFEA;
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 8px 16px;
  transition: border-color 0.38s cubic-bezier(0.34,1.2,0.64,1);
}

.cu-pg .coord-row:hover {
  border-color: #358395;
}

.cu-pg .coord-icon {
  flex-shrink: 0;
  height: 20px;
  margin-top: 2px;
  width: 20px;
}

.cu-pg .coord-icon svg {
  display: block;
  fill: none;
  height: 100%;
  stroke: #358395;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 100%;
}

.cu-pg .coord-label {
  color: #6a8090;
  display: block;
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.cu-pg .coord-val {
  color: #1e3040;
  font-size: 15px;
  line-height: 1.6;
}

.cu-pg .coord-val a {
  color: #1e3040;
  text-decoration: none;
  transition: color 0.35s ease-in-out;
}

.cu-pg .coord-val a:hover {
  color: #358395;
}

.cu-pg .reach-divider {
  background: linear-gradient(180deg, transparent 0%, #E5EFEA 50%, transparent 100%);
  flex-shrink: 0;
  width: 1px;
}

.cu-pg .reach-form-col {
  flex: 1 1 0;
}

.cu-pg .form-head {
  font-size: 22px;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 8px;
}

.cu-pg .form-sub {
  color: #5a7080;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
}

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

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

.cu-pg .f-field label {
  color: #3a4a50;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cu-pg .f-field input[type="text"],
.cu-pg .f-field input[type="tel"] {
  background: #fff;
  border: 1.5px solid #ccdde4;
  border-radius: 5px;
  box-shadow: 0 2px 2px -1px rgba(53,131,149,0.05);
  color: #1e3040;
  font-size: 15px;
  outline: none;
  padding: 16px;
  transition: border-color 0.42s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.42s cubic-bezier(0.34,1.2,0.64,1);
  width: 100%;
}

.cu-pg .f-field input[type="text"]::placeholder,
.cu-pg .f-field input[type="tel"]::placeholder {
  font-style: italic;
  opacity: 0.55;
}

.cu-pg .f-field input[type="text"]:focus,
.cu-pg .f-field input[type="tel"]:focus {
  border-color: #358395;
  box-shadow: 0 6px 25px -1px rgba(53,131,149,0.09);
}

.cu-pg .size-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cu-pg .size-group legend {
  color: #3a4a50;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

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

.cu-pg .size-opt {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.cu-pg .size-opt input[type="radio"] {
  accent-color: #358395;
  cursor: pointer;
  height: 18px;
  width: 18px;
}

.cu-pg .size-opt span {
  color: #3a4a50;
  font-size: 15px;
}

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

.cu-pg .privacy-row input[type="checkbox"] {
  accent-color: #358395;
  cursor: pointer;
  flex-shrink: 0;
  height: 18px;
  margin-top: 2px;
  width: 18px;
}

.cu-pg .privacy-row .priv-txt {
  color: #5a7080;
  font-size: 14px;
  line-height: 1.6;
}

.cu-pg .privacy-row .priv-txt a {
  color: #358395;
  text-decoration: underline;
  transition: color 0.33s ease-in-out;
}

.cu-pg .privacy-row .priv-txt a:hover {
  color: #67C2BA;
}

.cu-pg .btn-submit {
  background: #358395;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  letter-spacing: 0.06em;
  overflow: hidden;
  padding: 16px 32px;
  position: relative;
  text-transform: uppercase;
  transition: color 0.38s ease-in-out;
  width: 100%;
}

.cu-pg .btn-submit::before {
  background: #67C2BA;
  bottom: 0;
  content: "";
  left: 100%;
  position: absolute;
  right: 0;
  top: 0;
  transition: left 0.4s cubic-bezier(0.34,1.2,0.64,1);
  z-index: 0;
}

.cu-pg .btn-submit:hover::before {
  left: 0;
}

.cu-pg .btn-submit span {
  position: relative;
  z-index: 1;
}

.cu-pg .btn-submit:focus {
  outline: 2px solid #358395;
  outline-offset: 3px;
}

.cu-pg .curve-div {
  line-height: 0;
  overflow: hidden;
}

.cu-pg .curve-div svg {
  display: block;
  width: 100%;
}

.cu-pg .compare-band {
  background: #E5EFEA;
  padding: 64px 16px;
  position: relative;
}

.cu-pg .compare-band-bg {
  animation: zone-shift 9s ease-in-out infinite alternate;
  background: radial-gradient(circle at 100% 100%, rgba(103,194,186,0.13) 0%, transparent 60%);
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

@keyframes zone-shift {
  0% { background: radial-gradient(circle at 100% 100%, rgba(103,194,186,0.13) 0%, transparent 60%); }
  100% { background: radial-gradient(circle at 10% 90%, rgba(53,131,149,0.10) 0%, transparent 60%); }
}

.cu-pg .compare-inner {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}

.cu-pg .compare-hd {
  font-size: 30px;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 8px;
}

.cu-pg .compare-hd .acc-word {
  background: radial-gradient(circle at 100% 100%, #358395 0%, #67C2BA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cu-pg .compare-sub {
  color: #5a7080;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 560px;
}

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

.cu-pg .cmp-card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 6px 25px -1px rgba(53,131,149,0.09);
  overflow: hidden;
  position: relative;
}

.cu-pg .cmp-card::after {
  background: linear-gradient(135deg, #358395 0%, #67C2BA 100%);
  content: "";
  height: 52px;
  pointer-events: none;
  position: absolute;
  right: -26px;
  top: -26px;
  transform: rotate(45deg);
  width: 52px;
}

.cu-pg .cmp-card-head {
  background: #358395;
  color: #fff;
  font-size: 18px;
  font-style: italic;
  line-height: 1.1;
  padding: 16px 32px;
}

.cu-pg .cmp-card.alt .cmp-card-head {
  background: #67C2BA;
}

.cu-pg .cmp-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cu-pg .cmp-list li {
  border-left: 3px solid #E5EFEA;
  color: #2a3a45;
  font-size: 15px;
  line-height: 1.6;
  padding: 12px 32px;
  transition: border-color 0.35s cubic-bezier(0.34,1.2,0.64,1), background 0.35s cubic-bezier(0.34,1.2,0.64,1);
}

.cu-pg .cmp-list li:hover {
  background: #f0f7f5;
  border-color: #358395;
}

.cu-pg .cmp-list li + li {
  border-top: 1px solid #e8f0ed;
}

.cu-pg .curve-div-2 {
  line-height: 0;
  overflow: hidden;
}

.cu-pg .curve-div-2 svg {
  display: block;
  width: 100%;
}

.cu-pg .why-band {
  background: #fff;
  padding: 64px 16px 96px;
  position: relative;
}

.cu-pg .why-inner {
  display: flex;
  flex-direction: row;
  gap: 64px;
  margin: 0 auto;
  max-width: 1200px;
}

.cu-pg .why-left {
  flex: 0 0 38%;
  position: relative;
}

.cu-pg .why-img-wrap {
  border-radius: 5px;
  height: 340px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.cu-pg .why-img-wrap img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease-in-out;
  width: 100%;
}

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

.cu-pg .why-img-tint {
  background: rgba(53,131,149,0.18);
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.cu-pg .why-right {
  flex: 1 1 0;
}

.cu-pg .why-eyebrow {
  color: #358395;
  display: block;
  font-size: 14px;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.cu-pg .why-hd {
  font-size: 30px;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cu-pg .why-hd .acc-word {
  background: radial-gradient(circle at 100% 100%, #358395 0%, #67C2BA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cu-pg .why-body {
  color: #3a4a50;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}

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

.cu-pg .why-fact {
  border-left: 3px solid #E5EFEA;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 16px;
  transition: border-color 0.4s cubic-bezier(0.34,1.2,0.64,1);
}

.cu-pg .why-fact:hover {
  border-color: #67C2BA;
}

.cu-pg .why-fact-label {
  color: #358395;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cu-pg .why-fact-val {
  color: #1e3040;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 1366px) {
  .cu-pg .reach-inner {
    gap: 32px;
  }
  .cu-pg .why-inner {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .cu-pg .reach-inner {
    flex-direction: column;
    gap: 32px;
  }
  .cu-pg .reach-divider {
    display: none;
  }
  .cu-pg .reach-text {
    flex: none;
  }
  .cu-pg .reach-h1 {
    font-size: 30px;
  }
  .cu-pg .compare-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cu-pg .why-inner {
    flex-direction: column;
    gap: 32px;
  }
  .cu-pg .why-left {
    flex: none;
  }
  .cu-pg .why-img-wrap {
    height: 220px;
  }
  .cu-pg .size-opts {
    flex-direction: column;
  }
}

@media (max-width: 375px) {
  .cu-pg .reach-strip {
    padding: 64px 16px 32px;
  }
  .cu-pg .reach-h1 {
    font-size: 22px;
  }
  .cu-pg .compare-hd {
    font-size: 22px;
  }
  .cu-pg .why-hd {
    font-size: 22px;
  }
  .cu-pg .btn-submit {
    font-size: 14px;
    padding: 16px;
  }
}

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

.ld-pg .ld-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.ld-pg .ld-inner--narrow {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 64px;
  padding-right: 64px;
}

/* ===== SECTION 1: TITLE BLOCK ===== */
.ld-pg .title-blk {
  position: relative;
  padding-top: 96px;
  padding-bottom: 64px;
  background-color: #1b2e33;
  overflow: hidden;
}

.ld-pg .title-blk__grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ld-pg .title-blk__grid-lines::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(103,194,186,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103,194,186,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.ld-pg .title-blk__layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.ld-pg .title-blk__img-col {
  flex: 0 0 280px;
  position: relative;
}

.ld-pg .title-blk__img-wrap {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  width: 280px;
  height: 380px;
}

.ld-pg .title-blk__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ld-pg .title-blk__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, transparent, #1b2e33);
  pointer-events: none;
}

.ld-pg .title-blk__text-col {
  flex: 1 1 0;
  padding-top: 32px;
}

.ld-pg .title-blk__label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #67C2BA;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-style: normal;
}

.ld-pg .title-blk__h1 {
  font-size: 56px;
  line-height: 1.1;
  color: #E5EFEA;
  margin-bottom: 32px;
  font-style: italic;
}

.ld-pg .title-blk__h1 span {
  background: radial-gradient(circle at bottom right, #67C2BA, transparent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #67C2BA;
}

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

.ld-pg .title-blk__pts li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding-left: 16px;
  border-left: 2px solid #358395;
  font-size: 18px;
  line-height: 1.6;
  color: #c8dcd6;
}

/* ===== SECTION 2: THE GAP ===== */
.ld-pg .gap-blk {
  padding-top: 96px;
  padding-bottom: 96px;
  background-color: #ffffff;
  position: relative;
}

.ld-pg .gap-blk::before {
  content: '';
  display: block;
  height: 48px;
  background: #1b2e33;
  clip-path: ellipse(55% 100% at 50% 0%);
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.ld-pg .gap-blk__layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
  padding-top: 32px;
}

.ld-pg .gap-blk__left {
  flex: 1 1 0;
}

.ld-pg .gap-blk__right {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ld-pg .gap-blk__eyebrow {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #358395;
  margin-bottom: 16px;
  display: block;
}

.ld-pg .gap-blk__h2 {
  font-size: 42px;
  line-height: 1.1;
  color: #1b2e33;
  margin-bottom: 32px;
  font-style: italic;
}

.ld-pg .gap-blk__h2 span {
  background: radial-gradient(circle at bottom right, #67C2BA, transparent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #67C2BA;
}

.ld-pg .gap-blk__body {
  font-size: 18px;
  line-height: 1.6;
  color: #2c3e42;
  margin-bottom: 16px;
}

.ld-pg .gap-blk__img-wrap {
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  height: 280px;
  box-shadow: 0 10px 44px -1px rgba(53,131,149,0.14);
}

.ld-pg .gap-blk__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.42s cubic-bezier(0.34,1.2,0.64,1);
}

.ld-pg .gap-blk__img-wrap:hover img {
  transform: scale(1.04);
}

.ld-pg .gap-blk__stat-card {
  background-color: #E5EFEA;
  border-radius: 5px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.ld-pg .gap-blk__stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: radial-gradient(circle at bottom right, #67C2BA, transparent);
}

.ld-pg .gap-blk__stat-num {
  font-size: 56px;
  line-height: 1.1;
  color: #358395;
  display: block;
  font-style: italic;
}

.ld-pg .gap-blk__stat-label {
  font-size: 15px;
  line-height: 1.6;
  color: #2c3e42;
  display: block;
  margin-top: 8px;
}

/* ===== SECTION 3: HESITATION ===== */
.ld-pg .doubt-blk {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  background-color: #E5EFEA;
}

.ld-pg .doubt-blk__deco-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #358395, transparent);
}

.ld-pg .doubt-blk__deco-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #67C2BA, transparent);
}

.ld-pg .doubt-blk__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ld-pg .doubt-blk__col-a {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ld-pg .doubt-blk__col-b {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 32px;
  border-left: 1px solid rgba(53,131,149,0.25);
  padding-left: 64px;
}

.ld-pg .doubt-blk__h2 {
  font-size: 42px;
  line-height: 1.1;
  color: #1b2e33;
  font-style: italic;
}

.ld-pg .doubt-blk__h2 span {
  background: radial-gradient(circle at bottom right, #358395, transparent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #358395;
}

.ld-pg .doubt-blk__body {
  font-size: 18px;
  line-height: 1.6;
  color: #2c3e42;
}

.ld-pg .doubt-blk__img-wrap {
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  height: 320px;
  box-shadow: 0 6px 25px -1px rgba(53,131,149,0.09);
}

.ld-pg .doubt-blk__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ld-pg .doubt-blk__item {
  padding-left: 16px;
  border-left: 3px solid #358395;
}

.ld-pg .doubt-blk__item-h {
  font-size: 18px;
  line-height: 1.1;
  color: #1b2e33;
  margin-bottom: 8px;
  font-style: italic;
}

.ld-pg .doubt-blk__item-p {
  font-size: 15px;
  line-height: 1.6;
  color: #2c3e42;
}

/* ===== SECTION 4: TEAM ===== */
.ld-pg .team-blk {
  padding-top: 96px;
  padding-bottom: 96px;
  background-color: #1b2e33;
  position: relative;
}

.ld-pg .team-blk__bg-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(120deg, rgba(53,131,149,0.15), rgba(103,194,186,0.08), rgba(53,131,149,0.18), rgba(103,194,186,0.06));
  background-size: 400% 400%;
  animation: gradShift 12s linear infinite;
}

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

.ld-pg .team-blk__inner {
  position: relative;
  z-index: 1;
}

.ld-pg .team-blk__header {
  margin-bottom: 64px;
  max-width: 600px;
}

.ld-pg .team-blk__eyebrow {
  display: block;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #67C2BA;
  margin-bottom: 16px;
}

.ld-pg .team-blk__h2 {
  font-size: 42px;
  line-height: 1.1;
  color: #E5EFEA;
  font-style: italic;
  margin-bottom: 16px;
}

.ld-pg .team-blk__h2 span {
  background: radial-gradient(circle at bottom right, #67C2BA, transparent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #67C2BA;
}

.ld-pg .team-blk__sub {
  font-size: 18px;
  line-height: 1.6;
  color: #c8dcd6;
}

.ld-pg .team-blk__cards {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.ld-pg .team-blk__card {
  flex: 1 1 0;
  background-color: rgba(255,255,255,0.05);
  border-radius: 5px;
  padding: 32px;
  border: 1px solid rgba(103,194,186,0.15);
  transition: border-color 0.38s ease-in-out, box-shadow 0.38s ease-in-out;
  position: relative;
  overflow: hidden;
}

.ld-pg .team-blk__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: radial-gradient(circle at bottom right, #67C2BA, transparent);
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}

.ld-pg .team-blk__card:hover {
  border-color: rgba(103,194,186,0.4);
  box-shadow: 0 10px 44px -1px rgba(53,131,149,0.14);
}

.ld-pg .team-blk__card:hover::after {
  opacity: 1;
}

.ld-pg .team-blk__card--large {
  flex: 0 0 400px;
  padding: 32px;
}

.ld-pg .team-blk__card-img {
  width: 100%;
  height: 220px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 32px;
}

.ld-pg .team-blk__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ld-pg .team-blk__stat-hero {
  font-size: 56px;
  line-height: 1.1;
  color: #67C2BA;
  font-style: italic;
  display: block;
  margin-bottom: 8px;
}

.ld-pg .team-blk__stat-ctx {
  font-size: 15px;
  line-height: 1.6;
  color: #c8dcd6;
  display: block;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(103,194,186,0.15);
}

.ld-pg .team-blk__name {
  font-size: 22px;
  line-height: 1.1;
  color: #E5EFEA;
  margin-bottom: 4px;
}

.ld-pg .team-blk__role {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #67C2BA;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.ld-pg .team-blk__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #c8dcd6;
}

/* ===== SECTION 5: EXPERIENCE ===== */
.ld-pg .exp-blk {
  padding-top: 96px;
  padding-bottom: 96px;
  background-color: #ffffff;
  position: relative;
}

.ld-pg .exp-blk__curve {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: #1b2e33;
  clip-path: ellipse(55% 100% at 50% 0%);
}

.ld-pg .exp-blk__layout {
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ld-pg .exp-blk__col-a {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ld-pg .exp-blk__col-b {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ld-pg .exp-blk__eyebrow {
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #358395;
  margin-bottom: 8px;
}

.ld-pg .exp-blk__h2 {
  font-size: 42px;
  line-height: 1.1;
  color: #1b2e33;
  font-style: italic;
  margin-bottom: 16px;
}

.ld-pg .exp-blk__h2 span {
  background: radial-gradient(circle at bottom right, #67C2BA, transparent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #67C2BA;
}

.ld-pg .exp-blk__body {
  font-size: 18px;
  line-height: 1.6;
  color: #2c3e42;
}

.ld-pg .exp-blk__img-wrap {
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  height: 300px;
  box-shadow: 0 10px 44px -1px rgba(53,131,149,0.14);
}

.ld-pg .exp-blk__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ld-pg .exp-blk__voice {
  background-color: #E5EFEA;
  border-radius: 5px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.ld-pg .exp-blk__voice::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: radial-gradient(circle at bottom right, #67C2BA, transparent);
}

.ld-pg .exp-blk__voice-text {
  font-size: 18px;
  line-height: 1.6;
  color: #1b2e33;
  font-style: italic;
  margin-bottom: 16px;
}

.ld-pg .exp-blk__voice-who {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #358395;
  display: block;
}

.ld-pg .exp-blk__voice-role {
  font-size: 14px;
  color: #2c3e42;
  display: block;
  margin-top: 4px;
}

.ld-pg .exp-blk__tags-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.ld-pg .exp-blk__tag {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #358395;
  border: 1px solid rgba(53,131,149,0.3);
  border-radius: 38px;
  padding: 4px 16px;
  background-color: #ffffff;
  transform: translateY(0px) rotate(0deg);
  transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1), background-color 0.35s ease-in-out, border-color 0.35s ease-in-out;
}

.ld-pg .exp-blk__tags-wrap:hover .exp-blk__tag {
  transform: translateY(-4px) rotate(-2deg);
}

.ld-pg .exp-blk__tags-wrap:hover .exp-blk__tag:nth-child(2) {
  transform: translateY(-6px) rotate(1deg);
  transition-delay: 0.04s;
}

.ld-pg .exp-blk__tags-wrap:hover .exp-blk__tag:nth-child(3) {
  transform: translateY(-3px) rotate(-1deg);
  transition-delay: 0.08s;
}

.ld-pg .exp-blk__tags-wrap:hover .exp-blk__tag:nth-child(4) {
  transform: translateY(-5px) rotate(2deg);
  transition-delay: 0.12s;
}

.ld-pg .exp-blk__tags-wrap:hover .exp-blk__tag:nth-child(5) {
  transform: translateY(-4px) rotate(-2deg);
  transition-delay: 0.16s;
}

.ld-pg .exp-blk__tag:hover {
  background-color: #358395;
  color: #ffffff;
  border-color: #358395;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1366px) {
  .ld-pg .title-blk__h1 { font-size: 42px; }
  .ld-pg .team-blk__cards { flex-wrap: wrap; }
  .ld-pg .team-blk__card--large { flex: 0 0 100%; }
}

@media (max-width: 768px) {
  .ld-pg .ld-inner { padding-left: 16px; padding-right: 16px; }
  .ld-pg .ld-inner--narrow { padding-left: 16px; padding-right: 16px; }

  .ld-pg .title-blk { padding-top: 64px; padding-bottom: 64px; }
  .ld-pg .title-blk__layout { flex-direction: column; gap: 32px; }
  .ld-pg .title-blk__img-col { flex: none; width: 100%; }
  .ld-pg .title-blk__img-wrap { width: 100%; height: 240px; }
  .ld-pg .title-blk__h1 { font-size: 30px; }

  .ld-pg .gap-blk { padding-top: 64px; padding-bottom: 64px; }
  .ld-pg .gap-blk__layout { flex-direction: column; gap: 32px; }
  .ld-pg .gap-blk__right { flex: none; width: 100%; }

  .ld-pg .doubt-blk { padding-top: 64px; padding-bottom: 64px; }
  .ld-pg .doubt-blk__layout { grid-template-columns: 1fr; gap: 32px; }
  .ld-pg .doubt-blk__col-b { border-left: none; padding-left: 0; padding-top: 0; }
  .ld-pg .doubt-blk__h2 { font-size: 30px; }

  .ld-pg .team-blk { padding-top: 64px; padding-bottom: 64px; }
  .ld-pg .team-blk__cards { flex-direction: column; gap: 32px; }
  .ld-pg .team-blk__card--large { flex: none; width: 100%; }
  .ld-pg .team-blk__h2 { font-size: 30px; }

  .ld-pg .exp-blk { padding-top: 64px; padding-bottom: 64px; }
  .ld-pg .exp-blk__layout { grid-template-columns: 1fr; gap: 32px; }
  .ld-pg .exp-blk__h2 { font-size: 30px; }
}

@media (max-width: 375px) {
  .ld-pg .title-blk__h1 { font-size: 22px; }
  .ld-pg .gap-blk__stat-num { font-size: 42px; }
  .ld-pg .team-blk__stat-hero { font-size: 42px; }
  .ld-pg .doubt-blk__h2 { font-size: 22px; }
  .ld-pg .exp-blk__h2 { font-size: 22px; }
}

.anlyt-root {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.anlyt-root .pg-band {
  padding: 64px 0 32px;
  position: relative;
}

.anlyt-root .pg-band::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at bottom right, rgba(103,194,186,0.18), transparent 70%);
  pointer-events: none;
  border-radius: 38px;
}

.anlyt-root .pg-band::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at bottom right, rgba(53,131,149,0.12), transparent 70%);
  pointer-events: none;
  border-radius: 38px;
}

.anlyt-root .pg-label {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #358395;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.anlyt-root .pg-head {
  font-size: 42px;
  line-height: 1.1;
  color: #1e3a42;
  margin: 0 0 16px;
  font-style: italic;
  max-width: 680px;
}

.anlyt-root .pg-head span {
  background: radial-gradient(circle at bottom right, #67C2BA, #358395);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.anlyt-root .pg-sub {
  font-size: 18px;
  line-height: 1.6;
  color: #3a5560;
  max-width: 560px;
  margin: 0;
}

.anlyt-root .divider-wave {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #358395 0%, #67C2BA 60%, transparent 100%);
  border-radius: 5px;
  margin: 32px 0;
}

.anlyt-root .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 32px 0 64px;
}

.anlyt-root .post-card {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 6px 25px -1px rgba(53,131,149,0.09);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.38s cubic-bezier(0.34,1.2,0.64,1), transform 0.38s cubic-bezier(0.34,1.2,0.64,1);
}

.anlyt-root .post-card:hover {
  box-shadow: 0 10px 44px -1px rgba(53,131,149,0.14);
  transform: translateY(-4px);
}

.anlyt-root .post-card__img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.anlyt-root .post-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.92);
  transition: filter 0.42s ease-in-out, transform 0.42s cubic-bezier(0.34,1.2,0.64,1);
}

.anlyt-root .post-card:hover .post-card__img-wrap img {
  filter: saturate(1) brightness(1);
  transform: scale(1.04);
}

.anlyt-root .post-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.anlyt-root .post-card__title {
  font-size: 18px;
  line-height: 1.6;
  color: #1e3a42;
  margin: 0 0 8px;
  font-style: italic;
}

.anlyt-root .post-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #3a5560;
  margin: 0 0 16px;
  flex: 1;
}

.anlyt-root .post-card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.anlyt-root .post-card__views {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #67C2BA;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.anlyt-root .post-card__views svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.anlyt-root .post-card__link {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #fff;
  background: #358395;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease-in-out;
  align-self: flex-start;
}

.anlyt-root .post-card__link::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #67C2BA;
  transition: right 0.35s cubic-bezier(0.34,1.2,0.64,1);
  z-index: 0;
}

.anlyt-root .post-card__link:hover::after {
  right: 0;
}

.anlyt-root .post-card__link span {
  position: relative;
  z-index: 1;
}

.anlyt-root .post-card__link:focus {
  outline: 2px solid #358395;
  outline-offset: 2px;
}

.anlyt-root .featured-strip {
  padding: 64px 0;
  position: relative;
}

.anlyt-root .featured-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #E5EFEA 55%, #67C2BA22 100%);
  border-radius: 5px;
  pointer-events: none;
}

.anlyt-root .featured-strip__inner {
  position: relative;
  z-index: 1;
  padding: 0 32px;
}

.anlyt-root .featured-strip__label {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #358395;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.anlyt-root .featured-strip__head {
  font-size: 30px;
  line-height: 1.1;
  color: #1e3a42;
  font-style: italic;
  margin: 0 0 32px;
}

.anlyt-root .featured-strip__head span {
  background: radial-gradient(circle at bottom right, #67C2BA, #358395);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.anlyt-root .three-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.anlyt-root .three-cols__item {
  border-radius: 5px;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.4s cubic-bezier(0.34,1.2,0.64,1);
}

.anlyt-root .three-cols__item:hover {
  box-shadow: 0 10px 44px -1px rgba(53,131,149,0.14);
}

.anlyt-root .three-cols__item.col-a {
  background: #358395;
  color: #fff;
}

.anlyt-root .three-cols__item.col-b {
  background: #67C2BA;
  color: #1e3a42;
}

.anlyt-root .three-cols__item.col-c {
  background: #1e3a42;
  color: #E5EFEA;
}

.anlyt-root .three-cols__item .col-num {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0;
}

.anlyt-root .three-cols__item .col-desc {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.anlyt-root .dual-paths {
  padding: 64px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.anlyt-root .path-side {
  border-radius: 5px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 6px 25px -1px rgba(53,131,149,0.09);
}

.anlyt-root .path-side.path-a {
  background: #fff;
  border-top: 4px solid #358395;
}

.anlyt-root .path-side.path-b {
  background: #1e3a42;
  border-top: 4px solid #67C2BA;
}

.anlyt-root .path-side__label {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.anlyt-root .path-side.path-a .path-side__label {
  color: #358395;
}

.anlyt-root .path-side.path-b .path-side__label {
  color: #67C2BA;
}

.anlyt-root .path-side__head {
  font-size: 22px;
  line-height: 1.1;
  font-style: italic;
  margin: 0;
}

.anlyt-root .path-side.path-a .path-side__head {
  color: #1e3a42;
}

.anlyt-root .path-side.path-b .path-side__head {
  color: #E5EFEA;
}

.anlyt-root .path-side__text {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.anlyt-root .path-side.path-a .path-side__text {
  color: #3a5560;
}

.anlyt-root .path-side.path-b .path-side__text {
  color: #a8c8d0;
}

.anlyt-root .path-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.anlyt-root .path-items li {
  padding: 8px 8px 8px 16px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 5px;
  position: relative;
}

.anlyt-root .path-side.path-a .path-items li {
  border-left: 3px solid #358395;
  background: #E5EFEA;
  color: #1e3a42;
}

.anlyt-root .path-side.path-b .path-items li {
  border-left: 3px solid #67C2BA;
  background: rgba(103,194,186,0.1);
  color: #E5EFEA;
}

.anlyt-root .img-block {
  padding: 64px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.anlyt-root .img-block__visual {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 44px -1px rgba(53,131,149,0.14);
  position: relative;
}

.anlyt-root .img-block__visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: saturate(0.65) brightness(0.88);
  transition: filter 0.44s ease-in-out;
}

.anlyt-root .img-block__visual:hover img {
  filter: saturate(0.9) brightness(0.96);
}

.anlyt-root .img-block__visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(30,58,66,0.55), transparent);
  pointer-events: none;
}

.anlyt-root .img-block__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.anlyt-root .img-block__copy .blk-label {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #358395;
}

.anlyt-root .img-block__copy .blk-head {
  font-size: 30px;
  line-height: 1.1;
  color: #1e3a42;
  font-style: italic;
  margin: 0;
}

.anlyt-root .img-block__copy .blk-head span {
  background: radial-gradient(circle at bottom right, #67C2BA, #358395);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.anlyt-root .img-block__copy .blk-para {
  font-size: 15px;
  line-height: 1.6;
  color: #3a5560;
  margin: 0;
}

.anlyt-root .metrics-row {
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.anlyt-root .metrics-row::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(160deg, #E5EFEA, transparent 80%);
  border-radius: 5px;
  pointer-events: none;
}

.anlyt-root .metrics-row__head-wrap {
  position: relative;
  z-index: 1;
}

.anlyt-root .metrics-row__label {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #358395;
  display: block;
  margin-bottom: 8px;
}

.anlyt-root .metrics-row__head {
  font-size: 30px;
  line-height: 1.1;
  color: #1e3a42;
  font-style: italic;
  margin: 0 0 8px;
}

.anlyt-root .metrics-row__head span {
  background: radial-gradient(circle at bottom right, #67C2BA, #358395);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.anlyt-root .metrics-row__sub {
  font-size: 15px;
  line-height: 1.6;
  color: #3a5560;
  max-width: 560px;
  margin: 0;
}

.anlyt-root .metrics-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.anlyt-root .metric-item {
  border-radius: 5px;
  padding: 32px 16px;
  background: #fff;
  box-shadow: 0 2px 2px -1px rgba(53,131,149,0.05), 0 6px 25px -1px rgba(53,131,149,0.09);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.36s cubic-bezier(0.34,1.2,0.64,1), transform 0.36s cubic-bezier(0.34,1.2,0.64,1);
}

.anlyt-root .metric-item:hover {
  box-shadow: 0 10px 44px -1px rgba(53,131,149,0.14);
  transform: translateY(-3px);
}

.anlyt-root .metric-item__val {
  font-size: 30px;
  line-height: 1.1;
  color: #358395;
  font-weight: 700;
  margin: 0;
}

.anlyt-root .metric-item__name {
  font-size: 14px;
  line-height: 1.6;
  color: #3a5560;
  margin: 0;
  letter-spacing: 0.04em;
}

.anlyt-root .divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #67C2BA 40%, transparent);
  margin: 0;
}

@keyframes anlyt-fadein {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.anlyt-root .pg-band,
.anlyt-root .posts-grid,
.anlyt-root .featured-strip,
.anlyt-root .dual-paths,
.anlyt-root .img-block,
.anlyt-root .metrics-row {
  animation: anlyt-fadein 0.42s cubic-bezier(0.34,1.2,0.64,1) both;
}

.anlyt-root .posts-grid { animation-delay: 0.08s; }
.anlyt-root .featured-strip { animation-delay: 0.14s; }
.anlyt-root .dual-paths { animation-delay: 0.18s; }
.anlyt-root .img-block { animation-delay: 0.22s; }
.anlyt-root .metrics-row { animation-delay: 0.26s; }

.anlyt-root .post-card:nth-child(1) { animation: anlyt-fadein 0.38s cubic-bezier(0.34,1.2,0.64,1) 0.06s both; }
.anlyt-root .post-card:nth-child(2) { animation: anlyt-fadein 0.38s cubic-bezier(0.34,1.2,0.64,1) 0.12s both; }
.anlyt-root .post-card:nth-child(3) { animation: anlyt-fadein 0.38s cubic-bezier(0.34,1.2,0.64,1) 0.18s both; }
.anlyt-root .post-card:nth-child(4) { animation: anlyt-fadein 0.38s cubic-bezier(0.34,1.2,0.64,1) 0.24s both; }
.anlyt-root .post-card:nth-child(5) { animation: anlyt-fadein 0.38s cubic-bezier(0.34,1.2,0.64,1) 0.30s both; }
.anlyt-root .post-card:nth-child(6) { animation: anlyt-fadein 0.38s cubic-bezier(0.34,1.2,0.64,1) 0.36s both; }

@media (max-width: 1366px) {
  .anlyt-root .posts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .anlyt-root .metrics-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .anlyt-root .pg-head { font-size: 30px; }
  .anlyt-root .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .anlyt-root .three-cols {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .anlyt-root .dual-paths {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .anlyt-root .img-block {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .anlyt-root .metrics-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .anlyt-root .featured-strip__inner {
    padding: 0 16px;
  }
}

@media (max-width: 375px) {
  .anlyt-root .pg-head { font-size: 22px; }
  .anlyt-root .posts-grid {
    grid-template-columns: 1fr;
  }
  .anlyt-root .metrics-list {
    grid-template-columns: 1fr;
  }
  .anlyt-root .dual-paths {
    padding: 32px 0;
  }
  .anlyt-root .img-block {
    padding: 32px 0;
  }
  .anlyt-root .path-side {
    padding: 16px;
  }
}

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

.abt-pg .abt-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.abt-pg ::selection {
  background: #358395;
  color: #fff;
}

.abt-pg .cross-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 0;
  overflow: hidden;
}

.abt-pg .cross-divider span {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  flex-shrink: 0;
}

.abt-pg .cross-divider span::before,
.abt-pg .cross-divider span::after {
  content: "";
  position: absolute;
  background: #358395;
  opacity: 0.28;
}

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

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

.abt-pg .grad-word {
  background: radial-gradient(circle at 100% 100%, #67C2BA, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================== SECTION 1 - TITLE BLOCK ===================== */

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

.abt-pg .lead-block .lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 420px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 44px -1px rgba(53,131,149,0.14);
}

.abt-pg .lead-block .lead-img-wrap {
  position: relative;
  overflow: hidden;
}

.abt-pg .lead-block .lead-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) contrast(1.1) hue-rotate(0deg) brightness(0.92);
  transition: filter 0.38s cubic-bezier(0.34,1.2,0.64,1), transform 0.42s cubic-bezier(0.34,1.2,0.64,1);
}

.abt-pg .lead-block .lead-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 100%, rgba(103,194,186,0.38), transparent 70%);
  pointer-events: none;
}

.abt-pg .lead-block .lead-img-wrap:hover img {
  filter: saturate(1.1) contrast(1.05) brightness(1.0);
  transform: scale(1.03);
}

.abt-pg .lead-block .lead-text {
  background: #E5EFEA;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.abt-pg .lead-block .lead-text .deco-geo {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  pointer-events: none;
}

.abt-pg .lead-block .lead-text .deco-geo svg {
  width: 100%;
  height: 100%;
  opacity: 0.12;
}

.abt-pg .lead-block .lead-label {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #358395;
  font-style: normal;
  margin-bottom: 16px;
  display: block;
}

.abt-pg .lead-block .lead-h1 {
  font-size: 42px;
  line-height: 1.1;
  font-style: italic;
  color: #1b3a41;
  margin-bottom: 24px;
}

.abt-pg .lead-block .lead-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #2e4a52;
  max-width: 440px;
}

/* ===================== SECTION 2 - TEAM / STORY ===================== */

.abt-pg .story-sec {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #fff;
  position: relative;
}

.abt-pg .story-sec .hex-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52' viewBox='0 0 60 52'%3E%3Cpolygon fill='none' stroke='%23358395' stroke-width='1.5' points='30,2 58,17 58,47 30,62 2,47 2,17'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  background-repeat: repeat;
}

.abt-pg .story-sec .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.abt-pg .story-sec .story-h2 {
  font-size: 30px;
  line-height: 1.1;
  font-style: italic;
  color: #1b3a41;
  margin-bottom: 32px;
  grid-column: 1 / -1;
}

.abt-pg .story-sec .stat-card {
  background: #E5EFEA;
  border-radius: 5px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 2px -1px rgba(53,131,149,0.05);
  transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.35s ease-in-out;
  cursor: default;
}

.abt-pg .story-sec .stat-card:hover {
  transform: rotate(1.5deg) translateY(-4px);
  box-shadow: 0 10px 44px -1px rgba(53,131,149,0.14);
}

.abt-pg .story-sec .stat-num {
  font-size: 42px;
  line-height: 1.1;
  color: #358395;
  font-style: italic;
}

.abt-pg .story-sec .stat-label {
  font-size: 15px;
  line-height: 1.6;
  color: #2e4a52;
}

.abt-pg .story-sec .story-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.abt-pg .story-sec .story-img-wrap {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 6px 25px -1px rgba(53,131,149,0.09);
}

.abt-pg .story-sec .story-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.42s cubic-bezier(0.34,1.2,0.64,1), brightness 0.42s ease-in-out;
  filter: brightness(0.96);
}

.abt-pg .story-sec .story-img-wrap:hover img {
  transform: scale(1.04);
  filter: brightness(1.04);
}

.abt-pg .story-sec .story-text-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-pg .story-sec .story-h3 {
  font-size: 22px;
  line-height: 1.1;
  font-style: italic;
  color: #1b3a41;
}

.abt-pg .story-sec .story-p {
  font-size: 15px;
  line-height: 1.6;
  color: #2e4a52;
}

.abt-pg .story-sec .item-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt-pg .story-sec .item-list li {
  font-size: 15px;
  line-height: 1.6;
  color: #2e4a52;
  padding-left: 16px;
  border-left: 3px solid #67C2BA;
  border-bottom: 1px solid rgba(103,194,186,0.18);
  padding-bottom: 8px;
}

/* ===================== SECTION 3 - TEAM ===================== */

.abt-pg .team-sec {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #E5EFEA;
}

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

.abt-pg .team-sec .team-h2 {
  font-size: 30px;
  line-height: 1.1;
  font-style: italic;
  color: #1b3a41;
  max-width: 480px;
}

.abt-pg .team-sec .team-intro {
  font-size: 15px;
  line-height: 1.6;
  color: #2e4a52;
  max-width: 420px;
}

.abt-pg .team-sec .team-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 1fr;
  gap: 16px;
  align-items: start;
}

.abt-pg .team-sec .member-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 2px -1px rgba(53,131,149,0.05);
  transition: transform 0.38s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.38s ease-in-out;
  cursor: default;
}

.abt-pg .team-sec .member-card:hover {
  transform: rotate(-1.2deg) translateY(-6px);
  box-shadow: 0 10px 44px -1px rgba(53,131,149,0.14);
}

.abt-pg .team-sec .member-card.wide {
  grid-column: span 1;
}

.abt-pg .team-sec .member-card.center {
  grid-column: span 1;
}

.abt-pg .team-sec .member-img-wrap {
  overflow: hidden;
}

.abt-pg .team-sec .member-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1), filter 0.4s ease-in-out;
  filter: saturate(0.85);
}

.abt-pg .team-sec .member-card:hover .member-img-wrap img {
  transform: scale(1.05);
  filter: saturate(1.1);
}

.abt-pg .team-sec .member-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt-pg .team-sec .member-name {
  font-size: 18px;
  line-height: 1.1;
  color: #1b3a41;
  font-style: italic;
}

.abt-pg .team-sec .member-role {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #358395;
}

.abt-pg .team-sec .member-bio {
  font-size: 14px;
  line-height: 1.6;
  color: #2e4a52;
  margin-top: 8px;
}

.abt-pg .team-sec .member-card.side-a {
  margin-top: 32px;
}

.abt-pg .team-sec .member-card.side-b {
  margin-top: 64px;
}

.abt-pg .team-sec .values-strip {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.abt-pg .team-sec .val-item {
  background: #fff;
  border-radius: 5px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 4px solid #67C2BA;
  border-bottom: 2px solid rgba(53,131,149,0.12);
  box-shadow: 0 2px 2px -1px rgba(53,131,149,0.05);
  transition: transform 0.32s cubic-bezier(0.34,1.2,0.64,1);
}

.abt-pg .team-sec .val-item:hover {
  transform: rotate(1deg) translateY(-3px);
}

.abt-pg .team-sec .val-icon {
  width: 32px;
  height: 32px;
}

.abt-pg .team-sec .val-name {
  font-size: 15px;
  line-height: 1.1;
  color: #1b3a41;
  font-style: italic;
}

.abt-pg .team-sec .val-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #2e4a52;
}

/* ===================== GEOMETRIC REPEATING MOTIF ===================== */

.abt-pg .geo-edge {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  overflow: hidden;
}

.abt-pg .geo-edge .geo-dot {
  width: 6px;
  height: 6px;
  border-radius: 5px;
  background: #67C2BA;
  opacity: 0.4;
  flex-shrink: 0;
}

.abt-pg .geo-edge .geo-sq {
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: #358395;
  opacity: 0.25;
  flex-shrink: 0;
  transform: rotate(45deg);
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1366px) {
  .abt-pg .team-sec .team-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

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

  .abt-pg .lead-block .lead-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .abt-pg .lead-block .lead-img-wrap {
    height: 260px;
  }

  .abt-pg .lead-block .lead-text {
    padding: 32px 24px;
  }

  .abt-pg .lead-block .lead-h1 {
    font-size: 30px;
  }

  .abt-pg .story-sec .story-grid {
    grid-template-columns: 1fr 1fr;
  }

  .abt-pg .story-sec .story-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .abt-pg .team-sec .team-top {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .abt-pg .team-sec .member-card.side-a,
  .abt-pg .team-sec .member-card.side-b {
    margin-top: 0;
  }

  .abt-pg .team-sec .values-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 375px) {
  .abt-pg .lead-block .lead-h1 {
    font-size: 22px;
  }

  .abt-pg .story-sec .story-grid {
    grid-template-columns: 1fr;
  }

  .abt-pg .story-sec .stat-num {
    font-size: 30px;
  }

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

  .abt-pg .team-sec .values-strip {
    grid-template-columns: 1fr;
  }

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

  .abt-pg .story-sec,
  .abt-pg .team-sec {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

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

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

.success-page .status-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.success-page .status-icon circle {
  fill: none;
  stroke: #358395;
  stroke-width: 2.5;
}

.success-page .status-icon path {
  fill: none;
  stroke: #358395;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-page .result-card {
  background: #ffffff;
  border: 1px solid #E5EFEA;
  border-radius: 5px;
  box-shadow: 0 6px 25px -1px rgba(53, 131, 149, 0.09);
  padding: 64px;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.success-page .result-card .card-label {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #358395;
  text-transform: uppercase;
  line-height: 1.6;
}

.success-page .result-card .card-heading {
  font-size: 30px;
  line-height: 1.1;
  color: #1b3a42;
  font-style: italic;
  margin: 0;
}

.success-page .result-card .card-heading span {
  background: radial-gradient(circle at 100% 100%, #67C2BA, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-page .result-card .card-body {
  font-size: 15px;
  line-height: 1.6;
  color: #2c4a52;
  margin: 0;
  max-width: 440px;
}

.success-page .result-card .card-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #358395, #67C2BA);
  border-radius: 5px;
  margin: 8px 0;
}

.success-page .result-card .card-detail {
  font-size: 14px;
  line-height: 1.6;
  color: #4a7080;
  margin: 0;
}

.success-page .result-card .card-detail a {
  color: #358395;
  text-decoration: none;
  border-bottom: 1px solid rgba(53, 131, 149, 0.3);
  transition: color 0.38s cubic-bezier(0.34,1.2,0.64,1), border-color 0.38s cubic-bezier(0.34,1.2,0.64,1);
}

.success-page .result-card .card-detail a:hover {
  color: #67C2BA;
  border-color: #67C2BA;
}

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

.success-page .btn-primary {
  position: relative;
  display: inline-block;
  padding: 16px 32px;
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  background: #358395;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 6px 25px -1px rgba(53, 131, 149, 0.09);
  transition: box-shadow 0.42s ease-in-out, color 0.35s cubic-bezier(0.34,1.2,0.64,1);
}

.success-page .btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #2a6a79;
  border-radius: 5px;
  transition: right 0.4s cubic-bezier(0.34,1.2,0.64,1);
  z-index: 0;
}

.success-page .btn-primary:hover::after {
  right: 0;
}

.success-page .btn-primary:hover {
  box-shadow: 0 10px 44px -1px rgba(53, 131, 149, 0.14);
}

.success-page .btn-primary span {
  position: relative;
  z-index: 1;
}

.success-page .btn-secondary {
  position: relative;
  display: inline-block;
  padding: 16px 32px;
  font-size: 15px;
  line-height: 1.6;
  color: #358395;
  background: #ffffff;
  border: 1px solid #358395;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.38s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.42s ease-in-out;
}

.success-page .btn-secondary::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #E5EFEA;
  border-radius: 5px;
  transition: right 0.43s cubic-bezier(0.34,1.2,0.64,1);
  z-index: 0;
}

.success-page .btn-secondary:hover::after {
  right: 0;
}

.success-page .btn-secondary:hover {
  color: #2a6a79;
  box-shadow: 0 2px 2px -1px rgba(53, 131, 149, 0.05);
}

.success-page .btn-secondary span {
  position: relative;
  z-index: 1;
}

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

  .success-page .result-card {
    padding: 32px 16px;
  }

  .success-page .result-card .card-heading {
    font-size: 22px;
  }

  .success-page .action-row {
    flex-direction: column;
    align-items: center;
  }

  .success-page .btn-primary,
  .success-page .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 375px) {
  .success-page {
    padding: 32px 8px;
  }

  .success-page .result-card {
    padding: 32px 16px;
    gap: 16px;
  }

  .success-page .result-card .card-heading {
    font-size: 18px;
  }

  .success-page .result-card .card-body {
    font-size: 14px;
  }
}

.err-page {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70vh;
  padding: 96px 32px;
}

.err-page .err-wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  text-align: center;
  width: 100%;
}

.err-page .err-code {
  color: #358395;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.err-page .err-code span {
  background: radial-gradient(circle at 100% 100%, #67C2BA, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.err-page .err-divider {
  background: linear-gradient(90deg, transparent, #67C2BA, transparent);
  border: none;
  height: 2px;
  margin: 16px 0;
  width: 96px;
}

.err-page .err-heading {
  color: #1b4f5a;
  font-size: 30px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.err-page .err-desc {
  color: #2d5f6b;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
}

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

.err-page .btn-primary {
  background-color: #358395;
  border: 2px solid #358395;
  border-radius: 5px;
  box-shadow: 0 6px 25px -1px rgba(53, 131, 149, 0.09);
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  overflow: hidden;
  padding: 16px 32px;
  position: relative;
  text-decoration: none;
  transition: color 0.38s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.42s ease-in-out;
  z-index: 0;
}

.err-page .btn-primary::after {
  background-color: #2a6a79;
  border-radius: 5px;
  bottom: 0;
  content: '';
  left: 100%;
  position: absolute;
  right: 0;
  top: 0;
  transition: left 0.36s cubic-bezier(0.34,1.2,0.64,1);
  z-index: -1;
}

.err-page .btn-primary:hover::after,
.err-page .btn-primary:focus::after {
  left: 0;
}

.err-page .btn-primary:hover,
.err-page .btn-primary:focus {
  box-shadow: 0 10px 44px -1px rgba(53, 131, 149, 0.14);
  color: #ffffff;
  outline: none;
}

.err-page .btn-secondary {
  background-color: transparent;
  border: 2px solid #358395;
  border-radius: 5px;
  box-shadow: 0 2px 2px -1px rgba(103, 194, 186, 0.05);
  color: #358395;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  overflow: hidden;
  padding: 16px 32px;
  position: relative;
  text-decoration: none;
  transition: color 0.40s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.35s ease-in-out;
  z-index: 0;
}

.err-page .btn-secondary::after {
  background-color: #E5EFEA;
  border-radius: 5px;
  bottom: 0;
  content: '';
  left: 100%;
  position: absolute;
  right: 0;
  top: 0;
  transition: left 0.38s cubic-bezier(0.34,1.2,0.64,1);
  z-index: -1;
}

.err-page .btn-secondary:hover::after,
.err-page .btn-secondary:focus::after {
  left: 0;
}

.err-page .btn-secondary:hover,
.err-page .btn-secondary:focus {
  box-shadow: 0 6px 25px -1px rgba(103, 194, 186, 0.09);
  color: #1b4f5a;
  outline: none;
}

.err-page .err-note {
  border-left: 3px solid #67C2BA;
  border-radius: 5px;
  background-color: #E5EFEA;
  color: #2d5f6b;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 64px;
  max-width: 480px;
  padding: 16px 32px;
  text-align: left;
}

.err-page .err-note strong {
  color: #358395;
  display: block;
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

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

  .err-page .err-code {
    font-size: 42px;
  }

  .err-page .err-heading {
    font-size: 22px;
  }

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

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

  .err-page .btn-primary,
  .err-page .btn-secondary {
    text-align: center;
    width: 100%;
  }

  .err-page .err-note {
    margin-top: 32px;
  }
}

@media (max-width: 375px) {
  .err-page {
    padding: 32px 16px;
  }

  .err-page .err-code {
    font-size: 30px;
  }

  .err-page .err-heading {
    font-size: 18px;
  }
}
