* {
  box-sizing: border-box;
}

body {
  margin: 0;
  -webkit-text-size-adjust: 100%;
}

.site-header {
  position: relative;
  background: #ffffff;
  font-family: "Source Code Pro", monospace;
  border-bottom: 2px solid #F902A9;
  box-shadow: 0 2px 5px 0 rgba(249, 2, 169, 0.08), 0 5px 28px 0 rgba(249, 2, 169, 0.08);
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 340px;
  height: 100%;
  background: linear-gradient(135deg, #600C90 0%, #F902A9 100%);
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 0;
}

.header-utility-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
  padding: 16px 56px;
  gap: 28px;
}

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

.brand-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 30px;
  border: 2px solid rgba(249, 2, 169, 0.18);
  box-shadow: 0 2px 5px 0 rgba(249, 2, 169, 0.08);
  min-width: 90px;
}

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

.brand-name-label {
  font-family: "Source Code Pro", monospace;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.header-contact-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.contact-item-label {
  font-family: "Source Code Pro", monospace;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1;
  color: #600C90;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-item-value {
  font-family: "Source Code Pro", monospace;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  color: #2a0040;
  text-decoration: none;
  transition: color 0.12s ease-out;
}

.contact-item-value:focus {
  outline: none;
  border-bottom: 4px solid #F902A9;
}

.contact-item-value:hover {
  color: #F902A9;
}

.header-nav-row {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 56px 0 340px;
}

.primary-nav {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav-item {
  display: flex;
  align-items: stretch;
}

.primary-nav-link {
  display: flex;
  align-items: center;
  font-family: "Source Code Pro", monospace;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #2a0040;
  text-decoration: none;
  padding: 16px 16px;
  border-bottom: 3px solid transparent;
  border-top: 3px solid transparent;
  transition: color 0.1s ease-out, border-bottom-color 0.18s ease-out;
  white-space: nowrap;
}

.primary-nav-link:hover {
  color: #F902A9;
  border-bottom-color: #F902A9;
}

.primary-nav-link:focus {
  outline: none;
  border-bottom: 4px solid #F902A9;
}

.primary-nav-link.active {
  color: #600C90;
  font-weight: 700;
  border-bottom-color: #600C90;
  background: linear-gradient(180deg, transparent 60%, rgba(96, 12, 144, 0.06) 100%);
}

@media (max-width: 1024px) {
  .site-header::before {
    width: 240px;
  }

  .header-utility-row {
    padding: 16px 28px;
    flex-wrap: wrap;
  }

  .header-nav-row {
    padding: 0 28px;
  }

  .header-contact-strip {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .site-header::before {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 56px, 0 56px);
    height: 56px;
  }

  .header-utility-row {
    padding: 8px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 64px;
  }

  .brand-group {
    flex-direction: row;
    align-items: center;
  }

  .brand-name-label {
    color: #2a0040;
  }

  .header-contact-strip {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .contact-item {
    align-items: flex-start;
  }

  .header-nav-row {
    padding: 0 16px;
  }

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

@media (max-width: 360px) {
  .header-utility-row {
    padding: 8px 8px;
    padding-top: 64px;
  }

  .header-nav-row {
    padding: 0 8px;
  }

  .primary-nav-link {
    padding: 12px 6px;
  }
}

.site-footer {
  font-family: "Source Code Pro", monospace;
  background: #ffffff;
  border-top: 2px solid rgba(96, 12, 144, 0.14);
  box-shadow: 0 -2px 5px 0 rgba(96, 12, 144, 0.08), 0 -5px 28px 0 rgba(96, 12, 144, 0.08), 0 -8px 52px 0 rgba(96, 12, 144, 0.11);
  padding: 56px 0 28px;
}

.footer-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 56px;
}

.footer-top-row {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(96, 12, 144, 0.1);
  flex-wrap: wrap;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 auto;
  min-width: 220px;
}

.footer-logo-frame {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 8px;
  border: 2px solid rgba(249, 2, 169, 0.2);
  box-shadow: 0 2px 5px 0 rgba(249, 2, 169, 0.08);
  width: fit-content;
}

.footer-logo-frame img {
  display: block;
  width: auto;
  height: 52px;
  object-fit: contain;
}

.footer-brand-name {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  color: #2a0040;
}

.footer-tagline {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a2060;
  max-width: 280px;
}

.footer-contacts-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 auto;
}

.footer-contact-heading {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  color: #600C90;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.footer-contact-entry {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-contact-type {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #7a5090;
  min-width: 64px;
}

.footer-contact-link {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: #2a0040;
  text-decoration: none;
  transition: color 0.12s ease-out;
}

.footer-contact-link:hover {
  color: #F902A9;
}

.footer-contact-link:focus {
  outline: none;
  border-bottom: 4px solid #F902A9;
}

.footer-address-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #2a0040;
}

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

.footer-legal-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-legal-link {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #600C90;
  text-decoration: none;
  border-bottom: 1px solid rgba(96, 12, 144, 0.25);
  transition: color 0.1s ease-out, border-bottom-color 0.14s ease-out;
}

.footer-legal-link:hover {
  color: #F902A9;
  border-bottom-color: #F902A9;
}

.footer-legal-link:focus {
  outline: none;
  border-bottom: 4px solid #F902A9;
}

.footer-copyright {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #7a5090;
}

@media (max-width: 1024px) {
  .footer-inner {
    padding: 0 28px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 28px 0 16px;
  }

  .footer-inner {
    padding: 0 16px;
  }

  .footer-top-row {
    flex-direction: column;
    gap: 28px;
  }

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

@media (max-width: 360px) {
  .footer-inner {
    padding: 0 8px;
  }
}

.consent-card {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1200;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(96, 12, 144, 0.18);
  box-shadow: 0 5px 28px 0 rgba(96, 12, 144, 0.08), 0 8px 52px 0 rgba(96, 12, 144, 0.11);
  padding: 28px;
  max-width: 360px;
  width: calc(100vw - 56px);
  font-family: "Source Code Pro", monospace;
}

.consent-card-headline {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  color: #2a0040;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.consent-card-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a2060;
  margin: 0 0 16px;
}

.consent-policy-link {
  color: #600C90;
  text-decoration: none;
  border-bottom: 1px solid rgba(96, 12, 144, 0.35);
  transition: color 0.1s ease-out;
}

.consent-policy-link:hover {
  color: #F902A9;
}

.consent-policy-link:focus {
  outline: none;
  border-bottom: 4px solid #F902A9;
}

.consent-btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.consent-btn-accept,
.consent-btn-decline {
  font-family: "Source Code Pro", monospace;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  padding: 12px 16px;
  border-radius: 2px;
  border: 2px solid #600C90;
  background: transparent;
  color: #600C90;
  cursor: pointer;
  transition: background-color 0.12s ease-out, color 0.12s ease-out;
  min-height: 44px;
}

.consent-btn-accept:hover {
  background: #600C90;
  color: #ffffff;
}

.consent-btn-decline:hover {
  background: rgba(96, 12, 144, 0.08);
}

.consent-btn-accept:focus,
.consent-btn-decline:focus {
  outline: none;
  border-bottom: 4px solid #F902A9;
}

@media (max-width: 360px) {
  .consent-card {
    left: 8px;
    bottom: 8px;
    width: calc(100vw - 16px);
    padding: 16px;
  }
}

.policy-details {
  max-width: 1500px;
  margin: 0 auto;
  padding: 56px 28px;
}

.policy-details h1 {
  font-size: 56px;
  line-height: 1.1;
  color: #600C90;
  padding-bottom: 28px;
  border-bottom: 2px solid #F902A9;
  margin-bottom: 56px;
  margin-top: 0;
}

.policy-details h2 {
  font-size: 41px;
  line-height: 1.1;
  color: #600C90;
  margin-top: 56px;
  margin-bottom: 28px;
}

.policy-details h3 {
  font-size: 31px;
  line-height: 1.1;
  color: #3d0860;
  margin-top: 28px;
  margin-bottom: 16px;
}

.policy-details h4 {
  font-size: 24px;
  line-height: 1.6;
  color: #3d0860;
  margin-top: 28px;
  margin-bottom: 8px;
}

.policy-details h5 {
  font-size: 19px;
  line-height: 1.6;
  color: #2a0440;
  margin-top: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.policy-details h6 {
  font-size: 15px;
  line-height: 1.6;
  color: #2a0440;
  margin-top: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.policy-details p {
  font-size: 19px;
  line-height: 1.6;
  color: #1e0830;
  margin-top: 0;
  margin-bottom: 16px;
  max-width: 80ch;
}

.policy-details ul {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 28px;
  list-style: none;
}

.policy-details ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 28px;
  list-style: decimal;
}

.policy-details ul li {
  font-size: 19px;
  line-height: 1.6;
  color: #1e0830;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
  max-width: 80ch;
}

.policy-details ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #F902A9;
}

.policy-details ol li {
  font-size: 19px;
  line-height: 1.6;
  color: #1e0830;
  margin-bottom: 8px;
  padding-left: 8px;
  max-width: 80ch;
}

.policy-details ul ul,
.policy-details ol ol,
.policy-details ul ol,
.policy-details ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

.policy-details strong,
.policy-details b {
  font-weight: 700;
  color: #600C90;
}

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

.policy-details table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px 0 rgba(249, 2, 169, 0.08);
}

.policy-details thead {
  background: #600C90;
}

.policy-details thead th {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  padding: 16px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border: none;
}

.policy-details tbody tr {
  border-bottom: 1px solid rgba(96, 12, 144, 0.12);
  transition: background-color 0.12s ease-out;
}

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

.policy-details tbody tr:nth-child(even) {
  background: rgba(249, 2, 169, 0.03);
}

.policy-details tbody tr:hover {
  background: rgba(96, 12, 144, 0.06);
}

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

.policy-details th {
  font-size: 15px;
  line-height: 1.6;
  padding: 16px;
  text-align: left;
}

@media (max-width: 1024px) {
  .policy-details {
    padding: 56px 28px;
  }

  .policy-details h1 {
    font-size: 41px;
  }

  .policy-details h2 {
    font-size: 31px;
  }

  .policy-details h3 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .policy-details {
    padding: 28px 16px;
  }

  .policy-details h1 {
    font-size: 31px;
    margin-bottom: 28px;
  }

  .policy-details h2 {
    font-size: 24px;
    margin-top: 28px;
  }

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

  .policy-details h4 {
    font-size: 19px;
  }

  .policy-details p,
  .policy-details ul li,
  .policy-details ol li {
    font-size: 15px;
  }

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

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

  .policy-details h1 {
    font-size: 24px;
  }

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

.wbd {
  background: #ffffff;
  overflow-x: clip;
}

.wbd .page-frame {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 28px;
}

.wbd .breadcrumb-bar {
  padding: 16px 0 8px;
}

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

.wbd .breadcrumb-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.wbd .breadcrumb-list li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #600C90;
  border-right: 1.5px solid #600C90;
  transform: rotate(45deg);
  opacity: 0.5;
}

.wbd .breadcrumb-list a {
  font-size: 15px;
  color: #600C90;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.12s ease-out, box-shadow 0.18s ease-out;
  border-radius: 2px;
}

.wbd .breadcrumb-list a:hover {
  color: #F902A9;
  box-shadow: 0 2px 0 0 rgba(249, 2, 169, 0.4);
}

.wbd .breadcrumb-list .bc-current {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.wbd .section-divider-blur {
  height: 56px;
  background: linear-gradient(to bottom, rgba(96, 12, 144, 0.04), transparent);
  pointer-events: none;
}

.wbd .section-divider-blur-bottom {
  height: 56px;
  background: linear-gradient(to top, rgba(249, 2, 169, 0.05), transparent);
  pointer-events: none;
}

.wbd .detail-bento {
  padding: 28px 0 56px;
}

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

.wbd .bento-cell-image {
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: 360px;
  box-shadow: 0 5px 28px 0 rgba(96, 12, 144, 0.08);
}

.wbd .bento-cell-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  animation: bento-img-fade 0.5s ease-out both;
}

@keyframes bento-img-fade {
  from {
    opacity: 0;
    transform: scale(1.03);
  }

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

.wbd .bento-geo-shape {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  background: rgba(249, 2, 169, 0.07);
  transform: rotate(22deg);
  pointer-events: none;
}

.wbd .bento-geo-circle {
  position: absolute;
  bottom: 28px;
  left: -16px;
  width: 56px;
  height: 56px;
  border-radius: 46px;
  border: 2px solid rgba(96, 12, 144, 0.12);
  pointer-events: none;
}

.wbd .bento-cell-text {
  grid-column: 2;
  grid-row: 1;
  background: #f5f0fb;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.wbd .meta-tile {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 5px 0 rgba(249, 2, 169, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wbd .meta-tile-label {
  font-size: 15px;
  color: #600C90;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wbd .meta-tile-value {
  font-size: 19px;
  color: #1b1b2e;
  line-height: 1.1;
  font-weight: 600;
}

.wbd .bento-overline {
  font-size: 15px;
  color: #F902A9;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.wbd .bento-heading {
  font-size: 41px;
  color: #1b1b2e;
  line-height: 1.1;
  margin: 0;
}

.wbd .bento-tagline {
  font-size: 19px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.wbd .bento-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.wbd .badge-tag {
  font-size: 15px;
  color: #600C90;
  background: rgba(96, 12, 144, 0.08);
  border-radius: 30px;
  padding: 8px 16px;
  line-height: 1.1;
}

.wbd .badge-level {
  font-size: 15px;
  color: #F902A9;
  background: rgba(249, 2, 169, 0.08);
  border-radius: 30px;
  padding: 8px 16px;
  line-height: 1.1;
}

.wbd .price-display {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wbd .price-amount {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 700;
  background: linear-gradient(135deg, #F902A9, #600C90);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wbd .price-note-text {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.wbd .seats-indicator {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(249, 2, 169, 0.06);
  border-radius: 8px;
}

.wbd .seats-dot {
  width: 10px;
  height: 10px;
  border-radius: 46px;
  background: #F902A9;
  animation: seat-bounce 1.4s ease-in-out infinite;
}

@keyframes seat-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-4px);
  }

  60% {
    transform: translateY(-2px);
  }
}

.wbd .seats-text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.wbd .enroll-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #F902A9, #600C90);
  color: #fff !important;
  border: none !important;
  border-radius: 46px;
  padding: 16px 28px;
  font-size: 19px;
  line-height: 1.1;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.18s ease-out, transform 0.12s ease-out;
  box-shadow: 0 5px 28px 0 rgba(249, 2, 169, 0.08);
  align-self: flex-start;
}

.wbd .enroll-btn:hover {
  box-shadow: 0 8px 52px 0 rgba(249, 2, 169, 0.11);
  transform: translateY(-2px);
  color: #fff !important;
}

.wbd .enroll-btn:hover .btn-arrow {
  transform: translateX(6px);
}

.wbd .btn-arrow {
  display: inline-block;
  width: 18px;
  height: 18px;
  transition: transform 0.15s ease-out;
}

.wbd .btn-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
}

.wbd .detail-body {
  background: #600C90;
  padding: 56px 0;
  position: relative;
}

.wbd .detail-body-zigzag-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 16px;
  overflow: hidden;
  pointer-events: none;
}

.wbd .detail-body-zigzag-top svg {
  display: block;
  width: 100%;
  height: 16px;
}

.wbd .detail-body-zigzag-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 16px;
  overflow: hidden;
  pointer-events: none;
}

.wbd .detail-body-zigzag-bottom svg {
  display: block;
  width: 100%;
  height: 16px;
}

.wbd .body-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.wbd .col-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wbd .col-overline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.wbd .col-heading {
  font-size: 31px;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}

.wbd .description-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.6;
}

.wbd .description-text p {
  margin: 0 0 16px;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.wbd .description-text h2 {
  font-size: 24px;
  color: #fff;
  line-height: 1.1;
  margin: 16px 0 8px;
}

.wbd .description-text h3 {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.1;
  margin: 16px 0 8px;
}

.wbd .description-text small {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  display: block;
}

.wbd .description-text ul,
.wbd .description-text ol {
  margin: 8px 0 16px 16px;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.6;
}

.wbd .description-text li {
  margin-bottom: 8px;
}

.wbd .description-text dl {
  margin: 8px 0 16px;
}

.wbd .description-text dt {
  font-weight: 600;
  color: #fff;
  font-size: 19px;
  line-height: 1.6;
}

.wbd .description-text dd {
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  line-height: 1.6;
  margin: 0 0 8px 16px;
}

.wbd .col-program {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wbd .program-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 5px 0 rgba(249, 2, 169, 0.08);
}

.wbd .program-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.6;
}

.wbd .program-text p {
  margin: 0 0 16px;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.wbd .program-text p:last-child {
  margin-bottom: 0;
}

.wbd .program-text h2 {
  font-size: 24px;
  color: #fff;
  line-height: 1.1;
  margin: 16px 0 8px;
}

.wbd .program-text mark {
  background: rgba(249, 2, 169, 0.25);
  color: #fff;
  border-radius: 2px;
  padding: 0 4px;
}

.wbd .program-text ul,
.wbd .program-text ol {
  margin: 8px 0 16px 16px;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.6;
}

.wbd .program-text li {
  margin-bottom: 8px;
}

.wbd .program-text dl {
  margin: 8px 0 16px;
}

.wbd .program-text dt {
  font-weight: 600;
  color: #fff;
  font-size: 19px;
  line-height: 1.6;
}

.wbd .program-text dd {
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  line-height: 1.6;
  margin: 0 0 8px 16px;
}

.wbd .program-text blockquote {
  border-left: none !important;
  margin: 8px 0;
  padding: 16px;
  background: rgba(249, 2, 169, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.6;
  font-style: italic;
}

.wbd .program-text figure {
  margin: 8px 0;
}

.wbd .program-text figcaption {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-top: 8px;
}

.wbd .detail-engage {
  padding: 56px 0 96px;
  background: #fff;
}

.wbd .engage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.wbd .poll-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.wbd .poll-overline {
  font-size: 15px;
  color: #F902A9;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.wbd .poll-question {
  font-size: 24px;
  color: #1b1b2e;
  line-height: 1.1;
  margin: 0;
}

.wbd .poll-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wbd .poll-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  position: relative;
}

.wbd .poll-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.wbd .poll-radio-visual {
  width: 22px;
  height: 22px;
  border-radius: 46px;
  border: 2px solid #600C90;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.12s ease-out, background 0.12s ease-out;
  background: #fff;
}

.wbd .poll-radio-visual::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 46px;
  background: #F902A9;
  opacity: 0;
  transition: opacity 0.12s ease-out;
}

.wbd .poll-option input[type="radio"]:checked~.poll-radio-visual {
  border-color: #F902A9;
  background: rgba(249, 2, 169, 0.06);
}

.wbd .poll-option input[type="radio"]:checked~.poll-radio-visual::after {
  opacity: 1;
}

.wbd .poll-option-label {
  font-size: 19px;
  color: #333;
  line-height: 1.6;
  transition: color 0.12s ease-out;
}

.wbd .poll-option input[type="radio"]:checked~.poll-option-label {
  color: #F902A9;
  font-weight: 600;
}

.wbd .poll-submit-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #600C90;
  border: 2px solid #600C90;
  border-radius: 30px;
  padding: 16px 28px;
  font-size: 19px;
  line-height: 1.1;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.18s ease-out, color 0.18s ease-out;
}

.wbd .poll-submit-btn:hover {
  background: #600C90;
  color: #fff;
}

.wbd .meta-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.wbd .meta-panel-overline {
  font-size: 15px;
  color: #600C90;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.wbd .meta-panel-heading {
  font-size: 24px;
  color: #1b1b2e;
  line-height: 1.1;
  margin: 0;
}

.wbd .meta-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wbd .meta-info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 8px;
  background: #f5f0fb;
}

.wbd .meta-info-key {
  font-size: 15px;
  color: #600C90;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.wbd .meta-info-val {
  font-size: 19px;
  color: #1b1b2e;
  line-height: 1.1;
  font-weight: 600;
}

.wbd .likes-display {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(249, 2, 169, 0.05);
}

.wbd .likes-heart {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.wbd .likes-heart svg {
  width: 32px;
  height: 32px;
}

.wbd .likes-count {
  font-size: 31px;
  color: #F902A9;
  line-height: 1.1;
  font-weight: 700;
}

.wbd .likes-label {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.wbd .cta-strip {
  margin-top: 28px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(249, 2, 169, 0.06), rgba(96, 12, 144, 0.08));
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wbd .cta-strip-text {
  font-size: 19px;
  color: #1b1b2e;
  line-height: 1.6;
  margin: 0;
}

.wbd .cta-secondary-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #600C90;
  border: 2px solid #600C90;
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 15px;
  line-height: 1.1;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease-out, color 0.15s ease-out;
  align-self: flex-start;
}

.wbd .cta-secondary-btn:hover {
  background: #600C90;
  color: #fff;
}

.wbd .cta-secondary-btn:hover .cta-btn-arrow {
  transform: translateX(5px);
}

.wbd .cta-btn-arrow {
  display: inline-block;
  transition: transform 0.13s ease-out;
}

.wbd .deco-rotate-ring {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 46px;
  border: 2px dashed rgba(249, 2, 169, 0.2);
  animation: slow-rotate 14s linear infinite;
  pointer-events: none;
}

@keyframes slow-rotate {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.wbd .detail-body-inner {
  position: relative;
}

@media (max-width: 1024px) {
  .wbd .bento-grid {
    grid-template-columns: 1fr;
  }

  .wbd .bento-cell-image {
    grid-column: 1;
    grid-row: 1;
    min-height: 280px;
  }

  .wbd .bento-cell-text {
    grid-column: 1;
    grid-row: 2;
  }

  .wbd .bento-cell-meta {
    grid-column: 1;
    grid-row: 3;
  }

  .wbd .body-two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wbd .engage-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wbd .deco-rotate-ring {
    display: none;
  }
}

@media (max-width: 640px) {
  .wbd .bento-heading {
    font-size: 31px;
  }

  .wbd .bento-cell-meta {
    grid-template-columns: 1fr;
  }

  .wbd .meta-info-grid {
    grid-template-columns: 1fr;
  }

  .wbd .page-frame {
    padding: 0 16px;
  }

  .wbd .detail-body {
    padding: 28px 0;
  }

  .wbd .detail-engage {
    padding: 28px 0 56px;
  }
}

@media (max-width: 360px) {
  .wbd .bento-heading {
    font-size: 24px;
  }

  .wbd .enroll-btn {
    font-size: 15px;
    padding: 16px 16px;
  }
}

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

.srvs-pg .pg-band {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 56px;
  padding-right: 56px;
}

.srvs-pg .title-block {
  background-color: #f4f0f8;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}

.srvs-pg .title-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(96, 12, 144, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 12, 144, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.srvs-pg .title-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #F902A9 30%, #600C90 70%, transparent 100%);
}

.srvs-pg .tb-inner {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 56px;
  padding-right: 56px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 56px;
}

.srvs-pg .tb-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #600C90;
  margin-bottom: 16px;
}

.srvs-pg .tb-heading {
  font-size: 56px;
  line-height: 1.1;
  color: #1e0a2e;
  font-weight: 800;
  margin: 0 0 28px 0;
}

.srvs-pg .tb-heading-accent {
  display: inline;
  text-decoration: underline;
  text-decoration-color: #F902A9;
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

.srvs-pg .tb-desc {
  font-size: 19px;
  line-height: 1.6;
  color: #3a2050;
  max-width: 520px;
  margin: 0;
}

.srvs-pg .tb-left {
  flex: 1 1 55%;
}

.srvs-pg .tb-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
}

.srvs-pg .tb-stat-row {
  display: flex;
  flex-direction: row;
  gap: 28px;
}

.srvs-pg .tb-stat {
  background: #ffffff;
  border-radius: 8px;
  padding: 28px;
  flex: 1 1 0;
  box-shadow: 0 2px 5px 0 rgba(249, 2, 169, 0.08);
  border-top: 3px solid #F902A9;
}

.srvs-pg .tb-stat-num {
  font-size: 41px;
  font-weight: 800;
  line-height: 1.1;
  color: #1e0a2e;
}

.srvs-pg .tb-stat-num .frac {
  font-size: 24px;
  color: #F902A9;
  font-weight: 700;
}

.srvs-pg .tb-stat-label {
  font-size: 15px;
  color: #5a4070;
  margin-top: 8px;
  line-height: 1.6;
}

.srvs-pg .tb-stat-wide {
  background: linear-gradient(135deg, #600C90 0%, #F902A9 100%);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 5px 28px 0 rgba(96, 12, 144, 0.08);
}

.srvs-pg .tb-stat-wide .tb-stat-num {
  color: #ffffff;
}

.srvs-pg .tb-stat-wide .tb-stat-label {
  color: rgba(255, 255, 255, 0.85);
}

.srvs-pg .svc-list-block {
  background-color: #ffffff;
  padding-top: 96px;
  padding-bottom: 96px;
}

.srvs-pg .svc-list-inner {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 56px;
  padding-right: 56px;
}

.srvs-pg .svc-list-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 28px;
}

.srvs-pg .svc-list-heading {
  font-size: 41px;
  line-height: 1.1;
  color: #1e0a2e;
  font-weight: 700;
  margin: 0;
  max-width: 520px;
}

.srvs-pg .svc-list-sub {
  font-size: 19px;
  line-height: 1.6;
  color: #5a4070;
  max-width: 380px;
  margin: 0;
}

.srvs-pg .svc-overline {
  display: block;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #F902A9;
  margin-bottom: 16px;
}

.srvs-pg .svc-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.srvs-pg .svc-item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid rgba(96, 12, 144, 0.1);
  transition: background-color 0.12s ease-out;
}

.srvs-pg .svc-item:last-child {
  border-bottom: 1px solid rgba(96, 12, 144, 0.1);
}

.srvs-pg .svc-item:hover {
  background-color: #fdf5ff;
}

.srvs-pg .svc-item-num {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  padding: 28px 28px 28px 0;
  min-width: 96px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 28px;
}

.srvs-pg .svc-item-num .num-int {
  color: #1e0a2e;
}

.srvs-pg .svc-item-num .num-frac {
  color: #F902A9;
  font-size: 31px;
  align-self: flex-end;
  margin-bottom: 8px;
}

.srvs-pg .svc-item-body {
  flex: 1 1 auto;
  padding: 28px 56px 28px 28px;
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
}

.srvs-pg .svc-item-text {
  flex: 1 1 50%;
}

.srvs-pg .svc-item-name {
  font-size: 24px;
  font-weight: 700;
  color: #1e0a2e;
  line-height: 1.1;
  margin: 0 0 16px 0;
}

.srvs-pg .svc-item-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #5a4070;
  margin: 0;
}

.srvs-pg .svc-item-meta {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srvs-pg .svc-item-tag {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #600C90;
  background: rgba(96, 12, 144, 0.07);
  border-radius: 30px;
  padding: 8px 16px;
  align-self: flex-start;
}

.srvs-pg .svc-item-detail {
  font-size: 15px;
  color: #5a4070;
  line-height: 1.6;
}

.srvs-pg .process-block {
  background-color: #1e0a2e;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

.srvs-pg .process-blur-bg {
  position: absolute;
  inset: 0;
  background-image: url('./images/review002.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(18px) brightness(0.18);
  pointer-events: none;
}

.srvs-pg .process-inner {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 56px;
  padding-right: 56px;
}

.srvs-pg .process-heading-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 56px;
  margin-bottom: 56px;
}

.srvs-pg .process-heading {
  font-size: 41px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  flex: 1 1 50%;
}

.srvs-pg .process-intro {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  flex: 1 1 50%;
  padding-top: 8px;
}

.srvs-pg .process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.srvs-pg .process-step {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 28px;
  border: 1px solid rgba(249, 2, 169, 0.2);
  transition: background-color 0.18s ease-out, box-shadow 0.18s ease-out;
  cursor: default;
}

.srvs-pg .process-step:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 52px 0 rgba(249, 2, 169, 0.11);
}

.srvs-pg .process-step-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F902A9;
  margin-bottom: 16px;
}

.srvs-pg .process-step-name {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.1;
}

.srvs-pg .process-step-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.srvs-pg .process-ba {
  margin-top: 56px;
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: stretch;
}

.srvs-pg .ba-step {
  flex: 1 1 0;
  border-radius: 8px;
  padding: 28px;
}

.srvs-pg .ba-step.before {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.srvs-pg .ba-step.after {
  background: linear-gradient(135deg, rgba(249, 2, 169, 0.15) 0%, rgba(96, 12, 144, 0.25) 100%);
  border: 1px solid rgba(249, 2, 169, 0.35);
}

.srvs-pg .ba-step-tag {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.srvs-pg .ba-step.before .ba-step-tag {
  color: rgba(255, 255, 255, 0.45);
}

.srvs-pg .ba-step.after .ba-step-tag {
  color: #F902A9;
}

.srvs-pg .ba-step-heading {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.1;
}

.srvs-pg .ba-step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srvs-pg .ba-step-list li {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  padding-left: 16px;
  position: relative;
}

.srvs-pg .ba-step-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.srvs-pg .ba-step.after .ba-step-list li::before {
  background: #F902A9;
}

.srvs-pg .ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
}

.srvs-pg .ba-arrow-shape {
  width: 32px;
  height: 32px;
  border-radius: 46px;
  background: linear-gradient(135deg, #F902A9 0%, #600C90 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.srvs-pg .ba-arrow-shape svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
}

.srvs-pg .team-block {
  background-color: #f9f4ff;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}

.srvs-pg .team-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #600C90 50%, transparent 100%);
}

.srvs-pg .team-inner {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 56px;
  padding-right: 56px;
}

.srvs-pg .team-layout {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
}

.srvs-pg .team-text-col {
  flex: 1 1 55%;
}

.srvs-pg .team-aside-col {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.srvs-pg .team-heading {
  font-size: 41px;
  line-height: 1.1;
  font-weight: 700;
  color: #1e0a2e;
  margin: 0 0 28px 0;
}

.srvs-pg .team-para-full {
  font-size: 19px;
  line-height: 1.6;
  color: #3a2050;
  margin: 0 0 28px 0;
}

.srvs-pg .team-para-cols {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-bottom: 28px;
}

.srvs-pg .team-para-col {
  flex: 1 1 0;
  font-size: 15px;
  line-height: 1.6;
  color: #5a4070;
  margin: 0;
}

.srvs-pg .team-accent-phrase {
  font-size: 19px;
  line-height: 1.6;
  color: #1e0a2e;
  font-weight: 600;
  margin: 0;
}

.srvs-pg .team-accent-phrase .struck {
  text-decoration: line-through;
  color: #999;
  font-weight: 400;
}

.srvs-pg .team-accent-phrase .replacement {
  color: #F902A9;
  font-weight: 700;
}

.srvs-pg .expert-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 5px 28px 0 rgba(96, 12, 144, 0.08);
  transition: box-shadow 0.14s ease-out, transform 0.14s ease-out;
  cursor: default;
}

.srvs-pg .expert-card:hover {
  box-shadow: 0 8px 52px 0 rgba(96, 12, 144, 0.11);
  transform: translateY(-3px);
}

.srvs-pg .expert-portrait {
  width: 80px;
  height: 107px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.srvs-pg .expert-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.srvs-pg .expert-info {
  flex: 1 1 auto;
}

.srvs-pg .expert-name {
  font-size: 19px;
  font-weight: 700;
  color: #1e0a2e;
  margin: 0 0 8px 0;
  line-height: 1.1;
}

.srvs-pg .expert-role {
  font-size: 15px;
  font-weight: 600;
  color: #600C90;
  margin: 0 0 8px 0;
}

.srvs-pg .expert-quote {
  font-size: 15px;
  line-height: 1.6;
  color: #5a4070;
  margin: 0;
  font-style: italic;
}

.srvs-pg .img-showcase {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.srvs-pg .img-showcase img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.45s ease-out;
}

.srvs-pg .img-showcase:hover img {
  transform: scale(1.03);
}

.srvs-pg .img-showcase-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 10, 46, 0);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: background-color 0.22s ease-out;
}

.srvs-pg .img-showcase:hover .img-showcase-overlay {
  background: rgba(30, 10, 46, 0.72);
}

.srvs-pg .img-showcase-caption {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.22s ease-out;
}

.srvs-pg .img-showcase:hover .img-showcase-caption {
  opacity: 1;
}

@media (max-width: 1024px) {

  .srvs-pg .tb-inner,
  .srvs-pg .svc-list-top,
  .srvs-pg .process-heading-row,
  .srvs-pg .team-layout {
    flex-direction: column;
    gap: 28px;
  }

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

  .srvs-pg .svc-item-body {
    flex-direction: column;
    gap: 16px;
    padding-right: 28px;
  }

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

  .srvs-pg .process-ba {
    flex-direction: column;
  }

  .srvs-pg .ba-arrow {
    width: 100%;
    height: 56px;
    transform: rotate(90deg);
  }

  .srvs-pg .team-para-cols {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 640px) {

  .srvs-pg .pg-band,
  .srvs-pg .tb-inner,
  .srvs-pg .svc-list-inner,
  .srvs-pg .process-inner,
  .srvs-pg .team-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .srvs-pg .title-block,
  .srvs-pg .svc-list-block,
  .srvs-pg .process-block,
  .srvs-pg .team-block {
    padding-top: 56px;
    padding-bottom: 56px;
  }

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

  .srvs-pg .tb-stat-row {
    flex-direction: column;
    gap: 16px;
  }

  .srvs-pg .svc-list-heading {
    font-size: 31px;
  }

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

  .srvs-pg .svc-item-num {
    padding: 28px 0 0 0;
    min-width: auto;
  }

  .srvs-pg .svc-item-body {
    padding: 16px 0 28px 0;
  }

  .srvs-pg .process-heading,
  .srvs-pg .team-heading {
    font-size: 31px;
  }

  .srvs-pg .team-aside-col {
    width: 100%;
  }

  .srvs-pg .expert-portrait {
    width: 64px;
    height: 85px;
  }
}

@media (max-width: 360px) {
  .srvs-pg .tb-heading {
    font-size: 24px;
  }

  .srvs-pg .tb-stat-num {
    font-size: 31px;
  }
}

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

.front-pg .pg-title-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
  padding-bottom: 96px;
  padding-top: 56px;
  gap: 56px;
  position: relative;
}

.front-pg .pg-title-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 28px 56px 56px;
  position: relative;
  z-index: 1;
}

.front-pg .pg-title-overline {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #600C90;
  margin-bottom: 16px;
}

.front-pg .pg-title-h1 {
  font-size: 56px;
  line-height: 1.1;
  color: #1b0a2e;
  margin: 0 0 28px 0;
}

.front-pg .pg-title-h1 .marked-phrase {
  display: inline;
  background: linear-gradient(to right, rgba(249, 2, 169, 0.18), rgba(96, 12, 144, 0.13));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 2px;
}

.front-pg .pg-title-problem {
  font-size: 19px;
  line-height: 1.6;
  color: #2d1a40;
  margin: 0 0 16px 0;
}

.front-pg .pg-title-solution {
  font-size: 19px;
  line-height: 1.6;
  color: #3a2050;
  margin: 0 0 28px 0;
  padding-left: 16px;
  border-top: 3px solid #F902A9;
  padding-top: 16px;
}

.front-pg .pg-title-cta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.front-pg .btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #F902A9 0%, #600C90 100%);
  color: #FFFFFF;
  font-size: 19px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 28px 0 rgba(249, 2, 169, 0.08);
  transition: box-shadow 0.12s ease-out, transform 0.1s ease-out;
}

.front-pg .btn-primary-lg:hover {
  box-shadow: 0 8px 52px 0 rgba(249, 2, 169, 0.11);
  transform: translateY(-1px);
  color: #FFFFFF;
}

.front-pg .btn-primary-lg .btn-arrow {
  display: inline-block;
  transition: transform 0.12s ease-out;
}

.front-pg .btn-primary-lg:hover .btn-arrow {
  transform: translateX(4px);
}

.front-pg .btn-secondary-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #600C90;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  border: 2px solid rgba(96, 12, 144, 0.3);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s ease-out, background 0.15s ease-out;
}

.front-pg .btn-secondary-sm:hover {
  border-color: #600C90;
  background: rgba(96, 12, 144, 0.05);
  color: #600C90;
}

.front-pg .btn-secondary-sm .btn-arrow {
  display: inline-block;
  transition: transform 0.12s ease-out;
}

.front-pg .btn-secondary-sm:hover .btn-arrow {
  transform: translateX(4px);
}

.front-pg .pg-title-img-col {
  position: relative;
  min-height: 480px;
}

.front-pg .pg-title-img-frame {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.front-pg .pg-title-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.88);
  transition: filter 0.18s ease-out;
}

.front-pg .pg-title-img-frame:hover img {
  filter: brightness(1.0);
}

.front-pg .pg-title-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(249, 2, 169, 0.13) 0%, rgba(96, 12, 144, 0.18) 100%);
  border-radius: 8px;
  pointer-events: none;
}

.front-pg .pg-title-shape-a {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 46px;
  border: 2px solid rgba(249, 2, 169, 0.18);
  top: -28px;
  left: -28px;
  pointer-events: none;
}

.front-pg .pg-title-shape-b {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 30px;
  border: 2px solid rgba(96, 12, 144, 0.14);
  bottom: 28px;
  right: -16px;
  pointer-events: none;
}

.front-pg .pg-title-math {
  position: absolute;
  font-size: 220px;
  line-height: 1.1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(96, 12, 144, 0.06);
  top: -28px;
  right: 28px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.front-pg .outcome-band {
  background: #faf5ff;
  padding: 96px 56px;
  position: relative;
}

.front-pg .outcome-band::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(249, 2, 169, 0.3), transparent);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.front-pg .outcome-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.front-pg .outcome-top-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}

.front-pg .outcome-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F902A9;
  margin-bottom: 16px;
}

.front-pg .outcome-h2 {
  font-size: 41px;
  line-height: 1.1;
  color: #1b0a2e;
  margin: 0;
}

.front-pg .outcome-intro-text {
  font-size: 19px;
  line-height: 1.6;
  color: #2d1a40;
  margin: 0;
  padding-top: 28px;
}

.front-pg .outcome-cards-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 28px;
  align-items: start;
}

.front-pg .outcome-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 5px 0 rgba(96, 12, 144, 0.08);
  transition: box-shadow 0.14s ease-out;
  position: relative;
}

.front-pg .outcome-card:hover {
  box-shadow: 0 8px 52px 0 rgba(96, 12, 144, 0.11);
}

.front-pg .outcome-card-num {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  color: #F902A9;
  display: block;
  margin-bottom: 8px;
}

.front-pg .outcome-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #1b0a2e;
  margin: 0 0 8px 0;
}

.front-pg .outcome-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #3a2050;
  margin: 0;
}

.front-pg .outcome-img-accent {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 16px;
}

.front-pg .outcome-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
  transition: filter 0.18s ease-out;
}

.front-pg .outcome-img-accent:hover img {
  filter: brightness(1.0);
}

.front-pg .commit-band {
  padding: 96px 56px;
  background: #FFFFFF;
  position: relative;
}

.front-pg .commit-band::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(96, 12, 144, 0.2), transparent);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.front-pg .commit-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

.front-pg .commit-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.front-pg .commit-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: brightness(0.87);
  transition: filter 0.2s ease-out;
}

.front-pg .commit-img-wrap:hover img {
  filter: brightness(1.0);
}

.front-pg .commit-img-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 16px 16px;
  box-shadow: 0 5px 28px 0 rgba(96, 12, 144, 0.08);
}

.front-pg .commit-img-badge-val {
  font-size: 31px;
  font-weight: 800;
  color: #600C90;
  display: block;
  line-height: 1.1;
}

.front-pg .commit-img-badge-label {
  font-size: 15px;
  color: #3a2050;
  display: block;
}

.front-pg .commit-text-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.front-pg .commit-overline {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #600C90;
  margin-bottom: 8px;
}

.front-pg .commit-h2 {
  font-size: 41px;
  line-height: 1.1;
  color: #1b0a2e;
  margin: 0;
}

.front-pg .commit-body-full {
  font-size: 19px;
  line-height: 1.6;
  color: #2d1a40;
  margin: 0;
}

.front-pg .commit-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.front-pg .commit-item {
  padding: 16px;
  border-radius: 8px;
  background: #faf5ff;
}

.front-pg .commit-item-num {
  font-size: 31px;
  font-weight: 800;
  color: #F902A9;
  display: block;
  line-height: 1.1;
  margin-bottom: 8px;
}

.front-pg .commit-item-text {
  font-size: 15px;
  line-height: 1.6;
  color: #2d1a40;
  margin: 0;
}

.front-pg .context-band {
  background: linear-gradient(170deg, rgba(249, 2, 169, 0.04) 0%, rgba(96, 12, 144, 0.07) 100%);
  padding: 96px 56px;
  position: relative;
}

.front-pg .context-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.front-pg .context-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  align-items: end;
}

.front-pg .context-overline {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F902A9;
  margin-bottom: 16px;
}

.front-pg .context-h2 {
  font-size: 41px;
  line-height: 1.1;
  color: #1b0a2e;
  margin: 0;
}

.front-pg .context-right-text {
  font-size: 19px;
  line-height: 1.6;
  color: #2d1a40;
  margin: 0;
  padding-top: 28px;
}

.front-pg .context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.front-pg .context-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.front-pg .context-item-num {
  font-size: 41px;
  font-weight: 800;
  color: rgba(249, 2, 169, 0.2);
  line-height: 1.1;
}

.front-pg .context-item-heading {
  font-size: 19px;
  font-weight: 700;
  color: #1b0a2e;
  margin: 0;
}

.front-pg .context-item-body {
  font-size: 15px;
  line-height: 1.6;
  color: #3a2050;
  margin: 0;
}

.front-pg .context-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}

.front-pg .context-img-frame {
  border-radius: 8px;
  overflow: hidden;
  height: 260px;
}

.front-pg .context-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.86);
  transition: filter 0.16s ease-out;
}

.front-pg .context-img-frame:hover img {
  filter: brightness(1.0);
}

.front-pg .fit-band {
  background: #FFFFFF;
  padding: 96px 56px;
  position: relative;
}

.front-pg .fit-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.front-pg .fit-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  align-items: start;
}

.front-pg .fit-overline {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #600C90;
  margin-bottom: 16px;
}

.front-pg .fit-h2 {
  font-size: 41px;
  line-height: 1.1;
  color: #1b0a2e;
  margin: 0;
}

.front-pg .fit-intro {
  font-size: 19px;
  line-height: 1.6;
  color: #2d1a40;
  margin: 0;
  padding-top: 28px;
}

.front-pg .fit-profiles-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.front-pg .fit-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 28px;
  border-radius: 8px;
  background: #faf5ff;
  box-shadow: 0 2px 5px 0 rgba(96, 12, 144, 0.08);
  transition: box-shadow 0.14s ease-out;
}

.front-pg .fit-profile:hover {
  box-shadow: 0 5px 28px 0 rgba(96, 12, 144, 0.08);
}

.front-pg .fit-profile-portrait {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.front-pg .fit-profile-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88);
  transition: filter 0.15s ease-out;
}

.front-pg .fit-profile-portrait:hover img {
  filter: brightness(1.0);
}

.front-pg .fit-profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(249, 2, 169, 0.15), rgba(96, 12, 144, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.front-pg .fit-profile-avatar-initials {
  font-size: 24px;
  font-weight: 800;
  color: #600C90;
}

.front-pg .fit-profile-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.front-pg .fit-profile-name {
  font-size: 19px;
  font-weight: 700;
  color: #1b0a2e;
  margin: 0;
}

.front-pg .fit-profile-role {
  font-size: 15px;
  color: #600C90;
  margin: 0;
}

.front-pg .fit-profile-quote {
  font-size: 15px;
  line-height: 1.6;
  color: #3a2050;
  margin: 0;
}

.front-pg .fit-text-accent {
  display: inline;
  text-decoration: underline;
  text-decoration-color: #F902A9;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}

.front-pg .process-band {
  padding: 96px 56px;
  background: linear-gradient(155deg, rgba(96, 12, 144, 0.05) 0%, rgba(249, 2, 169, 0.04) 100%);
  position: relative;
}

.front-pg .process-band::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(249, 2, 169, 0.25), transparent);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.front-pg .process-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.front-pg .process-header-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}

.front-pg .process-overline {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F902A9;
  margin-bottom: 16px;
}

.front-pg .process-h2 {
  font-size: 41px;
  line-height: 1.1;
  color: #1b0a2e;
  margin: 0;
}

.front-pg .process-intro {
  font-size: 19px;
  line-height: 1.6;
  color: #2d1a40;
  margin: 0;
  padding-top: 28px;
}

.front-pg .process-intro-second {
  font-size: 15px;
  line-height: 1.6;
  color: #3a2050;
  margin: 16px 0 0 0;
}

.front-pg .process-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 56px;
}

.front-pg .process-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 5px 0 rgba(249, 2, 169, 0.08);
  transition: box-shadow 0.13s ease-out;
  position: relative;
}

.front-pg .process-step:hover {
  box-shadow: 0 8px 52px 0 rgba(249, 2, 169, 0.11);
}

.front-pg .process-step-num {
  font-size: 70px;
  font-weight: 800;
  color: rgba(249, 2, 169, 0.12);
  line-height: 1.1;
  position: absolute;
  top: 16px;
  right: 16px;
  user-select: none;
}

.front-pg .process-step-heading {
  font-size: 24px;
  font-weight: 700;
  color: #1b0a2e;
  margin: 0 0 8px 0;
}

.front-pg .process-step-body {
  font-size: 15px;
  line-height: 1.6;
  color: #3a2050;
  margin: 0;
}

.front-pg .process-bottom-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
}

.front-pg .process-bottom-img {
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}

.front-pg .process-bottom-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.85);
  transition: filter 0.18s ease-out;
}

.front-pg .process-bottom-img:hover img {
  filter: brightness(1.0);
}

.front-pg .process-bottom-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.front-pg .process-bottom-heading {
  font-size: 24px;
  font-weight: 700;
  color: #1b0a2e;
  margin: 0;
}

.front-pg .process-bottom-body {
  font-size: 15px;
  line-height: 1.6;
  color: #3a2050;
  margin: 0;
}

.front-pg .word-hover-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.front-pg .word-h {
  display: inline-block;
  padding: 2px 4px;
  border-radius: 2px;
  transition: background 0.1s linear;
  cursor: default;
}

.front-pg .word-h:hover {
  background: rgba(249, 2, 169, 0.1);
}

@keyframes settle-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

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

.front-pg .pg-title-row {
  animation: settle-in 0.38s ease-out both;
}

.front-pg .outcome-cards-row {
  animation: settle-in 0.42s 0.08s ease-out both;
}

@media (max-width: 1024px) {
  .front-pg .pg-title-row {
    grid-template-columns: 1fr;
    padding: 56px 28px 56px 28px;
    gap: 28px;
  }

  .front-pg .pg-title-text-col {
    padding: 28px 16px;
  }

  .front-pg .pg-title-h1 {
    font-size: 41px;
  }

  .front-pg .pg-title-img-col {
    min-height: 320px;
  }

  .front-pg .pg-title-img-frame {
    min-height: 320px;
  }

  .front-pg .outcome-band {
    padding: 56px 28px;
  }

  .front-pg .outcome-top-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .front-pg .outcome-cards-row {
    grid-template-columns: 1fr 1fr;
  }

  .front-pg .commit-band {
    padding: 56px 28px;
  }

  .front-pg .commit-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .front-pg .context-band {
    padding: 56px 28px;
  }

  .front-pg .context-top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .front-pg .context-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .front-pg .context-img-row {
    grid-template-columns: 1fr;
  }

  .front-pg .fit-band {
    padding: 56px 28px;
  }

  .front-pg .fit-top-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .front-pg .process-band {
    padding: 56px 28px;
  }

  .front-pg .process-header-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .front-pg .process-bottom-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .front-pg .pg-title-h1 {
    font-size: 31px;
  }

  .front-pg .outcome-h2,
  .front-pg .commit-h2,
  .front-pg .context-h2,
  .front-pg .fit-h2,
  .front-pg .process-h2 {
    font-size: 31px;
  }

  .front-pg .outcome-cards-row {
    grid-template-columns: 1fr;
  }

  .front-pg .commit-cols {
    grid-template-columns: 1fr;
  }

  .front-pg .context-grid {
    grid-template-columns: 1fr;
  }

  .front-pg .fit-profiles-row {
    grid-template-columns: 1fr;
  }

  .front-pg .process-steps-grid {
    grid-template-columns: 1fr;
  }

  .front-pg .pg-title-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .front-pg .pg-title-text-col {
    padding: 16px 8px;
  }

  .front-pg .outcome-band,
  .front-pg .commit-band,
  .front-pg .context-band,
  .front-pg .fit-band,
  .front-pg .process-band {
    padding: 56px 16px;
  }
}

.abt-pg {
  background: #ffffff;
  overflow-x: clip;
  position: relative;
}

.abt-pg .frame-band {
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, rgba(249, 2, 169, 0.04) 50%, #ffffff 100%);
  padding: 56px 0;
}

.abt-pg .frame-band-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

.abt-pg .thin-frame {
  position: absolute;
  top: 16px;
  left: 56px;
  right: 56px;
  bottom: 16px;
  pointer-events: none;
}

.abt-pg .thin-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #F902A9 30%, #600C90 70%, transparent);
}

.abt-pg .thin-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #F902A9 30%, #600C90 70%, transparent);
}

.abt-pg .frame-vert-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, #F902A9 30%, #600C90 70%, transparent);
}

.abt-pg .frame-vert-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, #F902A9 30%, #600C90 70%, transparent);
}

.abt-pg .title-centered {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 56px 28px;
}

.abt-pg .title-img-wrap {
  display: inline-block;
  position: relative;
  width: 480px;
  max-width: 100%;
  height: 260px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 28px;
}

.abt-pg .title-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.abt-pg .title-img-wrap .img-grad-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(96, 12, 144, 0.55) 0%, rgba(249, 2, 169, 0.18) 55%, transparent 100%);
  pointer-events: none;
}

.abt-pg .title-overline {
  display: block;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F902A9;
  margin-bottom: 16px;
  font-weight: 600;
}

.abt-pg .title-h1 {
  font-size: 56px;
  line-height: 1.1;
  color: #1b0030;
  margin: 0 0 16px;
  font-weight: 700;
}

.abt-pg .title-h1 .accent-word {
  background: linear-gradient(135deg, #F902A9 0%, #600C90 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abt-pg .title-dialogue {
  font-size: 19px;
  line-height: 1.6;
  color: #2e1045;
  max-width: 560px;
  margin: 0 auto;
}

.abt-pg .dots-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.abt-pg .dot-sm {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F902A9;
  opacity: 0.35;
}

.abt-pg .dot-md {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #600C90;
  opacity: 0.5;
}

.abt-pg .dot-lg {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #F902A9;
  opacity: 0.22;
}

.abt-pg .dot-xs {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #600C90;
  opacity: 0.4;
}

.abt-pg .story-band {
  background: #ffffff;
  padding: 96px 0 56px;
  border-top: 1px solid rgba(249, 2, 169, 0.1);
}

.abt-pg .story-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

.abt-pg .story-sidebar {
  position: sticky;
  top: 28px;
}

.abt-pg .sidebar-label {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #600C90;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

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

.abt-pg .sidebar-stat-item {
  padding: 16px;
  background: rgba(249, 2, 169, 0.04);
  border-radius: 8px;
  box-shadow: 0 2px 5px 0 rgba(249, 2, 169, 0.08);
}

.abt-pg .stat-num {
  font-size: 41px;
  line-height: 1.1;
  font-weight: 700;
  color: #F902A9;
  display: block;
}

.abt-pg .stat-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #2e1045;
  display: block;
  margin-top: 8px;
}

.abt-pg .sidebar-spin-wrap {
  margin-top: 28px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.abt-pg .spin-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px dashed rgba(249, 2, 169, 0.3);
  border-top-color: #F902A9;
  animation: abt-spin 8s linear infinite;
  position: relative;
}

.abt-pg .spin-ring::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(96, 12, 144, 0.25);
  border-bottom-color: #600C90;
  animation: abt-spin-rev 5s linear infinite;
}

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

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

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

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

.abt-pg .story-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.abt-pg .story-intro-full {
  font-size: 24px;
  line-height: 1.6;
  color: #1b0030;
  font-weight: 400;
}

.abt-pg .story-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.abt-pg .story-col-para {
  font-size: 15px;
  line-height: 1.6;
  color: #2e1045;
}

.abt-pg .accent-strike {
  text-decoration: line-through;
  color: #aaa;
}

.abt-pg .accent-replace {
  color: #F902A9;
  font-weight: 600;
}

.abt-pg .story-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 220px;
}

.abt-pg .story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease-out;
}

.abt-pg .story-img-wrap:hover img {
  transform: scale(1.03);
}

.abt-pg .story-img-wrap .dark-reveal {
  position: absolute;
  inset: 0;
  background: rgba(27, 0, 48, 0.0);
  transition: background 0.38s ease-out;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.abt-pg .story-img-wrap:hover .dark-reveal {
  background: rgba(27, 0, 48, 0.65);
}

.abt-pg .dark-reveal-text {
  font-size: 15px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.28s ease-out;
  line-height: 1.6;
}

.abt-pg .story-img-wrap:hover .dark-reveal-text {
  opacity: 1;
}

.abt-pg .numbered-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: abt-counter;
}

.abt-pg .numbered-list li {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  counter-increment: abt-counter;
}

.abt-pg .num-anchor {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 700;
  color: #F902A9;
  min-width: 40px;
  flex-shrink: 0;
}

.abt-pg .num-anchor::before {
  content: counter(abt-counter, decimal-leading-zero);
}

.abt-pg .num-text {
  font-size: 15px;
  line-height: 1.6;
  color: #2e1045;
  padding-top: 8px;
}

.abt-pg .team-band {
  background: linear-gradient(170deg, rgba(96, 12, 144, 0.06) 0%, rgba(249, 2, 169, 0.04) 60%, #ffffff 100%);
  padding: 96px 0;
  position: relative;
}

.abt-pg .team-dots-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-image: radial-gradient(circle, rgba(249, 2, 169, 0.5) 1px, transparent 1px);
  background-size: 12px 4px;
  background-repeat: repeat-x;
}

.abt-pg .team-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 28px;
}

.abt-pg .team-header-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 28px;
}

.abt-pg .team-heading-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt-pg .team-overline {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #600C90;
  font-weight: 600;
}

.abt-pg .team-h2 {
  font-size: 41px;
  line-height: 1.1;
  color: #1b0030;
  font-weight: 700;
  margin: 0;
}

.abt-pg .team-caption {
  font-size: 19px;
  line-height: 1.6;
  color: #2e1045;
  max-width: 360px;
  text-align: right;
}

.abt-pg .team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.abt-pg .team-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 28px 0 rgba(96, 12, 144, 0.08);
  padding: 28px;
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: flex-start;
  transition: box-shadow 0.18s ease-out;
}

.abt-pg .team-card:hover {
  box-shadow: 0 8px 52px 0 rgba(249, 2, 169, 0.11);
}

.abt-pg .team-portrait-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(249, 2, 169, 0.2);
}

.abt-pg .team-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.abt-pg .team-card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt-pg .team-member-name {
  font-size: 19px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b0030;
}

.abt-pg .team-member-role {
  font-size: 15px;
  color: #F902A9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.abt-pg .team-member-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #2e1045;
}

.abt-pg .team-no-portrait {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt-pg .no-portrait-card {
  background: rgba(249, 2, 169, 0.04);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 5px 0 rgba(249, 2, 169, 0.08);
  transition: box-shadow 0.22s ease-out;
}

.abt-pg .no-portrait-card:hover {
  box-shadow: 0 5px 28px 0 rgba(96, 12, 144, 0.08);
}

.abt-pg .no-portrait-card .team-member-name {
  font-size: 19px;
}

.abt-pg .no-portrait-card .team-member-role {
  font-size: 15px;
  color: #600C90;
}

.abt-pg .no-portrait-card .team-member-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #2e1045;
  margin-top: 8px;
}

.abt-pg .process-band {
  background: #ffffff;
  padding: 96px 0 56px;
  border-top: 1px solid rgba(96, 12, 144, 0.08);
}

.abt-pg .process-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 28px;
}

.abt-pg .process-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
}

.abt-pg .process-overline {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F902A9;
  font-weight: 600;
}

.abt-pg .process-h2 {
  font-size: 41px;
  line-height: 1.1;
  color: #1b0030;
  font-weight: 700;
  margin: 0;
}

.abt-pg .process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.abt-pg .process-img-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-pg .process-img-frame {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 280px;
}

.abt-pg .process-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.5s ease-out;
}

.abt-pg .process-img-frame:hover img {
  transform: scale(1.04);
}

.abt-pg .process-img-frame .dark-reveal {
  position: absolute;
  inset: 0;
  background: rgba(27, 0, 48, 0.0);
  transition: background 0.35s ease-out;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.abt-pg .process-img-frame:hover .dark-reveal {
  background: rgba(27, 0, 48, 0.6);
}

.abt-pg .process-img-frame:hover .dark-reveal-text {
  opacity: 1;
}

.abt-pg .process-img-frame .dark-reveal-text {
  font-size: 15px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  line-height: 1.6;
}

.abt-pg .process-steps-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-pg .step-item {
  padding: 16px;
  border-radius: 8px;
  background: rgba(96, 12, 144, 0.03);
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: background 0.14s ease-out;
}

.abt-pg .step-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(249, 2, 169, 0.12), transparent);
  transition: width 0.32s ease-out;
}

.abt-pg .step-item:hover::before {
  width: 100%;
}

.abt-pg .step-num {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 700;
  color: #F902A9;
  min-width: 40px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.abt-pg .step-detail {
  position: relative;
  z-index: 1;
}

.abt-pg .step-detail h5 {
  font-size: 19px;
  line-height: 1.1;
  color: #1b0030;
  font-weight: 600;
  margin: 0 0 8px;
}

.abt-pg .step-detail p {
  font-size: 15px;
  line-height: 1.6;
  color: #2e1045;
  margin: 0;
}

.abt-pg .contact-band {
  background: linear-gradient(160deg, rgba(249, 2, 169, 0.05) 0%, rgba(96, 12, 144, 0.07) 100%);
  padding: 96px 0;
  position: relative;
}

.abt-pg .contact-dots-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-image: radial-gradient(circle, rgba(96, 12, 144, 0.4) 1px, transparent 1px);
  background-size: 16px 4px;
  background-repeat: repeat-x;
}

.abt-pg .contact-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.abt-pg .contact-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.abt-pg .contact-overline {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #600C90;
  font-weight: 600;
}

.abt-pg .contact-h2 {
  font-size: 41px;
  line-height: 1.1;
  color: #1b0030;
  font-weight: 700;
  margin: 0;
}

.abt-pg .contact-desc {
  font-size: 19px;
  line-height: 1.6;
  color: #2e1045;
}

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

.abt-pg .contact-meta-item {
  font-size: 15px;
  line-height: 1.6;
  color: #2e1045;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
}

.abt-pg .contact-meta-label {
  font-weight: 600;
  color: #600C90;
  min-width: 72px;
  flex-shrink: 0;
}

.abt-pg .contact-meta-val a {
  color: #2e1045;
  text-decoration: none;
  transition: color 0.12s ease-out;
}

.abt-pg .contact-meta-val a:hover {
  color: #F902A9;
  text-shadow: 0 0 10px rgba(249, 2, 169, 0.3);
}

.abt-pg .contact-form-wrap {
  background: #ffffff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 5px 28px 0 rgba(96, 12, 144, 0.08);
}

.abt-pg .form-field-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.abt-pg .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt-pg .form-field label {
  font-size: 15px;
  font-weight: 600;
  color: #1b0030;
}

.abt-pg .form-field input,
.abt-pg .form-field select,
.abt-pg .form-field textarea {
  padding: 8px 16px;
  border: 1px solid rgba(96, 12, 144, 0.2);
  border-radius: 2px;
  font-size: 15px;
  color: #1b0030;
  background: #ffffff;
  outline: none;
  transition: border-color 0.12s ease-out, box-shadow 0.18s ease-out;
  appearance: none;
  -webkit-appearance: none;
}

.abt-pg .form-field input::placeholder,
.abt-pg .form-field textarea::placeholder {
  color: rgba(46, 16, 69, 0.35);
}

.abt-pg .form-field input:focus,
.abt-pg .form-field select:focus,
.abt-pg .form-field textarea:focus {
  border-color: #F902A9;
  box-shadow: 0 2px 5px 0 rgba(249, 2, 169, 0.08);
}

.abt-pg .form-field textarea {
  resize: vertical;
  min-height: 96px;
}

.abt-pg .form-field select {
  cursor: pointer;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23600C90'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

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

.abt-pg .privacy-row input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #F902A9;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.abt-pg .privacy-text {
  font-size: 15px;
  line-height: 1.6;
  color: #2e1045;
}

.abt-pg .privacy-text a {
  color: #600C90;
  text-decoration: underline;
  transition: color 0.1s ease-out;
}

.abt-pg .privacy-text a:hover {
  color: #F902A9;
}

.abt-pg .submit-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #F902A9 0%, #600C90 100%);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow 0.22s ease-out, transform 0.14s ease-out;
  box-shadow: 0 5px 28px 0 rgba(249, 2, 169, 0.08);
  overflow: hidden;
  position: relative;
}

.abt-pg .submit-btn:hover {
  box-shadow: 0 8px 52px 0 rgba(249, 2, 169, 0.11);
  transform: translateY(-1px);
}

.abt-pg .submit-btn:active {
  transform: translateY(0);
}

.abt-pg .btn-arrow {
  display: inline-block;
  transition: transform 0.18s ease-out;
}

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

@media (max-width: 1024px) {
  .abt-pg .story-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .abt-pg .story-sidebar {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
  }

  .abt-pg .sidebar-stat-item {
    flex: 1;
    min-width: 140px;
  }

  .abt-pg .sidebar-spin-wrap {
    display: none;
  }

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

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

  .abt-pg .contact-inner {
    grid-template-columns: 1fr;
  }

  .abt-pg .team-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .abt-pg .team-caption {
    text-align: left;
  }

  .abt-pg .title-h1 {
    font-size: 41px;
  }
}

@media (max-width: 640px) {
  .abt-pg .story-two-col {
    grid-template-columns: 1fr;
  }

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

  .abt-pg .title-h1 {
    font-size: 31px;
  }

  .abt-pg .team-h2,
  .abt-pg .process-h2,
  .abt-pg .contact-h2 {
    font-size: 31px;
  }

  .abt-pg .team-card {
    flex-direction: column;
  }

  .abt-pg .thin-frame {
    left: 16px;
    right: 16px;
  }

  .abt-pg .frame-band-inner {
    padding: 0 16px;
  }

  .abt-pg .story-inner,
  .abt-pg .team-inner,
  .abt-pg .process-inner,
  .abt-pg .contact-inner {
    padding: 0 16px;
  }
}

@media (max-width: 360px) {
  .abt-pg .title-h1 {
    font-size: 24px;
  }

  .abt-pg .title-dialogue {
    font-size: 15px;
  }

  .abt-pg .stat-num {
    font-size: 31px;
  }
}

.wbnr-pg {
  background: #fff;
  overflow-x: hidden;
}

.wbnr-pg .pg-bound {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

.wbnr-pg .wbnr-lead {
  padding-top: 96px;
  padding-bottom: 56px;
  position: relative;
  background: #fff;
}

.wbnr-pg .wbnr-lead::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(249, 2, 169, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 50%, rgba(96, 12, 144, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.wbnr-pg .lead-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.wbnr-pg .lead-text-col {
  position: relative;
}

.wbnr-pg .lead-dot-grid {
  position: absolute;
  top: 0;
  left: -28px;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(249, 2, 169, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}

.wbnr-pg .lead-text-inner {
  position: relative;
  z-index: 1;
  padding: 56px 56px 56px 28px;
}

.wbnr-pg .lead-overline {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F902A9;
  margin-bottom: 16px;
}

.wbnr-pg .lead-h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b0a2e;
  margin: 0 0 28px;
}

.wbnr-pg .lead-h1 .grad-word {
  background: linear-gradient(135deg, #F902A9 0%, #600C90 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wbnr-pg .lead-desc {
  font-size: 19px;
  line-height: 1.6;
  color: #3a2050;
  max-width: 560px;
  margin: 0 0 28px;
}

.wbnr-pg .lead-meta-row {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.wbnr-pg .lead-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wbnr-pg .lead-stat-num {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 800;
  color: #600C90;
}

.wbnr-pg .lead-stat-label {
  font-size: 15px;
  line-height: 1.6;
  color: #7a5a99;
}

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

.wbnr-pg .lead-img-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 52px 0 rgba(249, 2, 169, 0.11);
}

.wbnr-pg .lead-img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.wbnr-pg .lead-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(96, 12, 144, 0.28) 100%);
  pointer-events: none;
}

.wbnr-pg .corner-bracket {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
}

.wbnr-pg .corner-bracket.tl {
  top: -8px;
  left: -8px;
  border-top: 2px solid #F902A9;
  border-left: 2px solid #F902A9;
}

.wbnr-pg .corner-bracket.br {
  bottom: -8px;
  right: -8px;
  border-bottom: 2px solid #600C90;
  border-right: 2px solid #600C90;
}

.wbnr-pg .section-divider-curve {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wbnr-pg .section-divider-curve svg {
  display: block;
  width: 100%;
}

.wbnr-pg .card-listing {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #f7f0ff;
  position: relative;
}

.wbnr-pg .card-listing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(249, 2, 169, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(96, 12, 144, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.wbnr-pg .listing-heading-row {
  margin-bottom: 56px;
}

.wbnr-pg .listing-overline {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #600C90;
  margin-bottom: 16px;
}

.wbnr-pg .listing-h2 {
  font-size: 41px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b0a2e;
  margin: 0 0 16px;
}

.wbnr-pg .listing-sub {
  font-size: 19px;
  line-height: 1.6;
  color: #3a2050;
  max-width: 520px;
}

.wbnr-pg .card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.wbnr-pg .wbnr-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 28px 0 rgba(249, 2, 169, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.18s ease-out, transform 0.18s ease-out;
}

.wbnr-pg .wbnr-card:hover {
  box-shadow: 0 8px 52px 0 rgba(249, 2, 169, 0.11);
  transform: translateY(-3px);
}

.wbnr-pg .card-grid:has(.wbnr-card:hover) .wbnr-card:not(:hover) {
  filter: blur(0.6px);
  opacity: 0.88;
  transition: filter 0.22s ease-out, opacity 0.22s ease-out;
}

.wbnr-pg .wbnr-card .card-corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 46px 46px 0;
  border-color: transparent #F902A9 transparent transparent;
  z-index: 2;
}

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

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

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

.wbnr-pg .card-img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(247, 240, 255, 0.9));
  pointer-events: none;
}

.wbnr-pg .card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.wbnr-pg .card-tags {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.wbnr-pg .card-tag {
  font-size: 15px;
  font-weight: 600;
  color: #600C90;
  background: rgba(96, 12, 144, 0.08);
  border-radius: 30px;
  padding: 2px 16px;
  line-height: 1.6;
}

.wbnr-pg .card-user-fmt {
  font-size: 15px;
  font-weight: 500;
  color: #F902A9;
  background: rgba(249, 2, 169, 0.07);
  border-radius: 30px;
  padding: 2px 16px;
  line-height: 1.6;
}

.wbnr-pg .card-title-link {
  text-decoration: none !important;
  color: #1b0a2e;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  display: block;
  transition: color 0.14s ease-out;
}

.wbnr-pg .card-title-link:hover {
  color: #F902A9;
}

.wbnr-pg .card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3060;
  margin: 0;
}

.wbnr-pg .card-meta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 15px;
  color: #7a5a99;
}

.wbnr-pg .card-meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.wbnr-pg .card-meta-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.wbnr-pg .card-price-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(96, 12, 144, 0.1);
  flex-wrap: wrap;
}

.wbnr-pg .card-price-val {
  font-size: 31px;
  font-weight: 800;
  line-height: 1.1;
  color: #600C90;
}

.wbnr-pg .card-price-note {
  font-size: 15px;
  color: #7a5a99;
  line-height: 1.6;
}

.wbnr-pg .card-seats {
  font-size: 15px;
  font-weight: 600;
  color: #F902A9;
  line-height: 1.6;
}

.wbnr-pg .card-action-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #F902A9 0%, #600C90 100%);
  border-radius: 46px;
  padding: 8px 28px;
  text-decoration: none !important;
  transition: box-shadow 0.18s ease-out, opacity 0.14s ease-out;
  align-self: flex-start;
}

.wbnr-pg .card-action-link:hover {
  box-shadow: 0 5px 28px 0 rgba(249, 2, 169, 0.28);
  opacity: 0.92;
}

.wbnr-pg .card-action-link:hover .link-arrow {
  transform: translateX(4px);
}

.wbnr-pg .link-arrow {
  transition: transform 0.14s ease-out;
  display: inline-block;
}

.wbnr-pg .card-likes {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #7a5a99;
}

.wbnr-pg .card-like-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F902A9;
  display: inline-block;
}

.wbnr-pg .divider-b {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wbnr-pg .divider-b svg {
  display: block;
  width: 100%;
}

.wbnr-pg .process-strip {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #fff;
  position: relative;
}

.wbnr-pg .process-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(249, 2, 169, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(96, 12, 144, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.wbnr-pg .process-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 56px;
  align-items: start;
}

.wbnr-pg .process-left {
  position: relative;
}

.wbnr-pg .process-overline {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F902A9;
  margin-bottom: 16px;
}

.wbnr-pg .process-h2 {
  font-size: 41px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b0a2e;
  margin: 0 0 28px;
}

.wbnr-pg .process-body {
  font-size: 19px;
  line-height: 1.6;
  color: #3a2050;
  margin: 0 0 28px;
}

.wbnr-pg .process-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 28px 0 rgba(96, 12, 144, 0.08);
}

.wbnr-pg .process-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.wbnr-pg .process-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(96, 12, 144, 0.22) 100%);
  pointer-events: none;
}

.wbnr-pg .process-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.wbnr-pg .step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: start;
}

.wbnr-pg .step-num {
  font-size: 41px;
  font-weight: 800;
  line-height: 1.1;
  color: #F902A9;
  opacity: 0.35;
  text-align: center;
}

.wbnr-pg .step-text-col {
  padding-top: 8px;
}

.wbnr-pg .step-heading {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  color: #1b0a2e;
  margin: 0 0 8px;
}

.wbnr-pg .step-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3060;
  margin: 0;
}

.wbnr-pg .divider-c {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wbnr-pg .divider-c svg {
  display: block;
  width: 100%;
}

.wbnr-pg .pyramid-strip {
  padding-top: 96px;
  padding-bottom: 96px;
  background: linear-gradient(160deg, #1b0a2e 0%, #2d0a50 50%, #1b0a2e 100%);
  position: relative;
}

.wbnr-pg .pyramid-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.wbnr-pg .pyramid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.wbnr-pg .pyramid-text-col {
  position: relative;
  z-index: 1;
}

.wbnr-pg .pyramid-overline {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F902A9;
  margin-bottom: 16px;
}

.wbnr-pg .pyramid-h2 {
  font-size: 41px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  margin: 0 0 28px;
}

.wbnr-pg .pyramid-body {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 28px;
}

.wbnr-pg .pyramid-cta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 19px;
  font-weight: 700;
  color: #1b0a2e;
  background: #fff;
  border-radius: 46px;
  padding: 16px 56px;
  text-decoration: none !important;
  transition: box-shadow 0.22s ease-out, background 0.15s ease-out;
}

.wbnr-pg .pyramid-cta:hover {
  box-shadow: 0 8px 52px 0 rgba(249, 2, 169, 0.28);
  background: #f7f0ff;
}

.wbnr-pg .pyramid-cta:hover .cta-arrow {
  transform: translateX(5px);
}

.wbnr-pg .cta-arrow {
  transition: transform 0.15s ease-out;
  display: inline-block;
}

.wbnr-pg .pyramid-chart-col {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.wbnr-pg .pyramid-layer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  padding: 16px 28px;
  text-align: center;
  position: relative;
  transition: opacity 0.14s ease-out;
}

.wbnr-pg .pyramid-layer:hover {
  opacity: 0.9;
}

.wbnr-pg .pyramid-layer.lyr-1 {
  width: 60%;
  background: linear-gradient(135deg, #F902A9 0%, #c2007f 100%);
  box-shadow: 0 2px 5px 0 rgba(249, 2, 169, 0.08);
}

.wbnr-pg .pyramid-layer.lyr-2 {
  width: 72%;
  background: linear-gradient(135deg, #a0069a 0%, #7a0490 100%);
  box-shadow: 0 2px 5px 0 rgba(96, 12, 144, 0.08);
}

.wbnr-pg .pyramid-layer.lyr-3 {
  width: 84%;
  background: linear-gradient(135deg, #700c8a 0%, #500a70 100%);
  box-shadow: 0 5px 28px 0 rgba(96, 12, 144, 0.08);
}

.wbnr-pg .pyramid-layer.lyr-4 {
  width: 96%;
  background: linear-gradient(135deg, #4a0a60 0%, #30084a 100%);
  box-shadow: 0 5px 28px 0 rgba(96, 12, 144, 0.08);
}

.wbnr-pg .pyramid-lyr-label {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}

.wbnr-pg .pyramid-lyr-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.wbnr-pg .divider-d {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wbnr-pg .divider-d svg {
  display: block;
  width: 100%;
}

.wbnr-pg .social-strip {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #f7f0ff;
  position: relative;
}

.wbnr-pg .social-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(249, 2, 169, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(96, 12, 144, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.wbnr-pg .social-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

.wbnr-pg .social-left {
  position: relative;
}

.wbnr-pg .social-overline {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #600C90;
  margin-bottom: 16px;
}

.wbnr-pg .social-h2 {
  font-size: 41px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b0a2e;
  margin: 0 0 28px;
}

.wbnr-pg .social-intro {
  font-size: 19px;
  line-height: 1.6;
  color: #3a2050;
  margin: 0 0 28px;
}

.wbnr-pg .social-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.wbnr-pg .social-detail {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3060;
  margin: 0;
}

.wbnr-pg .social-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.wbnr-pg .testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 5px 28px 0 rgba(96, 12, 144, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wbnr-pg .testimonial-card .card-corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 0;
  border-color: transparent #600C90 transparent transparent;
}

.wbnr-pg .testi-quote {
  font-size: 15px;
  line-height: 1.6;
  color: #3a2050;
  margin: 0;
  font-style: italic;
}

.wbnr-pg .testi-person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.wbnr-pg .testi-portrait {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

.wbnr-pg .testi-name {
  font-size: 15px;
  font-weight: 700;
  color: #1b0a2e;
  line-height: 1.1;
  margin: 0 0 4px;
}

.wbnr-pg .testi-role {
  font-size: 15px;
  color: #7a5a99;
  line-height: 1.6;
}

@keyframes diag-drift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 60px 60px;
  }
}

.wbnr-pg .wbnr-lead {
  animation: diag-drift 14s linear infinite;
  background-image:
    linear-gradient(135deg, rgba(249, 2, 169, 0.03) 25%, transparent 25%),
    linear-gradient(225deg, rgba(96, 12, 144, 0.03) 25%, transparent 25%),
    linear-gradient(315deg, rgba(249, 2, 169, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, rgba(96, 12, 144, 0.03) 25%, transparent 25%);
  background-size: 60px 60px;
  background-color: #fff;
}

@media (max-width: 1024px) {
  .wbnr-pg .lead-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wbnr-pg .lead-img-col {
    display: none;
  }

  .wbnr-pg .card-grid {
    grid-template-columns: 1fr;
  }

  .wbnr-pg .process-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wbnr-pg .pyramid-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wbnr-pg .social-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wbnr-pg .lead-text-inner {
    padding: 28px;
  }
}

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

  .wbnr-pg .listing-h2,
  .wbnr-pg .process-h2,
  .wbnr-pg .pyramid-h2,
  .wbnr-pg .social-h2 {
    font-size: 31px;
  }

  .wbnr-pg .social-two-col {
    grid-template-columns: 1fr;
  }

  .wbnr-pg .lead-meta-row {
    gap: 16px;
  }

  .wbnr-pg .pg-bound {
    padding-left: 16px;
    padding-right: 16px;
  }

  .wbnr-pg .pyramid-layer.lyr-1 {
    width: 55%;
  }

  .wbnr-pg .pyramid-layer.lyr-2 {
    width: 68%;
  }

  .wbnr-pg .pyramid-layer.lyr-3 {
    width: 82%;
  }

  .wbnr-pg .pyramid-layer.lyr-4 {
    width: 96%;
  }
}

@media (max-width: 360px) {
  .wbnr-pg .lead-h1 {
    font-size: 31px;
  }

  .wbnr-pg .card-price-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ct-us {
  display: block;
  width: 100%;
  overflow-x: hidden;
}

.ct-us .reach-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  position: relative;
}

.ct-us .reach-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(270deg, rgba(249, 2, 169, 0.07) 0%, transparent 45%, rgba(96, 12, 144, 0.07) 100%);
  z-index: 0;
}

.ct-us .reach-visual {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 46px 0;
}

.ct-us .reach-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.ct-us .reach-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(96, 12, 144, 0.72) 0%, rgba(249, 2, 169, 0.38) 100%);
  z-index: 1;
}

.ct-us .reach-visual-label {
  position: absolute;
  bottom: 56px;
  left: 28px;
  z-index: 2;
  color: #FFFFFF;
}

.ct-us .reach-visual-label .rvl-overline {
  display: block;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-bottom: 8px;
  line-height: 1.1;
}

.ct-us .reach-visual-label .rvl-heading {
  font-size: 41px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 16px 0;
  max-width: 380px;
}

.ct-us .reach-visual-label .rvl-detail {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 320px;
  margin: 0;
}

.ct-us .reach-visual-corner-tr {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 64px 64px 0;
  border-color: transparent #FFFFFF transparent transparent;
  z-index: 3;
}

.ct-us .reach-visual-corner-bl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 48px 0 0 48px;
  border-color: transparent transparent transparent #FFFFFF;
  z-index: 3;
}

.ct-us .reach-form-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 56px 96px 56px;
  position: relative;
  z-index: 1;
  background: #FFFFFF;
}

.ct-us .form-col-overline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.ct-us .form-col-overline .dot-swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F902A9;
  flex-shrink: 0;
}

.ct-us .form-col-overline .overline-text {
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #600C90;
  font-weight: 600;
  line-height: 1.1;
}

.ct-us .form-col-heading {
  font-size: 41px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b0e2e;
  margin: 0 0 8px 0;
}

.ct-us .form-col-sub {
  font-size: 19px;
  line-height: 1.6;
  color: #3d2255;
  margin: 0 0 28px 0;
  max-width: 440px;
}

.ct-us .contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 520px;
}

.ct-us .form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ct-us .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-us .form-field label {
  font-size: 15px;
  font-weight: 600;
  color: #1b0e2e;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.ct-us .form-field input,
.ct-us .form-field select,
.ct-us .form-field textarea {
  border: 1.5px solid #d4c0e8;
  border-radius: 8px;
  padding: 16px;
  font-size: 15px;
  color: #1b0e2e;
  background: #fdf8ff;
  line-height: 1.6;
  transition: border-color 0.12s ease-out, box-shadow 0.18s ease-out;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.ct-us .form-field input::placeholder,
.ct-us .form-field textarea::placeholder {
  color: rgba(60, 34, 85, 0.38);
}

.ct-us .form-field input:focus,
.ct-us .form-field select:focus,
.ct-us .form-field textarea:focus {
  border-color: #F902A9;
  box-shadow: 0 2px 5px 0 rgba(249, 2, 169, 0.08);
}

.ct-us .form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23600C90' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.ct-us .form-field textarea {
  resize: vertical;
  min-height: 96px;
}

.ct-us .form-options-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-us .form-options-label {
  font-size: 15px;
  font-weight: 600;
  color: #1b0e2e;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.ct-us .form-options-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ct-us .form-options-chips input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.ct-us .form-options-chips label {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1.5px solid #d4c0e8;
  font-size: 15px;
  color: #3d2255;
  cursor: pointer;
  background: #fdf8ff;
  transition: border-color 0.13s ease-out, background 0.13s ease-out, color 0.13s ease-out;
  line-height: 1.1;
  user-select: none;
}

.ct-us .form-options-chips input[type="checkbox"]:checked+label {
  border-color: #F902A9;
  background: rgba(249, 2, 169, 0.07);
  color: #1b0e2e;
  font-weight: 600;
}

.ct-us .form-options-chips label:hover {
  border-color: #600C90;
  color: #1b0e2e;
}

.ct-us .privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.ct-us .privacy-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid #d4c0e8;
  border-radius: 2px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #F902A9;
  flex-shrink: 0;
}

.ct-us .privacy-row .privacy-text {
  font-size: 15px;
  color: #3d2255;
  line-height: 1.6;
}

.ct-us .privacy-row .privacy-text a {
  color: #600C90;
  text-decoration: underline;
  text-decoration-color: rgba(249, 2, 169, 0.5);
  text-underline-offset: 2px;
  transition: color 0.11s ease-out, text-shadow 0.18s ease-out;
}

.ct-us .privacy-row .privacy-text a:hover {
  color: #F902A9;
  text-shadow: 0 0 10px rgba(249, 2, 169, 0.28);
}

.ct-us .submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 56px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #F902A9 0%, #600C90 100%);
  color: #FFFFFF;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 5px 28px 0 rgba(249, 2, 169, 0.08);
  transition: box-shadow 0.22s ease-out, transform 0.12s ease-out;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.ct-us .submit-btn svg {
  transition: transform 0.14s ease-out;
  flex-shrink: 0;
}

.ct-us .submit-btn:hover {
  box-shadow: 0 8px 52px 0 rgba(249, 2, 169, 0.11);
  transform: translateY(-1px);
}

.ct-us .submit-btn:hover svg {
  transform: translateX(5px);
}

.ct-us .submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px 0 rgba(249, 2, 169, 0.08);
}

.ct-us .submit-btn:focus-visible {
  outline: 2px solid #F902A9;
  outline-offset: 3px;
}

.ct-us .details-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #1b0e2e;
  position: relative;
  overflow: hidden;
}

.ct-us .details-strip::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(249, 2, 169, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.ct-us .detail-item {
  padding: 56px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-us .detail-item:last-child {
  border-right: none;
}

.ct-us .detail-item-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 32px 32px 0;
  border-color: transparent rgba(249, 2, 169, 0.22) transparent transparent;
}

.ct-us .detail-icon-ring {
  width: 48px;
  height: 48px;
  border-radius: 46px;
  border: 1.5px solid rgba(249, 2, 169, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 2, 169, 0.08);
  box-shadow: inset 0 2px 5px 0 rgba(249, 2, 169, 0.08);
  flex-shrink: 0;
}

.ct-us .detail-icon-ring svg {
  display: block;
}

.ct-us .detail-item-label {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}

.ct-us .detail-item-value {
  font-size: 19px;
  color: #FFFFFF;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.ct-us .detail-item-value a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.11s ease-out, text-shadow 0.18s ease-out;
}

.ct-us .detail-item-value a:hover {
  color: #F902A9;
  text-shadow: 0 0 10px rgba(249, 2, 169, 0.35);
}

.ct-us .detail-item-addr {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin: 0;
}

.ct-us .strip-metric-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 28px;
}

.ct-us .metric-large {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(135deg, #F902A9 0%, #600C90 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 8px;
}

.ct-us .metric-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
  max-width: 180px;
}

@media (max-width: 1024px) {
  .ct-us .reach-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ct-us .reach-visual {
    height: 340px;
    border-radius: 0 0 30px 0;
  }

  .ct-us .reach-form-col {
    padding: 56px 28px;
  }

  .ct-us .form-col-heading {
    font-size: 31px;
  }

  .ct-us .details-strip {
    grid-template-columns: 1fr;
  }

  .ct-us .detail-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px;
  }

  .ct-us .detail-item:last-child {
    border-bottom: none;
  }

  .ct-us .reach-visual-label .rvl-heading {
    font-size: 31px;
  }
}

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

  .ct-us .reach-form-col {
    padding: 28px 16px;
  }

  .ct-us .submit-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
  }

  .ct-us .reach-visual {
    height: 260px;
  }

  .ct-us .reach-visual-label .rvl-heading {
    font-size: 24px;
  }

  .ct-us .form-col-heading {
    font-size: 24px;
  }

  .ct-us .metric-large {
    font-size: 41px;
  }
}

@media (max-width: 360px) {
  .ct-us .reach-form-col {
    padding: 28px 8px;
  }

  .ct-us .form-options-chips label {
    font-size: 15px;
    padding: 8px 8px;
  }
}

.mstr-pg {
  background: #ffffff;
  overflow-x: hidden;
}

.mstr-pg .slide-in {
  opacity: 0;
  transform: translateX(60px);
  animation: arrive 0.45s ease-out forwards;
}

.mstr-pg .slide-in:nth-child(1) {
  animation-delay: 0.08s;
}

.mstr-pg .slide-in:nth-child(2) {
  animation-delay: 0.18s;
}

.mstr-pg .slide-in:nth-child(3) {
  animation-delay: 0.28s;
}

.mstr-pg .slide-in:nth-child(4) {
  animation-delay: 0.38s;
}

@keyframes arrive {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mstr-pg .grad-shift-bg {
  background: linear-gradient(120deg, #600C90, #F902A9, #600C90, #a0057c);
  background-size: 300% 300%;
  animation: grad-move 8s ease-in-out infinite;
}

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

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

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

.mstr-pg .title-band {
  position: relative;
  padding: 56px 56px 56px 56px;
  min-height: unset;
  overflow: visible;
}

.mstr-pg .title-band-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 56px;
}

.mstr-pg .title-oversized-char {
  position: absolute;
  top: -16px;
  right: 56px;
  font-size: 70px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1.1;
  letter-spacing: -4px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.mstr-pg .title-text-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mstr-pg .title-eyebrow {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1.1;
}

.mstr-pg .title-h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
}

.mstr-pg .title-h1 .accented-word {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #F902A9;
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

.mstr-pg .title-sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0;
}

.mstr-pg .title-meta-row {
  display: flex;
  flex-direction: row;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.mstr-pg .title-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mstr-pg .title-meta-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.mstr-pg .title-meta-value {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.mstr-pg .title-img-col {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mstr-pg .title-img-frame {
  width: 300px;
  height: 380px;
  overflow: hidden;
  clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 12% 100%, 0 88%);
  box-shadow: 0 8px 52px 0 rgba(249, 2, 169, 0.11);
}

.mstr-pg .title-img-frame img {
  width: 300px;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.mstr-pg .title-enroll-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #600C90;
  font-size: 19px;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 28px 0 rgba(96, 12, 144, 0.08);
  transition: box-shadow 0.12s ease-out, transform 0.12s ease-out;
  text-decoration: none;
  margin-top: 8px;
  align-self: flex-start;
}

.mstr-pg .title-enroll-btn:hover {
  box-shadow: 0 8px 52px 0 rgba(96, 12, 144, 0.11);
  transform: translateY(-2px);
}

.mstr-pg .title-enroll-btn .btn-arrow {
  display: inline-block;
  transition: transform 0.14s ease-out;
  font-style: normal;
}

.mstr-pg .title-enroll-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.mstr-pg .curriculum-sect {
  background: #ffffff;
  padding: 96px 56px;
  position: relative;
}

.mstr-pg .curriculum-sect::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: linear-gradient(to bottom, rgba(96, 12, 144, 0.06), transparent);
  pointer-events: none;
}

.mstr-pg .curriculum-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
}

.mstr-pg .curriculum-dominant {
  flex: 3 1 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mstr-pg .curriculum-detail-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 220px;
}

.mstr-pg .overline-label {
  font-size: 15px;
  font-weight: 700;
  color: #F902A9;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 1.1;
  display: block;
  margin-bottom: 8px;
}

.mstr-pg .curriculum-h2 {
  font-size: 41px;
  font-weight: 900;
  line-height: 1.1;
  color: #1b0a2e;
  margin: 0;
}

.mstr-pg .curriculum-intro-p {
  font-size: 19px;
  line-height: 1.6;
  color: #3a2050;
  max-width: 680px;
  margin: 0;
}

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

.mstr-pg .module-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  outline: 1px solid rgba(96, 12, 144, 0.12);
  outline-offset: 0;
  position: relative;
  background: #ffffff;
  transition: box-shadow 0.13s ease-out, outline-color 0.13s ease-out;
}

.mstr-pg .module-item:hover {
  box-shadow: 0 5px 28px 0 rgba(249, 2, 169, 0.08);
  outline-color: rgba(249, 2, 169, 0.3);
}

.mstr-pg .module-num {
  font-size: 41px;
  font-weight: 900;
  line-height: 1.1;
  color: #F902A9;
  min-width: 48px;
  flex-shrink: 0;
}

.mstr-pg .module-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

.mstr-pg .module-title {
  font-size: 19px;
  font-weight: 700;
  color: #1b0a2e;
  line-height: 1.1;
  margin: 0;
}

.mstr-pg .module-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3060;
  margin: 0;
}

.mstr-pg .detail-stat-card {
  background: linear-gradient(160deg, rgba(96, 12, 144, 0.05) 0%, rgba(249, 2, 169, 0.04) 100%);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 5px 0 rgba(96, 12, 144, 0.08);
}

.mstr-pg .detail-stat-number {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, #600C90, #F902A9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mstr-pg .detail-stat-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #3a2050;
  margin: 0;
}

.mstr-pg .detail-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(249, 2, 169, 0.25), transparent);
}

.mstr-pg .detail-info-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mstr-pg .detail-info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mstr-pg .detail-info-label {
  font-size: 15px;
  font-weight: 700;
  color: #600C90;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.mstr-pg .detail-info-val {
  font-size: 15px;
  color: #1b0a2e;
  line-height: 1.6;
  margin: 0;
}

.mstr-pg .diagonal-texture-sect {
  position: relative;
  background: #f5f0fb;
  padding: 96px 56px;
  overflow: hidden;
}

.mstr-pg .diagonal-texture-sect::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg,
      rgba(96, 12, 144, 0.04) 0px,
      rgba(96, 12, 144, 0.04) 1px,
      transparent 1px,
      transparent 12px);
  pointer-events: none;
}

.mstr-pg .diagonal-texture-sect::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: linear-gradient(to bottom, rgba(249, 2, 169, 0.05), transparent);
  pointer-events: none;
}

.mstr-pg .facilitators-inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.mstr-pg .facilitators-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.mstr-pg .facilitators-heading-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mstr-pg .facilitators-h2 {
  font-size: 41px;
  font-weight: 900;
  line-height: 1.1;
  color: #1b0a2e;
  margin: 0;
}

.mstr-pg .facilitators-sub {
  font-size: 19px;
  line-height: 1.6;
  color: #3a2050;
  max-width: 520px;
  margin: 0;
}

.mstr-pg .framing-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.mstr-pg .framing-line-outer {
  width: 96px;
  height: 1px;
  background: rgba(96, 12, 144, 0.18);
}

.mstr-pg .framing-line-inner {
  width: 72px;
  height: 2px;
  background: #F902A9;
}

.mstr-pg .facilitators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mstr-pg .facilitator-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 5px 0 rgba(96, 12, 144, 0.08);
  border: 2px solid transparent;
  outline: 1px solid rgba(96, 12, 144, 0.1);
  transition: box-shadow 0.15s ease-out, outline-color 0.15s ease-out;
  position: relative;
}

.mstr-pg .facilitator-card::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 6px;
  border: 1px solid rgba(249, 2, 169, 0.12);
  pointer-events: none;
}

.mstr-pg .facilitator-card:hover {
  box-shadow: 0 8px 52px 0 rgba(249, 2, 169, 0.11);
  outline-color: rgba(249, 2, 169, 0.28);
}

.mstr-pg .facilitator-card:hover .fc-bg-pattern {
  opacity: 1;
}

.mstr-pg .fc-bg-pattern {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background-image: repeating-linear-gradient(135deg,
      rgba(249, 2, 169, 0.025) 0px,
      rgba(249, 2, 169, 0.025) 1px,
      transparent 1px,
      transparent 10px);
  opacity: 0;
  transition: opacity 0.4s ease-out;
  pointer-events: none;
}

.mstr-pg .facilitator-name {
  font-size: 24px;
  font-weight: 800;
  color: #1b0a2e;
  line-height: 1.1;
  margin: 0;
}

.mstr-pg .facilitator-role {
  font-size: 15px;
  font-weight: 700;
  color: #600C90;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.mstr-pg .facilitator-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #3a2050;
  margin: 0;
}

.mstr-pg .facilitator-detail-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(96, 12, 144, 0.1);
}

.mstr-pg .facilitator-tag {
  font-size: 15px;
  color: #600C90;
  background: rgba(96, 12, 144, 0.07);
  border-radius: 30px;
  padding: 4px 16px;
  line-height: 1.6;
}

.mstr-pg .large-typo-block {
  background: #ffffff;
  padding: 56px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
  box-shadow: 0 5px 28px 0 rgba(96, 12, 144, 0.08);
  position: relative;
  overflow: hidden;
}

.mstr-pg .large-typo-block::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 2px solid rgba(96, 12, 144, 0.14);
  pointer-events: none;
}

.mstr-pg .large-typo-block::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 6px;
  border: 1px solid rgba(249, 2, 169, 0.1);
  pointer-events: none;
}

.mstr-pg .large-typo-num {
  font-size: 70px;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, #600C90, #F902A9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-width: 80px;
}

.mstr-pg .large-typo-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mstr-pg .large-typo-label {
  font-size: 15px;
  font-weight: 700;
  color: #600C90;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.mstr-pg .large-typo-text {
  font-size: 19px;
  line-height: 1.6;
  color: #1b0a2e;
  margin: 0;
}

.mstr-pg .large-typo-fine-data {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.mstr-pg .fine-data-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: baseline;
}

.mstr-pg .fine-data-key {
  font-size: 15px;
  color: #600C90;
  font-weight: 600;
  line-height: 1.6;
  min-width: 120px;
}

.mstr-pg .fine-data-val {
  font-size: 15px;
  color: #3a2050;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .mstr-pg .title-band {
    padding: 56px 28px;
  }

  .mstr-pg .title-band-inner {
    gap: 28px;
  }

  .mstr-pg .title-h1 {
    font-size: 41px;
  }

  .mstr-pg .title-img-col {
    flex: 0 0 240px;
  }

  .mstr-pg .title-img-frame {
    width: 220px;
    height: 280px;
  }

  .mstr-pg .title-img-frame img {
    width: 220px;
    height: 280px;
  }

  .mstr-pg .curriculum-inner {
    flex-direction: column;
    gap: 28px;
    padding: 0;
  }

  .mstr-pg .curriculum-sect {
    padding: 56px 28px;
  }

  .mstr-pg .facilitators-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mstr-pg .diagonal-texture-sect {
    padding: 56px 28px;
  }

  .mstr-pg .large-typo-block {
    padding: 28px;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .mstr-pg .title-band {
    padding: 56px 16px 56px 16px;
  }

  .mstr-pg .title-band-inner {
    flex-direction: column;
    gap: 28px;
  }

  .mstr-pg .title-h1 {
    font-size: 31px;
  }

  .mstr-pg .title-img-col {
    flex: 0 0 auto;
    justify-content: flex-start;
    width: 100%;
  }

  .mstr-pg .title-img-frame {
    width: 100%;
    height: 240px;
  }

  .mstr-pg .title-img-frame img {
    width: 100%;
    height: 240px;
  }

  .mstr-pg .title-oversized-char {
    font-size: 56px;
    right: 16px;
  }

  .mstr-pg .curriculum-sect {
    padding: 56px 16px;
  }

  .mstr-pg .curriculum-h2 {
    font-size: 31px;
  }

  .mstr-pg .facilitators-grid {
    grid-template-columns: 1fr;
  }

  .mstr-pg .diagonal-texture-sect {
    padding: 56px 16px;
  }

  .mstr-pg .facilitators-h2 {
    font-size: 31px;
  }

  .mstr-pg .large-typo-block {
    flex-direction: column;
    gap: 16px;
    padding: 28px 16px;
  }

  .mstr-pg .large-typo-num {
    font-size: 56px;
  }

  .mstr-pg .title-meta-row {
    gap: 16px;
  }
}

@media (max-width: 360px) {
  .mstr-pg .title-h1 {
    font-size: 24px;
  }

  .mstr-pg .curriculum-h2,
  .mstr-pg .facilitators-h2 {
    font-size: 24px;
  }

  .mstr-pg .title-enroll-btn {
    font-size: 15px;
    padding: 16px 16px;
  }
}

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

.success-page-root .confirmation-frame {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.success-page-root .confirmation-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(135deg, #F902A9 0%, #600C90 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 28px 0 rgba(249, 2, 169, 0.08);
  flex-shrink: 0;
}

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

.success-page-root .confirmation-overline {
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #600C90;
  font-weight: 600;
  margin: 0;
}

.success-page-root .confirmation-heading {
  font-size: 41px;
  line-height: 1.1;
  color: #1b0d2a;
  font-weight: 700;
  margin: 0;
}

.success-page-root .confirmation-heading mark {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  color: #F902A9;
  font-style: normal;
}

.success-page-root .confirmation-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.success-page-root .confirmation-body p {
  font-size: 19px;
  line-height: 1.6;
  color: #2e1a44;
  margin: 0;
}

.success-page-root .confirmation-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #F902A9 0%, transparent 70%);
  border: none;
  margin: 0;
}

.success-page-root .confirmation-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.success-page-root .confirmation-meta-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.success-page-root .confirmation-meta-item .meta-label {
  font-size: 15px;
  line-height: 1.6;
  color: #8b6aad;
  min-width: 120px;
  flex-shrink: 0;
}

.success-page-root .confirmation-meta-item .meta-value {
  font-size: 15px;
  line-height: 1.6;
  color: #1b0d2a;
  font-weight: 500;
}

.success-page-root .confirmation-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.success-page-root .btn-primary-confirm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #F902A9 0%, #600C90 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 28px 0 rgba(249, 2, 169, 0.08);
  transition: box-shadow 0.18s ease-out, transform 0.12s ease-out;
  letter-spacing: 0.02em;
}

.success-page-root .btn-primary-confirm:hover {
  box-shadow: 0 8px 52px 0 rgba(249, 2, 169, 0.11);
  transform: translateY(-1px);
}

.success-page-root .btn-primary-confirm:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px 0 rgba(249, 2, 169, 0.08);
}

.success-page-root .btn-primary-confirm:focus-visible {
  outline: 2px solid #F902A9;
  outline-offset: 3px;
}

.success-page-root .btn-primary-confirm .btn-arrow {
  display: inline-block;
  transition: transform 0.14s ease-out;
}

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

.success-page-root .btn-secondary-confirm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: transparent;
  color: #600C90;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
  border: 1px solid #600C90;
  border-radius: 46px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease-out, color 0.15s ease-out;
}

.success-page-root .btn-secondary-confirm:hover {
  background: #600C90;
  color: #fff;
}

.success-page-root .btn-secondary-confirm:focus-visible {
  outline: 2px solid #600C90;
  outline-offset: 3px;
}

.success-page-root .confirmation-contact-note {
  font-size: 15px;
  line-height: 1.6;
  color: #8b6aad;
  margin: 0;
}

.success-page-root .confirmation-contact-note a {
  color: #F902A9;
  text-decoration: underline;
  text-decoration-color: rgba(249, 2, 169, 0.4);
  transition: text-decoration-color 0.12s linear;
}

.success-page-root .confirmation-contact-note a:hover {
  text-decoration-color: #F902A9;
  text-shadow: 0 0 8px rgba(249, 2, 169, 0.18);
}

@media (max-width: 640px) {
  .success-page-root {
    padding: 56px 16px;
    justify-content: flex-start;
  }

  .success-page-root .confirmation-heading {
    font-size: 31px;
  }

  .success-page-root .confirmation-meta-item {
    flex-direction: column;
    gap: 0;
  }

  .success-page-root .confirmation-meta-item .meta-label {
    min-width: unset;
  }

  .success-page-root .confirmation-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .success-page-root .confirmation-heading {
    font-size: 24px;
  }

  .success-page-root .confirmation-body p {
    font-size: 15px;
  }
}