@charset "UTF-8";

html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-family: 'Red Hat Display', sans-serif;
}

.site-header {
  position: relative;
  background: #ffffff;
  border-bottom: 2px solid #474F61;
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
  z-index: 100;
}

.hd-top-bar {
  background: #474F61;
  padding: 8px 0;
}

.hd-top-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
}

.hd-notice {
  font-size: 15px;
  line-height: 1.4;
  color: #EFE4AC;
  font-family: 'Red Hat Display', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hd-contact-strip {
  display: flex;
  align-items: center;
  gap: 36px;
}

.hd-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.4;
  color: #EFE4AC;
  font-family: 'Red Hat Display', sans-serif;
  text-decoration: none;
  transition: color 0.22s ease-out;
}

.hd-contact-item:hover,
.hd-contact-item:focus {
  color: #ffffff;
  outline: none;
  border-bottom: 4px solid #EFE4AC;
}

.hd-contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hd-main-row {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 100px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.brand-img-frame {
  width: 80px;
  height: 80px;
  border: 1px solid #474F61;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
  flex-shrink: 0;
}

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

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

.brand-name {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 700;
  color: #474F61;
  font-family: 'Red Hat Display', sans-serif;
  letter-spacing: 0.01em;
}

.brand-tagline {
  font-size: 15px;
  line-height: 1.4;
  color: #97A597;
  font-family: 'Red Hat Display', sans-serif;
}

.primary-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  flex: 1;
}

.primary-nav a {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: #474F61;
  text-decoration: none;
  padding: 8px 16px;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: border-color 0.25s ease-out, color 0.18s ease-out, box-shadow 0.28s ease-out;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.primary-nav a:hover {
  border-color: #97A597;
  color: #474F61;
  box-shadow: -1px 6px 28px -1px rgba(151, 165, 151, 0.11);
}

.primary-nav a:focus {
  outline: none;
  border-bottom: 4px solid #474F61;
}

.primary-nav a.active {
  border-color: #474F61;
  background: rgba(71, 79, 97, 0.05);
}

.hd-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.hd-cta-link {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: #474F61;
  text-decoration: none;
  padding: 8px 16px;
  border: 2px solid #474F61;
  border-radius: 6px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.28s ease-out, background 0.2s ease-out;
}

.hd-cta-link:hover {
  box-shadow: -1px 9px 44px -1px rgba(71, 79, 97, 0.10);
  background: rgba(71, 79, 97, 0.06);
}

.hd-cta-link:focus {
  outline: none;
  border-bottom: 4px solid #474F61;
}

.hd-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, #474F61 0%, #97A597 55%, #EFE4AC 100%);
}

@media (max-width: 900px) {
  .hd-main-row {
    flex-wrap: wrap;
    padding: 16px 16px;
    gap: 16px;
    min-height: auto;
  }

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

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

  .primary-nav {
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hd-contact-strip {
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
  }

  .hd-top-inner {
    justify-content: flex-start;
  }

  .brand-name {
    font-size: 20px;
  }

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

.site-footer {
  background: #474F61;
  position: relative;
}

.ft-gradient-top {
  height: 4px;
  background: linear-gradient(90deg, #EFE4AC 0%, #97A597 50%, #474F61 100%);
}

.ft-upper {
  max-width: 1366px;
  margin: 0 auto;
  padding: 36px 36px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: start;
}

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

.ft-logo-frame {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(239, 228, 172, 0.4);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
}

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

.ft-brand-name {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  color: #EFE4AC;
}

.ft-brand-sub {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #97A597;
  max-width: 220px;
}

.ft-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ft-contact-label {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: #EFE4AC;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

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

.ft-contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ft-contact-text {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #97A597;
}

.ft-contact-link {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #97A597;
  text-decoration: none;
  transition: color 0.2s ease-out;
}

.ft-contact-link:hover {
  color: #EFE4AC;
}

.ft-contact-link:focus {
  outline: none;
  border-bottom: 4px solid #EFE4AC;
  color: #EFE4AC;
}

.ft-policy-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.ft-policy-label {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: #EFE4AC;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ft-policy-nav a {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #97A597;
  text-decoration: none;
  transition: color 0.2s ease-out;
  text-align: right;
}

.ft-policy-nav a:hover {
  color: #EFE4AC;
}

.ft-policy-nav a:focus {
  outline: none;
  border-bottom: 4px solid #EFE4AC;
  color: #EFE4AC;
}

.ft-divider {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 36px;
  border: none;
  border-top: 1px solid rgba(151, 165, 151, 0.25);
}

.ft-lower {
  max-width: 1366px;
  margin: 0 auto;
  padding: 16px 36px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ft-copy {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(151, 165, 151, 0.7);
}

.ft-domain {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(151, 165, 151, 0.5);
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .ft-upper {
    grid-template-columns: 1fr 1fr;
    padding: 36px 16px 16px;
  }

  .ft-brand {
    grid-column: 1 / -1;
  }

  .ft-policy-nav {
    align-items: flex-start;
  }

  .ft-policy-nav a {
    text-align: left;
  }

  .ft-lower {
    padding: 16px 16px 36px;
  }

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

@media (max-width: 600px) {
  .ft-upper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ft-lower {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.cookie-tray {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 320px;
  background: #ffffff;
  border: 2px solid #474F61;
  border-radius: 10px;
  box-shadow: -1px 9px 44px -1px rgba(71, 79, 97, 0.10);
  z-index: 1200;
  padding: 16px;
  display: none;
  transition: transform 0.22s ease-out, opacity 0.22s ease-out;
  transform: translateX(-40px);
  opacity: 0;
}

.cookie-tray.visible {
  transform: translateX(0);
  opacity: 1;
}

.cookie-tray-headline {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: #474F61;
  margin-bottom: 8px;
}

.cookie-tray-desc {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #474F61;
  margin-bottom: 16px;
}

.cookie-tray-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.cookie-accept-btn,
.cookie-reject-btn {
  flex: 1;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  min-height: 44px;
  border: 2px solid #474F61;
  transition: box-shadow 0.25s ease-out, background 0.18s ease-out;
}

.cookie-accept-btn {
  background: #474F61;
  color: #EFE4AC;
}

.cookie-accept-btn:hover,
.cookie-accept-btn:focus {
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
  outline: none;
}

.cookie-accept-btn:focus {
  border-bottom: 4px solid #EFE4AC;
}

.cookie-reject-btn {
  background: transparent;
  color: #474F61;
}

.cookie-reject-btn:hover,
.cookie-reject-btn:focus {
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
  outline: none;
}

.cookie-reject-btn:focus {
  border-bottom: 4px solid #474F61;
}

.cookie-policy-ref {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: #97A597;
  text-align: center;
  display: block;
}

.cookie-policy-ref a {
  color: #474F61;
  text-decoration: underline;
  transition: color 0.18s ease-out;
}

.cookie-policy-ref a:hover {
  color: #97A597;
}

.cookie-policy-ref a:focus {
  outline: none;
  border-bottom: 4px solid #474F61;
}

@media (max-width: 600px) {
  .cookie-tray {
    right: 16px;
    left: 16px;
    width: auto;
    bottom: 16px;
  }
}

.policy-view {
  max-width: 1366px;
  margin: 0 auto;
  padding: 72px 36px;
  color: #474F61;
}

.policy-view h1 {
  font-size: 50px;
  line-height: 1.1;
  color: #474F61;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 3px solid #97A597;
}

.policy-view h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #474F61;
  margin-top: 72px;
  margin-bottom: 16px;
}

.policy-view h3 {
  font-size: 26px;
  line-height: 1.4;
  color: #474F61;
  margin-top: 36px;
  margin-bottom: 16px;
}

.policy-view h4 {
  font-size: 20px;
  line-height: 1.4;
  color: #474F61;
  margin-top: 36px;
  margin-bottom: 8px;
}

.policy-view h5 {
  font-size: 17px;
  line-height: 1.4;
  color: #97A597;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 36px;
  margin-bottom: 8px;
}

.policy-view h6 {
  font-size: 15px;
  line-height: 1.4;
  color: #97A597;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 16px;
  margin-bottom: 8px;
}

.policy-view p {
  font-size: 17px;
  line-height: 1.6;
  color: #474F61;
  margin-bottom: 16px;
}

.policy-view a {
  color: #474F61;
  text-decoration: underline;
  text-decoration-color: #97A597;
  text-underline-offset: 3px;
  transition: color 0.2s ease-out, text-decoration-color 0.35s ease-out;
}

.policy-view a:hover {
  color: #97A597;
  text-decoration-color: #474F61;
}

.policy-view a:visited {
  color: #474F61;
  opacity: 0.75;
}

.policy-view hr {
  border: none;
  border-top: 2px solid #EFE4AC;
  margin: 72px 0;
}

.policy-view table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.6;
  margin: 36px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
}

.policy-view thead {
  background-color: #474F61;
}

.policy-view thead th {
  color: #EFE4AC;
  font-size: 15px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px;
  text-align: left;
  border: none;
}

.policy-view tbody tr {
  border-bottom: 1px solid rgba(151, 165, 151, 0.25);
  transition: background-color 0.15s ease-out;
}

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

.policy-view tbody tr:nth-child(even) {
  background-color: rgba(239, 228, 172, 0.12);
}

.policy-view tbody tr:hover {
  background-color: rgba(151, 165, 151, 0.14);
}

.policy-view td {
  padding: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #474F61;
  vertical-align: top;
  border: none;
}

.policy-view th {
  padding: 16px;
  font-size: 15px;
  line-height: 1.4;
  vertical-align: top;
}

.policy-view div {
  font-size: 17px;
  line-height: 1.6;
}

.policy-view div.notice-block {
  background-color: rgba(239, 228, 172, 0.3);
  border-top: 3px solid #EFE4AC;
  border-radius: 10px;
  padding: 16px 36px;
  margin: 36px 0;
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
}

.policy-view div.highlight-block {
  background-color: rgba(151, 165, 151, 0.1);
  border-radius: 10px;
  padding: 16px 36px;
  margin: 36px 0;
  box-shadow: inset 0 2px 8px rgba(151, 165, 151, 0.15);
}

@media (max-width: 900px) {
  .policy-view {
    padding: 36px 16px;
  }

  .policy-view h1 {
    font-size: 36px;
  }

  .policy-view h2 {
    font-size: 26px;
    margin-top: 36px;
  }

  .policy-view h3 {
    font-size: 20px;
  }

  .policy-view h4 {
    font-size: 17px;
  }

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

  .policy-view hr {
    margin: 36px 0;
  }
}

@media (max-width: 600px) {
  .policy-view {
    padding: 36px 8px;
  }

  .policy-view h1 {
    font-size: 26px;
  }

  .policy-view h2 {
    font-size: 20px;
  }

  .policy-view h3 {
    font-size: 17px;
  }

  .policy-view h4,
  .policy-view h5,
  .policy-view h6 {
    font-size: 15px;
  }

  .policy-view p,
  .policy-view div {
    font-size: 15px;
  }

  .policy-view td,
  .policy-view th {
    padding: 8px;
    font-size: 15px;
  }

  .policy-view div.notice-block,
  .policy-view div.highlight-block {
    padding: 16px;
  }
}

.exp-det {
  background: #f5f3ee;
  overflow-x: clip;
}

.exp-det .art-frame {
  max-width: 1366px;
  margin: 0 auto;
  padding: 72px 36px;
}

.exp-det .art-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  animation: col-reveal 0.45s ease-out both;
}

@keyframes col-reveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.exp-det .art-meta-col {
  animation: col-reveal 0.35s ease-out 0.15s both;
}

.exp-det .art-img-col {
  animation: col-reveal 0.45s ease-out 0.28s both;
}

.exp-det .tag-row {
  display: flex;
  gap: 8px;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.exp-det .tag-pill {
  display: inline-block;
  padding: 4px 16px;
  border: 2px solid #474F61;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.4;
  color: #474F61;
  background: transparent;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.exp-det .tag-pill.cat {
  border-color: #97A597;
  color: #97A597;
}

.exp-det .art-h1 {
  font-size: 50px;
  line-height: 1.1;
  color: #474F61;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.exp-det .art-sub {
  font-size: 20px;
  line-height: 1.6;
  color: #474F61;
  opacity: 0.75;
  margin-bottom: 36px;
}

.exp-det .art-stat-row {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid rgba(71, 79, 97, 0.15);
  border-bottom: 1px solid rgba(71, 79, 97, 0.15);
  margin-bottom: 36px;
}

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

.exp-det .stat-label {
  font-size: 15px;
  line-height: 1.4;
  color: #97A597;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.exp-det .stat-val {
  font-size: 17px;
  line-height: 1.4;
  color: #474F61;
  font-weight: 700;
}

.exp-det .circ-accent {
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 32px;
  background: #97A597;
  margin-right: 8px;
  flex-shrink: 0;
  vertical-align: middle;
}

.exp-det .read-btn {
  display: inline-block;
  padding: 16px 36px;
  border: 3px solid #474F61;
  border-radius: 10px;
  background: transparent;
  color: #474F61;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.22s ease-out, background 0.18s ease-out, color 0.18s ease-out;
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
}

.exp-det .read-btn:hover,
.exp-det .read-btn:focus {
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
  background: #474F61;
  color: #f5f3ee;
  outline: none;
}

.exp-det .read-btn:active {
  box-shadow: -1px 9px 44px -1px rgba(71, 79, 97, 0.10);
}

.exp-det .art-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
  position: relative;
  aspect-ratio: 4/3;
}

.exp-det .art-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  animation: img-fade 0.45s ease-out 0.35s both;
}

@keyframes img-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.exp-det .art-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(239, 228, 172, 0.18) 0%, rgba(151, 165, 151, 0.22) 100%);
  pointer-events: none;
}

.exp-det .deco-circles {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  pointer-events: none;
  overflow: hidden;
  border-radius: 0;
}

.exp-det .deco-c1 {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 32px;
  border: 2px solid rgba(151, 165, 151, 0.18);
  animation: slow-spin 18s linear infinite;
}

.exp-det .deco-c2 {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 32px;
  border: 2px solid rgba(239, 228, 172, 0.22);
  animation: slow-spin 24s linear infinite reverse;
}

.exp-det .deco-c3 {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  border-radius: 32px;
  border: 2px solid rgba(71, 79, 97, 0.10);
  animation: slow-spin 12s linear infinite;
}

@keyframes slow-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.exp-det .art-body-wrap {
  background: #fff;
  border-radius: 18px;
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
  padding: 72px;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}

.exp-det .art-body-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #474F61 0%, #97A597 55%, #EFE4AC 100%);
  border-radius: 18px 18px 0 0;
}

.exp-det .art-body-inner {
  max-width: 780px;
  margin: 0 auto;
}

.exp-det .art-body-inner p {
  font-size: 17px;
  line-height: 1.6;
  color: #474F61;
  margin-bottom: 16px;
}

.exp-det .art-body-inner h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #474F61;
  font-weight: 900;
  margin-top: 36px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.exp-det .art-body-inner h3 {
  font-size: 26px;
  line-height: 1.4;
  color: #474F61;
  font-weight: 800;
  margin-top: 36px;
  margin-bottom: 16px;
}

.exp-det .art-body-inner strong {
  color: #474F61;
  font-weight: 700;
}

.exp-det .art-body-inner code {
  background: rgba(71, 79, 97, 0.08);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 15px;
  color: #474F61;
  border: 1px solid rgba(71, 79, 97, 0.12);
  box-shadow: inset -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
}

.exp-det .art-body-inner ul,
.exp-det .art-body-inner ol {
  margin-bottom: 16px;
  padding-left: 0;
  list-style: none;
}

.exp-det .art-body-inner ul li,
.exp-det .art-body-inner ol li {
  font-size: 17px;
  line-height: 1.6;
  color: #474F61;
  padding: 8px 0;
  border-bottom: 1px solid rgba(71, 79, 97, 0.12);
  padding-left: 16px;
  position: relative;
}

.exp-det .art-body-inner ul li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 32px;
  background: #97A597;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.exp-det .art-body-inner ol {
  counter-reset: ol-counter;
}

.exp-det .art-body-inner ol li {
  counter-increment: ol-counter;
}

.exp-det .art-body-inner ol li::before {
  content: counter(ol-counter) ".";
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #97A597;
}

.exp-det .art-body-inner time {
  font-size: 15px;
  color: #97A597;
  font-weight: 600;
}

.exp-det .services-strip {
  margin-top: 72px;
  background: linear-gradient(160deg, #474F61 0%, #3a4252 100%);
  border-radius: 18px;
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: -1px 9px 44px -1px rgba(71, 79, 97, 0.10);
}

.exp-det .services-strip::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 32px;
  border: 2px solid rgba(239, 228, 172, 0.12);
  pointer-events: none;
}

.exp-det .services-strip::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 32px;
  border: 2px solid rgba(151, 165, 151, 0.15);
  pointer-events: none;
}

.exp-det .strip-head {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.exp-det .strip-h {
  font-size: 36px;
  line-height: 1.1;
  color: #EFE4AC;
  font-weight: 900;
  margin-bottom: 8px;
}

.exp-det .strip-desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(239, 228, 172, 0.7);
}

.exp-det .svc-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 36px;
  border: 1px solid rgba(239, 228, 172, 0.12);
  box-shadow: inset -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
  transition: background 0.25s ease-out, border-color 0.2s ease-out;
}

.exp-det .svc-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(239, 228, 172, 0.28);
}

.exp-det .svc-icon-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.exp-det .svc-dot {
  width: 10px;
  height: 10px;
  border-radius: 32px;
  background: #EFE4AC;
  flex-shrink: 0;
}

.exp-det .svc-num {
  font-size: 15px;
  color: rgba(239, 228, 172, 0.55);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.exp-det .svc-h {
  font-size: 20px;
  line-height: 1.4;
  color: #EFE4AC;
  font-weight: 800;
  margin-bottom: 8px;
}

.exp-det .svc-p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(239, 228, 172, 0.65);
}

.exp-det .svc-link {
  display: inline-block;
  margin-top: 72px;
  grid-column: 1 / -1;
}

.exp-det .strip-cta {
  display: inline-block;
  padding: 16px 36px;
  border: 3px solid #EFE4AC;
  border-radius: 10px;
  background: transparent;
  color: #EFE4AC;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.22s ease-out, background 0.2s ease-out, color 0.18s ease-out;
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
}

.exp-det .strip-cta:hover,
.exp-det .strip-cta:focus {
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
  background: #EFE4AC;
  color: #474F61;
  outline: none;
}

.exp-det .contact-row {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.exp-det .contact-text {
  padding: 36px;
  background: #EFE4AC;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
}

.exp-det .contact-h {
  font-size: 26px;
  line-height: 1.4;
  color: #474F61;
  font-weight: 900;
}

.exp-det .contact-p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(71, 79, 97, 0.8);
}

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

.exp-det .contact-detail-list li {
  font-size: 15px;
  line-height: 1.4;
  color: #474F61;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(71, 79, 97, 0.15);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.exp-det .contact-detail-list li:last-child {
  border-bottom: none;
}

.exp-det .c-dot {
  width: 8px;
  height: 8px;
  border-radius: 32px;
  background: #97A597;
  flex-shrink: 0;
}

.exp-det .contact-form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
}

.exp-det .form-h {
  font-size: 20px;
  line-height: 1.4;
  color: #474F61;
  font-weight: 800;
  margin-bottom: 36px;
}

.exp-det .field-wrap {
  position: relative;
  margin-bottom: 16px;
}

.exp-det .field-wrap input,
.exp-det .field-wrap textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid rgba(71, 79, 97, 0.2);
  border-radius: 10px;
  background: #f5f3ee;
  font-size: 17px;
  color: #474F61;
  outline: none;
  transition: border-color 0.22s ease-out, box-shadow 0.22s ease-out;
  box-shadow: inset -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
  resize: none;
}

.exp-det .field-wrap input:focus,
.exp-det .field-wrap textarea:focus {
  border-color: #474F61;
  box-shadow: inset -1px 3px 3px -1px rgba(71, 79, 97, 0.05), -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
}

.exp-det .field-wrap label {
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 17px;
  color: rgba(71, 79, 97, 0.5);
  pointer-events: none;
  transition: top 0.18s ease-out, font-size 0.18s ease-out, color 0.18s ease-out;
  background: transparent;
}

.exp-det .field-wrap input:focus+label,
.exp-det .field-wrap input:not(:placeholder-shown)+label,
.exp-det .field-wrap textarea:focus+label,
.exp-det .field-wrap textarea:not(:placeholder-shown)+label {
  top: -10px;
  font-size: 15px;
  color: #474F61;
  background: #fff;
  padding: 0 4px;
  border-radius: 6px;
}

.exp-det .field-wrap input::placeholder,
.exp-det .field-wrap textarea::placeholder {
  color: transparent;
}

.exp-det .submit-btn {
  width: 100%;
  padding: 16px 36px;
  border: 3px solid #474F61;
  border-radius: 10px;
  background: transparent;
  color: #474F61;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow 0.22s ease-out, background 0.2s ease-out, color 0.18s ease-out;
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
  margin-top: 8px;
}

.exp-det .submit-btn:hover,
.exp-det .submit-btn:focus {
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
  background: #474F61;
  color: #f5f3ee;
  outline: none;
}

.exp-det .submit-btn:active {
  box-shadow: -1px 9px 44px -1px rgba(71, 79, 97, 0.10);
}

@media (max-width: 1200px) {
  .exp-det .services-strip {
    grid-template-columns: 1fr 1fr;
    padding: 36px;
  }

  .exp-det .art-body-wrap {
    padding: 36px;
  }
}

@media (max-width: 900px) {
  .exp-det .art-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .exp-det .contact-row {
    grid-template-columns: 1fr;
  }

  .exp-det .services-strip {
    grid-template-columns: 1fr;
  }

  .exp-det .art-h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .exp-det .art-frame {
    padding: 36px 16px;
  }

  .exp-det .art-body-wrap {
    padding: 16px;
  }

  .exp-det .services-strip {
    padding: 16px;
  }

  .exp-det .art-h1 {
    font-size: 26px;
  }

  .exp-det .art-stat-row {
    gap: 16px;
  }

  .exp-det .contact-text,
  .exp-det .contact-form-wrap {
    padding: 16px;
  }
}

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

.exp-op .pg-bound {
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 36px;
  padding-right: 36px;
}

.exp-op .lead-strip {
  background: linear-gradient(167deg, #474F61 0%, #5a6378 40%, #97A597 100%);
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
}

.exp-op .lead-strip .dot-field {
  position: absolute;
  top: 0;
  left: 0;
  width: 52%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  background-image: radial-gradient(circle, rgba(239, 228, 172, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
}

.exp-op .lead-strip .strip-inner {
  position: relative;
  z-index: 1;
}

.exp-op .lead-strip .pg-label {
  display: inline-block;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #EFE4AC;
  border: 2px solid rgba(239, 228, 172, 0.45);
  border-radius: 6px;
  padding: 4px 16px;
  margin-bottom: 16px;
}

.exp-op .lead-strip .pg-head {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  max-width: 680px;
}

.exp-op .lead-strip .pg-sub {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
}

.exp-op .posts-area {
  background: #f5f3ee;
  padding-top: 72px;
  padding-bottom: 72px;
}

.exp-op .posts-area .area-label {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #97A597;
  margin-bottom: 8px;
  text-align: center;
}

.exp-op .posts-area .area-head {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  color: #474F61;
  text-align: center;
  margin-bottom: 36px;
}

.exp-op .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.exp-op .post-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05), -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid transparent;
  transition: box-shadow 0.25s ease-out, border-color 0.2s ease-out;
}

.exp-op .post-card:hover {
  box-shadow: -1px 9px 44px -1px rgba(71, 79, 97, 0.10), -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
  border-color: rgba(151, 165, 151, 0.35);
}

.exp-op .post-card .card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.exp-op .post-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease-out;
}

.exp-op .post-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.exp-op .post-card .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.exp-op .post-card .card-tag {
  display: inline-block;
  font-size: 15px;
  line-height: 1.4;
  color: #97A597;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.exp-op .post-card .card-title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 900;
  color: #474F61;
  margin: 0;
}

.exp-op .post-card .card-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #474F61;
  opacity: 0.72;
  margin: 0;
}

.exp-op .post-card .card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #474F61;
  opacity: 0.65;
  margin: 0;
  flex: 1;
}

.exp-op .post-card .card-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid rgba(71, 79, 97, 0.1);
  margin-top: 8px;
}

.exp-op .post-card .meta-item {
  font-size: 15px;
  line-height: 1.4;
  color: #474F61;
  opacity: 0.55;
}

.exp-op .post-card .card-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: #474F61;
  text-decoration: underline;
  text-underline-offset: 3px;
  border: 2.5px solid #474F61;
  border-radius: 10px;
  padding: 8px 16px;
  transition: box-shadow 0.22s ease-out, background 0.18s ease-out;
  align-self: flex-start;
}

.exp-op .post-card .card-link:hover {
  background: rgba(71, 79, 97, 0.07);
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
  text-decoration: underline;
}

.exp-op .post-card:hover .card-link {
  border-style: dashed;
}

.exp-op .about-strip {
  background: #ffffff;
  padding-top: 72px;
  padding-bottom: 72px;
  border-top: 1px solid rgba(71, 79, 97, 0.08);
}

.exp-op .about-strip .ab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.exp-op .about-strip .ab-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
  transition: box-shadow 0.28s ease-out;
}

.exp-op .about-strip .ab-img-wrap:hover {
  box-shadow: -1px 9px 44px -1px rgba(71, 79, 97, 0.10);
}

.exp-op .about-strip .ab-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.exp-op .about-strip .ab-text .ab-label {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #97A597;
  margin-bottom: 8px;
}

.exp-op .about-strip .ab-text .ab-head {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  color: #474F61;
  margin-bottom: 16px;
}

.exp-op .about-strip .ab-text .ab-body {
  font-size: 17px;
  line-height: 1.6;
  color: #474F61;
  opacity: 0.8;
  margin-bottom: 16px;
}

.exp-op .about-strip .ab-text .ab-body:last-child {
  margin-bottom: 0;
}

.exp-op .metrics-band {
  background: linear-gradient(112deg, #474F61 0%, #3d4555 60%, #97A597 100%);
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
}

.exp-op .metrics-band .band-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background-image: repeating-linear-gradient(90deg,
      rgba(239, 228, 172, 0.05) 0px,
      rgba(239, 228, 172, 0.05) 1px,
      transparent 1px,
      transparent 60px);
}

.exp-op .metrics-band .band-inner {
  position: relative;
  z-index: 1;
}

.exp-op .metrics-band .band-head {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 8px;
}

.exp-op .metrics-band .band-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  margin-bottom: 36px;
}

.exp-op .metrics-band .metrics-row {
  display: flex;
  flex-direction: row;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
}

.exp-op .metrics-band .metric-item {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(239, 228, 172, 0.25);
  border-radius: 18px;
  padding: 36px;
  text-align: center;
  min-width: 180px;
  flex: 1;
  box-shadow: inset 0 1px 0 rgba(239, 228, 172, 0.1);
  transition: background 0.22s ease-out, border-color 0.18s ease-out;
}

.exp-op .metrics-band .metric-item:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(239, 228, 172, 0.5);
  border-style: dashed;
}

.exp-op .metrics-band .metric-val {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 900;
  color: #EFE4AC;
  display: block;
  margin-bottom: 8px;
}

.exp-op .metrics-band .metric-desc {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

.exp-op .process-area {
  background: #f5f3ee;
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
}

.exp-op .process-area .proc-label {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #97A597;
  text-align: center;
  margin-bottom: 8px;
}

.exp-op .process-area .proc-head {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  color: #474F61;
  text-align: center;
  margin-bottom: 36px;
}

.exp-op .process-area .steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}

.exp-op .process-area .step-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  padding-top: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(71, 79, 97, 0.12);
  transition: background 0.2s ease-out;
}

.exp-op .process-area .step-row:last-child {
  border-bottom: none;
}

.exp-op .process-area .step-num {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 900;
  color: rgba(151, 165, 151, 0.35);
  min-width: 72px;
  text-align: right;
  flex-shrink: 0;
}

.exp-op .process-area .step-body .step-title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 900;
  color: #474F61;
  margin-bottom: 8px;
}

.exp-op .process-area .step-body .step-text {
  font-size: 17px;
  line-height: 1.6;
  color: #474F61;
  opacity: 0.72;
  margin: 0;
}

.exp-op .contact-bar {
  background: #ffffff;
  padding-top: 72px;
  padding-bottom: 72px;
  border-top: 3px solid #EFE4AC;
}

.exp-op .contact-bar .ct-head {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  color: #474F61;
  text-align: center;
  margin-bottom: 16px;
}

.exp-op .contact-bar .ct-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #474F61;
  opacity: 0.72;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 36px;
}

.exp-op .contact-bar .ct-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.exp-op .contact-bar .field-wrap {
  position: relative;
}

.exp-op .contact-bar .field-wrap input,
.exp-op .contact-bar .field-wrap textarea {
  width: 100%;
  border: 2.5px solid rgba(71, 79, 97, 0.3);
  border-radius: 10px;
  padding: 16px 16px 8px;
  font-size: 17px;
  line-height: 1.4;
  color: #474F61;
  background: #fdfcf8;
  outline: none;
  transition: border-color 0.2s ease-out, box-shadow 0.22s ease-out;
  box-shadow: inset 0 1px 3px rgba(71, 79, 97, 0.05);
}

.exp-op .contact-bar .field-wrap textarea {
  min-height: 120px;
  resize: vertical;
}

.exp-op .contact-bar .field-wrap input:focus,
.exp-op .contact-bar .field-wrap textarea:focus {
  border-color: #474F61;
  box-shadow: inset 0 1px 3px rgba(71, 79, 97, 0.08), -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
}

.exp-op .contact-bar .field-wrap label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 17px;
  line-height: 1.4;
  color: rgba(71, 79, 97, 0.55);
  pointer-events: none;
  transition: top 0.18s ease-out, font-size 0.18s ease-out, color 0.18s ease-out, transform 0.18s ease-out;
}

.exp-op .contact-bar .field-wrap textarea+label,
.exp-op .contact-bar .field-wrap.has-textarea label {
  top: 16px;
  transform: none;
}

.exp-op .contact-bar .field-wrap input:focus+label,
.exp-op .contact-bar .field-wrap input:not(:placeholder-shown)+label {
  top: 6px;
  transform: none;
  font-size: 15px;
  color: #97A597;
}

.exp-op .contact-bar .field-wrap textarea:focus+label,
.exp-op .contact-bar .field-wrap textarea:not(:placeholder-shown)+label {
  top: 6px;
  font-size: 15px;
  color: #97A597;
}

.exp-op .contact-bar .field-wrap input::placeholder,
.exp-op .contact-bar .field-wrap textarea::placeholder {
  color: transparent;
}

.exp-op .contact-bar .ct-btn {
  background: transparent;
  border: 2.5px solid #474F61;
  border-radius: 10px;
  padding: 16px 36px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: #474F61;
  cursor: pointer;
  align-self: flex-start;
  transition: box-shadow 0.25s ease-out, background 0.2s ease-out;
}

.exp-op .contact-bar .ct-btn:hover {
  background: rgba(71, 79, 97, 0.06);
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
}

.exp-op .contact-bar .ct-btn:focus {
  outline: 2px solid #97A597;
  outline-offset: 3px;
}

.exp-op .diamond-accent {
  position: absolute;
  width: 36px;
  height: 36px;
  background: #EFE4AC;
  transform: rotate(45deg);
  border-radius: 6px;
  opacity: 0.55;
  pointer-events: none;
}

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

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

.exp-op .lead-strip .pg-label {
  animation: reveal-up 0.25s ease-out both;
}

.exp-op .lead-strip .pg-head {
  animation: reveal-up 0.35s ease-out 0.1s both;
}

.exp-op .lead-strip .pg-sub {
  animation: reveal-up 0.4s ease-out 0.22s both;
}

@media (max-width: 1200px) {
  .exp-op .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exp-op .about-strip .ab-grid {
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .exp-op .lead-strip .pg-head {
    font-size: 36px;
  }

  .exp-op .cards-grid {
    grid-template-columns: 1fr;
  }

  .exp-op .about-strip .ab-grid {
    grid-template-columns: 1fr;
  }

  .exp-op .metrics-band .metrics-row {
    flex-direction: column;
    align-items: stretch;
  }

  .exp-op .metrics-band .metric-item {
    min-width: unset;
  }
}

@media (max-width: 600px) {
  .exp-op .pg-bound {
    padding-left: 16px;
    padding-right: 16px;
  }

  .exp-op .lead-strip {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .exp-op .lead-strip .pg-head {
    font-size: 26px;
  }

  .exp-op .posts-area {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .exp-op .about-strip {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .exp-op .metrics-band {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .exp-op .process-area {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .exp-op .contact-bar {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .exp-op .process-area .step-row {
    flex-direction: column;
    gap: 8px;
  }

  .exp-op .process-area .step-num {
    text-align: left;
    min-width: unset;
  }
}

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

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

.abt-us .lead-panel {
  position: relative;
  padding: 72px 0 72px;
  background-color: #f5f3ee;
  overflow: hidden;
}

.abt-us .lead-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-47deg,
      rgba(71, 79, 97, 0.04) 0px,
      rgba(71, 79, 97, 0.04) 1px,
      transparent 1px,
      transparent 18px);
  pointer-events: none;
}

.abt-us .lead-panel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(151, 165, 151, 0.35) 30%, rgba(239, 228, 172, 0.6) 60%, transparent 100%);
  pointer-events: none;
}

.abt-us .lead-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 72px;
}

.abt-us .lead-left {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.abt-us .lead-right {
  flex: 0 0 calc(70% - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.abt-us .lead-label {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(71, 79, 97, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.abt-us .lead-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
}

.abt-us .lead-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.92);
  transition: filter 0.25s ease-out;
}

.abt-us .lead-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(71, 79, 97, 0.38) 0%, transparent 65%);
  pointer-events: none;
  transition: opacity 0.2s ease-out;
}

.abt-us .lead-img-wrap:hover img {
  filter: saturate(1) brightness(0.88);
}

.abt-us .lead-img-wrap:hover::after {
  opacity: 0.6;
}

.abt-us .lead-h1 {
  font-size: 68px;
  line-height: 1.1;
  font-weight: 900;
  color: #474F61;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.abt-us .lead-h1 em {
  font-style: normal;
  color: #97A597;
}

.abt-us .lead-sub {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(71, 79, 97, 0.8);
  margin: 0 0 36px;
  max-width: 560px;
}

.abt-us .lead-meta {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
}

.abt-us .meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt-us .meta-num {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  color: #474F61;
}

.abt-us .meta-desc {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(71, 79, 97, 0.65);
}

.abt-us .founding-band {
  padding: 72px 0;
  background-color: #fff;
  position: relative;
}

.abt-us .founding-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #97A597 0%, #EFE4AC 50%, #97A597 100%);
  opacity: 0.5;
}

.abt-us .founding-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.abt-us .founding-story {
  grid-column: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-us .founding-aside {
  grid-column: 3 / 4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-us .founding-h2 {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  color: #474F61;
  margin: 0;
}

.abt-us .founding-p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(71, 79, 97, 0.82);
  margin: 0;
}

.abt-us .founding-img-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05), -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
}

.abt-us .founding-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease-out, filter 0.35s ease-out;
  filter: saturate(0.75);
}

.abt-us .founding-img-wrap:hover img {
  transform: scale(1.03);
  filter: saturate(1) brightness(0.9);
}

.abt-us .founding-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(151, 165, 151, 0.35) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.abt-us .founding-img-wrap:hover::after {
  opacity: 1;
}

.abt-us .event-card {
  background: linear-gradient(135deg, rgba(239, 228, 172, 0.18) 0%, rgba(151, 165, 151, 0.12) 100%);
  border: 2px solid rgba(151, 165, 151, 0.3);
  border-radius: 18px;
  padding: 36px;
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
}

.abt-us .event-year {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 900;
  color: #97A597;
  display: block;
  margin-bottom: 8px;
}

.abt-us .event-title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #474F61;
  margin: 0 0 8px;
}

.abt-us .event-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(71, 79, 97, 0.72);
  margin: 0;
}

.abt-us .approach-block {
  padding: 72px 0;
  background: linear-gradient(170deg, rgba(71, 79, 97, 0.05) 0%, rgba(239, 228, 172, 0.12) 100%);
  position: relative;
}

.abt-us .approach-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 36px;
  right: 36px;
  height: 1px;
  background: rgba(71, 79, 97, 0.12);
  pointer-events: none;
}

.abt-us .approach-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.abt-us .approach-top {
  display: flex;
  flex-direction: row;
  gap: 72px;
  align-items: flex-end;
}

.abt-us .approach-head {
  flex: 0 0 40%;
}

.abt-us .approach-h2 {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  color: #474F61;
  margin: 0 0 16px;
  text-align: center;
}

.abt-us .approach-lead {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(71, 79, 97, 0.8);
  margin: 0;
}

.abt-us .approach-right {
  flex: 1;
}

.abt-us .comparison-bar-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 36px;
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
}

.abt-us .bar-label-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 8px;
}

.abt-us .bar-label {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(71, 79, 97, 0.65);
}

.abt-us .bar-track {
  height: 10px;
  background: rgba(71, 79, 97, 0.1);
  border-radius: 6px;
  position: relative;
  margin-bottom: 8px;
}

.abt-us .bar-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, #97A597 0%, #474F61 100%);
  transition: width 0.45s ease-out;
}

.abt-us .bar-note {
  font-size: 15px;
  line-height: 1.4;
  color: #474F61;
  font-weight: 600;
  text-align: right;
}

.abt-us .bar-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-us .bar-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt-us .bar-item-label {
  font-size: 15px;
  line-height: 1.4;
  color: #474F61;
  font-weight: 600;
}

.abt-us .approach-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.abt-us .pillar {
  background: #fff;
  border-radius: 10px;
  padding: 36px 16px;
  border: 2px solid rgba(71, 79, 97, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.2s ease-out, box-shadow 0.25s ease-out;
}

.abt-us .pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(151, 165, 151, 0.15) 0%, rgba(239, 228, 172, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.22s ease-out;
}

.abt-us .pillar:hover::before {
  opacity: 1;
}

.abt-us .pillar:hover {
  border-color: rgba(151, 165, 151, 0.5);
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
}

.abt-us .pillar-num {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  color: rgba(151, 165, 151, 0.5);
}

.abt-us .pillar-title {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: #474F61;
  margin: 0;
}

.abt-us .pillar-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(71, 79, 97, 0.72);
  margin: 0;
}

.abt-us .ring-block {
  padding: 72px 0;
  background-color: #fff;
  position: relative;
}

.abt-us .ring-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(239, 228, 172, 0.7);
  pointer-events: none;
}

.abt-us .ring-inner {
  display: flex;
  flex-direction: row;
  gap: 72px;
  align-items: center;
}

.abt-us .ring-left {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-us .ring-h2 {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  color: #474F61;
  margin: 0;
}

.abt-us .ring-p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(71, 79, 97, 0.8);
  margin: 0;
}

.abt-us .ring-link {
  display: inline-block;
  font-size: 15px;
  line-height: 1.4;
  color: #474F61;
  font-weight: 700;
  border-bottom: 2px solid #97A597;
  text-decoration: none;
  padding-bottom: 4px;
  transition: border-color 0.18s ease-out, color 0.18s ease-out;
}

.abt-us .ring-link:hover {
  color: #97A597;
  border-bottom-color: #474F61;
}

.abt-us .ring-right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.abt-us .ring-center {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #474F61 0%, #97A597 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: -1px 9px 44px -1px rgba(71, 79, 97, 0.10);
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.abt-us .ring-center-label {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 0 16px;
}

.abt-us .ring-center-sub {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.abt-us .ring-orbit {
  position: relative;
  width: 420px;
  height: 420px;
}

.abt-us .ring-sat {
  position: absolute;
  width: 110px;
  background: #fff;
  border: 2px solid rgba(71, 79, 97, 0.1);
  border-radius: 10px;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
  transition: border-color 0.2s ease-out, box-shadow 0.22s ease-out, background 0.22s ease-out;
  cursor: default;
}

.abt-us .ring-sat:hover {
  border-color: rgba(151, 165, 151, 0.55);
  background: rgba(239, 228, 172, 0.1);
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
}

.abt-us .ring-sat-title {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: #474F61;
}

.abt-us .ring-sat-text {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(71, 79, 97, 0.65);
}

.abt-us .ring-sat.pos-top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.abt-us .ring-sat.pos-top-right {
  top: 14%;
  right: 0;
}

.abt-us .ring-sat.pos-bot-right {
  bottom: 14%;
  right: 0;
}

.abt-us .ring-sat.pos-bot {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.abt-us .ring-sat.pos-bot-left {
  bottom: 14%;
  left: 0;
}

.abt-us .ring-sat.pos-top-left {
  top: 14%;
  left: 0;
}

.abt-us .ring-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
  flex: 0 0 260px;
  align-self: stretch;
}

.abt-us .ring-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
  filter: saturate(0.7);
  transition: filter 0.3s ease-out;
}

.abt-us .ring-img-wrap:hover img {
  filter: saturate(1) brightness(0.88);
}

.abt-us .ring-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(151, 165, 151, 0.4) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease-out;
}

.abt-us .ring-img-wrap:hover::after {
  opacity: 1;
}

.abt-us .wavy-divider {
  display: block;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .abt-us .lead-h1 {
    font-size: 50px;
  }

  .abt-us .approach-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt-us .ring-orbit {
    width: 360px;
    height: 360px;
  }

  .abt-us .ring-sat {
    width: 96px;
  }

  .abt-us .ring-center {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 900px) {
  .abt-us .lead-inner {
    flex-direction: column;
    gap: 36px;
  }

  .abt-us .lead-left,
  .abt-us .lead-right {
    flex: 0 0 auto;
  }

  .abt-us .lead-h1 {
    font-size: 36px;
  }

  .abt-us .lead-meta {
    gap: 16px;
  }

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

  .abt-us .founding-story {
    grid-column: 1;
  }

  .abt-us .founding-aside {
    grid-column: 1;
  }

  .abt-us .approach-top {
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
  }

  .abt-us .approach-head {
    flex: 0 0 auto;
  }

  .abt-us .ring-inner {
    flex-direction: column;
    gap: 36px;
  }

  .abt-us .ring-left {
    flex: 0 0 auto;
  }

  .abt-us .ring-right {
    min-height: 400px;
    width: 100%;
  }

  .abt-us .ring-orbit {
    width: 320px;
    height: 320px;
  }

  .abt-us .ring-sat {
    width: 84px;
    padding: 8px 4px;
  }

  .abt-us .ring-center {
    width: 130px;
    height: 130px;
  }

  .abt-us .ring-img-wrap {
    flex: 0 0 auto;
    width: 100%;
    height: 220px;
  }
}

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

  .abt-us .lead-panel {
    padding: 36px 0;
  }

  .abt-us .lead-h1 {
    font-size: 26px;
  }

  .abt-us .lead-meta {
    flex-direction: column;
    gap: 8px;
  }

  .abt-us .founding-band,
  .abt-us .approach-block,
  .abt-us .ring-block {
    padding: 36px 0;
  }

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

  .abt-us .ring-orbit {
    width: 280px;
    height: 280px;
  }

  .abt-us .ring-sat {
    width: 72px;
    font-size: 13px;
  }

  .abt-us .ring-center {
    width: 110px;
    height: 110px;
  }

  .abt-us .ring-center-sub {
    font-size: 20px;
  }
}

.srv-pg {
  background-color: #f5f2e8;
  overflow-x: clip;
  position: relative;
}

.srv-pg .offer-split {
  max-width: 1366px;
  margin: 0 auto;
  padding: 72px 36px 72px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

.srv-pg .offer-split::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2397A597' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.srv-pg .offer-text {
  position: relative;
  z-index: 1;
  padding-top: 36px;
}

.srv-pg .offer-text .accent-line {
  width: 3px;
  height: 48px;
  background-color: #97A597;
  margin-bottom: 36px;
  border-radius: 0px;
  box-shadow: inset 0 0 8px rgba(151, 165, 151, 0.3);
}

.srv-pg .offer-text .pg-label {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #97A597;
  margin-bottom: 16px;
  display: block;
}

.srv-pg .offer-text .pg-h1 {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 900;
  color: #474F61;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.srv-pg .offer-text .pg-h1 em {
  font-style: normal;
  color: #97A597;
  position: relative;
}

.srv-pg .offer-text .pg-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #474F61;
  opacity: 0.82;
  margin-bottom: 36px;
}

.srv-pg .offer-text .stat-row {
  display: flex;
  flex-direction: row;
  gap: 36px;
  margin-top: 36px;
}

.srv-pg .offer-text .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.srv-pg .offer-text .stat-num {
  font-size: 36px;
  font-weight: 900;
  color: #474F61;
  line-height: 1.1;
}

.srv-pg .offer-text .stat-desc {
  font-size: 15px;
  color: #97A597;
  line-height: 1.4;
}

.srv-pg .offer-text .cta-group {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.srv-pg .offer-text .btn-prim {
  display: inline-block;
  padding: 16px 36px;
  border: 3px solid #474F61;
  border-radius: 6px;
  background-color: #474F61;
  color: #EFE4AC;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.22s ease-out, background-color 0.18s ease-out;
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
}

.srv-pg .offer-text .btn-prim:hover {
  box-shadow: -1px 9px 44px -1px rgba(71, 79, 97, 0.10);
  background-color: #3a4154;
}

.srv-pg .offer-text .btn-sec {
  display: inline-block;
  padding: 16px 36px;
  border: 3px solid #474F61;
  border-radius: 6px;
  background-color: transparent;
  color: #474F61;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.28s ease-out, border-color 0.2s ease-out;
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
}

.srv-pg .offer-text .btn-sec:hover {
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
  border-color: #97A597;
  color: #97A597;
}

.srv-pg .offer-img-col {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.srv-pg .img-clip-wrap {
  width: 100%;
  max-width: 580px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: -1px 9px 44px -1px rgba(71, 79, 97, 0.10);
  position: relative;
}

.srv-pg .img-clip-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 88% 100%, 0 100%);
  transition: transform 0.45s ease-out;
}

.srv-pg .img-clip-wrap:hover img {
  transform: scale(1.04);
}

.srv-pg .img-dot-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #EFE4AC;
  border: 3px solid #97A597;
  box-shadow: -1px 6px 28px -1px rgba(151, 165, 151, 0.11);
  z-index: 2;
}

.srv-pg .divider-curves {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  height: 36px;
}

.srv-pg .divider-curves svg {
  display: block;
  width: 100%;
}

.srv-pg .svc-detail-band {
  background-color: #474F61;
  position: relative;
  overflow: hidden;
}

@keyframes zone-shift {
  0% {
    background-position: 0% 50%;
  }

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

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

.srv-pg .svc-detail-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(127deg, rgba(151, 165, 151, 0.12) 0%, rgba(239, 228, 172, 0.07) 40%, rgba(71, 79, 97, 0) 70%);
  background-size: 300% 300%;
  animation: zone-shift 18s ease-out infinite;
  pointer-events: none;
  z-index: 0;
}

.srv-pg .svc-detail-band .band-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 72px 36px;
  position: relative;
  z-index: 1;
}

.srv-pg .svc-detail-band .band-top {
  text-align: center;
  margin-bottom: 72px;
}

.srv-pg .svc-detail-band .band-top .band-h2 {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  color: #EFE4AC;
  margin-bottom: 16px;
}

.srv-pg .svc-detail-band .band-top .band-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(239, 228, 172, 0.72);
  max-width: 560px;
  margin: 0 auto;
}

.srv-pg .svc-detail-band .svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 72px;
}

.srv-pg .svc-detail-band .svc-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(239, 228, 172, 0.18);
  border-radius: 18px;
  padding: 36px;
  position: relative;
  transition: background-color 0.25s ease-out, box-shadow 0.35s ease-out;
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
}

.srv-pg .svc-detail-band .svc-card:hover {
  background-color: rgba(255, 255, 255, 0.09);
  box-shadow: -1px 9px 44px -1px rgba(71, 79, 97, 0.10);
}

.srv-pg .svc-detail-band .svc-card .card-num {
  font-size: 50px;
  font-weight: 900;
  color: rgba(239, 228, 172, 0.18);
  line-height: 1.1;
  position: absolute;
  top: 16px;
  right: 36px;
  letter-spacing: -0.02em;
}

.srv-pg .svc-detail-band .svc-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(239, 228, 172, 0.12);
  border: 1.5px solid rgba(239, 228, 172, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.srv-pg .svc-detail-band .svc-card .card-icon svg {
  width: 22px;
  height: 22px;
}

.srv-pg .svc-detail-band .svc-card .card-h {
  font-size: 20px;
  font-weight: 900;
  color: #EFE4AC;
  line-height: 1.4;
  margin-bottom: 8px;
}

.srv-pg .svc-detail-band .svc-card .card-p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(239, 228, 172, 0.65);
  margin-bottom: 16px;
}

.srv-pg .svc-detail-band .svc-card .card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.srv-pg .svc-detail-band .svc-card .card-list li {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(239, 228, 172, 0.55);
  padding: 8px 0;
  border-bottom: 1px solid rgba(239, 228, 172, 0.1);
}

.srv-pg .svc-detail-band .svc-card .card-list li:last-child {
  border-bottom: none;
}

.srv-pg .svc-detail-band .tag-fan-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.srv-pg .svc-detail-band .tag-fan-wrap .fan-label {
  font-size: 17px;
  color: rgba(239, 228, 172, 0.6);
  text-align: center;
}

.srv-pg .svc-detail-band .tag-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  position: relative;
}

.srv-pg .svc-detail-band .tag-group .tag-item {
  display: inline-block;
  padding: 8px 16px;
  border: 2px solid rgba(151, 165, 151, 0.35);
  border-radius: 6px;
  font-size: 15px;
  color: rgba(239, 228, 172, 0.7);
  background-color: rgba(151, 165, 151, 0.08);
  cursor: default;
  transition: border-color 0.2s ease-out, color 0.2s ease-out, transform 0.15s ease-out, background-color 0.2s ease-out;
  transform-origin: center bottom;
}

.srv-pg .svc-detail-band .tag-group:hover .tag-item {
  transform: translateY(-4px) rotate(-2deg);
  border-color: rgba(239, 228, 172, 0.55);
  color: #EFE4AC;
  background-color: rgba(239, 228, 172, 0.1);
}

.srv-pg .svc-detail-band .tag-group:hover .tag-item:nth-child(2n) {
  transform: translateY(-6px) rotate(1.5deg);
}

.srv-pg .svc-detail-band .tag-group:hover .tag-item:nth-child(3n) {
  transform: translateY(-3px) rotate(-1deg);
}

.srv-pg .svc-detail-band .tag-group:hover .tag-item:nth-child(4n) {
  transform: translateY(-8px) rotate(2.5deg);
}

.srv-pg .svc-detail-band .stat-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid rgba(239, 228, 172, 0.12);
}

.srv-pg .svc-detail-band .stat-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.srv-pg .svc-detail-band .stat-block .sb-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}

.srv-pg .svc-detail-band .stat-block .sb-icon svg {
  width: 36px;
  height: 36px;
}

.srv-pg .svc-detail-band .stat-block .sb-num {
  font-size: 50px;
  font-weight: 900;
  color: #EFE4AC;
  line-height: 1.1;
}

.srv-pg .svc-detail-band .stat-block .sb-desc {
  font-size: 15px;
  color: rgba(239, 228, 172, 0.55);
  line-height: 1.4;
  max-width: 160px;
}

.srv-pg .svc-detail-band .band-cta-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 72px;
}

.srv-pg .svc-detail-band .btn-light {
  display: inline-block;
  padding: 16px 36px;
  border: 3px solid #EFE4AC;
  border-radius: 6px;
  background-color: transparent;
  color: #EFE4AC;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.32s ease-out, background-color 0.22s ease-out;
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
}

.srv-pg .svc-detail-band .btn-light:hover {
  box-shadow: -1px 9px 44px -1px rgba(71, 79, 97, 0.10);
  background-color: rgba(239, 228, 172, 0.1);
}

@media (max-width: 1200px) {
  .srv-pg .offer-split {
    gap: 36px;
    padding: 72px 36px;
  }

  .srv-pg .svc-detail-band .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .srv-pg .svc-detail-band .stat-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .srv-pg .offer-split {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 72px 36px 36px 36px;
  }

  .srv-pg .offer-img-col {
    order: -1;
  }

  .srv-pg .img-clip-wrap img {
    height: 380px;
  }

  .srv-pg .offer-text .pg-h1 {
    font-size: 36px;
  }

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

  .srv-pg .svc-detail-band .stat-showcase {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .srv-pg .offer-text .stat-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .srv-pg .offer-split {
    padding: 36px 16px;
  }

  .srv-pg .offer-text .pg-h1 {
    font-size: 26px;
  }

  .srv-pg .offer-text .stat-row {
    gap: 16px;
  }

  .srv-pg .offer-text .cta-group {
    flex-direction: column;
  }

  .srv-pg .svc-detail-band .band-inner {
    padding: 36px 16px;
  }

  .srv-pg .svc-detail-band .band-h2 {
    font-size: 26px;
  }

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

  .srv-pg .img-clip-wrap img {
    height: 260px;
  }

  .srv-pg .offer-text .stat-num {
    font-size: 26px;
  }
}

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

.ptl-root .reveal-seq>* {
  opacity: 0;
  transform: translateY(18px);
  animation: ptl-reveal 0.38s ease-out forwards;
}

.ptl-root .reveal-seq>*:nth-child(1) {
  animation-delay: 0.08s;
}

.ptl-root .reveal-seq>*:nth-child(2) {
  animation-delay: 0.18s;
}

.ptl-root .reveal-seq>*:nth-child(3) {
  animation-delay: 0.28s;
}

.ptl-root .reveal-seq>*:nth-child(4) {
  animation-delay: 0.38s;
}

.ptl-root .reveal-seq>*:nth-child(5) {
  animation-delay: 0.45s;
}

@keyframes ptl-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ptl-root .band-top {
  width: 100%;
  height: 4px;
  background: linear-gradient(105deg, #474F61 0%, #97A597 55%, #EFE4AC 100%);
}

.ptl-root .ttl-blk {
  position: relative;
  padding: 72px 36px;
  background-color: #474F61;
  overflow: hidden;
}

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

.ptl-root .ttl-blk::after {
  content: "∑";
  position: absolute;
  right: -36px;
  bottom: -36px;
  font-size: 320px;
  line-height: 1.1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(239, 228, 172, 0.12);
  pointer-events: none;
  user-select: none;
}

.ptl-root .ttl-inner {
  position: relative;
  max-width: 820px;
}

.ptl-root .ttl-label {
  display: inline-block;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #EFE4AC;
  border: 2px solid rgba(239, 228, 172, 0.4);
  border-radius: 6px;
  padding: 4px 16px;
  margin-bottom: 36px;
}

.ptl-root .ttl-h1 {
  font-size: 68px;
  line-height: 1.1;
  color: #EFE4AC;
  font-weight: 900;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.ptl-root .ttl-h1 em {
  font-style: normal;
  color: #97A597;
}

.ptl-root .ttl-desc {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(239, 228, 172, 0.78);
  max-width: 560px;
  margin-bottom: 36px;
}

.ptl-root .ttl-img-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  margin-top: 36px;
}

.ptl-root .ttl-img-wrap {
  flex: 0 0 auto;
  width: 260px;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
  filter: saturate(0.6) brightness(0.88);
  transition: filter 0.22s ease-out;
}

.ptl-root .ttl-img-wrap:hover {
  filter: saturate(1) brightness(1);
}

.ptl-root .ttl-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ptl-root .ttl-stat-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 auto;
}

.ptl-root .ttl-stat {
  background: rgba(239, 228, 172, 0.08);
  border: 1px solid rgba(239, 228, 172, 0.18);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.ptl-root .ttl-stat-ico {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  position: relative;
}

.ptl-root .ttl-stat-ico svg {
  width: 36px;
  height: 36px;
}

.ptl-root .ttl-stat-dot {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  background: #97A597;
  border-radius: 32px;
  border: 2px solid #474F61;
}

.ptl-root .ttl-stat-txt {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(239, 228, 172, 0.82);
}

.ptl-root .ttl-stat-txt strong {
  display: block;
  font-size: 17px;
  color: #EFE4AC;
  font-weight: 700;
}

.ptl-root .team-sec {
  padding: 72px 36px;
  background-color: #f5f3ee;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.ptl-root .team-txt .sec-tag {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #97A597;
  margin-bottom: 16px;
  display: block;
}

.ptl-root .team-txt h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #474F61;
  font-weight: 900;
  margin-bottom: 36px;
}

.ptl-root .team-txt p {
  font-size: 17px;
  line-height: 1.6;
  color: #474F61;
  margin-bottom: 16px;
}

.ptl-root .team-creds {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(71, 79, 97, 0.15);
}

.ptl-root .team-cred-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(71, 79, 97, 0.12);
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}

.ptl-root .cred-ico {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: #97A597;
  border-radius: 0px;
  margin-top: 8px;
  transform: rotate(45deg);
}

.ptl-root .cred-body {
  flex: 1 1 auto;
}

.ptl-root .cred-body strong {
  font-size: 15px;
  color: #474F61;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.ptl-root .cred-body span {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(71, 79, 97, 0.72);
}

.ptl-root .team-img-side {
  position: relative;
}

.ptl-root .team-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: -1px 9px 44px -1px rgba(71, 79, 97, 0.10);
  filter: saturate(0.65);
  transition: filter 0.28s ease-out;
}

.ptl-root .team-img-frame:hover {
  filter: saturate(1);
}

.ptl-root .team-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ptl-root .team-accent-bar {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 80px;
  height: 6px;
  background: linear-gradient(105deg, #474F61 0%, #97A597 100%);
  border-radius: 6px;
}

.ptl-root .context-sec {
  padding: 72px 36px;
  background-color: #474F61;
  position: relative;
  overflow: hidden;
}

.ptl-root .context-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #EFE4AC 0%, #97A597 100%);
}

.ptl-root .context-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}

.ptl-root .context-left h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #EFE4AC;
  font-weight: 900;
  margin-bottom: 16px;
}

.ptl-root .context-left p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(239, 228, 172, 0.75);
  margin-bottom: 0;
}

.ptl-root .context-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.ptl-root .ctx-card {
  background: rgba(239, 228, 172, 0.07);
  border: 1px solid rgba(239, 228, 172, 0.15);
  border-radius: 10px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.ptl-root .ctx-card-txt h4 {
  font-size: 20px;
  line-height: 1.4;
  color: #EFE4AC;
  font-weight: 700;
  margin-bottom: 8px;
}

.ptl-root .ctx-card-txt p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(239, 228, 172, 0.72);
  margin-bottom: 0;
}

.ptl-root .ctx-img-wrap {
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  filter: saturate(0.5) brightness(0.8);
  transition: filter 0.35s ease-out;
}

.ptl-root .ctx-img-wrap:hover {
  filter: saturate(0.9) brightness(0.95);
}

.ptl-root .ctx-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ptl-root .infograph-strip {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin-top: 36px;
  border: 1px solid rgba(239, 228, 172, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.ptl-root .infograph-item {
  flex: 1 1 0;
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  border-right: 1px solid rgba(239, 228, 172, 0.12);
}

.ptl-root .infograph-item:last-child {
  border-right: none;
}

.ptl-root .inf-ico {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
}

.ptl-root .inf-ico svg {
  width: 28px;
  height: 28px;
}

.ptl-root .inf-lbl {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(239, 228, 172, 0.78);
}

.ptl-root .inf-lbl strong {
  display: block;
  color: #EFE4AC;
  font-size: 17px;
}

.ptl-root .obj-sec {
  padding: 72px 36px;
  background-color: #EFE4AC;
  display: flex;
  flex-direction: row;
  gap: 72px;
  align-items: flex-start;
}

.ptl-root .obj-num-col {
  flex: 0 0 auto;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-top: 8px;
}

.ptl-root .obj-big-num {
  font-size: 68px;
  line-height: 1.1;
  font-weight: 900;
  color: rgba(71, 79, 97, 0.18);
  letter-spacing: -0.04em;
}

.ptl-root .obj-num-label {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(71, 79, 97, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ptl-root .obj-body {
  flex: 1 1 auto;
}

.ptl-root .obj-body .sec-tag {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #474F61;
  margin-bottom: 16px;
  display: block;
  opacity: 0.65;
}

.ptl-root .obj-body h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #474F61;
  font-weight: 900;
  margin-bottom: 36px;
}

.ptl-root .obj-body p {
  font-size: 17px;
  line-height: 1.6;
  color: #474F61;
  margin-bottom: 16px;
}

.ptl-root .obj-concerns {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ptl-root .obj-concern {
  padding: 16px 0;
  border-bottom: 1px solid rgba(71, 79, 97, 0.2);
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  cursor: pointer;
  transition: background-color 0.2s ease-out;
}

.ptl-root .obj-concern:first-child {
  border-top: 1px solid rgba(71, 79, 97, 0.2);
}

.ptl-root .obj-concern-q {
  flex: 1 1 auto;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: #474F61;
}

.ptl-root .obj-concern-a {
  display: none;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(71, 79, 97, 0.8);
  padding-top: 8px;
}

.ptl-root .obj-concern.open .obj-concern-a {
  display: block;
}

.ptl-root .obj-concern-toggle {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 2px solid #474F61;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.18s ease-out, border-color 0.18s ease-out;
}

.ptl-root .obj-concern.open .obj-concern-toggle {
  background: #474F61;
}

.ptl-root .obj-concern-toggle svg {
  width: 14px;
  height: 14px;
  stroke: #474F61;
  transition: stroke 0.18s ease-out, transform 0.22s ease-out;
}

.ptl-root .obj-concern.open .obj-concern-toggle svg {
  stroke: #EFE4AC;
  transform: rotate(45deg);
}

.ptl-root .evidence-sec {
  padding: 72px 36px;
  background: linear-gradient(162deg, #f5f3ee 0%, rgba(151, 165, 151, 0.15) 100%);
}

.ptl-root .evidence-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 36px;
}

.ptl-root .evidence-top h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #474F61;
  font-weight: 900;
  margin-bottom: 0;
}

.ptl-root .evidence-top p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(71, 79, 97, 0.78);
  margin-bottom: 0;
}

.ptl-root .evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.ptl-root .ev-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05), -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
  border: 1px solid rgba(71, 79, 97, 0.08);
  transition: box-shadow 0.25s ease-out, transform 0.25s ease-out;
}

.ptl-root .ev-card:hover {
  box-shadow: -1px 9px 44px -1px rgba(71, 79, 97, 0.10);
  transform: translateY(-4px);
}

.ptl-root .ev-card-name {
  font-size: 17px;
  font-weight: 700;
  color: #474F61;
  margin-bottom: 4px;
}

.ptl-root .ev-card-role {
  font-size: 15px;
  color: #97A597;
  margin-bottom: 16px;
}

.ptl-root .ev-card-body {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(71, 79, 97, 0.8);
  margin-bottom: 16px;
}

.ptl-root .ev-card-bar {
  height: 3px;
  background: linear-gradient(90deg, #97A597 0%, #EFE4AC 100%);
  border-radius: 6px;
}

.ptl-root .ev-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ptl-root .ev-img-wrap {
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
  filter: saturate(0.6);
  transition: filter 0.3s ease-out;
}

.ptl-root .ev-img-wrap:hover {
  filter: saturate(1);
}

.ptl-root .ev-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ptl-root .ev-scale-strip {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 36px;
}

.ptl-root .ev-scale-item {
  flex: 1 1 0;
  background: rgba(71, 79, 97, 0.06);
  border-radius: 10px;
  padding: 16px;
  border-left: 4px solid #97A597;
  border-top: 1px solid rgba(71, 79, 97, 0.1);
  border-right: 1px solid rgba(71, 79, 97, 0.1);
  border-bottom: 1px solid rgba(71, 79, 97, 0.1);
}

.ptl-root .ev-scale-num {
  font-size: 26px;
  font-weight: 900;
  color: #474F61;
  line-height: 1.1;
  margin-bottom: 4px;
}

.ptl-root .ev-scale-desc {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(71, 79, 97, 0.72);
}

@media (max-width: 1200px) {
  .ptl-root .ttl-h1 {
    font-size: 50px;
  }

  .ptl-root .context-grid {
    grid-template-columns: 280px 1fr;
    gap: 36px;
  }

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

  .ptl-root .ctx-img-wrap {
    height: 120px;
  }

  .ptl-root .evidence-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .ptl-root .ttl-h1 {
    font-size: 36px;
  }

  .ptl-root .ttl-img-row {
    flex-direction: column;
  }

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

  .ptl-root .team-sec {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ptl-root .context-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ptl-root .obj-sec {
    flex-direction: column;
    gap: 36px;
  }

  .ptl-root .obj-num-col {
    width: 100%;
    flex-direction: row;
    align-items: center;
  }

  .ptl-root .evidence-top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ptl-root .evidence-grid {
    grid-template-columns: 1fr;
  }

  .ptl-root .ev-img-row {
    grid-template-columns: 1fr;
  }

  .ptl-root .ev-scale-strip {
    flex-direction: column;
  }

  .ptl-root .infograph-strip {
    flex-direction: column;
  }

  .ptl-root .infograph-item {
    border-right: none;
    border-bottom: 1px solid rgba(239, 228, 172, 0.12);
  }

  .ptl-root .infograph-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .ptl-root .ttl-blk {
    padding: 36px 16px;
  }

  .ptl-root .ttl-h1 {
    font-size: 26px;
  }

  .ptl-root .team-sec {
    padding: 36px 16px;
  }

  .ptl-root .context-sec {
    padding: 36px 16px;
  }

  .ptl-root .obj-sec {
    padding: 36px 16px;
  }

  .ptl-root .evidence-sec {
    padding: 36px 16px;
  }

  .ptl-root .ctx-card {
    padding: 16px;
  }

  .ptl-root .ev-card {
    padding: 16px;
  }

  .ptl-root .ttl-stat-col {
    display: none;
  }
}

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

.cont-us .pg-top {
  background-color: #474F61;
  padding: 72px 16px;
  position: relative;
  overflow: hidden;
}

.cont-us .pg-top::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(239, 228, 172, 0.12);
  pointer-events: none;
}

.cont-us .pg-top::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(239, 228, 172, 0.08);
  pointer-events: none;
}

.cont-us .top-circ {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(151, 165, 151, 0.1);
  pointer-events: none;
}

.cont-us .top-circ-sm {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(151, 165, 151, 0.07);
  pointer-events: none;
}

.cont-us .top-inner {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cont-us .top-label {
  display: inline-block;
  font-size: 15px;
  line-height: 1.4;
  color: #EFE4AC;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}

.cont-us .top-head {
  font-size: 50px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 16px;
  max-width: 600px;
}

.cont-us .top-desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
}

.cont-us .form-contact {
  background: #f5f3ee;
  padding: 72px 16px;
  position: relative;
}

.cont-us .form-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(105deg, #97A597 0%, #EFE4AC 60%, rgba(71, 79, 97, 0.3) 100%);
}

.cont-us .fc-grid {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}

.cont-us .fc-side {
  position: sticky;
  top: 36px;
}

.cont-us .side-label {
  font-size: 15px;
  line-height: 1.4;
  color: #97A597;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cont-us .side-head {
  font-size: 26px;
  line-height: 1.1;
  color: #474F61;
  font-weight: 900;
  margin-bottom: 16px;
}

.cont-us .side-text {
  font-size: 15px;
  line-height: 1.6;
  color: #474F61;
  opacity: 0.78;
  margin-bottom: 36px;
}

.cont-us .contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cont-us .contact-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(71, 79, 97, 0.12);
  font-size: 15px;
  line-height: 1.6;
  color: #474F61;
}

.cont-us .contact-list li:last-child {
  border-bottom: none;
}

.cont-us .cl-lbl {
  display: block;
  font-size: 15px;
  color: #97A597;
  font-weight: 700;
  margin-bottom: 4px;
}

.cont-us .cl-val {
  display: block;
  font-size: 15px;
  color: #474F61;
  line-height: 1.6;
}

.cont-us .cl-val a {
  color: #474F61;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: text-underline-offset 0.22s ease-out, opacity 0.18s ease-out;
}

.cont-us .cl-val a:hover {
  opacity: 0.65;
  text-underline-offset: 1px;
}

.cont-us .fc-form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11), -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
}

.cont-us .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.cont-us .field-grp {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 16px;
}

.cont-us .field-grp.no-mb {
  margin-bottom: 0;
}

.cont-us .field-grp label {
  font-size: 15px;
  color: #474F61;
  font-weight: 700;
  margin-bottom: 8px;
  transition: color 0.2s ease-out;
}

.cont-us .field-grp:focus-within label {
  color: #97A597;
}

.cont-us .f-input {
  border: 2px solid rgba(71, 79, 97, 0.2);
  border-radius: 10px;
  padding: 16px;
  font-size: 17px;
  line-height: 1.4;
  color: #474F61;
  background: #f5f3ee;
  outline: none;
  transition: border-color 0.25s ease-out, box-shadow 0.2s ease-out, background 0.2s ease-out;
  width: 100%;
  box-sizing: border-box;
}

.cont-us .f-input::placeholder {
  color: rgba(71, 79, 97, 0.4);
  font-size: 15px;
}

.cont-us .f-input:focus {
  border-color: #97A597;
  background: #ffffff;
  box-shadow: inset 0 2px 8px rgba(151, 165, 151, 0.12);
}

.cont-us .f-textarea {
  min-height: 140px;
  resize: vertical;
}

.cont-us .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 36px;
  margin-top: 8px;
}

.cont-us .priv-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid rgba(71, 79, 97, 0.3);
  border-radius: 6px;
  margin-top: 2px;
  accent-color: #474F61;
  cursor: pointer;
}

.cont-us .priv-txt {
  font-size: 15px;
  line-height: 1.6;
  color: #474F61;
  opacity: 0.78;
}

.cont-us .priv-txt a {
  color: #474F61;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: text-underline-offset 0.18s ease-out, opacity 0.15s ease-out;
}

.cont-us .priv-txt a:hover {
  opacity: 0.6;
  text-underline-offset: 1px;
}

.cont-us .submit-btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: #474F61;
  background: transparent;
  border: 3px solid #474F61;
  border-radius: 10px;
  cursor: pointer;
  transition: box-shadow 0.28s ease-out, background 0.22s ease-out, color 0.22s ease-out;
  letter-spacing: 0.02em;
}

.cont-us .submit-btn:hover {
  background: #474F61;
  color: #EFE4AC;
  box-shadow: -1px 9px 44px -1px rgba(71, 79, 97, 0.10), -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
}

.cont-us .submit-btn:focus {
  outline: 3px solid #97A597;
  outline-offset: 3px;
}

.cont-us .submit-btn:active {
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
}

.cont-us .form-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 36px 0 0;
}

.cont-us .form-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(71, 79, 97, 0.2);
}

.cont-us .top-anim .top-label {
  animation: cascFade 0.35s ease-out both;
  animation-delay: 0.05s;
}

.cont-us .top-anim .top-head {
  animation: cascFade 0.4s ease-out both;
  animation-delay: 0.15s;
}

.cont-us .top-anim .top-desc {
  animation: cascFade 0.45s ease-out both;
  animation-delay: 0.25s;
}

@keyframes cascFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@media (max-width: 900px) {
  .cont-us .fc-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cont-us .fc-side {
    position: static;
  }

  .cont-us .top-head {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .cont-us .form-row {
    grid-template-columns: 1fr;
  }

  .cont-us .pg-top {
    padding: 36px 16px;
  }

  .cont-us .top-head {
    font-size: 26px;
  }

  .cont-us .fc-form-wrap {
    padding: 16px;
  }

  .cont-us .form-contact {
    padding: 36px 16px;
  }
}

.success-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 16px;
  background: linear-gradient(172deg, #ffffff 60%, rgba(151, 165, 151, 0.12) 100%);
}

.success-page .confirm-wrap {
  max-width: 560px;
  width: 100%;
  text-align: center;
  padding: 72px 36px;
  background: #ffffff;
  border-radius: 18px;
  border: 2px solid rgba(71, 79, 97, 0.13);
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11), -1px 9px 44px -1px rgba(71, 79, 97, 0.10);
}

.success-page .confirm-wrap .icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 36px;
  border-radius: 50%;
  border: 2.5px solid #97A597;
  background: rgba(151, 165, 151, 0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 8px rgba(151, 165, 151, 0.18);
}

.success-page .confirm-wrap .icon-wrap svg {
  display: block;
}

.success-page .confirm-wrap .confirm-heading {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  color: #474F61;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.success-page .confirm-wrap .confirm-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(71, 79, 97, 0.78);
  margin: 0 0 36px;
}

.success-page .confirm-wrap .divider-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #97A597 0%, #EFE4AC 100%);
  border-radius: 6px;
  margin: 0 auto 36px;
}

.success-page .confirm-wrap .info-note {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(71, 79, 97, 0.62);
  margin: 0 0 36px;
  padding: 16px;
  background: rgba(239, 228, 172, 0.18);
  border-radius: 10px;
  border-left: 3px solid #EFE4AC;
  border-top: 1px solid rgba(239, 228, 172, 0.4);
  text-align: left;
}

.success-page .confirm-wrap .back-btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #474F61;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 10px;
  border: 2.5px solid #474F61;
  background: transparent;
  transition: box-shadow 0.22s ease-out, background 0.18s ease-out, color 0.18s ease-out;
  letter-spacing: 0.01em;
}

.success-page .confirm-wrap .back-btn:hover {
  background: #474F61;
  color: #ffffff;
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.22);
}

.success-page .confirm-wrap .back-btn:focus {
  outline: 3px solid rgba(151, 165, 151, 0.6);
  outline-offset: 3px;
}

.success-page .confirm-wrap .back-btn:active {
  background: rgba(71, 79, 97, 0.88);
  color: #ffffff;
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.08);
}

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

  .success-page .confirm-wrap {
    padding: 36px 16px;
  }

  .success-page .confirm-wrap .confirm-heading {
    font-size: 26px;
  }
}

.not-found-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 36px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.not-found-page .error-band {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(105deg, #474F61 0%, #474F61 38%, #97A597 62%, #EFE4AC 100%);
}

.not-found-page .error-wrap {
  max-width: 1366px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.not-found-page .error-code-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.not-found-page .error-code-block .code-bg {
  font-size: 68px;
  line-height: 1.1;
  font-weight: 900;
  color: #474F61;
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
}

.not-found-page .error-code-block .code-bg::before {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(239, 228, 172, 0.38) 0%, rgba(151, 165, 151, 0.18) 100%);
  border-radius: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  box-shadow: inset 0 2px 12px rgba(71, 79, 97, 0.08);
}

.not-found-page .error-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #97A597 0%, #EFE4AC 100%);
  border-radius: 6px;
  margin: 0 auto;
}

.not-found-page .error-heading {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  color: #474F61;
  text-align: center;
  letter-spacing: -0.5px;
  margin: 0;
}

.not-found-page .error-body {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(71, 79, 97, 0.78);
  text-align: center;
  max-width: 480px;
  margin: 0;
}

.not-found-page .error-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.not-found-page .btn-primary {
  display: inline-block;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: #474F61;
  background: transparent;
  border: 2.5px solid #474F61;
  border-radius: 10px;
  padding: 16px 36px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
  transition: box-shadow 0.22s ease-out, background 0.18s ease-out, color 0.18s ease-out;
  cursor: pointer;
}

.not-found-page .btn-primary:hover,
.not-found-page .btn-primary:focus {
  background: #474F61;
  color: #ffffff;
  box-shadow: -1px 6px 28px -1px rgba(71, 79, 97, 0.11);
  outline: none;
}

.not-found-page .btn-primary:active {
  box-shadow: -1px 3px 3px -1px rgba(71, 79, 97, 0.05);
}

.not-found-page .btn-secondary {
  display: inline-block;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: #97A597;
  background: transparent;
  border: 2.5px solid #97A597;
  border-radius: 10px;
  padding: 16px 36px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: -1px 3px 3px -1px rgba(151, 165, 151, 0.05);
  transition: box-shadow 0.28s ease-out, background 0.22s ease-out, color 0.22s ease-out;
  cursor: pointer;
}

.not-found-page .btn-secondary:hover,
.not-found-page .btn-secondary:focus {
  background: #97A597;
  color: #ffffff;
  box-shadow: -1px 6px 28px -1px rgba(151, 165, 151, 0.11);
  outline: none;
}

.not-found-page .btn-secondary:active {
  box-shadow: -1px 3px 3px -1px rgba(151, 165, 151, 0.05);
}

.not-found-page .nav-hints {
  display: flex;
  flex-direction: row;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  border-top: 1px solid rgba(71, 79, 97, 0.12);
  padding-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.not-found-page .nav-hints li {
  padding: 0 16px;
  border-right: 1px solid rgba(71, 79, 97, 0.15);
}

.not-found-page .nav-hints li:last-child {
  border-right: none;
}

.not-found-page .nav-hints a {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(71, 79, 97, 0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease-out, text-underline-offset 0.2s ease-out;
}

.not-found-page .nav-hints a:hover,
.not-found-page .nav-hints a:focus {
  color: #474F61;
  text-underline-offset: 1px;
  outline: none;
}

@media (max-width: 600px) {
  .not-found-page {
    padding: 72px 16px;
  }

  .not-found-page .error-heading {
    font-size: 26px;
  }

  .not-found-page .error-code-block .code-bg {
    font-size: 50px;
  }

  .not-found-page .error-actions {
    flex-direction: column;
    align-items: center;
  }

  .not-found-page .nav-hints {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .not-found-page .nav-hints li {
    border-right: none;
    border-bottom: 1px solid rgba(71, 79, 97, 0.12);
    padding: 0 0 16px 0;
    width: 100%;
    text-align: center;
  }

  .not-found-page .nav-hints li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .not-found-page {
    padding: 72px 36px;
  }
}