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

body {
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
}

*:focus {
  outline: none;
  border-bottom: 4px solid #07FF8D;
}

::selection {
  background: #07FF8D;
  color: #10222D;
}

.hx-top {
  background: linear-gradient(135deg, #10222D 0%, #1a3545 100%);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-pod {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hex-frame {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FCFDFE;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  box-shadow: 0 7px 20px 0 rgba(7, 255, 141, 0.09);
  flex-shrink: 0;
}

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

.brand-lbl {
  font-family: 'Bitter', serif;
  font-size: 24px;
  font-weight: 700;
  color: #FCFDFE;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
}

.brand-lbl span {
  color: #07FF8D;
}

.hx-flag {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hx-flag .fi {
  font-size: 24px;
  border-radius: 5px;
  box-shadow: 0 3px 5px 0 rgba(16, 34, 45, 0.08);
}

.hx-bot {
  background: #FCFDFE;
  border-bottom: 2px solid #07FF8D;
  box-shadow: 0 3px 5px 0 rgba(16, 34, 45, 0.08);
}

.nav-deck {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
}

.nav-deck a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #10222D;
  text-decoration: none;
  padding: 16px 16px;
  display: inline-flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: color 0.25s ease-out, border-color 0.2s ease-out, background-color 0.15s ease-out;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-deck a:hover {
  color: #07FF8D;
  border-bottom-color: #07FF8D;
  background: rgba(7, 255, 141, 0.06);
}

.nav-deck a:focus {
  border-bottom: 4px solid #07FF8D;
  color: #10222D;
}

.ck-popup {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  margin: auto;
  width: 480px;
  max-width: calc(100vw - 32px);
  background: #FCFDFE;
  border-radius: 5px;
  box-shadow: 0 12px 44px 0 rgba(16, 34, 45, 0.13);
  z-index: 1000;
  padding: 32px;
  box-sizing: border-box;
  transform: translateX(120%);
  transition: transform 0.18s ease-out;
}

.ck-popup.vis {
  transform: translateX(0);
}

.ck-hdl {
  font-family: 'Bitter', serif;
  font-size: 16px;
  font-weight: 700;
  color: #10222D;
  margin-bottom: 8px;
  line-height: 1.2;
}

.ck-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #10222D;
  line-height: 1.65;
  margin-bottom: 16px;
}

.ck-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.ck-opt label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #10222D;
  line-height: 1.45;
  cursor: pointer;
}

.ck-opt input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #07FF8D;
  cursor: pointer;
  flex-shrink: 0;
}

.ck-btns {
  display: flex;
  gap: 8px;
}

.ck-btns button {
  flex: 1;
  padding: 16px 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 0.2s ease-out, color 0.2s ease-out;
  min-height: 44px;
}

.ck-btns button:active {
  transform: scale(0.97);
}

.ck-acc {
  background: #07FF8D;
  color: #10222D;
}

.ck-acc:hover {
  background: #05d978;
}

.ck-dec {
  background: #10222D;
  color: #FCFDFE;
}

.ck-dec:hover {
  background: #1a3545;
}

.pref-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: #10222D;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 7px 20px 0 rgba(16, 34, 45, 0.09);
  z-index: 999;
  transition: background-color 0.2s ease-out;
}

.pref-btn:hover {
  background: #07FF8D;
}

.pref-btn svg {
  width: 20px;
  height: 20px;
  fill: #FCFDFE;
  transition: fill 0.2s ease-out;
}

.pref-btn:hover svg {
  fill: #10222D;
}

.ft-base {
  background: linear-gradient(180deg, #FCFDFE 0%, rgba(7, 255, 141, 0.06) 100%);
  border-top: 2px solid rgba(16, 34, 45, 0.08);
  padding: 32px 0 16px;
}

.ft-deck {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 32px;
}

.ft-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.ft-brand {
  flex: 1;
  min-width: 200px;
}

.ft-logo-cell {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.ft-hex {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #10222D;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  box-shadow: 0 7px 20px 0 rgba(7, 255, 141, 0.09);
}

.ft-hex img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.ft-name {
  font-family: 'Bitter', serif;
  font-size: 16px;
  font-weight: 700;
  color: #10222D;
  margin-bottom: 8px;
  line-height: 1.2;
}

.ft-name span {
  color: #07FF8D;
}

.ft-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #10222D;
  line-height: 1.65;
  opacity: 0.7;
  margin-bottom: 16px;
}

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

.ft-contacts a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #10222D;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease-out;
}

.ft-contacts a:hover {
  color: #07FF8D;
}

.ft-contact-lbl {
  font-weight: 600;
  font-size: 14px;
  opacity: 0.6;
  min-width: 64px;
}

.ft-nav-pod {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.ft-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 140px;
}

.ft-col-hd {
  font-family: 'Bitter', serif;
  font-size: 14px;
  font-weight: 700;
  color: #10222D;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.ft-col a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #10222D;
  text-decoration: none;
  line-height: 1.45;
  opacity: 0.75;
  transition: opacity 0.2s ease-out, color 0.15s ease-out;
  padding: 4px 0;
}

.ft-col a:hover {
  opacity: 1;
  color: #07FF8D;
}

.ft-sep {
  border: none;
  border-top: 1px solid rgba(16, 34, 45, 0.1);
  margin: 16px 0;
}

.ft-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.ft-copy-txt {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #10222D;
  opacity: 0.55;
  line-height: 1.45;
}

.ft-flag-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ft-flag-cell .fi {
  font-size: 18px;
  border-radius: 5px;
  box-shadow: 0 3px 5px 0 rgba(16, 34, 45, 0.08);
}

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

  .nav-deck {
    padding: 0 16px;
    flex-wrap: wrap;
  }

  .nav-deck a {
    padding: 12px 8px;
    font-size: 14px;
  }

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

  .ft-row {
    flex-direction: column;
    gap: 32px;
  }

  .ft-nav-pod {
    gap: 16px;
  }

  .ck-popup {
    width: calc(100vw - 32px);
  }

  .pref-btn {
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 640px) {
  .brand-lbl {
    font-size: 16px;
  }

  .hex-frame {
    width: 56px;
    height: 56px;
  }

  .hex-frame img {
    width: 44px;
    height: 44px;
  }

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

.lx-policy-text {
  max-width: 1024px;
  margin: 0 auto;
  padding: 32px 16px;
  color: #10222D;
  background: #FCFDFE;
}

.lx-policy-text h1 {
  font-size: 46px;
  line-height: 1.2;
  color: #10222D;
  margin-bottom: 32px;
  margin-top: 0;
  letter-spacing: -0.5px;
}

.lx-policy-text h2 {
  font-size: 33px;
  line-height: 1.2;
  color: #10222D;
  margin-top: 32px;
  margin-bottom: 16px;
}

.lx-policy-text h3 {
  font-size: 24px;
  line-height: 1.45;
  color: #10222D;
  margin-top: 32px;
  margin-bottom: 16px;
}

.lx-policy-text h4 {
  font-size: 16px;
  line-height: 1.45;
  color: #10222D;
  margin-top: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lx-policy-text h5 {
  font-size: 14px;
  line-height: 1.45;
  color: #10222D;
  margin-top: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lx-policy-text h6 {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.65);
  margin-top: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lx-policy-text p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.88);
  margin-top: 0;
  margin-bottom: 16px;
}

.lx-policy-text ul {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 32px;
  list-style: none;
}

.lx-policy-text ul li {
  position: relative;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.88);
  margin-bottom: 8px;
  padding-left: 16px;
}

.lx-policy-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 40px;
  background: #07FF8D;
  box-shadow: 0 3px 5px 0 rgba(7, 255, 141, 0.08);
}

.lx-policy-text ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 32px;
  list-style: none;
  counter-reset: policy-counter;
}

.lx-policy-text ol li {
  position: relative;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.88);
  margin-bottom: 8px;
  padding-left: 16px;
  counter-increment: policy-counter;
}

.lx-policy-text ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: -16px;
  top: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #07FF8D;
  font-weight: 700;
  min-width: 24px;
}

.lx-policy-text ul ul,
.lx-policy-text ol ol,
.lx-policy-text ul ol,
.lx-policy-text ol ul {
  margin-top: 8px;
  margin-bottom: 4px;
}

.lx-policy-text em,
.lx-policy-text i {
  font-style: italic;
  color: rgba(16, 34, 45, 0.75);
}

.lx-policy-text a {
  color: #10222D;
  text-decoration: underline;
  text-decoration-color: #07FF8D;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 0.2s ease-out, text-decoration-color 0.25s ease-out;
}

.lx-policy-text a:hover {
  color: rgba(16, 34, 45, 0.65);
  text-decoration-color: rgba(7, 255, 141, 0.45);
}

.lx-policy-text a:active {
  color: #10222D;
  text-decoration-color: #07FF8D;
}

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

  .lx-policy-text h1 {
    font-size: 33px;
  }

  .lx-policy-text h2 {
    font-size: 24px;
  }

  .lx-policy-text h3 {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .lx-policy-text h1 {
    font-size: 24px;
  }

  .lx-policy-text h2 {
    font-size: 16px;
  }

  .lx-policy-text ul,
  .lx-policy-text ol {
    padding-left: 16px;
  }
}

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

.bld .pg-wrap {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}

.bld .reveal-el {
  animation: revealRot 0.45s ease-out both;
}

@keyframes revealRot {
  from {
    opacity: 0;
    transform: rotate(-1.5deg) translateY(12px);
  }

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

.bld .reveal-el.d1 {
  animation-delay: 0.08s;
}

.bld .reveal-el.d2 {
  animation-delay: 0.18s;
}

.bld .reveal-el.d3 {
  animation-delay: 0.28s;
}

.bld .ttl-blk {
  position: relative;
  background: linear-gradient(180deg, #10222D 0%, #0d1e28 55%, rgba(16, 34, 45, 0.88) 100%);
  padding: 64px 0 0 0;
  overflow: hidden;
}

.bld .ttl-blk::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(7, 255, 141, 0.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(7, 255, 141, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.bld .noise-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.bld .ttl-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  z-index: 1;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}

.bld .ttl-text-zone {
  flex: 1 1 55%;
  padding: 32px 0 48px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bld .ttl-img-zone {
  flex: 1 1 45%;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  padding-top: 48px;
  min-height: 320px;
}

.bld .ttl-img-zone img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
  display: block;
  mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  transition: opacity 0.25s ease-out;
}

.bld .meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bld .tag-chip {
  display: inline-block;
  background: rgba(7, 255, 141, 0.15);
  color: #07FF8D;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(7, 255, 141, 0.3);
}

.bld .cat-chip {
  display: inline-block;
  background: rgba(252, 253, 254, 0.08);
  color: rgba(252, 253, 254, 0.65);
  font-size: 14px;
  padding: 4px 16px;
  border-radius: 5px;
  border: 1px solid rgba(252, 253, 254, 0.12);
}

.bld .ttl-h1 {
  font-size: 46px;
  line-height: 1.2;
  color: #FCFDFE;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
}

.bld .ttl-h1 .punct {
  color: #07FF8D;
}

.bld .ttl-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(252, 253, 254, 0.72);
  margin: 0;
}

.bld .ttl-info-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid rgba(252, 253, 254, 0.1);
}

.bld .ttl-author {
  font-size: 14px;
  color: rgba(252, 253, 254, 0.55);
}

.bld .ttl-author span {
  color: #FCFDFE;
  font-weight: 600;
}

.bld .ttl-date {
  font-size: 14px;
  color: rgba(252, 253, 254, 0.45);
}

.bld .read-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: rgba(252, 253, 254, 0.5);
}

.bld .read-badge svg {
  flex-shrink: 0;
}

.bld .like-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: rgba(7, 255, 141, 0.8);
  margin-left: auto;
}

.bld .like-badge svg {
  flex-shrink: 0;
}

.bld .corner-rects {
  position: absolute;
  top: 16px;
  right: 16px;
  pointer-events: none;
  z-index: 0;
}

.bld .corner-rects span {
  display: block;
  position: absolute;
  border: 1px solid rgba(7, 255, 141, 0.18);
  border-radius: 5px;
}

.bld .corner-rects span:nth-child(1) {
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
}

.bld .corner-rects span:nth-child(2) {
  width: 60px;
  height: 60px;
  top: -10px;
  right: -10px;
}

.bld .corner-rects span:nth-child(3) {
  width: 80px;
  height: 80px;
  top: -20px;
  right: -20px;
}

.bld .art-body {
  background: #FCFDFE;
  padding: 64px 0 48px 0;
}

.bld .art-grid {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.bld .art-txt {
  flex: 1 1 65%;
}

.bld .art-sidebar {
  flex: 0 0 260px;
  padding-top: 48px;
}

.bld .art-txt p {
  font-size: 16px;
  line-height: 1.65;
  color: #10222D;
  margin: 0 0 16px 0;
}

.bld .art-txt h2 {
  font-size: 24px;
  line-height: 1.45;
  color: #10222D;
  font-weight: 700;
  margin: 32px 0 16px 0;
}

.bld .art-txt h3 {
  font-size: 16px;
  line-height: 1.45;
  color: #10222D;
  font-weight: 700;
  margin: 24px 0 8px 0;
}

.bld .art-txt small {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.6);
  display: block;
  margin-bottom: 16px;
}

.bld .art-txt mark {
  background: rgba(7, 255, 141, 0.22);
  color: #10222D;
  padding: 0 4px;
  border-radius: 5px;
}

.bld .art-txt ol {
  padding-left: 16px;
  margin: 0 0 16px 0;
}

.bld .art-txt ol li {
  font-size: 16px;
  line-height: 1.65;
  color: #10222D;
  margin-bottom: 8px;
}

.bld .art-txt a {
  color: #10222D;
  text-decoration: underline;
  text-decoration-color: rgba(16, 34, 45, 0.3);
  transition: text-decoration-color 0.2s ease-out, color 0.2s ease-out;
}

.bld .art-txt a:hover {
  color: #07FF8D;
  text-decoration-color: #07FF8D;
}

.bld .sb-card {
  background: #10222D;
  border-radius: 5px;
  padding: 32px;
  box-shadow: 0 7px 20px 0 rgba(16, 34, 45, 0.09);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.bld .sb-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(7, 255, 141, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.bld .sb-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #07FF8D;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px 0;
}

.bld .sb-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(252, 253, 254, 0.75);
  margin: 0 0 16px 0;
}

.bld .sb-btn {
  display: inline-block;
  background: #07FF8D;
  color: #10222D;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: opacity 0.2s ease-out, transform 0.15s ease-out;
  border: none;
  cursor: pointer;
}

.bld .sb-btn:hover {
  opacity: 0.88;
}

.bld .sb-btn:active {
  transform: scale(0.97);
}

.bld .sb-icon-anchor {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bld .sb-icon-anchor svg {
  width: 56px;
  height: 56px;
  opacity: 0.9;
}

.bld .divider-arrows {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 0;
  background: #FCFDFE;
}

.bld .divider-arrows span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(7, 255, 141, 0.5);
  border-bottom: 2px solid rgba(7, 255, 141, 0.5);
  transform: rotate(-45deg);
}

.bld .metrics-sec {
  background: linear-gradient(180deg, #10222D 0%, rgba(16, 34, 45, 0.95) 100%);
  padding: 64px 0;
  position: relative;
}

.bld .metrics-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 50% 50%, rgba(7, 255, 141, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.bld .met-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.bld .met-heading {
  font-size: 33px;
  line-height: 1.2;
  color: #FCFDFE;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px 0;
}

.bld .met-heading .dot {
  color: #07FF8D;
}

.bld .met-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(252, 253, 254, 0.6);
  margin: 0 0 32px 0;
}

.bld .met-grid {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.bld .met-card {
  flex: 1 1 180px;
  background: rgba(252, 253, 254, 0.05);
  border: 1px solid rgba(7, 255, 141, 0.15);
  border-radius: 5px;
  padding: 32px 16px;
  text-align: center;
  box-shadow: 0 3px 5px 0 rgba(7, 255, 141, 0.08);
  transition: border-color 0.25s ease-out, background 0.25s ease-out;
}

.bld .met-card:hover {
  background: rgba(7, 255, 141, 0.07);
  border-color: rgba(7, 255, 141, 0.4);
}

.bld .met-val {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 900;
  color: #07FF8D;
  display: block;
  margin-bottom: 8px;
}

.bld .met-label {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(252, 253, 254, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bld .met-bar-row {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.bld .bar-label-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.bld .bar-lbl {
  font-size: 14px;
  color: rgba(252, 253, 254, 0.7);
}

.bld .bar-pct {
  font-size: 14px;
  color: #07FF8D;
  font-weight: 700;
}

.bld .bar-track {
  height: 6px;
  background: rgba(252, 253, 254, 0.08);
  border-radius: 40px;
  overflow: hidden;
}

.bld .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #07FF8D 0%, rgba(7, 255, 141, 0.5) 100%);
  border-radius: 40px;
  animation: barGrow 0.4s ease-out both;
}

@keyframes barGrow {
  from {
    width: 0;
  }
}

.bld .bar-fill.w82 {
  width: 82%;
  animation-delay: 0.1s;
}

.bld .bar-fill.w67 {
  width: 67%;
  animation-delay: 0.2s;
}

.bld .bar-fill.w91 {
  width: 91%;
  animation-delay: 0.3s;
}

.bld .bar-fill.w74 {
  width: 74%;
  animation-delay: 0.15s;
}

.bld .cta-sec {
  background: #FCFDFE;
  padding: 64px 0;
}

.bld .cta-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.bld .cta-left {
  flex: 1 1 55%;
}

.bld .cta-right {
  flex: 0 0 320px;
}

.bld .cta-label {
  font-size: 14px;
  color: #07FF8D;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}

.bld .cta-h2 {
  font-size: 33px;
  line-height: 1.2;
  color: #10222D;
  font-weight: 800;
  margin: 0 0 16px 0;
}

.bld .cta-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.7);
  margin: 0 0 32px 0;
}

.bld .cta-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bld .cta-link-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #10222D;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 5px;
  border: 1px solid rgba(16, 34, 45, 0.1);
  background: rgba(16, 34, 45, 0.03);
  transition: background 0.2s ease-out, border-color 0.2s ease-out;
}

.bld .cta-link-item:hover {
  background: rgba(7, 255, 141, 0.08);
  border-color: rgba(7, 255, 141, 0.4);
}

.bld .cta-link-item svg {
  flex-shrink: 0;
}

.bld .form-card {
  background: #10222D;
  border-radius: 5px;
  padding: 32px;
  box-shadow: 0 12px 44px 0 rgba(16, 34, 45, 0.13);
}

.bld .form-card-ttl {
  font-size: 16px;
  font-weight: 700;
  color: #FCFDFE;
  margin: 0 0 16px 0;
}

.bld .form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.bld .form-field label {
  font-size: 14px;
  color: rgba(252, 253, 254, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.bld .form-field input,
.bld .form-field textarea {
  background: rgba(252, 253, 254, 0.06);
  border: 1px solid rgba(252, 253, 254, 0.12);
  border-radius: 5px;
  padding: 8px 16px;
  font-size: 14px;
  color: #FCFDFE;
  outline: none;
  transition: border-color 0.2s ease-out;
  resize: none;
}

.bld .form-field input::placeholder,
.bld .form-field textarea::placeholder {
  color: rgba(252, 253, 254, 0.3);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.bld .form-field input:focus-visible,
.bld .form-field textarea:focus-visible {
  border-color: #07FF8D !important;
  box-shadow: 0 0 0 2px rgba(7, 255, 141, 0.18) !important;
}

.bld .form-submit {
  width: 100%;
  background: #07FF8D;
  color: #10222D;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  padding: 16px;
  cursor: pointer;
  transition: opacity 0.2s ease-out, transform 0.15s ease-out;
}

.bld .form-submit:hover {
  opacity: 0.88;
}

.bld .form-submit:active {
  transform: scale(0.97);
}

.bld .form-submit:focus-visible {
  outline: 2px solid #07FF8D !important;
  outline-offset: 2px !important;
}

.bld .sb-btn:focus-visible {
  outline: 2px solid #07FF8D !important;
  outline-offset: 2px !important;
}

.bld .cta-link-item:focus-visible {
  outline: 2px solid #07FF8D !important;
  outline-offset: 2px !important;
}

@media (max-width: 1024px) {
  .bld .ttl-h1 {
    font-size: 33px;
  }

  .bld .art-sidebar {
    flex: 0 0 220px;
  }
}

@media (max-width: 768px) {
  .bld .ttl-inner {
    flex-direction: column;
  }

  .bld .ttl-img-zone {
    width: 100%;
    min-height: 200px;
    padding-top: 0;
  }

  .bld .ttl-img-zone img {
    height: 240px;
    border-radius: 5px 5px 0 0;
  }

  .bld .art-grid {
    flex-direction: column;
  }

  .bld .art-sidebar {
    flex: none;
    width: 100%;
    padding-top: 0;
  }

  .bld .cta-inner {
    flex-direction: column;
  }

  .bld .cta-right {
    flex: none;
    width: 100%;
  }

  .bld .met-heading {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .bld .ttl-blk {
    padding: 32px 0 0 0;
  }

  .bld .ttl-h1 {
    font-size: 24px;
  }

  .bld .met-val {
    font-size: 33px;
  }

  .bld .cta-h2 {
    font-size: 24px;
  }

  .bld .art-body {
    padding: 32px 0;
  }

  .bld .metrics-sec {
    padding: 32px 0;
  }

  .bld .cta-sec {
    padding: 32px 0;
  }
}

.svc-det {
  background: #FCFDFE;
  overflow-x: hidden;
}

.svc-det .bc-bar {
  max-width: 1024px;
  margin: 0 auto;
  padding: 16px 32px 8px;
}

.svc-det .bc-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.svc-det .bc-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #10222D;
  opacity: 0.6;
}

.svc-det .bc-list li a {
  color: #10222D;
  text-decoration: none;
  opacity: 0.7;
  transition: color 0.2s ease-out, opacity 0.2s ease-out;
}

.svc-det .bc-list li a:hover {
  color: #07FF8D;
  opacity: 1;
  text-decoration: underline;
}

.svc-det .bc-list li.bc-cur {
  opacity: 1;
  font-size: 14px;
  color: #10222D;
}

.svc-det .bc-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #07FF8D;
  border-radius: 50%;
  flex-shrink: 0;
}

.svc-det .title-blk {
  max-width: 1024px;
  margin: 0 auto;
  padding: 32px 32px 32px;
  text-align: center;
  position: relative;
}

.svc-det .title-blk .geo-a {
  position: absolute;
  top: 16px;
  left: 32px;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(7, 255, 141, 0.18);
  border-radius: 5px;
  transform: rotate(22deg);
  pointer-events: none;
}

.svc-det .title-blk .geo-b {
  position: absolute;
  bottom: 32px;
  right: 48px;
  width: 28px;
  height: 28px;
  background: rgba(7, 255, 141, 0.10);
  border-radius: 40px;
  pointer-events: none;
}

.svc-det .title-blk .geo-c {
  position: absolute;
  top: 48px;
  right: 80px;
  width: 12px;
  height: 12px;
  background: rgba(16, 34, 45, 0.07);
  border-radius: 5px;
  transform: rotate(15deg);
  pointer-events: none;
}

.svc-det .img-wrap {
  display: inline-block;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 12px 44px 0 rgba(16, 34, 45, 0.13);
  margin-bottom: 32px;
  max-width: 680px;
  width: 100%;
}

.svc-det .img-wrap img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: saturate(0.85) sepia(0.12);
  transition: filter 0.35s ease-out;
}

.svc-det .img-wrap:hover img {
  filter: saturate(1) sepia(0);
}

.svc-det .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16, 34, 45, 0.22), rgba(16, 34, 45, 0.04));
  border-radius: 40px;
  transition: opacity 0.35s ease-out;
  pointer-events: none;
}

.svc-det .img-wrap:hover .img-overlay {
  opacity: 0;
}

.svc-det .t-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.svc-det .t-badge {
  font-size: 14px;
  color: #10222D;
  background: rgba(7, 255, 141, 0.15);
  padding: 4px 16px;
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.svc-det .t-badge.lvl {
  background: rgba(16, 34, 45, 0.07);
}

.svc-det .t-badge.seats {
  background: rgba(7, 255, 141, 0.28);
  color: #10222D;
}

.svc-det .t-h1 {
  font-size: 46px;
  line-height: 1.2;
  color: #10222D;
  margin: 0 0 16px;
  letter-spacing: 0;
}

.svc-det .t-h1 .grad-word {
  background: linear-gradient(to bottom, #07FF8D, rgba(7, 255, 141, 0.45));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-det .t-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #10222D;
  opacity: 0.65;
  max-width: 560px;
  margin: 0 auto;
}

.svc-det .band-div {
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, transparent, #07FF8D 30%, #07FF8D 70%, transparent);
  margin: 0;
}

.svc-det .desc-sec {
  background: linear-gradient(to bottom, rgba(7, 255, 141, 0.06), rgba(252, 253, 254, 0));
  padding: 32px 0;
}

.svc-det .desc-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.svc-det .desc-body {
  flex: 1 1 0;
  min-width: 0;
}

.svc-det .desc-body h2 {
  font-size: 33px;
  line-height: 1.2;
  color: #10222D;
  margin: 0 0 16px;
}

.svc-det .desc-body h3 {
  font-size: 24px;
  line-height: 1.45;
  color: #10222D;
  margin: 16px 0 8px;
}

.svc-det .desc-body p {
  font-size: 16px;
  line-height: 1.65;
  color: #10222D;
  opacity: 0.82;
  margin: 0 0 16px;
}

.svc-det .desc-body small {
  font-size: 14px;
  color: #10222D;
  opacity: 0.55;
  display: block;
  margin-bottom: 8px;
}

.svc-det .desc-body ul {
  margin: 0 0 16px;
  padding-left: 16px;
}

.svc-det .desc-body ul li {
  font-size: 16px;
  line-height: 1.65;
  color: #10222D;
  opacity: 0.82;
  margin-bottom: 8px;
}

.svc-det .desc-body dl {
  margin: 0 0 16px;
}

.svc-det .desc-body dt {
  font-size: 16px;
  font-weight: 700;
  color: #10222D;
  margin-bottom: 4px;
}

.svc-det .desc-body dd {
  font-size: 16px;
  line-height: 1.65;
  color: #10222D;
  opacity: 0.75;
  margin: 0 0 8px 16px;
}

.svc-det .desc-body mark {
  background: rgba(7, 255, 141, 0.25);
  color: #10222D;
  border-radius: 5px;
  padding: 0 4px;
}

.svc-det .desc-body em {
  font-style: italic;
  color: #10222D;
}

.svc-det .err-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #10222D;
  opacity: 0.5;
  text-decoration: underline;
  text-decoration-color: rgba(16, 34, 45, 0.2);
  transition: opacity 0.2s ease-out, text-decoration-color 0.2s ease-out;
  margin-top: 16px;
}

.svc-det .err-link:hover {
  opacity: 0.85;
  text-decoration-color: #07FF8D;
}

.svc-det .price-card {
  width: 280px;
  flex-shrink: 0;
  background: #10222D;
  border-radius: 40px;
  padding: 32px;
  box-shadow: 0 12px 44px 0 rgba(16, 34, 45, 0.13);
  position: sticky;
  top: 32px;
}

.svc-det .price-card .pc-label {
  font-size: 14px;
  color: rgba(252, 253, 254, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.svc-det .price-card .pc-price {
  font-size: 46px;
  line-height: 1.2;
  color: #07FF8D;
  font-weight: 800;
  margin-bottom: 4px;
}

.svc-det .price-card .pc-note {
  font-size: 14px;
  color: rgba(252, 253, 254, 0.5);
  margin-bottom: 16px;
  line-height: 1.45;
}

.svc-det .price-card .pc-desc {
  font-size: 14px;
  color: rgba(252, 253, 254, 0.72);
  line-height: 1.65;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(7, 255, 141, 0.15);
}

.svc-det .price-card .pc-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.svc-det .price-card .pc-row-label {
  font-size: 14px;
  color: rgba(252, 253, 254, 0.55);
}

.svc-det .price-card .pc-row-val {
  font-size: 14px;
  color: #FCFDFE;
  font-weight: 600;
}

.svc-det .price-card .pc-seats {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
  padding: 8px 16px;
  background: rgba(7, 255, 141, 0.1);
  border-radius: 5px;
}

.svc-det .price-card .pc-seats-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #07FF8D;
  flex-shrink: 0;
  animation: blink-seat 1.8s ease-out infinite;
}

@keyframes blink-seat {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.svc-det .price-card .pc-seats-txt {
  font-size: 14px;
  color: #07FF8D;
  font-weight: 600;
}

.svc-det .btn-primary {
  display: block;
  width: 100%;
  padding: 16px;
  background: #07FF8D;
  color: #10222D;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 7px 20px 0 rgba(7, 255, 141, 0.09);
  transition: box-shadow 0.25s ease-out, transform 0.15s ease-out;
  letter-spacing: 0.02em;
}

.svc-det .btn-primary:hover {
  box-shadow: 0 12px 44px 0 rgba(7, 255, 141, 0.13);
}

.svc-det .btn-primary:active {
  transform: scale(0.97);
}

.svc-det .btn-ghost {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  color: rgba(252, 253, 254, 0.65);
  font-size: 14px;
  border: 1px solid rgba(252, 253, 254, 0.15);
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  margin-top: 8px;
  transition: border-color 0.2s ease-out, color 0.2s ease-out;
}

.svc-det .btn-ghost:hover {
  border-color: rgba(7, 255, 141, 0.4);
  color: #07FF8D;
}

.svc-det .prog-sec {
  padding: 32px 0;
  background: #FCFDFE;
}

.svc-det .prog-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 32px;
}

.svc-det .prog-hd {
  font-size: 33px;
  line-height: 1.2;
  color: #10222D;
  margin: 0 0 32px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.svc-det .prog-hd .dot-acc {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #07FF8D;
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: middle;
}

.svc-det .prog-body h2 {
  font-size: 24px;
  line-height: 1.45;
  color: #10222D;
  margin: 0 0 8px;
}

.svc-det .prog-body p {
  font-size: 16px;
  line-height: 1.65;
  color: #10222D;
  opacity: 0.78;
  margin: 0 0 16px;
}

.svc-det .prog-body mark {
  background: rgba(7, 255, 141, 0.25);
  color: #10222D;
  border-radius: 5px;
  padding: 0 4px;
}

.svc-det .prog-body em {
  font-style: italic;
}

.svc-det .prog-body ul {
  margin: 0 0 16px;
  padding-left: 16px;
}

.svc-det .prog-body ul li {
  font-size: 16px;
  line-height: 1.65;
  color: #10222D;
  opacity: 0.82;
  margin-bottom: 8px;
}

.svc-det .prog-body details {
  border-radius: 5px;
  border: 1px solid rgba(16, 34, 45, 0.1);
  margin-bottom: 8px;
  background: rgba(7, 255, 141, 0.03);
  transition: background 0.2s ease-out;
}

.svc-det .prog-body details[open] {
  background: rgba(7, 255, 141, 0.07);
}

.svc-det .prog-body summary {
  font-size: 16px;
  font-weight: 600;
  color: #10222D;
  padding: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.svc-det .prog-body summary::-webkit-details-marker {
  display: none;
}

.svc-det .prog-body summary::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #07FF8D;
  border-bottom: 2px solid #07FF8D;
  transform: rotate(45deg);
  transition: transform 0.22s ease-out;
  flex-shrink: 0;
}

.svc-det .prog-body details[open] summary::after {
  transform: rotate(-135deg);
}

.svc-det .prog-body details>*:not(summary) {
  padding: 0 16px 16px;
  font-size: 16px;
  line-height: 1.65;
  color: #10222D;
  opacity: 0.8;
}

.svc-det .slit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.svc-det .slit-item {
  background: #10222D;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  padding: 32px 16px;
  text-align: center;
}

.svc-det .slit-item .slit-reveal {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: rgba(7, 255, 141, 0.12);
  transition: height 0.35s ease-out;
  pointer-events: none;
}

.svc-det .slit-item:hover .slit-reveal {
  height: 100%;
}

.svc-det .slit-item .si-num {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 800;
  color: #07FF8D;
  position: relative;
  z-index: 1;
}

.svc-det .slit-item .si-lbl {
  font-size: 14px;
  color: rgba(252, 253, 254, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
  margin-top: 4px;
}

.svc-det .band-div2 {
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #07FF8D 0%, transparent 60%);
}

.svc-det .views-strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 32px;
  max-width: 1024px;
  margin: 0 auto;
}

.svc-det .vs-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.svc-det .vs-txt {
  font-size: 14px;
  color: #10222D;
  opacity: 0.45;
}

.svc-det .bg-anim-sec {
  position: relative;
  padding: 32px 0;
  background: linear-gradient(to bottom, rgba(16, 34, 45, 0.04), rgba(252, 253, 254, 0));
}

.svc-det .bg-anim-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 255, 141, 0.06);
  animation: fade-pulse 4s ease-out infinite;
  pointer-events: none;
  border-radius: 0;
}

@keyframes fade-pulse {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.svc-det .cta-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.svc-det .cta-txt {
  flex: 1 1 0;
  min-width: 0;
}

.svc-det .cta-txt h4 {
  font-size: 24px;
  line-height: 1.45;
  color: #10222D;
  margin: 0 0 8px;
}

.svc-det .cta-txt p {
  font-size: 16px;
  line-height: 1.65;
  color: #10222D;
  opacity: 0.7;
  margin: 0;
}

.svc-det .cta-acts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.svc-det .btn-cta-main {
  padding: 16px 32px;
  background: #07FF8D;
  color: #10222D;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 7px 20px 0 rgba(7, 255, 141, 0.09);
  transition: box-shadow 0.25s ease-out, transform 0.15s ease-out;
}

.svc-det .btn-cta-main:hover {
  box-shadow: 0 12px 44px 0 rgba(7, 255, 141, 0.13);
}

.svc-det .btn-cta-main:active {
  transform: scale(0.97);
}

.svc-det .btn-cta-sec {
  padding: 12px 32px;
  background: transparent;
  color: #10222D;
  font-size: 14px;
  border: 1px solid rgba(16, 34, 45, 0.2);
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: border-color 0.2s ease-out, color 0.2s ease-out;
}

.svc-det .btn-cta-sec:hover {
  border-color: #07FF8D;
  color: #10222D;
}

.svc-det .dots-group {
  position: absolute;
  bottom: 16px;
  right: 32px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-end;
  pointer-events: none;
}

.svc-det .dg-dot {
  border-radius: 50%;
  background: rgba(7, 255, 141, 0.22);
}

.svc-det .dg-dot.sm {
  width: 6px;
  height: 6px;
}

.svc-det .dg-dot.md {
  width: 10px;
  height: 10px;
}

.svc-det .dg-dot.lg {
  width: 16px;
  height: 16px;
}

@media (max-width: 1024px) {
  .svc-det .title-blk {
    padding: 32px 32px;
  }

  .svc-det .desc-inner {
    flex-direction: column;
  }

  .svc-det .price-card {
    width: 100%;
    position: static;
  }

  .svc-det .slit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-det .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .svc-det .t-h1 {
    font-size: 33px;
  }

  .svc-det .slit-grid {
    grid-template-columns: 1fr;
  }

  .svc-det .prog-hd {
    font-size: 24px;
  }

  .svc-det .img-wrap img {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .svc-det .bc-bar {
    padding: 16px 16px 8px;
  }

  .svc-det .title-blk {
    padding: 16px;
  }

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

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

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

  .svc-det .views-strip {
    padding: 8px 16px;
  }

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

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

  .svc-det .cta-acts {
    width: 100%;
  }

  .svc-det .btn-cta-main,
  .svc-det .btn-cta-sec {
    width: 100%;
    text-align: center;
  }
}

.spkg {
  background: #FCFDFE;
  overflow-x: clip;
  position: relative;
}

.spkg * {
  box-sizing: border-box;
}

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

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes clipReveal {
  from {
    clip-path: inset(0 50% 0 50%);
  }

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

.spkg .frm-blk {
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}

.spkg .frm-blk::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #07FF8D 0%, transparent 100%);
}

.spkg .frm-inner {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
}

.spkg .frm-img-col {
  flex: 0 0 420px;
  position: relative;
}

.spkg .frm-img-border {
  position: absolute;
  top: -16px;
  left: -16px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border: 2px solid #07FF8D;
  border-radius: 5px;
  pointer-events: none;
  z-index: 1;
}

.spkg .frm-img-wrap {
  width: 100%;
  height: 340px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 44px 0 rgba(16, 34, 45, 0.13);
  animation: scaleIn 0.45s ease-out both;
}

.spkg .frm-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.6) brightness(0.95);
  transition: filter 0.35s ease-out;
}

.spkg .frm-img-wrap:hover img {
  filter: saturate(1) brightness(1);
}

.spkg .frm-img-wrap .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 34, 45, 0.18) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.25s ease-out;
}

.spkg .frm-img-wrap:hover .img-overlay {
  opacity: 0;
}

.spkg .frm-txt-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  animation: scaleIn 0.38s 0.1s ease-out both;
}

.spkg .spkr-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 255, 141, 0.12);
  border: 1px solid rgba(7, 255, 141, 0.35);
  border-radius: 5px;
  padding: 4px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #10222D;
  width: fit-content;
}

.spkg .spkr-tag .dot {
  width: 7px;
  height: 7px;
  background: #07FF8D;
  border-radius: 40px;
  display: inline-block;
  flex-shrink: 0;
}

.spkg .frm-h1 {
  font-size: 46px;
  line-height: 1.2;
  color: #10222D;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.spkg .frm-h1 .acc {
  color: #07FF8D;
  position: relative;
}

.spkg .frm-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.78);
  margin: 0;
  max-width: 420px;
}

.spkg .frm-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.spkg .btn-prim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #07FF8D;
  color: #10222D;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 7px 20px 0 rgba(7, 255, 141, 0.09);
  transition: box-shadow 0.22s ease-out, transform 0.15s ease-out;
}

.spkg .btn-prim:hover {
  box-shadow: 0 12px 44px 0 rgba(7, 255, 141, 0.13);
  transform: translateY(-2px);
}

.spkg .btn-prim:active {
  transform: scale(0.97);
}

.spkg .btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #10222D;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 5px;
  text-decoration: none;
  border: 2px solid rgba(16, 34, 45, 0.2);
  cursor: pointer;
  transition: border-color 0.22s ease-out, color 0.2s ease-out;
}

.spkg .btn-sec:hover {
  border-color: #10222D;
  color: #10222D;
}

.spkg .btn-sec:active {
  transform: scale(0.97);
}

.spkg .divider-tri {
  width: 100%;
  line-height: 0;
  display: block;
  position: relative;
}

.spkg .divider-tri svg {
  display: block;
  width: 100%;
}

.spkg .det-blk {
  background: #10222D;
  padding: 64px 0 80px;
  position: relative;
}

.spkg .det-blk::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(7, 255, 141, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(7, 255, 141, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.spkg .det-blk .pg-wrap {
  position: relative;
  z-index: 2;
}

.spkg .det-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}

.spkg .det-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spkg .det-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(252, 253, 254, 0.45);
  margin: 0;
}

.spkg .det-h2 {
  font-size: 33px;
  line-height: 1.2;
  color: #FCFDFE;
  margin: 0;
}

.spkg .det-body {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(252, 253, 254, 0.7);
  margin: 0;
}

.spkg .det-h3 {
  font-size: 24px;
  line-height: 1.45;
  color: #FCFDFE;
  margin: 0;
}

.spkg .det-sm {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(252, 253, 254, 0.6);
  margin: 0;
}

.spkg .det-sep {
  width: 40px;
  height: 2px;
  background: #07FF8D;
  border-radius: 40px;
  margin: 8px 0;
}

.spkg .bar-wrap {
  background: rgba(252, 253, 254, 0.06);
  border-radius: 5px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 3px 5px 0 rgba(16, 34, 45, 0.08);
  border: 1px solid rgba(252, 253, 254, 0.08);
}

.spkg .bar-ttl {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(252, 253, 254, 0.5);
  margin: 0;
}

.spkg .bar-labels {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(252, 253, 254, 0.55);
}

.spkg .bar-track {
  width: 100%;
  height: 8px;
  background: rgba(252, 253, 254, 0.1);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.spkg .bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, #07FF8D 0%, rgba(7, 255, 141, 0.5) 100%);
  border-radius: 40px;
  animation: barGrow 0.45s 0.2s ease-out both;
}

@keyframes barGrow {
  from {
    width: 0;
  }

  to {
    width: 72%;
  }
}

.spkg .bar-marker {
  position: absolute;
  top: -4px;
  left: 72%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: #FCFDFE;
  border-radius: 40px;
  border: 3px solid #07FF8D;
  box-shadow: 0 3px 5px 0 rgba(16, 34, 45, 0.08);
}

.spkg .bar-pos-label {
  font-size: 14px;
  color: #07FF8D;
  font-weight: 600;
  text-align: center;
}

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

.spkg .topics-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(252, 253, 254, 0.7);
}

.spkg .topics-list li .t-dot {
  width: 6px;
  height: 6px;
  background: #07FF8D;
  border-radius: 40px;
  flex-shrink: 0;
  margin-top: 7px;
}

.spkg .contact-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.spkg .c-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: rgba(252, 253, 254, 0.6);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 5px;
  border: 1px solid rgba(252, 253, 254, 0.12);
  transition: color 0.2s ease-out, border-color 0.25s ease-out;
}

.spkg .c-link:hover {
  color: #07FF8D;
  border-color: rgba(7, 255, 141, 0.35);
}

.spkg .acc-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.spkg .evt-card {
  background: rgba(7, 255, 141, 0.07);
  border: 1px solid rgba(7, 255, 141, 0.18);
  border-radius: 5px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 7px 20px 0 rgba(16, 34, 45, 0.09);
  animation: scaleIn 0.38s 0.15s ease-out both;
}

.spkg .evt-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #07FF8D;
  margin: 0;
}

.spkg .evt-h4 {
  font-size: 24px;
  line-height: 1.45;
  color: #FCFDFE;
  margin: 0;
}

.spkg .evt-meta {
  font-size: 14px;
  color: rgba(252, 253, 254, 0.55);
  margin: 0;
}

.spkg .evt-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(252, 253, 254, 0.7);
  margin: 0;
}

.spkg .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #07FF8D;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 0;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: gap 0.2s ease-out;
  width: fit-content;
}

.spkg .btn-ghost:hover {
  gap: 12px;
}

.spkg .btn-ghost svg {
  flex-shrink: 0;
}

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

  .spkg .acc-col {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .spkg .frm-inner {
    flex-direction: column;
  }

  .spkg .frm-img-col {
    flex: 0 0 auto;
  }

  .spkg .frm-img-wrap {
    height: 260px;
  }

  .spkg .frm-h1 {
    font-size: 33px;
  }

  .spkg .det-grid {
    grid-template-columns: 1fr;
  }

  .spkg .acc-col {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .spkg .frm-blk {
    padding: 32px 0 32px;
  }

  .spkg .det-blk {
    padding: 32px 0 48px;
  }

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

  .spkg .frm-h1 {
    font-size: 24px;
  }

  .spkg .frm-actions {
    flex-direction: column;
  }

  .spkg .bar-wrap {
    padding: 16px;
  }

  .spkg .evt-card {
    padding: 16px;
  }
}

.abt-au {
  background: #FCFDFE;
  overflow-x: clip;
}

.abt-au .ld-schema {
  display: none;
}

.abt-au .wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}

.abt-au .title-blk {
  position: relative;
  padding: 64px 16px 0;
  background: linear-gradient(to bottom, transparent 0%, #10222D 100%);
}

.abt-au .title-blk::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #FCFDFE 0%, rgba(16, 34, 45, 0.96) 100%);
  z-index: 0;
}

.abt-au .title-inner {
  position: relative;
  z-index: 1;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 32px;
}

.abt-au .title-txt {
  flex: 1 1 60%;
  padding-bottom: 48px;
}

.abt-au .title-tag {
  display: inline-block;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #07FF8D;
  background: rgba(7, 255, 141, 0.10);
  border-radius: 5px;
  padding: 4px 16px;
  margin-bottom: 16px;
}

.abt-au .title-h1 {
  font-size: 46px;
  line-height: 1.2;
  color: #FCFDFE;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}

.abt-au .title-h1 .dot-acc {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 40px;
  background: #07FF8D;
  margin-left: 4px;
  vertical-align: middle;
  position: relative;
  top: -4px;
}

.abt-au .title-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(252, 253, 254, 0.75);
  max-width: 520px;
  margin: 0;
}

.abt-au .title-img-wrap {
  flex: 0 0 38%;
  max-width: 340px;
  position: relative;
}

.abt-au .title-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16, 34, 45, 0.18) 0%, rgba(16, 34, 45, 0.55) 100%);
  border-radius: 5px 5px 0 0;
  z-index: 1;
  transition: opacity 0.25s ease-out;
}

.abt-au .title-img-wrap:hover::before {
  opacity: 0;
}

.abt-au .title-img-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  border-radius: 5px 5px 0 0;
  filter: sepia(0.18) saturate(1.1);
  transition: filter 0.35s ease-out;
}

.abt-au .title-img-wrap:hover img {
  filter: sepia(0) saturate(1);
}

.abt-au .title-dbl-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #07FF8D;
  box-shadow: 0 -3px 0 0 rgba(7, 255, 141, 0.25);
  z-index: 2;
}

.abt-au .wave-sep {
  background: #10222D;
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.abt-au .prof-blk {
  background: #FCFDFE;
  padding: 64px 16px;
}

.abt-au .prof-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.abt-au .prof-left {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.abt-au .prof-right {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.abt-au .exp-panel {
  background: #10222D;
  border-radius: 5px;
  padding: 32px;
  box-shadow: 0 12px 44px 0 rgba(16, 34, 45, 0.13);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-au .exp-panel-lbl {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(252, 253, 254, 0.5);
}

.abt-au .exp-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt-au .exp-stat-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.abt-au .exp-stat-name {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(252, 253, 254, 0.72);
}

.abt-au .exp-stat-val {
  font-size: 14px;
  line-height: 1.2;
  color: #07FF8D;
  font-weight: 700;
  flex-shrink: 0;
}

.abt-au .exp-bar-bg {
  height: 4px;
  background: rgba(252, 253, 254, 0.10);
  border-radius: 5px;
  overflow: hidden;
}

.abt-au .exp-bar-fill {
  height: 100%;
  background: linear-gradient(to right, #07FF8D, rgba(7, 255, 141, 0.5));
  border-radius: 5px;
  animation: bar-grow 0.45s ease-out both;
}

@keyframes bar-grow {
  from {
    width: 0;
  }
}

.abt-au .img-duo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-au .img-card {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 7px 20px 0 rgba(16, 34, 45, 0.09);
}

.abt-au .img-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 34, 45, 0.30);
  transition: opacity 0.2s ease-out;
}

.abt-au .img-card:hover::after {
  opacity: 0;
}

.abt-au .img-card img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.45s ease-out;
}

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

.abt-au .img-zoom img {
  animation: slow-zoom 8s ease-in-out infinite alternate;
}

@keyframes slow-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.abt-au .prof-heading {
  font-size: 33px;
  line-height: 1.2;
  color: #10222D;
  margin: 0;
}

.abt-au .prof-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.72);
  margin: 0;
}

.abt-au .prof-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-au .prof-p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.82);
  margin: 0;
}

.abt-au .speak-link {
  display: inline-block;
  font-size: 16px;
  line-height: 1.45;
  color: #10222D;
  text-decoration: underline;
  text-decoration-color: rgba(16, 34, 45, 0.3);
  transition: text-decoration-color 0.2s ease-out, color 0.2s ease-out;
}

.abt-au .speak-link:hover {
  color: #07FF8D;
  text-decoration-color: #07FF8D;
}

.abt-au .skills-blk {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(7, 255, 141, 0.06);
  border-radius: 5px;
  padding: 32px;
  box-shadow: inset 0 2px 0 0 rgba(7, 255, 141, 0.18), inset 0 -2px 0 0 rgba(16, 34, 45, 0.06);
}

.abt-au .skills-h {
  font-size: 24px;
  line-height: 1.2;
  color: #10222D;
  margin: 0;
}

.abt-au .skills-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.abt-au .skill-tag {
  font-size: 14px;
  line-height: 1.2;
  color: #10222D;
  background: rgba(16, 34, 45, 0.07);
  border-radius: 5px;
  padding: 8px 16px;
  transition: background 0.18s ease-out, color 0.18s ease-out;
}

.abt-au .skill-tag:hover {
  background: #07FF8D;
  color: #10222D;
}

.abt-au .contact-strip {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.abt-au .contact-lbl {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(16, 34, 45, 0.5);
  margin-right: 8px;
}

.abt-au .cnt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 5px;
  padding: 8px 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.22s ease-out, color 0.22s ease-out, transform 0.15s ease-out;
}

.abt-au .cnt-btn:active {
  transform: scale(0.97);
}

.abt-au .cnt-btn.prim {
  background: #07FF8D;
  color: #10222D;
  font-weight: 700;
  box-shadow: 0 3px 5px 0 rgba(7, 255, 141, 0.08);
}

.abt-au .cnt-btn.prim:hover {
  background: #00e07a;
}

.abt-au .cnt-btn.sec {
  background: rgba(16, 34, 45, 0.08);
  color: #10222D;
}

.abt-au .cnt-btn.sec:hover {
  background: rgba(16, 34, 45, 0.15);
}

.abt-au .img-wide {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 7px 20px 0 rgba(16, 34, 45, 0.09);
}

.abt-au .img-wide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 34, 45, 0.22);
  transition: opacity 0.28s ease-out;
}

.abt-au .img-wide:hover::after {
  opacity: 0;
}

.abt-au .img-wide img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.38s ease-out;
}

.abt-au .img-wide:hover img {
  transform: scale(1.03);
}

.abt-au .reveal {
  animation: reveal-in 0.4s ease-out both;
}

.abt-au .reveal-d1 {
  animation-delay: 0.08s;
}

.abt-au .reveal-d2 {
  animation-delay: 0.18s;
}

.abt-au .reveal-d3 {
  animation-delay: 0.28s;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(12px);
  }

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

.abt-au .dbl-border {
  border: 2px solid #10222D;
  outline: 4px solid rgba(7, 255, 141, 0.35);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .abt-au .title-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .abt-au .title-img-wrap {
    max-width: 100%;
    width: 100%;
    flex: 1 1 auto;
  }

  .abt-au .title-h1 {
    font-size: 33px;
  }

  .abt-au .prof-inner {
    flex-direction: column;
  }

  .abt-au .prof-left {
    flex: 1 1 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .abt-au .title-blk {
    padding: 32px 16px 0;
  }

  .abt-au .title-h1 {
    font-size: 24px;
  }

  .abt-au .prof-blk {
    padding: 32px 16px;
  }

  .abt-au .prof-heading {
    font-size: 24px;
  }

  .abt-au .contact-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

.blg {
  background: #FCFDFE;
  overflow-x: clip;
  padding: 0;
}

.blg .pg-band {
  background: linear-gradient(180deg, #10222D 0%, transparent 100%);
  padding: 32px 16px;
}

.blg .pg-band-in {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.blg .pg-lbl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 255, 141, 0.12);
  border: 1px solid rgba(7, 255, 141, 0.3);
  border-radius: 5px;
  padding: 4px 16px;
  font-size: 14px;
  color: #07FF8D;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.blg .pg-ttl {
  font-size: 46px;
  line-height: 1.2;
  color: #FCFDFE;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px 0;
}

.blg .pg-ttl span {
  color: #07FF8D;
}

.blg .pg-sub {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(252, 253, 254, 0.7);
  margin: 0;
  max-width: 480px;
}

.blg .pg-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.blg .pg-stat-num {
  font-size: 62px;
  line-height: 1.2;
  color: #07FF8D;
  font-weight: 700;
}

.blg .pg-stat-desc {
  font-size: 14px;
  color: rgba(252, 253, 254, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blg .pg-stat-bar {
  width: 80px;
  height: 2px;
  background: rgba(7, 255, 141, 0.2);
  border-radius: 5px;
  position: relative;
}

.blg .pg-stat-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  background: #07FF8D;
  border-radius: 5px;
}

.blg .cards-area {
  padding: 32px 16px;
  max-width: 1024px;
  margin: 0 auto;
}

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

.blg .card {
  background: #FCFDFE;
  border-radius: 5px;
  box-shadow: 0 7px 20px 0 rgba(16, 34, 45, 0.09);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.25s ease-out, transform 0.2s ease-out;
}

.blg .card:hover {
  box-shadow: 0 12px 44px 0 rgba(16, 34, 45, 0.13);
  transform: translateY(-4px);
}

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

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

.blg .card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.blg .card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 34, 45, 0.45) 0%, transparent 100%);
  transition: opacity 0.25s ease-out;
}

.blg .card:hover .card-img-overlay {
  opacity: 0;
}

.blg .card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #07FF8D;
  color: #10222D;
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  padding: 4px 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.blg .card-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blg .card-cat {
  font-size: 14px;
  color: rgba(16, 34, 45, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blg .card-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #07FF8D;
  flex-shrink: 0;
}

.blg .card-time {
  font-size: 14px;
  color: rgba(16, 34, 45, 0.5);
}

.blg .card-ttl {
  font-size: 16px;
  line-height: 1.45;
  color: #10222D;
  font-weight: 700;
  margin: 0;
}

.blg .card-sub {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(16, 34, 45, 0.65);
  margin: 0;
}

.blg .card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.7);
  margin: 0;
  flex: 1;
}

.blg .card-foot {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 16px;
  border-top: 1px solid rgba(16, 34, 45, 0.08);
  margin-top: 8px;
}

.blg .card-author {
  font-size: 14px;
  color: rgba(16, 34, 45, 0.6);
}

.blg .card-likes {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: rgba(16, 34, 45, 0.5);
}

.blg .card-heart {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.blg .card-date {
  font-size: 14px;
  color: rgba(16, 34, 45, 0.45);
}

.blg .card-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: #10222D;
  text-decoration: underline;
  text-decoration-color: rgba(16, 34, 45, 0.3);
  transition: text-decoration-color 0.2s ease-out, color 0.2s ease-out;
}

.blg .card-link:hover {
  color: #07FF8D;
  text-decoration-color: #07FF8D;
}

.blg .mesh-sec {
  position: relative;
  padding: 32px 16px;
  background: #10222D;
  overflow: hidden;
}

.blg .mesh-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(7, 255, 141, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(7, 255, 141, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 10%, rgba(252, 253, 254, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.blg .mesh-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg,
      transparent 0px,
      transparent 8px,
      rgba(7, 255, 141, 0.4) 8px,
      rgba(7, 255, 141, 0.4) 10px);
}

.blg .mesh-in {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.blg .mesh-txt {
  flex: 1;
}

.blg .mesh-eyebrow {
  font-size: 14px;
  color: #07FF8D;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.blg .mesh-h {
  font-size: 33px;
  line-height: 1.2;
  color: #FCFDFE;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 16px 0;
}

.blg .mesh-h span {
  color: #07FF8D;
}

.blg .mesh-p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(252, 253, 254, 0.75);
  margin: 0 0 16px 0;
}

.blg .mesh-cta {
  display: inline-block;
  background: #07FF8D;
  color: #10222D;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease-out, transform 0.15s ease-out;
  box-shadow: 0 7px 20px 0 rgba(7, 255, 141, 0.09);
}

.blg .mesh-cta:hover {
  background: #FCFDFE;
}

.blg .mesh-cta:active {
  transform: scale(0.97);
}

.blg .mesh-cta:focus-visible {
  outline: 3px solid #07FF8D !important;
  outline-offset: 3px !important;
}

.blg .mesh-img-col {
  flex-shrink: 0;
  width: 320px;
  position: relative;
}

.blg .mesh-img-wrap {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 12px 44px 0 rgba(7, 255, 141, 0.13);
}

.blg .mesh-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: grayscale(30%) contrast(1.1);
  transition: filter 0.35s ease-out;
}

.blg .mesh-img-wrap:hover img {
  filter: grayscale(0%) contrast(1);
}

.blg .mesh-img-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 34, 45, 0.5) 0%, transparent 60%);
  border-radius: 5px;
  pointer-events: none;
  transition: opacity 0.35s ease-out;
}

.blg .mesh-img-wrap:hover .mesh-img-grad {
  opacity: 0;
}

.blg .cmp-sec {
  padding: 32px 16px;
  background: #FCFDFE;
  position: relative;
}

.blg .cmp-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg,
      transparent 0px,
      transparent 12px,
      rgba(16, 34, 45, 0.15) 12px,
      rgba(16, 34, 45, 0.15) 14px);
}

.blg .cmp-in {
  max-width: 1024px;
  margin: 0 auto;
}

.blg .cmp-hd {
  text-align: center;
  margin-bottom: 32px;
}

.blg .cmp-eyebrow {
  font-size: 14px;
  color: rgba(16, 34, 45, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.blg .cmp-h {
  font-size: 33px;
  line-height: 1.2;
  color: #10222D;
  margin: 0;
}

.blg .cmp-h em {
  color: #07FF8D;
  font-style: normal;
}

.blg .cmp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.blg .cmp-col {
  border-radius: 5px;
  padding: 32px;
  position: relative;
}

.blg .cmp-col.before {
  background: rgba(16, 34, 45, 0.04);
  border: 1px solid rgba(16, 34, 45, 0.1);
}

.blg .cmp-col.after {
  background: rgba(7, 255, 141, 0.06);
  border: 1px solid rgba(7, 255, 141, 0.3);
}

.blg .cmp-badge {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 5px;
}

.blg .cmp-col.before .cmp-badge {
  background: rgba(16, 34, 45, 0.1);
  color: rgba(16, 34, 45, 0.6);
}

.blg .cmp-col.after .cmp-badge {
  background: #07FF8D;
  color: #10222D;
}

.blg .cmp-col-h {
  font-size: 24px;
  line-height: 1.2;
  color: #10222D;
  margin: 0 0 16px 0;
}

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

.blg .cmp-items li {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(16, 34, 45, 0.75);
  padding: 8px;
  border-radius: 5px;
  background: rgba(16, 34, 45, 0.03);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.blg .cmp-col.after .cmp-items li {
  background: rgba(7, 255, 141, 0.08);
}

.blg .cmp-ico {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

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

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

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

.blg .pg-band {
  background-size: 200% 200%;
  animation: grad-shift 8s linear infinite;
  background-image: linear-gradient(180deg, #10222D 0%, rgba(16, 34, 45, 0.85) 60%, transparent 100%);
}

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

  .blg .mesh-img-col {
    width: 260px;
  }
}

@media (max-width: 768px) {
  .blg .cards-grid {
    grid-template-columns: 1fr;
  }

  .blg .pg-band-in {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .blg .pg-stat {
    align-items: flex-start;
  }

  .blg .pg-ttl {
    font-size: 33px;
  }

  .blg .mesh-in {
    flex-direction: column;
  }

  .blg .mesh-img-col {
    width: 100%;
  }

  .blg .cmp-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .blg .pg-ttl {
    font-size: 24px;
  }

  .blg .mesh-h {
    font-size: 24px;
  }

  .blg .cmp-h {
    font-size: 24px;
  }

  .blg .cmp-col {
    padding: 16px;
  }
}

.blg .card-link:focus-visible {
  outline: 3px solid #07FF8D !important;
  outline-offset: 2px !important;
}

.blg .card:focus-within {
  box-shadow: 0 12px 44px 0 rgba(16, 34, 45, 0.13);
}

.srvs {
  background: #FCFDFE;
  overflow-x: hidden;
}

.srvs .pg-lead {
  position: relative;
  padding: 64px 16px 80px;
  background: linear-gradient(180deg, #10222D 0%, rgba(16, 34, 45, 0) 100%);
  overflow: hidden;
}

.srvs .pg-lead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(118deg, #10222D 52%, #07FF8D 52%);
  opacity: 0.07;
  pointer-events: none;
}

.srvs .pg-lead-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.srvs .pg-lead-text {
  flex: 1 1 0;
}

.srvs .pg-lead-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #07FF8D;
  background: rgba(7, 255, 141, 0.12);
  border-radius: 5px;
  padding: 4px 16px;
  margin-bottom: 16px;
}

.srvs .pg-lead-h1 {
  font-size: 46px;
  line-height: 1.2;
  color: #FCFDFE;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}

.srvs .pg-lead-h1 span {
  color: #07FF8D;
}

.srvs .pg-lead-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(252, 253, 254, 0.78);
  max-width: 480px;
  margin: 0;
}

.srvs .pg-lead-img {
  flex: 0 0 340px;
  position: relative;
}

.srvs .pg-lead-img-frame {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 12px 44px 0 rgba(16, 34, 45, 0.13);
}

.srvs .pg-lead-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 34, 45, 0.18) 0%, rgba(7, 255, 141, 0.08) 100%);
  transition: opacity 0.25s ease-out;
  pointer-events: none;
}

.srvs .pg-lead-img-frame:hover::after {
  opacity: 0;
}

.srvs .pg-lead-img-frame img {
  display: block;
  width: 340px;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.srvs .pg-lead-bracket {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: #07FF8D;
  border-style: solid;
  pointer-events: none;
}

.srvs .pg-lead-bracket.tl {
  top: -8px;
  left: -8px;
  border-width: 3px 0 0 3px;
  border-radius: 5px 0 0 0;
}

.srvs .pg-lead-bracket.tr {
  top: -8px;
  right: -8px;
  border-width: 3px 3px 0 0;
  border-radius: 0 5px 0 0;
}

.srvs .pg-lead-bracket.bl {
  bottom: -8px;
  left: -8px;
  border-width: 0 0 3px 3px;
  border-radius: 0 0 0 5px;
}

.srvs .pg-lead-bracket.br {
  bottom: -8px;
  right: -8px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 5px 0;
}

.srvs .pg-lead-zigzag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  overflow: hidden;
  pointer-events: none;
}

.srvs .pg-lead-zigzag svg {
  display: block;
  width: 100%;
  height: 24px;
}

.srvs .cards-sec {
  padding: 64px 16px 80px;
  background: #FCFDFE;
  max-width: 100%;
}

.srvs .cards-inner {
  max-width: 1024px;
  margin: 0 auto;
}

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

.srvs .svc-card {
  background: #FCFDFE;
  border-radius: 40px;
  box-shadow: 0 7px 20px 0 rgba(16, 34, 45, 0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s ease-out, transform 0.18s ease-out;
}

.srvs .svc-card:hover {
  box-shadow: 0 12px 44px 0 rgba(16, 34, 45, 0.13);
  transform: translateY(-4px);
}

.srvs .svc-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.srvs .svc-card-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease-out;
}

.srvs .svc-card:hover .svc-card-img-wrap img {
  transform: scale(1.04);
}

.srvs .svc-card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 34, 45, 0.32);
  transition: opacity 0.28s ease-out;
  pointer-events: none;
}

.srvs .svc-card:hover .svc-card-img-overlay {
  opacity: 0;
}

.srvs .svc-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #07FF8D;
  color: #10222D;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 4px 8px;
}

.srvs .svc-card-body {
  padding: 24px 24px 16px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srvs .svc-card-title {
  font-size: 24px;
  line-height: 1.2;
  color: #10222D;
  margin: 0;
}

.srvs .svc-card-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.72);
  margin: 0;
  flex: 1 1 auto;
}

.srvs .svc-card-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.srvs .svc-meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: rgba(16, 34, 45, 0.6);
}

.srvs .svc-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #07FF8D;
  display: inline-block;
  flex-shrink: 0;
}

.srvs .svc-card-foot {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(16, 34, 45, 0.08);
}

.srvs .svc-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.srvs .svc-price-val {
  font-size: 24px;
  font-weight: 700;
  color: #10222D;
  line-height: 1.2;
}

.srvs .svc-price-terms {
  font-size: 14px;
  color: rgba(16, 34, 45, 0.55);
  line-height: 1.45;
}

.srvs .svc-price-note {
  font-size: 14px;
  color: rgba(16, 34, 45, 0.45);
  font-style: italic;
}

.srvs .svc-seats {
  font-size: 14px;
  color: #10222D;
  background: rgba(7, 255, 141, 0.14);
  border-radius: 5px;
  padding: 4px 8px;
  font-weight: 600;
}

.srvs .svc-card-link {
  display: inline-block;
  background: #07FF8D;
  color: #10222D;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  padding: 8px 16px;
  transition: background 0.2s ease-out, transform 0.15s ease-out;
}

.srvs .svc-card-link:hover {
  background: #10222D;
  color: #07FF8D;
}

.srvs .svc-card-link:active {
  transform: scale(0.97);
}

.srvs .exp-sec {
  padding: 64px 16px;
  background: #10222D;
  position: relative;
  clip-path: polygon(0 24px, 100% 0, 100% calc(100% - 0px), 0 100%);
}

.srvs .exp-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.srvs .exp-portrait-col {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.srvs .exp-portrait-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #07FF8D;
  box-shadow: 0 7px 20px 0 rgba(7, 255, 141, 0.09);
  flex-shrink: 0;
}

.srvs .exp-portrait-wrap img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.srvs .exp-portrait-name {
  font-size: 16px;
  font-weight: 700;
  color: #FCFDFE;
  text-align: center;
}

.srvs .exp-portrait-role {
  font-size: 14px;
  color: rgba(252, 253, 254, 0.6);
  text-align: center;
  margin-top: -8px;
}

.srvs .exp-text-col {
  flex: 1 1 0;
}

.srvs .exp-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #07FF8D;
  margin-bottom: 16px;
}

.srvs .exp-h2 {
  font-size: 33px;
  line-height: 1.2;
  color: #FCFDFE;
  margin: 0 0 16px;
}

.srvs .exp-p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(252, 253, 254, 0.75);
  margin: 0 0 16px;
}

.srvs .exp-stats {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 16px;
}

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

.srvs .exp-stat-num {
  font-size: 33px;
  font-weight: 700;
  color: #07FF8D;
  line-height: 1.2;
}

.srvs .exp-stat-lbl {
  font-size: 14px;
  color: rgba(252, 253, 254, 0.6);
  line-height: 1.45;
}

.srvs .faq-sec {
  padding: 64px 16px 80px;
  background: rgba(7, 255, 141, 0.05);
  position: relative;
}

.srvs .faq-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #07FF8D 0%, rgba(7, 255, 141, 0) 100%);
  pointer-events: none;
}

.srvs .faq-inner {
  max-width: 1024px;
  margin: 0 auto;
}

.srvs .faq-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
}

.srvs .faq-top-text {
  flex: 1 1 0;
}

.srvs .faq-h2 {
  font-size: 33px;
  line-height: 1.2;
  color: #10222D;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.srvs .faq-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.68);
  margin: 0;
}

.srvs .faq-img-wrap {
  flex: 0 0 260px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 7px 20px 0 rgba(16, 34, 45, 0.09);
  position: relative;
}

.srvs .faq-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(16, 34, 45, 0.22);
  transition: opacity 0.28s ease-out;
  pointer-events: none;
}

.srvs .faq-img-wrap:hover::after {
  opacity: 0;
}

.srvs .faq-img-wrap img {
  display: block;
  width: 260px;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

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

.srvs .faq-item {
  background: #FCFDFE;
  border-radius: 5px;
  box-shadow: 0 3px 5px 0 rgba(16, 34, 45, 0.08);
  overflow: hidden;
}

.srvs .faq-item summary {
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #10222D;
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: color 0.2s ease-out;
}

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

.srvs .faq-item summary:hover {
  color: #07FF8D;
}

.srvs .faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.srvs .faq-icon::before,
.srvs .faq-icon::after {
  content: '';
  position: absolute;
  background: #10222D;
  border-radius: 2px;
  transition: transform 0.22s ease-out, opacity 0.18s ease-out;
}

.srvs .faq-icon::before {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}

.srvs .faq-icon::after {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
}

.srvs .faq-item[open] .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.srvs .faq-item[open] summary {
  color: #07FF8D;
}

.srvs .faq-ans {
  padding: 0 16px 16px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.72);
}

.srvs .contact-strip {
  padding: 32px 16px;
  background: #FCFDFE;
  border-top: 1px solid rgba(16, 34, 45, 0.08);
}

.srvs .contact-strip-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.srvs .contact-strip-txt {
  font-size: 16px;
  color: rgba(16, 34, 45, 0.7);
}

.srvs .contact-strip-links {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}

.srvs .contact-lnk {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #10222D;
  text-decoration: none;
  border: 1.5px solid rgba(16, 34, 45, 0.18);
  border-radius: 5px;
  padding: 8px 16px;
  transition: border-color 0.2s ease-out, color 0.2s ease-out, background 0.2s ease-out;
}

.srvs .contact-lnk:hover {
  border-color: #07FF8D;
  background: rgba(7, 255, 141, 0.08);
  color: #10222D;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.srvs .pg-lead-text {
  animation: riseIn 0.38s ease-out both;
}

.srvs .pg-lead-img {
  animation: riseIn 0.45s ease-out 0.1s both;
}

.srvs .svc-card:nth-child(1) {
  animation: riseIn 0.32s ease-out 0.08s both;
}

.srvs .svc-card:nth-child(2) {
  animation: riseIn 0.32s ease-out 0.16s both;
}

.srvs .svc-card:nth-child(3) {
  animation: riseIn 0.32s ease-out 0.24s both;
}

.srvs .svc-card:nth-child(4) {
  animation: riseIn 0.32s ease-out 0.32s both;
}

@media (max-width: 1024px) {
  .srvs .pg-lead-h1 {
    font-size: 33px;
  }

  .srvs .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .srvs .pg-lead-inner {
    flex-direction: column;
  }

  .srvs .pg-lead-img {
    flex: 0 0 auto;
    width: 100%;
  }

  .srvs .pg-lead-img-frame img {
    width: 100%;
    height: 220px;
  }

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

  .srvs .exp-inner {
    flex-direction: column;
  }

  .srvs .exp-portrait-col {
    flex: 0 0 auto;
  }

  .srvs .faq-top {
    flex-direction: column;
  }

  .srvs .faq-img-wrap {
    flex: 0 0 auto;
    width: 100%;
  }

  .srvs .faq-img-wrap img {
    width: 100%;
    height: 180px;
  }

  .srvs .exp-stats {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .srvs .pg-lead-h1 {
    font-size: 24px;
  }

  .srvs .exp-h2 {
    font-size: 24px;
  }

  .srvs .faq-h2 {
    font-size: 24px;
  }

  .srvs .svc-card-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .srvs .contact-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .srvs .exp-stats {
    flex-direction: column;
    gap: 16px;
  }
}

.prm {
  background: #FCFDFE;
  overflow-x: clip;
  position: relative;
}

.prm ::selection {
  background: #07FF8D;
  color: #10222D;
}

.prm .aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.prm .aurora-bg::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 60%;
  top: -10%;
  left: -10%;
  background: linear-gradient(160deg, rgba(7, 255, 141, 0.13) 0%, rgba(16, 34, 45, 0.04) 60%, transparent 100%);
  border-radius: 40px;
  animation: auroraA 9s ease-out infinite alternate;
}

.prm .aurora-bg::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 55%;
  bottom: 5%;
  right: -5%;
  background: linear-gradient(200deg, rgba(16, 34, 45, 0.07) 0%, rgba(7, 255, 141, 0.09) 50%, transparent 100%);
  border-radius: 40px;
  animation: auroraB 12s ease-out infinite alternate;
}

@keyframes auroraA {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }

  100% {
    transform: translate(8%, 6%) scale(1.12);
    opacity: 1;
  }
}

@keyframes auroraB {
  0% {
    transform: translate(0, 0) scale(1.05);
    opacity: 0.8;
  }

  100% {
    transform: translate(-6%, -8%) scale(0.95);
    opacity: 0.5;
  }
}

.prm .pg-wrap {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.prm .ttl-blk {
  position: relative;
  padding: 64px 0 48px;
  background: linear-gradient(180deg, rgba(16, 34, 45, 0.92) 0%, rgba(16, 34, 45, 0.55) 60%, transparent 100%);
  overflow: hidden;
}

.prm .ttl-blk::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #07FF8D 0%, transparent 100%);
}

.prm .ttl-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.prm .ttl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.prm .ttl-dot {
  width: 8px;
  height: 8px;
  border-radius: 40px;
  background: #07FF8D;
  display: inline-block;
  animation: dotIn 0.25s ease-out both;
}

.prm .ttl-label {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(252, 253, 254, 0.65);
  animation: fadeUp 0.35s ease-out both;
  animation-delay: 0.08s;
}

.prm .ttl-h1 {
  font-size: 62px;
  line-height: 1.2;
  color: #FCFDFE;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  animation: fadeUp 0.4s ease-out both;
  animation-delay: 0.15s;
  max-width: 720px;
}

.prm .ttl-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(252, 253, 254, 0.78);
  max-width: 520px;
  margin: 0;
  animation: fadeUp 0.45s ease-out both;
  animation-delay: 0.22s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes dotIn {
  from {
    opacity: 0;
    transform: scale(0.4);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.prm .strokes-deco {
  position: absolute;
  top: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0.22;
}

.prm .strokes-deco span {
  display: block;
  height: 2px;
  background: #07FF8D;
  border-radius: 5px;
}

.prm .post-grid-sec {
  padding: 64px 0 0;
  background: linear-gradient(180deg, rgba(16, 34, 45, 0.04) 0%, rgba(252, 253, 254, 0) 100%);
  position: relative;
  z-index: 1;
}

.prm .sec-lbl {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(16, 34, 45, 0.5);
  margin-bottom: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.prm .sec-lbl::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(16, 34, 45, 0.12);
}

.prm .post-card {
  background: #FCFDFE;
  border-radius: 5px;
  box-shadow: 0 7px 20px 0 rgba(16, 34, 45, 0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease-out, transform 0.2s ease-out;
}

.prm .post-card:hover {
  box-shadow: 0 12px 44px 0 rgba(16, 34, 45, 0.13);
  transform: translateY(-3px);
}

.prm .post-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}

.prm .post-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(16, 34, 45, 0.28);
  transition: opacity 0.35s ease-out;
}

.prm .post-card:hover .post-img-wrap::after {
  opacity: 0;
}

.prm .post-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease-out;
}

.prm .post-card:hover .post-img-wrap img {
  transform: scale(1.05);
}

.prm .post-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prm .post-tag {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #07FF8D;
  background: rgba(7, 255, 141, 0.1);
  padding: 4px 8px;
  border-radius: 5px;
  display: inline-block;
}

.prm .post-h2 {
  font-size: 24px;
  line-height: 1.2;
  color: #10222D;
  margin: 8px 0 0;
}

.prm .post-sub {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(16, 34, 45, 0.65);
  margin: 0;
}

.prm .post-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.7);
  margin: 8px 0 0;
}

.prm .post-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(16, 34, 45, 0.45);
  flex-wrap: wrap;
}

.prm .post-meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.prm .post-meta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.prm .post-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #10222D;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease-out;
}

.prm .post-link:hover {
  color: #07FF8D;
}

.prm .post-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease-out;
}

.prm .post-link:hover svg {
  transform: translateX(4px);
}

.prm .post-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 34, 45, 0.08);
}

.prm .post-author-name {
  font-size: 14px;
  color: rgba(16, 34, 45, 0.6);
}

.prm .diag-div {
  height: 48px;
  background: #FCFDFE;
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
  position: relative;
  z-index: 1;
}

.prm .series-sec {
  padding: 64px 0;
  background: linear-gradient(180deg, rgba(16, 34, 45, 0.06) 0%, rgba(7, 255, 141, 0.04) 100%);
  position: relative;
  z-index: 1;
}

.prm .series-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.prm .series-card {
  background: #FCFDFE;
  border-radius: 40px;
  padding: 32px;
  box-shadow: 0 3px 5px 0 rgba(16, 34, 45, 0.08);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease-out;
}

.prm .series-card:hover {
  box-shadow: 0 12px 44px 0 rgba(16, 34, 45, 0.13);
}

.prm .series-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(180deg, rgba(7, 255, 141, 0.15) 0%, transparent 100%);
  border-radius: 0 40px 0 40px;
}

.prm .series-num {
  font-size: 46px;
  line-height: 1.2;
  color: rgba(7, 255, 141, 0.25);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.prm .series-h3 {
  font-size: 24px;
  line-height: 1.2;
  color: #10222D;
  margin: 0 0 8px;
}

.prm .series-p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.65);
  margin: 0;
}

.prm .series-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(16, 34, 45, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.prm .themed-sec {
  padding: 64px 0;
  background: #10222D;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.prm .themed-sec::before {
  content: '';
  position: absolute;
  bottom: -32px;
  left: -32px;
  width: 300px;
  height: 300px;
  border-radius: 40px;
  background: rgba(7, 255, 141, 0.05);
  pointer-events: none;
}

.prm .themed-sec .sec-lbl {
  color: rgba(252, 253, 254, 0.4);
}

.prm .themed-sec .sec-lbl::after {
  background: rgba(252, 253, 254, 0.12);
}

.prm .themed-h2 {
  font-size: 33px;
  line-height: 1.2;
  color: #FCFDFE;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 32px;
  max-width: 600px;
}

.prm .themed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.prm .theme-card {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  cursor: pointer;
}

.prm .theme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease-out;
}

.prm .theme-card:hover img {
  transform: scale(1.06);
}

.prm .theme-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16, 34, 45, 0.85) 100%);
  transition: opacity 0.3s ease-out;
}

.prm .theme-card:hover .theme-overlay {
  opacity: 0.7;
}

.prm .theme-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
}

.prm .theme-h4 {
  font-size: 16px;
  line-height: 1.45;
  color: #FCFDFE;
  margin: 0 0 4px;
}

.prm .theme-count {
  font-size: 14px;
  color: rgba(252, 253, 254, 0.55);
}

.prm .themed-wide {
  grid-column: span 2;
  aspect-ratio: auto;
  min-height: 240px;
}

.prm .archive-sec {
  padding: 64px 0;
  background: linear-gradient(180deg, rgba(252, 253, 254, 0) 0%, rgba(7, 255, 141, 0.06) 100%);
  position: relative;
  z-index: 1;
}

.prm .archive-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 32px;
}

.prm .archive-h2 {
  font-size: 33px;
  line-height: 1.2;
  color: #10222D;
  margin: 0 0 16px;
}

.prm .archive-p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.65);
  margin: 0 0 32px;
}

.prm .archive-img-wrap {
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 44px 0 rgba(16, 34, 45, 0.13);
  position: relative;
}

.prm .archive-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 255, 141, 0.12);
  transition: opacity 0.35s ease-out;
}

.prm .archive-img-wrap:hover::after {
  opacity: 0;
}

.prm .archive-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.38s ease-out;
}

.prm .archive-img-wrap:hover img {
  transform: scale(1.04);
}

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

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

.prm .stat-num {
  font-size: 46px;
  line-height: 1.2;
  color: #10222D;
  font-weight: 700;
}

.prm .stat-lbl {
  font-size: 14px;
  color: rgba(16, 34, 45, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.prm .stat-num .acc {
  color: #07FF8D;
}

.prm .map-sec {
  padding: 64px 0 80px;
  background: #FCFDFE;
  position: relative;
  z-index: 1;
}

.prm .map-h2 {
  font-size: 33px;
  line-height: 1.2;
  color: #10222D;
  margin: 0 0 8px;
}

.prm .map-intro {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.6);
  margin: 0 0 32px;
  max-width: 560px;
}

.prm .tag-cloud {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.prm .tag-item {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #10222D;
  background: rgba(16, 34, 45, 0.06);
  text-decoration: none;
  transition: background 0.22s ease-out, color 0.22s ease-out;
  animation: tagIn 0.3s ease-out both;
}

.prm .tag-item:nth-child(1) {
  animation-delay: 0.05s;
}

.prm .tag-item:nth-child(2) {
  animation-delay: 0.1s;
}

.prm .tag-item:nth-child(3) {
  animation-delay: 0.15s;
}

.prm .tag-item:nth-child(4) {
  animation-delay: 0.2s;
}

.prm .tag-item:nth-child(5) {
  animation-delay: 0.25s;
}

.prm .tag-item:nth-child(6) {
  animation-delay: 0.3s;
}

.prm .tag-item:nth-child(7) {
  animation-delay: 0.35s;
}

.prm .tag-item:nth-child(8) {
  animation-delay: 0.4s;
}

.prm .tag-item:nth-child(9) {
  animation-delay: 0.45s;
}

@keyframes tagIn {
  from {
    opacity: 0;
    transform: rotate(-4deg) scale(0.88);
  }

  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

.prm .tag-item:hover {
  background: #07FF8D;
  color: #10222D;
}

.prm .tag-item.big {
  font-size: 16px;
  padding: 8px 16px;
  background: rgba(7, 255, 141, 0.15);
}

.prm .map-topics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.prm .topic-card {
  border-radius: 5px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(16, 34, 45, 0.04) 0%, rgba(7, 255, 141, 0.05) 100%);
  box-shadow: 0 3px 5px 0 rgba(16, 34, 45, 0.08);
  transition: box-shadow 0.28s ease-out;
}

.prm .topic-card:hover {
  box-shadow: 0 7px 20px 0 rgba(16, 34, 45, 0.09);
}

.prm .topic-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}

.prm .topic-h5 {
  font-size: 16px;
  line-height: 1.45;
  color: #10222D;
  margin: 0 0 8px;
}

.prm .topic-p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.55);
  margin: 0;
}

.prm .expert-sec {
  padding: 64px 0;
  background: linear-gradient(180deg, rgba(16, 34, 45, 0.05) 0%, rgba(16, 34, 45, 0.02) 100%);
  position: relative;
  z-index: 1;
}

.prm .expert-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}

.prm .portrait-wrap {
  width: 160px;
  aspect-ratio: 4/5;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 7px 20px 0 rgba(16, 34, 45, 0.09);
  flex-shrink: 0;
}

.prm .portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.38s ease-out;
}

.prm .portrait-wrap:hover img {
  transform: scale(1.04);
}

.prm .expert-h3 {
  font-size: 24px;
  line-height: 1.2;
  color: #10222D;
  margin: 0 0 8px;
}

.prm .expert-role {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(16, 34, 45, 0.45);
  margin-bottom: 16px;
}

.prm .expert-p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.65);
  margin: 0;
}

.prm .expert-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.prm .expert-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  background: #FCFDFE;
  border-radius: 40px;
  padding: 32px;
  box-shadow: 0 3px 5px 0 rgba(16, 34, 45, 0.08);
}

.prm .portrait-sm {
  width: 80px;
  aspect-ratio: 4/5;
  border-radius: 40px;
  overflow: hidden;
  flex-shrink: 0;
}

.prm .portrait-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease-out;
}

.prm .portrait-sm:hover img {
  transform: scale(1.05);
}

.prm .cta-strip {
  padding: 64px 0;
  background: #10222D;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.prm .cta-strip::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 40px;
  background: rgba(7, 255, 141, 0.07);
  pointer-events: none;
}

.prm .cta-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.prm .cta-txt h2 {
  font-size: 33px;
  line-height: 1.2;
  color: #FCFDFE;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.prm .cta-txt p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(252, 253, 254, 0.65);
  margin: 0;
}

.prm .btn-pri {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 5px;
  background: #07FF8D;
  color: #10222D;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease-out, transform 0.15s ease-out;
  box-shadow: 0 7px 20px 0 rgba(7, 255, 141, 0.09);
  flex-shrink: 0;
}

.prm .btn-pri:hover {
  box-shadow: 0 12px 44px 0 rgba(7, 255, 141, 0.13);
}

.prm .btn-pri:active {
  transform: scale(0.97);
}

.prm .btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 5px;
  background: transparent;
  color: #FCFDFE;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border: 1px solid rgba(252, 253, 254, 0.25);
  cursor: pointer;
  transition: border-color 0.22s ease-out, background 0.22s ease-out;
}

.prm .btn-sec:hover {
  border-color: #07FF8D;
  background: rgba(7, 255, 141, 0.08);
}

.prm .btn-sec:active {
  transform: scale(0.97);
}

.prm .diag-dark {
  height: 40px;
  background: #10222D;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
  position: relative;
  z-index: 1;
}

.prm .diag-light {
  height: 40px;
  background: #FCFDFE;
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .prm .ttl-h1 {
    font-size: 46px;
  }

  .prm .series-grid {
    grid-template-columns: 1fr 1fr;
  }

  .prm .themed-grid {
    grid-template-columns: 1fr 1fr;
  }

  .prm .themed-wide {
    grid-column: span 2;
  }

  .prm .map-topics {
    grid-template-columns: 1fr 1fr;
  }

  .prm .expert-pair {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .prm .ttl-h1 {
    font-size: 33px;
  }

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

  .prm .ttl-inner {
    padding: 0 16px;
  }

  .prm .series-grid {
    grid-template-columns: 1fr;
  }

  .prm .themed-grid {
    grid-template-columns: 1fr;
  }

  .prm .themed-wide {
    grid-column: span 1;
  }

  .prm .archive-layout {
    grid-template-columns: 1fr;
  }

  .prm .map-topics {
    grid-template-columns: 1fr;
  }

  .prm .expert-pair {
    grid-template-columns: 1fr;
  }

  .prm .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .prm .stat-row {
    gap: 16px;
  }

  .prm .post-body {
    padding: 16px;
  }
}

@media (max-width: 640px) {
  .prm .ttl-h1 {
    font-size: 24px;
  }

  .prm .series-card {
    padding: 16px;
  }

  .prm .expert-card {
    grid-template-columns: 1fr;
  }

  .prm .portrait-sm {
    display: none;
  }

  .prm .stat-num {
    font-size: 33px;
  }
}

.suc-pg {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background: #FCFDFE;
}

.suc-pg .suc-wrap {
  max-width: 1024px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.suc-pg .suc-icon {
  width: 72px;
  height: 72px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(7, 255, 141, 0.18) 0%, rgba(7, 255, 141, 0.04) 100%);
  box-shadow: 0 7px 20px 0 rgba(7, 255, 141, 0.09), inset 0 1px 0 0 rgba(7, 255, 141, 0.4), inset 0 -2px 4px 0 rgba(16, 34, 45, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.suc-pg .suc-icon svg {
  display: block;
}

.suc-pg .suc-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 560px;
}

.suc-pg .suc-title {
  font-size: 46px;
  line-height: 1.2;
  color: #10222D;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

.suc-pg .suc-title span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 40px;
  background: #07FF8D;
  vertical-align: middle;
  margin-left: 4px;
  margin-bottom: 6px;
}

.suc-pg .suc-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 34, 45, 0.72);
  margin: 0;
}

.suc-pg .suc-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(180deg, #07FF8D 0%, rgba(7, 255, 141, 0.08) 100%);
  border-radius: 5px;
}

.suc-pg .suc-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.suc-pg .btn-prim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #07FF8D;
  color: #10222D;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 5px 0 rgba(7, 255, 141, 0.08), 0 7px 20px 0 rgba(7, 255, 141, 0.09);
  transition: box-shadow 0.25s ease-out, transform 0.15s ease-out, background 0.2s ease-out;
  font-weight: 600;
}

.suc-pg .btn-prim:hover {
  box-shadow: 0 7px 20px 0 rgba(7, 255, 141, 0.18), 0 12px 44px 0 rgba(7, 255, 141, 0.13);
  background: #00f082;
}

.suc-pg .btn-prim:active {
  transform: scale(0.97);
}

.suc-pg .btn-prim:focus-visible {
  outline: 2px solid #07FF8D;
  outline-offset: 3px;
}

.suc-pg .btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: #10222D;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  border: 1.5px solid rgba(16, 34, 45, 0.2);
  cursor: pointer;
  transition: border-color 0.2s ease-out, color 0.2s ease-out, transform 0.15s ease-out;
}

.suc-pg .btn-sec:hover {
  border-color: #10222D;
  color: #10222D;
}

.suc-pg .btn-sec:active {
  transform: scale(0.97);
}

.suc-pg .btn-sec:focus-visible {
  outline: 2px solid #10222D;
  outline-offset: 3px;
}

.suc-pg .suc-note {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(16, 34, 45, 0.48);
  margin: 0;
  text-align: center;
}

.suc-pg .suc-card {
  background: #FCFDFE;
  border-radius: 5px;
  border: 1px solid rgba(16, 34, 45, 0.08);
  box-shadow: 0 3px 5px 0 rgba(16, 34, 45, 0.08);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 560px;
}

@media (max-width: 640px) {
  .suc-pg .suc-title {
    font-size: 33px;
  }

  .suc-pg .suc-card {
    padding: 32px 16px;
  }

  .suc-pg .suc-actions {
    flex-direction: column;
    width: 100%;
  }

  .suc-pg .btn-prim,
  .suc-pg .btn-sec {
    width: 100%;
    justify-content: center;
  }
}