* {
  box-sizing: border-box;
}

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

.site-header {
  background: linear-gradient(180deg, #E4EBE8 0%, #ffffff 100%);
  border-bottom: 2px solid #B0BD3F;
  box-shadow: 2px 5px 28px 1px rgba(176, 189, 63, 0.08);
  padding-top: 32px;
  padding-bottom: 0;
  position: relative;
}

.brand-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
}

.brand-mark {
  background-color: #4841CB;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 0;
  box-shadow: 2px 3px 2px 1px rgba(72, 65, 203, 0.05), 2px 5px 28px 1px rgba(72, 65, 203, 0.08);
  flex-shrink: 0;
}

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

.brand-name {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  color: #2a2a2a;
  letter-spacing: 0;
  text-align: center;
}

.brand-name span {
  color: #4841CB;
}

.brand-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  text-align: center;
  font-weight: 400;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid rgba(176, 189, 63, 0.3);
  margin-top: 8px;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #2a2a2a;
  text-decoration: none;
  padding: 16px 32px;
  position: relative;
  transition: color 0.15s ease-out, background-color 0.15s ease-out;
  white-space: nowrap;
}

.primary-nav a::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 3px;
  background: #B0BD3F;
  border-radius: 7px 7px 0 0;
  transform: scaleX(0);
  transition: transform 0.18s ease-out;
}

.primary-nav a:hover {
  color: #4841CB;
  background-color: rgba(176, 189, 63, 0.08);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.primary-nav a:focus {
  background-color: rgba(176, 189, 63, 0.15);
  outline: none;
}

.primary-nav a[aria-current="page"] {
  color: #4841CB;
}

.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.primary-nav a .codicon {
  font-size: 14px;
  transition: transform 0.12s ease-out;
}

.primary-nav a:hover .codicon {
  transform: translateX(3px);
}

.site-footer {
  background: linear-gradient(180deg, #E4EBE8 0%, #2a2a2a 100%);
  padding-top: 64px;
  padding-bottom: 32px;
}

.footer-inner {
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.footer-brand-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 32px;
}

.footer-logo-mark {
  background-color: #4841CB;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 0;
  box-shadow: 2px 3px 2px 1px rgba(72, 65, 203, 0.05), 2px 8px 60px 1px rgba(72, 65, 203, 0.14);
}

.footer-logo-mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(228, 235, 232, 0.2);
  border-bottom: 1px solid rgba(228, 235, 232, 0.2);
}

.footer-divider {
  width: 1px;
  height: 16px;
  background: rgba(228, 235, 232, 0.3);
  display: inline-block;
}

.footer-links-row a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #E4EBE8;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 7px;
  transition: color 0.12s ease-out, background-color 0.18s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-links-row a:hover {
  color: #B0BD3F;
  background-color: rgba(176, 189, 63, 0.1);
}

.footer-links-row a:focus {
  background-color: rgba(176, 189, 63, 0.15);
  outline: none;
}

.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(228, 235, 232, 0.75);
}

.footer-contact-item a {
  color: rgba(228, 235, 232, 0.75);
  text-decoration: none;
  transition: color 0.12s ease-out;
}

.footer-contact-item a:hover {
  color: #B0BD3F;
}

.footer-contact-item a:focus {
  color: #B0BD3F;
  outline: none;
}

.footer-contact-item .codicon {
  font-size: 14px;
  color: #B0BD3F;
  flex-shrink: 0;
}

.footer-copy-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
  gap: 8px;
}

.footer-copy-row p {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(228, 235, 232, 0.45);
  margin: 0;
  text-align: center;
}

.cookie-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4000;
  background: #ffffff;
  border-bottom: 2px solid #B0BD3F;
  box-shadow: 2px 5px 28px 1px rgba(176, 189, 63, 0.08);
  transform: translateX(100%);
  transition: transform 0.22s ease-out;
}

.cookie-bar.visible {
  transform: translateX(0);
}

.cookie-bar-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.cookie-uses {
  flex: 1;
  min-width: 200px;
}

.cookie-uses p {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0 0 8px 0;
}

.cookie-uses ul {
  margin: 0;
  padding-left: 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #2a2a2a;
}

.cookie-headline {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  color: #2a2a2a;
  margin: 8px 0 0 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  padding: 8px 16px;
  border: 2px solid currentColor;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
  min-height: 44px;
  transition: background-color 0.15s ease-out, color 0.15s ease-out;
}

.cookie-btn.accept {
  color: #4841CB;
}

.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background-color: rgba(72, 65, 203, 0.08);
  outline: none;
}

.cookie-btn.decline {
  color: #555;
}

.cookie-btn.decline:hover,
.cookie-btn.decline:focus {
  background-color: rgba(176, 189, 63, 0.1);
  outline: none;
}

.cookie-settings-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #4841CB;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  min-height: 44px;
  transition: color 0.12s ease-out;
}

.cookie-settings-link:hover,
.cookie-settings-link:focus {
  color: #B0BD3F;
  outline: none;
}

.cookie-toggles {
  display: none;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid rgba(176, 189, 63, 0.3);
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-toggles.open {
  display: flex;
}

.cookie-toggle-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #2a2a2a;
}

.cookie-toggle-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #4841CB;
  cursor: pointer;
}

@media (max-width: 768px) {
  .primary-nav a {
    padding: 16px 16px;
    font-size: 14px;
  }

  .primary-nav a::after {
    left: 16px;
    right: 16px;
  }

  .footer-contact-row {
    flex-direction: column;
    gap: 16px;
  }

  .cookie-bar-inner {
    padding: 16px;
  }
}

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

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

  .footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.policy-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 32px;
}

.policy-inner h1 {
  font-size: 70px;
  line-height: 1.1;
  color: #1b1b2e;
  margin-bottom: 32px;
  margin-top: 0;
}

.policy-inner h2 {
  font-size: 40px;
  line-height: 1.1;
  color: #1b1b2e;
  margin-top: 64px;
  margin-bottom: 16px;
}

.policy-inner h3 {
  font-size: 22px;
  line-height: 1.6;
  color: #1b1b2e;
  margin-top: 32px;
  margin-bottom: 16px;
}

.policy-inner h4 {
  font-size: 17px;
  line-height: 1.6;
  color: #1b1b2e;
  margin-top: 32px;
  margin-bottom: 8px;
}

.policy-inner h5 {
  font-size: 14px;
  line-height: 1.6;
  color: #4841CB;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 32px;
  margin-bottom: 8px;
}

.policy-inner h6 {
  font-size: 14px;
  line-height: 1.6;
  color: #6a6a80;
  margin-top: 16px;
  margin-bottom: 8px;
}

.policy-inner p {
  font-size: 17px;
  line-height: 1.6;
  color: #2a2a3d;
  margin-top: 0;
  margin-bottom: 16px;
  max-width: 72ch;
}

.policy-inner strong,
.policy-inner b {
  font-weight: 700;
  color: #1b1b2e;
}

.policy-inner em,
.policy-inner i {
  font-style: italic;
  color: #3a3a55;
}

.policy-inner a {
  color: #4841CB;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s ease-out, text-decoration-color 0.15s ease-out;
}

.policy-inner a:hover {
  color: #B0BD3F;
  text-decoration-color: #B0BD3F;
}

.policy-inner hr {
  border: none;
  border-top: 1px solid #E4EBE8;
  margin-top: 64px;
  margin-bottom: 64px;
}

.policy-inner div {
  max-width: 1366px;
}

.policy-inner div p:last-child {
  margin-bottom: 0;
}

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

  .policy-inner h1 {
    font-size: 40px;
  }

  .policy-inner h2 {
    font-size: 22px;
    margin-top: 32px;
  }

  .policy-inner h3 {
    font-size: 17px;
    margin-top: 16px;
  }

  .policy-inner hr {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}

@media (max-width: 375px) {
  .policy-inner {
    padding: 16px 8px;
  }

  .policy-inner h1 {
    font-size: 22px;
  }

  .policy-inner h2 {
    font-size: 17px;
  }

  .policy-inner h3 {
    font-size: 14px;
  }

  .policy-inner p {
    font-size: 14px;
  }
}

.mcd {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.mcd .clip-reveal {
  clip-path: inset(0 0 100% 0);
  animation: clipDown 0.7s ease-out 0.1s forwards;
}

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

.mcd .clip-reveal-slow {
  clip-path: inset(0 0 100% 0);
  animation: clipDown 0.9s ease-out 0.3s forwards;
}

.mcd .clip-reveal-delay {
  clip-path: inset(0 0 100% 0);
  animation: clipDown 0.8s ease-out 0.5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.mcd .fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease-out 0.2s forwards;
}

.mcd .fade-in-late {
  opacity: 0;
  animation: fadeIn 0.6s ease-out 0.6s forwards;
}

.mcd .underline-key {
  position: relative;
  display: inline-block;
}

.mcd .underline-key::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #B0BD3F;
  animation: underlineDraw 0.5s ease-out 0.8s forwards;
}

@keyframes underlineDraw {
  to {
    width: 100%;
  }
}

.mcd .title-blk {
  position: relative;
  padding: 64px 96px;
  background: #fff;
  border-bottom: 2px dotted #B0BD3F;
  text-align: center;
}

.mcd .title-blk::before,
.mcd .title-blk::after {
  content: '';
  position: absolute;
  left: 32px;
  right: 32px;
  height: 1px;
  background: repeating-linear-gradient(to right, #4841CB 0, #4841CB 4px, transparent 4px, transparent 10px);
  pointer-events: none;
}

.mcd .title-blk::before {
  top: 16px;
}

.mcd .title-blk::after {
  bottom: 16px;
}

.mcd .title-blk .meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.mcd .tag-pill {
  display: inline-block;
  padding: 8px 16px;
  background: #E4EBE8;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mcd .user-badge {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1.5px solid #4841CB;
  border-radius: 7px;
  font-size: 14px;
  color: #4841CB;
}

.mcd .readtime-note {
  font-size: 14px;
  color: #555;
}

.mcd .title-blk h1 {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.1;
  color: #181818;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}

.mcd .title-blk .img-wrap {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 2px 8px 60px 1px rgba(176, 189, 63, 0.14);
  opacity: 0;
  animation: fadeIn 1s ease-out 0.4s forwards;
}

.mcd .title-blk .img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
  transition: filter 0.2s ease-out;
}

.mcd .title-blk .img-wrap:hover img {
  filter: grayscale(0%);
}

.mcd .shape-layer {
  position: absolute;
  top: 32px;
  right: 64px;
  width: 120px;
  height: 120px;
  border-radius: 48px;
  background: rgba(72, 65, 203, 0.05);
  pointer-events: none;
}

.mcd .shape-layer-2 {
  position: absolute;
  bottom: 64px;
  left: 64px;
  width: 80px;
  height: 80px;
  border-radius: 32px;
  background: rgba(176, 189, 63, 0.07);
  pointer-events: none;
}

.mcd .desc-sect {
  padding: 96px 96px 64px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
  background: #E4EBE8;
  position: relative;
}

.mcd .desc-sect::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(to right, #B0BD3F 0, #B0BD3F 6px, transparent 6px, transparent 14px),
    repeating-linear-gradient(to right, #4841CB 0, #4841CB 6px, transparent 6px, transparent 14px);
  background-size: 14px 1.5px, 14px 1.5px;
  background-position: 0 0, 0 100%;
}

.mcd .desc-body h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: #181818;
  margin: 0 0 32px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mcd .desc-body .desc-text {
  font-size: 17px;
  line-height: 1.6;
  color: #2e2e2e;
}

.mcd .desc-body .desc-text p {
  margin: 0 0 16px;
}

.mcd .desc-body .desc-text em {
  color: #4841CB;
  font-style: normal;
  font-weight: 600;
}

.mcd .desc-body .desc-text mark {
  background: rgba(176, 189, 63, 0.2);
  color: inherit;
  border-radius: 4px;
  padding: 0 4px;
}

.mcd .desc-body .desc-text ol {
  padding-left: 32px;
  margin: 0 0 16px;
}

.mcd .desc-body .desc-text li {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.mcd .desc-body .desc-text dl {
  margin: 0 0 16px;
}

.mcd .desc-body .desc-text dt {
  font-weight: 700;
  color: #181818;
}

.mcd .desc-body .desc-text dd {
  margin: 0 0 8px 16px;
  color: #444;
}

.mcd .price-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 2px 5px 28px 1px rgba(72, 65, 203, 0.08);
  position: sticky;
  top: 32px;
  border-right: 3px solid #B0BD3F;
}

.mcd .price-card .price-num {
  font-size: 40px;
  font-weight: 800;
  color: #181818;
  line-height: 1.1;
  margin: 0 0 8px;
}

.mcd .price-card .price-des {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 16px;
  border-bottom: 1px solid #E4EBE8;
  padding-bottom: 16px;
}

.mcd .price-card .price-note {
  font-size: 14px;
  color: #4841CB;
  line-height: 1.6;
  margin: 0 0 32px;
}

.mcd .price-card .meta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.mcd .price-card .meta-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  padding: 8px 0;
  border-bottom: 1px dotted #ccc;
}

.mcd .price-card .meta-list li:last-child {
  border-bottom: none;
}

.mcd .price-card .meta-list .codicon {
  color: #B0BD3F;
  font-size: 17px;
}

.mcd .seats-badge {
  display: inline-block;
  background: rgba(176, 189, 63, 0.15);
  color: #5a6200;
  border-radius: 7px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.mcd .btn-enroll {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #4841CB;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  transition: background 0.15s ease-out, box-shadow 0.15s ease-out;
  box-shadow: 2px 3px 2px 1px rgba(72, 65, 203, 0.05);
}

.mcd .btn-enroll .codicon {
  transition: transform 0.15s ease-out;
}

.mcd .btn-enroll:hover {
  background: #3730b0;
  box-shadow: 2px 5px 28px 1px rgba(72, 65, 203, 0.08);
}

.mcd .btn-enroll:hover .codicon {
  transform: translateX(4px);
}

.mcd .btn-enroll:focus {
  outline: 3px solid #B0BD3F;
  outline-offset: 2px;
}

.mcd .prog-sect {
  padding: 96px 96px;
  background: #fff;
  position: relative;
}

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

.mcd .prog-sect h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  color: #181818;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.mcd .prog-sect .prog-sub {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  max-width: 380px;
  text-align: right;
}

.mcd .prog-body {
  font-size: 17px;
  line-height: 1.6;
  color: #2e2e2e;
}

.mcd .prog-body p {
  margin: 0 0 16px;
}

.mcd .prog-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: #181818;
  margin: 32px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mcd .prog-body mark {
  background: rgba(176, 189, 63, 0.2);
  border-radius: 4px;
  padding: 0 4px;
  color: inherit;
}

.mcd .prog-body ul {
  padding-left: 32px;
  margin: 0 0 16px;
}

.mcd .prog-body li {
  margin-bottom: 8px;
}

.mcd .prog-body dl {
  margin: 0 0 16px;
}

.mcd .prog-body dt {
  font-weight: 700;
  color: #181818;
}

.mcd .prog-body dd {
  margin: 0 0 8px 16px;
  color: #444;
}

.mcd .prog-body blockquote {
  border-left: none;
  background: rgba(72, 65, 203, 0.04);
  border-radius: 12px;
  padding: 32px;
  margin: 32px 0;
  font-size: 17px;
  color: #333;
  box-shadow: 2px 3px 2px 1px rgba(72, 65, 203, 0.05);
}

.mcd .prog-body cite {
  display: block;
  font-size: 14px;
  color: #4841CB;
  font-style: normal;
  margin-top: 8px;
}

.mcd .prog-body details {
  border: 1.5px solid #E4EBE8;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.mcd .prog-body summary {
  padding: 16px 32px;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  background: #E4EBE8;
  color: #181818;
  list-style: none;
  transition: background 0.15s ease-out;
}

.mcd .prog-body summary:hover {
  background: #d4ddd8;
}

.mcd .prog-body details[open] summary {
  background: #B0BD3F;
  color: #fff;
}

.mcd .prog-body details>*:not(summary) {
  padding: 16px 32px;
}

.mcd .react-sect {
  padding: 64px 96px;
  background: #181818;
  position: relative;
}

.mcd .react-sect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(176, 189, 63, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.mcd .react-sect .inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mcd .metric-blk {
  text-align: center;
  padding: 64px 32px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  border: 1.5px solid rgba(176, 189, 63, 0.2);
  box-shadow: 2px 8px 60px 1px rgba(176, 189, 63, 0.14);
}

.mcd .metric-blk .big-num {
  font-size: 70px;
  font-weight: 900;
  line-height: 1.1;
  color: #B0BD3F;
  display: block;
}

.mcd .metric-blk .metric-label {
  font-size: 17px;
  color: #ccc;
  line-height: 1.6;
  margin-top: 16px;
}

.mcd .metric-blk .metric-ctx {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  margin-top: 8px;
}

.mcd .react-col h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}

.mcd .react-col .react-sub {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin: 0 0 32px;
}

.mcd .react-group {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.mcd .react-group input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.mcd .react-group label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #ccc;
  transition: border-color 0.15s ease-out, background 0.15s ease-out;
  min-width: 72px;
}

.mcd .react-group label:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(176, 189, 63, 0.4);
}

.mcd .react-group .react-icon {
  width: 32px;
  height: 32px;
}

.mcd .react-group input[type="radio"]:checked+label {
  border-color: #B0BD3F;
  background: rgba(176, 189, 63, 0.15);
  color: #fff;
}

.mcd .react-group input[type="radio"]:focus+label {
  outline: 2px solid #B0BD3F;
  outline-offset: 2px;
}

.mcd .price-card {
  position: relative;
}

.mcd .price-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 32px 32px 0;
  border-color: transparent #E4EBE8 transparent transparent;
  border-radius: 0 12px 0 0;
  transition: border-width 0.2s ease-out;
}

.mcd .price-card:hover::before {
  border-width: 0 48px 48px 0;
}

@media (max-width: 768px) {
  .mcd .title-blk {
    padding: 64px 16px;
  }

  .mcd .title-blk h1 {
    font-size: 40px;
  }

  .mcd .title-blk .img-wrap img {
    height: 240px;
  }

  .mcd .desc-sect {
    grid-template-columns: 1fr;
    padding: 64px 16px;
    gap: 32px;
  }

  .mcd .price-card {
    position: static;
  }

  .mcd .prog-sect {
    padding: 64px 16px;
  }

  .mcd .prog-sect .prog-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .mcd .prog-sect .prog-sub {
    text-align: left;
  }

  .mcd .react-sect {
    padding: 64px 16px;
  }

  .mcd .react-sect .inner-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mcd .shape-layer,
  .mcd .shape-layer-2 {
    display: none;
  }
}

@media (max-width: 375px) {
  .mcd .title-blk h1 {
    font-size: 40px;
  }

  .mcd .metric-blk .big-num {
    font-size: 40px;
  }

  .mcd .react-group {
    gap: 8px;
  }

  .mcd .react-group label {
    min-width: 60px;
    padding: 8px;
  }
}

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

.srvs-pg .strip-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.srvs-pg .strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.45;
  animation: slowpan 18s ease-in-out infinite alternate;
}

@keyframes slowpan {
  from {
    transform: scale(1.06) translateX(0);
  }

  to {
    transform: scale(1.06) translateX(-2%);
  }
}

.srvs-pg .strip-edge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #B0BD3F;
}

.srvs-pg .title-zone {
  padding: 64px 96px 64px 96px;
  max-width: 820px;
}

.srvs-pg .pre-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #3a3a3a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.srvs-pg .pre-desc .dash-accent {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #B0BD3F;
  vertical-align: middle;
  margin-right: 8px;
}

.srvs-pg .pg-heading {
  font-size: 70px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b1b1b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 32px 0;
}

.srvs-pg .pg-heading .underline-key {
  position: relative;
  display: inline-block;
}

.srvs-pg .pg-heading .underline-key::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 3px;
  background: #4841CB;
  animation: drawline 0.8s 0.4s ease-out forwards;
}

@keyframes drawline {
  to {
    width: 100%;
  }
}

.srvs-pg .pg-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #3a3a3a;
  max-width: 560px;
}

.srvs-pg .offer-band {
  background: #f5f5f2;
  padding: 96px 96px;
}

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

.srvs-pg .offer-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 2px 3px 2px 1px rgba(176, 189, 63, 0.05);
  transition: box-shadow 0.15s ease-out, transform 0.15s ease-out;
  cursor: default;
}

.srvs-pg .offer-card:hover {
  box-shadow: 2px 5px 28px 1px rgba(176, 189, 63, 0.08);
  transform: translateY(-3px);
}

.srvs-pg .offer-card .card-num {
  font-size: 40px;
  font-weight: 700;
  color: #E4EBE8;
  line-height: 1.1;
  margin-bottom: 16px;
}

.srvs-pg .offer-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1b1b1b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin: 0 0 16px 0;
}

.srvs-pg .offer-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
}

.srvs-pg .offer-card .price-tag {
  margin-top: 32px;
  font-size: 17px;
  font-weight: 700;
  color: #4841CB;
}

.srvs-pg .offer-card .price-tag span {
  font-size: 14px;
  font-weight: 400;
  color: #7a7a7a;
}

.srvs-pg .detail-band {
  padding: 96px 96px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

.srvs-pg .detail-left h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1b1b1b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin: 0 0 32px 0;
}

.srvs-pg .detail-left .process-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.srvs-pg .detail-left .process-list li {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #E4EBE8;
}

.srvs-pg .detail-left .process-list li:last-child {
  border-bottom: none;
}

.srvs-pg .step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: #4841CB;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.srvs-pg .step-text h5 {
  font-size: 17px;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.srvs-pg .step-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
}

.srvs-pg .detail-right {
  position: sticky;
  top: 32px;
}

.srvs-pg .sidebar-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 420px;
  box-shadow: 2px 8px 60px 1px rgba(72, 65, 203, 0.14);
}

.srvs-pg .sidebar-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowzoom 20s ease-in-out infinite alternate;
}

@keyframes slowzoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.07);
  }
}

.srvs-pg .sidebar-note {
  margin-top: 32px;
  padding: 32px;
  background: #E4EBE8;
  border-radius: 12px;
}

.srvs-pg .sidebar-note .quot-mark {
  font-size: 70px;
  line-height: 1.1;
  color: #B0BD3F;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

.srvs-pg .sidebar-note p {
  font-size: 14px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0;
  font-style: italic;
}

.srvs-pg .faq-band {
  padding: 96px 96px;
  background-color: #f9f6f0;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(176, 189, 63, 0.07) 0%, transparent 55%);
  position: relative;
}

.srvs-pg .faq-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(176, 189, 63, 0.04) 31%, rgba(176, 189, 63, 0.04) 32%, transparent 32.5%);
  background-size: 36px 36px;
  pointer-events: none;
}

.srvs-pg .faq-head {
  text-align: center;
  margin-bottom: 64px;
}

.srvs-pg .faq-head h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1b1b1b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin: 0 0 16px 0;
}

.srvs-pg .faq-head p {
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a4a;
  max-width: 520px;
  margin: 0 auto;
}

.srvs-pg .faq-col {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.srvs-pg .faq-item {
  border-radius: 12px;
  background: #ffffff;
  margin-bottom: 16px;
  box-shadow: 2px 3px 2px 1px rgba(176, 189, 63, 0.05);
  overflow: hidden;
}

.srvs-pg .faq-item summary {
  font-size: 17px;
  font-weight: 700;
  color: #1b1b1b;
  padding: 32px;
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.15s ease-out;
}

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

.srvs-pg .faq-item summary:hover {
  color: #4841CB;
}

.srvs-pg .faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 2px solid #4841CB;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: background 0.12s ease-out;
}

.srvs-pg .faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: #4841CB;
  transition: transform 0.18s ease-out;
}

.srvs-pg .faq-item[open] .faq-icon {
  background: #4841CB;
}

.srvs-pg .faq-item[open] .faq-icon svg {
  stroke: #ffffff;
  transform: rotate(45deg);
}

.srvs-pg .faq-body {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  padding: 0 32px 32px 32px;
}

.srvs-pg .faq-body p {
  margin: 0;
}

.srvs-pg .booking-band {
  padding: 96px 96px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  background: #1b1b1b;
  animation: bgshift 15s linear infinite;
}

@keyframes bgshift {
  0% {
    background-color: #1b1b1b;
  }

  50% {
    background-color: #1f1e2e;
  }

  100% {
    background-color: #1b1b1b;
  }
}

.srvs-pg .booking-text h2 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin: 0 0 16px 0;
}

.srvs-pg .booking-text p {
  font-size: 17px;
  line-height: 1.6;
  color: #c0c0c0;
  max-width: 480px;
  margin: 0;
}

.srvs-pg .booking-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.srvs-pg .btn-primary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #B0BD3F;
  color: #1b1b1b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.12s ease-out, box-shadow 0.15s ease-out;
}

.srvs-pg .btn-primary:hover {
  background: #c8d644;
  box-shadow: 2px 5px 28px 1px rgba(176, 189, 63, 0.08);
}

.srvs-pg .btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

.srvs-pg .btn-icon {
  transition: transform 0.12s ease-out;
}

.srvs-pg .btn-secondary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: border-color 0.12s ease-out, color 0.12s ease-out;
}

.srvs-pg .btn-secondary:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.srvs-pg .btn-secondary:hover .btn-icon {
  transform: translateX(4px);
}

.srvs-pg .faq-item summary:focus-visible {
  outline: 2px solid #4841CB;
  outline-offset: 2px;
}

.srvs-pg .offer-card:focus-within {
  box-shadow: 2px 5px 28px 1px rgba(176, 189, 63, 0.08);
}

.srvs-pg .tooltip-wrap {
  position: relative;
  display: inline-block;
}

.srvs-pg .tooltip-wrap .tip-bubble {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #1b1b1b;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  padding: 8px 16px;
  border-radius: 7px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease-out;
  z-index: 10;
}

.srvs-pg .tooltip-wrap:focus-within .tip-bubble {
  opacity: 1;
}

@media (max-width: 1366px) {
  .srvs-pg .title-zone {
    padding: 64px 64px;
  }

  .srvs-pg .offer-band {
    padding: 64px 64px;
  }

  .srvs-pg .detail-band {
    padding: 64px 64px;
  }

  .srvs-pg .faq-band {
    padding: 64px 64px;
  }

  .srvs-pg .booking-band {
    padding: 64px 64px;
  }
}

@media (max-width: 768px) {
  .srvs-pg .strip-img {
    height: 120px;
  }

  .srvs-pg .title-zone {
    padding: 32px 16px;
  }

  .srvs-pg .pg-heading {
    font-size: 40px;
  }

  .srvs-pg .offer-band {
    padding: 64px 16px;
  }

  .srvs-pg .offer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .srvs-pg .detail-band {
    padding: 64px 16px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .srvs-pg .detail-right {
    position: static;
  }

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

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

  .srvs-pg .booking-band {
    padding: 64px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .srvs-pg .booking-text h2 {
    font-size: 22px;
  }
}

@media (max-width: 375px) {
  .srvs-pg .pg-heading {
    font-size: 40px;
  }

  .srvs-pg .offer-card {
    padding: 16px;
  }

  .srvs-pg .faq-item summary {
    padding: 16px;
    font-size: 14px;
  }

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

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

.ctus-pg .split-band {
  display: grid;
  grid-template-columns: 60fr 40fr;
  min-height: 520px;
  position: relative;
}

.ctus-pg .split-left {
  padding: 96px 64px 96px 64px;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ctus-pg .split-left::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 32px;
  bottom: 32px;
  left: 32px;
  border: 1px solid #E4EBE8;
  border-radius: 20px;
  pointer-events: none;
  z-index: 0;
}

.ctus-pg .frame-line-top {
  position: absolute;
  top: 64px;
  left: 64px;
  width: 80px;
  height: 2px;
  background: #B0BD3F;
  z-index: 1;
}

.ctus-pg .frame-line-left {
  position: absolute;
  top: 64px;
  left: 64px;
  width: 2px;
  height: 80px;
  background: #B0BD3F;
  z-index: 1;
}

.ctus-pg .split-left-inner {
  position: relative;
  z-index: 1;
}

.ctus-pg .eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B0BD3F;
  margin-bottom: 16px;
  line-height: 1.1;
}

.ctus-pg .pg-heading {
  font-size: 70px;
  font-weight: 900;
  line-height: 1.1;
  color: #111;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.ctus-pg .pg-heading .accent-word {
  display: inline-block;
  position: relative;
  color: #4841CB;
}

.ctus-pg .pg-heading .accent-word::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 3px;
  background: #B0BD3F;
  border-radius: 2px;
  animation: draw-line 0.8s 0.4s ease-out forwards;
}

@keyframes draw-line {
  to {
    width: 100%;
  }
}

.ctus-pg .lede {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  max-width: 420px;
  margin-bottom: 32px;
}

.ctus-pg .metric-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 16px;
}

.ctus-pg .metric-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctus-pg .metric-num {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.1;
  color: #111;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.ctus-pg .metric-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.ctus-pg .metric-arrow svg {
  width: 20px;
  height: 20px;
}

.ctus-pg .metric-label {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.ctus-pg .split-right {
  background: linear-gradient(135deg, #4841CB 0%, #2e2a9a 100%);
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.ctus-pg .split-right::before {
  content: "";
  position: absolute;
  top: -64px;
  right: -64px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at top right, rgba(176, 189, 63, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.ctus-pg .glow-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(circle at 50% 100%, rgba(176, 189, 63, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 3s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
  }
}

.ctus-pg .contact-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.ctus-pg .contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.18s ease-out, border-color 0.15s ease-out;
}

.ctus-pg .contact-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(176, 189, 63, 0.4);
}

.ctus-pg .ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(176, 189, 63, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ctus-pg .ci-icon svg {
  width: 20px;
  height: 20px;
}

.ctus-pg .ci-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctus-pg .ci-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.1;
}

.ctus-pg .ci-val {
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
  font-weight: 500;
}

.ctus-pg .ci-val a {
  color: #fff;
  text-decoration: none;
  transition: color 0.15s ease-out;
}

.ctus-pg .ci-val a:hover {
  color: #B0BD3F;
}

.ctus-pg .divider-tri {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px 0;
  background: #E4EBE8;
}

.ctus-pg .tri-shape {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid #B0BD3F;
}

.ctus-pg .tri-line {
  width: 120px;
  height: 1px;
  background: #B0BD3F;
  opacity: 0.4;
}

.ctus-pg .form-band {
  background: #fff;
  padding: 96px 64px;
  position: relative;
}

.ctus-pg .form-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(176, 189, 63, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.ctus-pg .form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.ctus-pg .form-col-head .sub-eyebrow {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4841CB;
  line-height: 1.1;
}

.ctus-pg .form-col-head .form-heading {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: #111;
}

.ctus-pg .form-col-head .form-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  margin-top: 8px;
}

.ctus-pg .form-shared-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #B0BD3F 0%, #4841CB 50%, #B0BD3F 100%);
  border-radius: 2px;
}

.ctus-pg .form-col-body {
  grid-column: span 2;
}

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

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

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

.ctus-pg .field-grp label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #333;
  line-height: 1.1;
}

.ctus-pg .field-grp input,
.ctus-pg .field-grp select {
  padding: 16px;
  border: 1.5px solid #E4EBE8;
  border-radius: 12px;
  font-size: 17px;
  line-height: 1.6;
  color: #111;
  background: #fff;
  outline: none;
  box-shadow: inset 2px 3px 4px rgba(72, 65, 203, 0.04);
  transition: border-color 0.18s ease-out, box-shadow 0.18s ease-out;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.ctus-pg .field-grp input::placeholder {
  color: rgba(17, 17, 17, 0.4);
}

.ctus-pg .field-grp input:focus,
.ctus-pg .field-grp select:focus {
  border-color: #4841CB;
  box-shadow: inset 2px 3px 4px rgba(72, 65, 203, 0.06), 2px 5px 28px 1px rgba(72, 65, 203, 0.08);
}

.ctus-pg .select-wrap {
  position: relative;
}

.ctus-pg .select-wrap select {
  padding-right: 40px;
  cursor: pointer;
}

.ctus-pg .select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 16px;
  height: 16px;
}

.ctus-pg .timeline-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctus-pg .timeline-row label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #333;
  line-height: 1.1;
}

.ctus-pg .timeline-opts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.ctus-pg .tl-opt {
  position: relative;
}

.ctus-pg .tl-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ctus-pg .tl-opt label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  border: 1.5px solid #E4EBE8;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #555;
  text-align: center;
  line-height: 1.1;
  transition: border-color 0.15s ease-out, background 0.15s ease-out, color 0.15s ease-out;
  background: #fff;
}

.ctus-pg .tl-opt input[type="radio"]:checked+label {
  border-color: #4841CB;
  background: rgba(72, 65, 203, 0.06);
  color: #4841CB;
}

.ctus-pg .tl-opt label:hover {
  border-color: #B0BD3F;
  color: #333;
}

.ctus-pg .tl-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctus-pg .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #E4EBE8;
  border-radius: 12px;
}

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

.ctus-pg .privacy-text {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.ctus-pg .privacy-text a {
  color: #4841CB;
  text-decoration: underline;
  transition: color 0.15s ease-out;
}

.ctus-pg .privacy-text a:hover {
  color: #B0BD3F;
}

.ctus-pg .submit-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 2px 5px 28px 1px rgba(72, 65, 203, 0.08);
  transition: background 0.18s ease-out, box-shadow 0.18s ease-out;
}

.ctus-pg .submit-btn:hover {
  background: #4841CB;
  box-shadow: 2px 8px 60px 1px rgba(72, 65, 203, 0.14);
}

.ctus-pg .submit-btn:hover .btn-icon {
  transform: translateX(6px);
}

.ctus-pg .btn-icon {
  transition: transform 0.15s ease-out;
  display: flex;
  align-items: center;
}

.ctus-pg .submit-btn:focus-visible {
  outline: 2px solid #B0BD3F;
  outline-offset: 3px;
}

@media (max-width: 1366px) {
  .ctus-pg .pg-heading {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .ctus-pg .split-band {
    grid-template-columns: 1fr;
  }

  .ctus-pg .split-left {
    padding: 64px 32px;
  }

  .ctus-pg .split-right {
    padding: 32px;
  }

  .ctus-pg .pg-heading {
    font-size: 40px;
  }

  .ctus-pg .form-band {
    padding: 64px 32px;
  }

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

  .ctus-pg .form-col-body {
    grid-column: span 1;
  }

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

  .ctus-pg .timeline-opts {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 375px) {
  .ctus-pg .split-left {
    padding: 64px 16px;
  }

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

  .ctus-pg .pg-heading {
    font-size: 22px;
  }

  .ctus-pg .metric-num {
    font-size: 22px;
  }

  .ctus-pg .timeline-opts {
    grid-template-columns: 1fr;
  }

  .ctus-pg .metric-row {
    flex-direction: column;
    gap: 16px;
  }
}

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

.abt-us .drop-in {
  animation: dropBounce 0.5s ease-out both;
}

.abt-us .drop-in-delay {
  animation: dropBounce 0.5s 0.15s ease-out both;
}

.abt-us .drop-in-delay2 {
  animation: dropBounce 0.5s 0.28s ease-out both;
}

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

  70% {
    opacity: 1;
    transform: translateY(4px);
  }

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

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

.abt-us .underline-key {
  position: relative;
  display: inline-block;
}

.abt-us .underline-key::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #B0BD3F;
  animation: drawLine 0.7s 0.4s ease-out forwards;
}

@keyframes drawLine {
  to {
    width: 100%;
  }
}

.abt-us .ident-block {
  padding: 96px 64px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
  position: relative;
}

.abt-us .ident-block::after {
  content: '';
  position: absolute;
  right: 0;
  top: 16%;
  height: 68%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #B0BD3F 30%, #B0BD3F 70%, transparent);
}

.abt-us .ident-text-side {
  flex: 1 1 0;
  min-width: 0;
}

.abt-us .ident-visual-side {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.abt-us .brand-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B0BD3F;
  margin-bottom: 16px;
  display: block;
}

.abt-us .ident-heading {
  font-size: 70px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b1b2e;
  margin: 0 0 32px 0;
  text-transform: uppercase;
}

.abt-us .ident-heading span {
  display: block;
}

.abt-us .ident-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #2e2e3a;
  max-width: 480px;
  margin-bottom: 32px;
}

.abt-us .stat-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 16px;
}

.abt-us .stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt-us .stat-num {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  color: #4841CB;
}

.abt-us .stat-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #5a5a72;
  max-width: 120px;
}

.abt-us .img-portrait {
  width: 380px;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  filter: grayscale(1) contrast(1.08);
  box-shadow: 2px 8px 60px 1px rgba(176, 189, 63, 0.14);
  display: block;
  transition: filter 0.18s ease-out;
}

.abt-us .img-portrait:hover {
  filter: grayscale(0) contrast(1);
}

.abt-us .float-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 2px 5px 28px 1px rgba(72, 65, 203, 0.08);
  padding: 16px 32px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 340px;
}

.abt-us .float-card-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.abt-us .status-dot {
  width: 10px;
  height: 10px;
  border-radius: 48px;
  background: #B0BD3F;
  flex-shrink: 0;
  box-shadow: 2px 3px 2px 1px rgba(176, 189, 63, 0.05);
}

.abt-us .card-label {
  font-size: 14px;
  color: #5a5a72;
  line-height: 1.6;
}

.abt-us .card-value {
  font-size: 14px;
  font-weight: 700;
  color: #1b1b2e;
  line-height: 1.6;
  margin-left: auto;
}

.abt-us .card-divider {
  height: 1px;
  background: #E4EBE8;
  margin: 4px 0;
}

.abt-us .depth-block {
  background: #f8fbf5;
  padding: 96px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
}

.abt-us .depth-img-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.abt-us .depth-img-a {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 2px 5px 28px 1px rgba(176, 189, 63, 0.08);
  display: block;
}

.abt-us .depth-img-b {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 2px 3px 2px 1px rgba(72, 65, 203, 0.05);
  display: block;
}

.abt-us .depth-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  padding: 0 16px;
}

.abt-us .depth-heading {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: #1b1b2e;
  margin: 0;
}

.abt-us .depth-body {
  font-size: 17px;
  line-height: 1.6;
  color: #2e2e3a;
}

.abt-us .depth-body+.depth-body {
  margin-top: 0;
}

.abt-us .depth-right-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.abt-us .method-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.abt-us .method-num {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  color: #E4EBE8;
  flex-shrink: 0;
  width: 48px;
  text-align: right;
}

.abt-us .method-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt-us .method-label {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: #1b1b2e;
}

.abt-us .method-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #5a5a72;
}

.abt-us .depth-cta-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #4841CB;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 32px;
  border-radius: 7px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 2px 5px 28px 1px rgba(72, 65, 203, 0.08);
  transition: background 0.18s ease-out, box-shadow 0.15s ease;
  margin-top: 16px;
}

.abt-us .depth-cta-btn:hover {
  background: #3730b0;
  box-shadow: 2px 8px 60px 1px rgba(72, 65, 203, 0.14);
}

.abt-us .depth-cta-btn:hover .btn-icon {
  transform: translateX(5px);
}

.abt-us .btn-icon {
  display: inline-block;
  transition: transform 0.15s ease-out;
}

@media (max-width: 1366px) {
  .abt-us .ident-heading {
    font-size: 56px;
  }

  .abt-us .ident-visual-side {
    flex: 0 0 340px;
  }

  .abt-us .img-portrait {
    width: 320px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .abt-us .ident-block {
    flex-direction: column;
    padding: 64px 32px;
    gap: 32px;
  }

  .abt-us .ident-block::after {
    display: none;
  }

  .abt-us .ident-heading {
    font-size: 40px;
  }

  .abt-us .ident-visual-side {
    flex: 0 0 auto;
    width: 100%;
  }

  .abt-us .img-portrait {
    width: 100%;
    height: 320px;
  }

  .abt-us .float-card {
    max-width: 100%;
  }

  .abt-us .depth-block {
    grid-template-columns: 1fr;
    padding: 64px 32px;
    gap: 32px;
  }

  .abt-us .depth-img-col {
    flex-direction: row;
  }

  .abt-us .depth-img-a {
    height: 180px;
  }

  .abt-us .depth-img-b {
    height: 180px;
  }

  .abt-us .depth-center-col {
    text-align: left;
    align-items: flex-start;
  }

  .abt-us .depth-heading {
    font-size: 32px;
  }
}

@media (max-width: 375px) {
  .abt-us .ident-block {
    padding: 32px 16px;
  }

  .abt-us .ident-heading {
    font-size: 32px;
  }

  .abt-us .stat-row {
    flex-direction: column;
    gap: 16px;
  }

  .abt-us .depth-block {
    padding: 32px 16px;
  }

  .abt-us .depth-img-col {
    flex-direction: column;
  }

  .abt-us .depth-heading {
    font-size: 22px;
  }
}

.mstrcls-pg {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.mstrcls-pg .pg-band {
  padding: 64px 64px 32px;
  background: #fff;
  position: relative;
}

.mstrcls-pg .pg-band::after {
  content: '';
  display: block;
  width: 70%;
  height: 2px;
  background: #B0BD3F;
  margin-top: 32px;
}

.mstrcls-pg .pg-eyebrow {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4841CB;
  font-weight: 700;
  margin-bottom: 16px;
}

.mstrcls-pg .pg-head {
  font-size: 70px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  color: #1b1b1b;
  margin: 0 0 16px;
  max-width: 800px;
}

.mstrcls-pg .pg-head .underline-word {
  display: inline-block;
  position: relative;
}

.mstrcls-pg .pg-head .underline-word::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 4px;
  background: #B0BD3F;
  animation: draw-line 0.18s ease-out 0.2s forwards;
  border-radius: 2px;
}

@keyframes draw-line {
  to {
    width: 100%;
  }
}

.mstrcls-pg .pg-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #3a3a3a;
  max-width: 520px;
  margin: 0;
}

.mstrcls-pg .cards-area {
  padding: 64px 64px 64px;
  background: #f7f8f2;
}

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

.mstrcls-pg .mcard {
  background: #fff;
  border-radius: 20px;
  box-shadow: 2px 5px 28px 1px rgba(176, 189, 63, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.18s ease-out, transform 0.15s ease-out;
}

.mstrcls-pg .mcard:hover {
  box-shadow: 2px 8px 60px 1px rgba(176, 189, 63, 0.14);
  transform: translateY(-4px);
}

.mstrcls-pg .mcard-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.mstrcls-pg .mcard-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease-out;
}

.mstrcls-pg .mcard:hover .mcard-img-wrap img {
  transform: scale(1.04);
}

.mstrcls-pg .mcard-img-wrap .color-wash {
  position: absolute;
  inset: 0;
  background: rgba(72, 65, 203, 0.38);
  opacity: 0;
  transition: opacity 0.18s ease-out;
  pointer-events: none;
}

.mstrcls-pg .mcard:hover .color-wash {
  opacity: 1;
}

.mstrcls-pg .mcard-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 16px 0;
  flex-wrap: wrap;
}

.mstrcls-pg .mcard-tag {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: #B0BD3F;
  border-radius: 7px;
  padding: 2px 8px;
}

.mstrcls-pg .mcard-level {
  font-size: 14px;
  line-height: 1.6;
  color: #4841CB;
  font-weight: 600;
  border: 1px solid #4841CB;
  border-radius: 7px;
  padding: 2px 8px;
}

.mstrcls-pg .mcard-readtime {
  font-size: 14px;
  line-height: 1.6;
  color: #888;
  margin-left: auto;
}

.mstrcls-pg .mcard-body {
  padding: 16px 16px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mstrcls-pg .mcard-title {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  color: #1b1b1b;
  margin: 0;
}

.mstrcls-pg .mcard-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0;
}

.mstrcls-pg .mcard-details {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 8px 16px 0;
  flex-wrap: wrap;
}

.mstrcls-pg .mcard-detail-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.mstrcls-pg .mcard-detail-item .codicon {
  color: #B0BD3F;
  font-size: 16px;
}

.mstrcls-pg .mcard-foot {
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #E4EBE8;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.mstrcls-pg .mcard-price-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mstrcls-pg .mcard-price {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
  color: #1b1b1b;
}

.mstrcls-pg .mcard-price-terms {
  font-size: 14px;
  line-height: 1.6;
  color: #888;
}

.mstrcls-pg .mcard-price-note {
  font-size: 14px;
  line-height: 1.6;
  color: #B0BD3F;
  font-weight: 600;
}

.mstrcls-pg .mcard-seats {
  font-size: 14px;
  line-height: 1.6;
  color: #4841CB;
  font-weight: 600;
}

.mstrcls-pg .mcard-cta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 700;
  color: #1b1b1b;
  text-decoration: none;
  background: none;
  border: none;
  border-radius: 12px;
  padding: 8px 16px;
  border: 2px solid #1b1b1b;
  transition: background 0.15s ease-out, color 0.15s ease-out, border-color 0.15s ease-out;
  cursor: pointer;
}

.mstrcls-pg .mcard-cta .codicon {
  transition: transform 0.15s ease-out;
}

.mstrcls-pg .mcard-cta:hover {
  background: #4841CB;
  color: #fff;
  border-color: #4841CB;
}

.mstrcls-pg .mcard-cta:hover .codicon {
  transform: translateX(4px);
}

.mstrcls-pg .mcard-cta:focus {
  outline: 2px solid #4841CB;
  outline-offset: 2px;
}

.mstrcls-pg .divider-asym {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 64px;
  gap: 0;
}

.mstrcls-pg .divider-asym .line-long {
  flex: 3;
  height: 2px;
  background: #E4EBE8;
}

.mstrcls-pg .divider-asym .line-short {
  flex: 1;
  height: 2px;
  background: #B0BD3F;
}

.mstrcls-pg .about-strip {
  padding: 64px 64px 96px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.mstrcls-pg .about-strip .strip-lead {
  grid-column: span 2;
}

.mstrcls-pg .about-strip .strip-lead h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  color: #1b1b1b;
  margin: 0 0 16px;
}

.mstrcls-pg .about-strip .strip-lead p {
  font-size: 17px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0;
}

.mstrcls-pg .about-strip .strip-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 2px solid #B0BD3F;
  padding-top: 16px;
}

.mstrcls-pg .about-strip .strip-stat .stat-num {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
  color: #4841CB;
}

.mstrcls-pg .about-strip .strip-stat .stat-label {
  font-size: 17px;
  line-height: 1.6;
  color: #3a3a3a;
}

.mstrcls-pg .contact-band {
  padding: 64px 64px 96px;
  background: #E4EBE8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.mstrcls-pg .contact-band h3 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  color: #1b1b1b;
  margin: 0;
  max-width: 600px;
}

.mstrcls-pg .contact-band p {
  font-size: 17px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0;
  max-width: 480px;
}

.mstrcls-pg .contact-band .contact-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  color: #1b1b1b;
  text-decoration: none;
  border-bottom: 2px solid #B0BD3F;
  padding-bottom: 2px;
  transition: color 0.15s ease-out, border-color 0.15s ease-out;
}

.mstrcls-pg .contact-band .contact-link:hover {
  color: #4841CB;
  border-color: #4841CB;
}

.mstrcls-pg .contact-band .contact-link .codicon {
  transition: transform 0.15s ease-out;
}

.mstrcls-pg .contact-band .contact-link:hover .codicon {
  transform: translateX(4px);
}

.mstrcls-pg .bounce-in {
  animation: bounce-appear 0.2s ease-out both;
}

@keyframes bounce-appear {
  0% {
    transform: translateY(12px);
    opacity: 0;
  }

  70% {
    transform: translateY(-4px);
    opacity: 1;
  }

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

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

  .mstrcls-pg .pg-head {
    font-size: 40px;
  }

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

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

  .mstrcls-pg .about-strip {
    padding: 32px 16px 64px;
    grid-template-columns: 1fr;
  }

  .mstrcls-pg .about-strip .strip-lead {
    grid-column: span 1;
  }

  .mstrcls-pg .contact-band {
    padding: 32px 16px 64px;
  }

  .mstrcls-pg .contact-band h3 {
    font-size: 22px;
  }

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

@media (max-width: 375px) {
  .mstrcls-pg .pg-head {
    font-size: 40px;
  }

  .mstrcls-pg .mcard-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 1366px) {
  .mstrcls-pg .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.opn .pg-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 32px 0;
}

.opn .pg-divider span {
  display: block;
  height: 1px;
  background: #222;
}

.opn .pg-divider .long {
  width: 72%;
}

.opn .pg-divider .short {
  width: 16%;
}

.opn .anim-line {
  display: inline-block;
  position: relative;
}

.opn .anim-line::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 0;
  background: #B0BD3F;
  animation: drawline 0.7s 0.4s ease forwards;
}

@keyframes drawline {
  to {
    width: 100%;
  }
}

@keyframes slideup1 {
  from {
    opacity: 0;
    transform: translateY(48px);
  }

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

@keyframes slideup2 {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

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

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

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

@keyframes slideup4 {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.opn .reveal-1 {
  animation: slideup1 0.55s 0.1s ease-out both;
}

.opn .reveal-2 {
  animation: slideup2 0.5s 0.25s ease-out both;
}

.opn .reveal-3 {
  animation: slideup3 0.45s 0.4s ease-out both;
}

.opn .reveal-4 {
  animation: slideup4 0.4s 0.55s ease-out both;
}

.opn ::selection {
  background: rgba(176, 189, 63, 0.18);
  color: #111;
}

.opn input::placeholder,
.opn textarea::placeholder {
  color: rgba(30, 30, 30, 0.4);
}

.opn input,
.opn textarea {
  box-shadow: inset 2px 3px 4px 1px rgba(176, 189, 63, 0.07);
}

.opn .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  line-height: 1.1;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 2px 5px 28px 1px rgba(176, 189, 63, 0.08);
  transition: background 0.18s ease-out, box-shadow 0.18s ease-out;
}

.opn .btn-primary .btn-icon {
  display: inline-block;
  transition: transform 0.15s ease-out;
}

.opn .btn-primary:hover {
  background: #4841CB;
  box-shadow: 2px 8px 60px 1px rgba(72, 65, 203, 0.14);
}

.opn .btn-primary:hover .btn-icon {
  transform: translateX(5px);
}

.opn .btn-primary:focus {
  outline: 2px solid #B0BD3F;
  outline-offset: 3px;
}

.opn .btn-primary:active {
  background: #3630a8;
}

.opn .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: #222;
  border: 1.5px solid #222;
  border-radius: 12px;
  font-size: 17px;
  line-height: 1.1;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.18s ease-out, color 0.18s ease-out;
}

.opn .btn-secondary .btn-icon {
  display: inline-block;
  transition: transform 0.15s ease-out;
}

.opn .btn-secondary:hover {
  border-color: #B0BD3F;
  color: #B0BD3F;
}

.opn .btn-secondary:hover .btn-icon {
  transform: translateX(5px);
}

.opn .btn-secondary:focus {
  outline: 2px solid #4841CB;
  outline-offset: 3px;
}

.opn .titl-blk {
  padding: 96px 64px 64px 64px;
  position: relative;
}

.opn .titl-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.opn .titl-cell-img {
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 520px;
  box-shadow: 2px 8px 60px 1px rgba(176, 189, 63, 0.14);
}

.opn .titl-cell-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.opn .titl-cell-img .img-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(176, 189, 63, 0.22), transparent 65%);
  border-radius: 20px;
  pointer-events: none;
}

.opn .titl-cell-txt {
  grid-column: 2;
  grid-row: 1;
  background: #E4EBE8;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.opn .titl-bg-letter {
  position: absolute;
  top: -16px;
  right: -16px;
  font-size: 140px;
  line-height: 1.1;
  font-weight: 900;
  color: rgba(176, 189, 63, 0.10);
  pointer-events: none;
  user-select: none;
  letter-spacing: -8px;
}

.opn .titl-label {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 16px;
}

.opn .titl-h1 {
  font-size: 70px;
  line-height: 1.1;
  font-weight: 900;
  color: #111;
  margin: 0 0 16px 0;
  text-transform: uppercase;
}

.opn .titl-sub {
  font-size: 22px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 32px 0;
  max-width: 420px;
}

.opn .titl-cell-meta {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.opn .meta-chip {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 2px 3px 2px 1px rgba(176, 189, 63, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opn .meta-chip .chip-num {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
}

.opn .meta-chip .chip-num .arrow-up {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid #B0BD3F;
  margin-bottom: 4px;
}

.opn .meta-chip .chip-label {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.opn .ex-blk {
  padding: 96px 64px;
  background: #111;
}

.opn .ex-inner {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 64px;
  align-items: center;
}

.opn .ex-txt-col {
  color: #E4EBE8;
}

.opn .ex-tag {
  font-size: 14px;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #B0BD3F;
  margin-bottom: 16px;
}

.opn .ex-h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 32px 0;
}

.opn .ex-body {
  font-size: 17px;
  line-height: 1.6;
  color: #c8cfc9;
  margin: 0 0 16px 0;
}

.opn .ex-detail-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(228, 235, 232, 0.12);
}

.opn .ex-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opn .ex-detail .det-val {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  color: #B0BD3F;
}

.opn .ex-detail .det-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
}

.opn .ex-img-col {
  position: relative;
}

.opn .ex-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 2px 8px 60px 1px rgba(72, 65, 203, 0.14);
}

.opn .ex-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.opn .ex-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: #B0BD3F;
  color: #111;
  border-radius: 12px;
  padding: 16px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  box-shadow: 2px 5px 28px 1px rgba(176, 189, 63, 0.08);
  max-width: 180px;
}

.opn .rel-blk {
  padding: 96px 64px;
  background: #E4EBE8;
}

.opn .rel-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px auto;
}

.opn .rel-h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 16px 0;
}

.opn .rel-intro {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.opn .rel-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.opn .rel-step {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 2px 3px 2px 1px rgba(176, 189, 63, 0.05);
  transition: box-shadow 0.18s ease-out;
}

.opn .rel-step:hover {
  box-shadow: 2px 8px 60px 1px rgba(176, 189, 63, 0.14);
}

.opn .rel-step .step-num {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
  color: rgba(176, 189, 63, 0.25);
  margin-bottom: 16px;
}

.opn .rel-step .step-ttl {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 16px 0;
}

.opn .rel-step .step-body {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

.opn .clients-blk {
  padding: 96px 64px;
  background: #fff;
}

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

.opn .clients-lbl {
  position: sticky;
  top: 32px;
}

.opn .clients-h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 16px 0;
}

.opn .clients-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  margin: 0 0 32px 0;
}

.opn .clients-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 32px;
  box-shadow: 2px 5px 28px 1px rgba(176, 189, 63, 0.08);
}

.opn .clients-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.opn .clients-cases {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.opn .case-card {
  border-radius: 20px;
  padding: 32px;
  background: #E4EBE8;
  box-shadow: 2px 3px 2px 1px rgba(176, 189, 63, 0.05);
  transition: box-shadow 0.2s ease;
}

.opn .case-card:hover {
  box-shadow: 2px 8px 60px 1px rgba(176, 189, 63, 0.14);
}

.opn .case-card .case-name {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 8px 0;
}

.opn .case-card .case-sit {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.opn .case-card .case-body {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.opn .recog-blk {
  padding: 64px;
  background: radial-gradient(circle at top right, rgba(176, 189, 63, 0.18), transparent 60%), #E4EBE8;
  text-align: center;
}

.opn .recog-h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 16px 0;
}

.opn .recog-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  margin: 0 auto 64px auto;
  max-width: 560px;
}

.opn .recog-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.opn .recog-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  min-width: 180px;
  box-shadow: 2px 3px 2px 1px rgba(176, 189, 63, 0.05);
  transition: box-shadow 0.15s ease-out, transform 0.15s ease-out;
}

.opn .recog-pill:hover {
  box-shadow: 2px 8px 60px 1px rgba(176, 189, 63, 0.14);
  transform: translateY(-4px);
}

.opn .recog-pill .pill-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opn .recog-pill .pill-ttl {
  font-size: 17px;
  line-height: 1.1;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
}

.opn .recog-pill .pill-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.opn .recog-img-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 64px;
  justify-content: center;
}

.opn .recog-img-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 2px 5px 28px 1px rgba(176, 189, 63, 0.08);
  flex: 0 0 auto;
}

.opn .recog-img-frame img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  display: block;
}

.opn .diff-blk {
  padding: 96px 64px;
  background: #4841CB;
}

.opn .diff-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.opn .diff-txt {
  color: #fff;
}

.opn .diff-tag {
  font-size: 14px;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #B0BD3F;
  margin-bottom: 16px;
}

.opn .diff-h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 32px 0;
}

.opn .diff-body {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(228, 235, 232, 0.85);
  margin: 0 0 16px 0;
}

.opn .diff-pts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.opn .diff-pt {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 16px;
}

.opn .diff-pt .pt-dot {
  width: 10px;
  height: 10px;
  background: #B0BD3F;
  border-radius: 48px;
  flex-shrink: 0;
  margin-top: 6px;
}

.opn .diff-pt .pt-txt {
  font-size: 17px;
  line-height: 1.6;
  color: #E4EBE8;
}

.opn .diff-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.opn .diff-card-big {
  background: rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.opn .diff-card-big .dcb-num {
  font-size: 70px;
  line-height: 1.1;
  font-weight: 900;
  color: #B0BD3F;
}

.opn .diff-card-big .dcb-desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(228, 235, 232, 0.8);
}

.opn .diff-cards-sm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.opn .diff-sm {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opn .diff-sm .sm-num {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
}

.opn .diff-sm .sm-lbl {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(228, 235, 232, 0.65);
}

.opn .fit-blk {
  padding: 96px 64px;
  background: #fff;
}

.opn .fit-inner {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 64px;
  align-items: start;
}

.opn .fit-txt .fit-h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 32px 0;
}

.opn .fit-txt .fit-body {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 16px 0;
}

.opn .fit-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
}

.opn .fit-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  background: #f5f5f0;
}

.opn .fit-item .fi-cross {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.opn .fit-item .fi-cross::before,
.opn .fit-item .fi-cross::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 2px;
  background: #999;
  border-radius: 7px;
}

.opn .fit-item .fi-cross::before {
  transform: rotate(45deg);
}

.opn .fit-item .fi-cross::after {
  transform: rotate(-45deg);
}

.opn .fit-item .fi-txt {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
}

.opn .fit-aside {
  background: #E4EBE8;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 2px 5px 28px 1px rgba(176, 189, 63, 0.08);
  position: sticky;
  top: 32px;
}

.opn .fit-aside .aside-ttl {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 16px 0;
}

.opn .fit-aside .aside-body {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 32px 0;
}

.opn .fit-aside .aside-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opn .fit-aside .contact-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  text-decoration: none;
  border-radius: 7px;
  padding: 8px;
  transition: background 0.15s ease-out;
}

.opn .fit-aside .contact-row:hover {
  background: rgba(176, 189, 63, 0.15);
}

.opn .fit-aside .contact-row svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .opn .titl-blk {
    padding: 64px 16px 32px 16px;
  }

  .opn .titl-bento {
    grid-template-columns: 1fr;
  }

  .opn .titl-cell-img {
    grid-column: 1;
    grid-row: 1;
    min-height: 280px;
  }

  .opn .titl-cell-txt {
    grid-column: 1;
    grid-row: 2;
  }

  .opn .titl-cell-meta {
    grid-column: 1;
    grid-row: 3;
  }

  .opn .titl-h1 {
    font-size: 40px;
  }

  .opn .ex-blk {
    padding: 64px 16px;
  }

  .opn .ex-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .opn .rel-blk {
    padding: 64px 16px;
  }

  .opn .rel-steps {
    grid-template-columns: 1fr;
  }

  .opn .clients-blk {
    padding: 64px 16px;
  }

  .opn .clients-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .opn .clients-lbl {
    position: static;
  }

  .opn .recog-blk {
    padding: 64px 16px;
  }

  .opn .recog-img-row {
    flex-direction: column;
    align-items: center;
  }

  .opn .recog-img-frame img {
    width: 100%;
    max-width: 320px;
    height: 180px;
  }

  .opn .diff-blk {
    padding: 64px 16px;
  }

  .opn .diff-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .opn .fit-blk {
    padding: 64px 16px;
  }

  .opn .fit-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .opn .fit-aside {
    position: static;
  }
}

@media (max-width: 375px) {
  .opn .titl-h1 {
    font-size: 40px;
  }

  .opn .titl-cell-meta {
    grid-template-columns: 1fr;
  }

  .opn .diff-cards-sm {
    grid-template-columns: 1fr;
  }

  .opn .recog-row {
    flex-direction: column;
    align-items: center;
  }
}

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

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

.success-page .icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  border-radius: 48px;
  background: #E4EBE8;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 5px 28px 1px rgba(176, 189, 63, 0.08);
}

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

.success-page .success-title {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
  color: #1b1b1b;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.success-page .success-title span {
  display: inline-block;
  position: relative;
}

.success-page .success-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 3px;
  width: 100%;
  background: #B0BD3F;
  border-radius: 7px;
  transform: scaleX(0);
  transform-origin: left center;
  animation: underline-draw 0.2s ease-out 0.15s forwards;
}

@keyframes underline-draw {
  to {
    transform: scaleX(1);
  }
}

.success-page .success-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #2e2e2e;
  margin: 0 0 32px;
}

.success-page .success-note {
  font-size: 14px;
  line-height: 1.6;
  color: #2e2e2e;
  opacity: 0.7;
  margin: 0 0 64px;
}

.success-page .success-divider {
  width: 48px;
  height: 2px;
  background: #E4EBE8;
  border-radius: 7px;
  margin: 0 auto 64px;
}

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

.success-page .btn-primary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #B0BD3F;
  color: #1b1b1b;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 2px 3px 2px 1px rgba(176, 189, 63, 0.05);
  transition: background 0.18s ease-out, box-shadow 0.15s ease-out;
}

.success-page .btn-primary:hover {
  background: #9fac30;
  box-shadow: 2px 5px 28px 1px rgba(176, 189, 63, 0.08);
}

.success-page .btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.success-page .btn-arrow {
  display: inline-block;
  transition: transform 0.12s ease-out;
}

.success-page .btn-secondary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: #4841CB;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid #4841CB;
  cursor: pointer;
  transition: background 0.18s ease-out, color 0.18s ease-out;
}

.success-page .btn-secondary:hover {
  background: #4841CB;
  color: #fff;
}

.success-page .btn-secondary:hover .btn-arrow-sec {
  transform: translateX(4px);
}

.success-page .btn-arrow-sec {
  display: inline-block;
  transition: transform 0.12s ease-out;
}

.success-page .contact-hint {
  margin-top: 64px;
  padding: 32px;
  background: #E4EBE8;
  border-radius: 20px;
  text-align: left;
  box-shadow: 2px 3px 2px 1px rgba(72, 65, 203, 0.05);
}

.success-page .contact-hint-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #4841CB;
  margin: 0 0 8px;
  letter-spacing: 0;
}

.success-page .contact-hint-text {
  font-size: 14px;
  line-height: 1.6;
  color: #2e2e2e;
  margin: 0 0 16px;
}

.success-page .contact-hint-link {
  font-size: 14px;
  color: #4841CB;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease-out;
}

.success-page .contact-hint-link:hover {
  color: #B0BD3F;
}

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

  .success-page .success-title {
    font-size: 22px;
  }

  .success-page .success-actions {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .success-page .btn-primary,
  .success-page .btn-secondary {
    justify-content: center;
  }

  .success-page .contact-hint {
    margin-top: 32px;
  }
}

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