@import url('https://cdn.jsdelivr.net/npm/@fontsource/arimo@latest/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/arimo@latest/700.css');

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Arimo', Arial, sans-serif;
}

.site-hd {
  position: relative;
  padding: 20px 32px 0;
  background: #F9F5F9;
}

.site-hd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #BA6BBE 0%, #E6CEE4 60%, #F9F5F9 100%);
}

.hd-rounded-box {
  max-width: 1440px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px 0 rgba(186, 107, 190, 0.14);
  overflow: hidden;
}

.hd-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 32px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #F9F5F9 100%);
  border-bottom: 1px solid #E6CEE4;
}

.hd-brand-box {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.logo-frame {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: rgba(230, 206, 228, 0.25);
  border: 1px solid #E6CEE4;
  box-shadow: 0 3px 6px 0 rgba(186, 107, 190, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 -1px 0 rgba(186, 107, 190, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

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

.brand-tag {
  font-size: 15px;
  line-height: 1.2;
  color: #3a2040;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-sub {
  font-size: 15px;
  line-height: 1.2;
  color: #7a5580;
  font-weight: 400;
}

.hd-contact-strip {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.2;
  color: #3a2040;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
  color: #BA6BBE;
}

.contact-item .icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: #F9F5F9;
  border: 1px solid #E6CEE4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item i {
  font-size: 13px;
  color: #BA6BBE;
}

.hd-nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 32px;
  background: #ffffff;
  gap: 4px;
  flex-wrap: wrap;
}

.hd-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 20px 20px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #3a2040;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: color 0.24s cubic-bezier(0.0, 0, 0.2, 1), border-color 0.24s cubic-bezier(0.0, 0, 0.2, 1);
  white-space: nowrap;
  min-height: 44px;
}

.hd-nav-link:hover {
  color: #BA6BBE;
  border-bottom-color: #BA6BBE;
}

.hd-nav-link i {
  font-size: 14px;
  color: #BA6BBE;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hd-nav-link:hover i {
  opacity: 0.7;
}

.site-ft {
  background: #F9F5F9;
  padding: 64px 32px 32px;
  border-top: 1px solid #E6CEE4;
}

.ft-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.ft-grid {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.ft-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 220px;
  flex: 1;
}

.ft-logo-frame {
  width: 75px;
  height: 75px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #E6CEE4;
  box-shadow: 0 5px 20px 0 rgba(186, 107, 190, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -1px 0 rgba(186, 107, 190, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

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

.ft-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3050;
  max-width: 320px;
}

.ft-address-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.ft-address-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.2;
  color: #4a3050;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.ft-address-line:hover {
  color: #BA6BBE;
}

.ft-address-line i {
  font-size: 13px;
  color: #BA6BBE;
  flex-shrink: 0;
}

.ft-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 180px;
}

.ft-col-label {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #3a2040;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 2px solid #E6CEE4;
  margin-bottom: 4px;
}

.ft-link {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3050;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ft-link:hover {
  color: #BA6BBE;
}

.ft-divider {
  height: 1px;
  background: #E6CEE4;
  margin: 32px 0;
}

.ft-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.ft-copy {
  font-size: 15px;
  line-height: 1.2;
  color: #7a5580;
}

.ft-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ft-legal-link {
  font-size: 15px;
  line-height: 1.2;
  color: #7a5580;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.ft-legal-link:hover {
  color: #BA6BBE;
}

.ck-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 360px;
  max-width: calc(100vw - 40px);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px 0 rgba(186, 107, 190, 0.14), 0 5px 20px 0 rgba(186, 107, 190, 0.08);
  z-index: 1200;
  border: 1px solid #E6CEE4;
  overflow: hidden;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.ck-popup.ck-hidden-state {
  transform: translateY(-120%);
  opacity: 0;
}

.ck-top-bar {
  height: 4px;
  background: linear-gradient(90deg, #BA6BBE 0%, #E6CEE4 100%);
}

.ck-body {
  padding: 20px;
}

.ck-headline {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #3a2040;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.ck-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3050;
  margin-bottom: 20px;
}

.ck-desc a {
  color: #BA6BBE;
  text-decoration: underline;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ck-desc a:hover {
  color: #8a3a8e;
}

.ck-panel {
  background: #F9F5F9;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 20px;
}

.ck-panel-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Arimo', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #3a2040;
  text-align: left;
}

.ck-panel-toggle-btn:focus {
  outline: 3px solid;
  outline-color: #BA6BBE;
  outline-offset: 2px;
  border-radius: 0px;
}

.ck-panel-toggle-btn i {
  font-size: 12px;
  color: #BA6BBE;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ck-panel-toggle-btn.open i {
  transform: rotate(180deg);
}

.ck-panel-detail {
  display: none;
  padding-top: 12px;
}

.ck-panel-detail.showing {
  display: block;
}

.ck-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ck-toggle-label {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3050;
}

.ck-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.ck-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.ck-switch-track {
  position: absolute;
  inset: 0;
  background: #E6CEE4;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.ck-switch-track::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #ffffff;
  border-radius: 12px;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 6px 0 rgba(186, 107, 190, 0.07);
}

.ck-switch input:checked+.ck-switch-track {
  background: #BA6BBE;
}

.ck-switch input:checked+.ck-switch-track::after {
  transform: translateX(20px);
}

.ck-switch input:focus+.ck-switch-track {
  outline: 3px solid #BA6BBE;
  outline-offset: 2px;
}

.ck-always-on {
  font-size: 15px;
  line-height: 1.2;
  color: #7a5580;
  font-weight: 700;
}

.ck-actions {
  display: flex;
  gap: 12px;
}

.ck-btn {
  flex: 1;
  padding: 12px 8px;
  border-radius: 0px;
  font-family: 'Arimo', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid #BA6BBE;
  transition: background 0.24s cubic-bezier(0.0, 0, 0.2, 1), color 0.24s cubic-bezier(0.0, 0, 0.2, 1);
  min-height: 44px;
}

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

.ck-btn-accept {
  background: #BA6BBE;
  color: #ffffff;
}

.ck-btn-accept:hover {
  background: #8a3a8e;
  border-color: #8a3a8e;
}

.ck-btn-reject {
  background: #ffffff;
  color: #BA6BBE;
}

.ck-btn-reject:hover {
  background: #F9F5F9;
}

@media (max-width: 768px) {
  .site-hd {
    padding: 12px 12px 0;
  }

  .hd-top-row {
    flex-direction: column;
    gap: 20px;
    padding: 20px 20px 12px;
  }

  .hd-contact-strip {
    align-items: flex-start;
  }

  .hd-nav-row {
    padding: 0 12px;
    gap: 0;
  }

  .hd-nav-link {
    padding: 16px 12px;
    font-size: 15px;
  }

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

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

@media (max-width: 390px) {
  .hd-brand-box {
    gap: 12px;
  }

  .logo-frame {
    width: 64px;
    height: 64px;
  }

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

  .ck-popup {
    right: 12px;
    left: 12px;
    width: auto;
    max-width: none;
  }

  .ft-inner {
    padding: 0;
  }
}

@media (min-width: 1280px) {
  .hd-nav-link {
    padding: 20px 24px;
  }
}

.policy-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 32px;
  color: #2d1f2e;
  background: #ffffff;
}

.policy-section h1 {
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1a0d1b;
  margin-bottom: 32px;
  margin-top: 0;
  padding-bottom: 20px;
  border-bottom: 2px solid #E6CEE4;
}

.policy-section h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1a0d1b;
  margin-top: 64px;
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 4px solid #BA6BBE;
  box-shadow: inset 2px 0 0 0 rgba(186, 107, 190, 0.18), inset -1px 0 0 0 rgba(186, 107, 190, 0.06);
}

.policy-section h3 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #2d1f2e;
  margin-top: 32px;
  margin-bottom: 12px;
}

.policy-section h4 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #2d1f2e;
  margin-top: 32px;
  margin-bottom: 12px;
}

.policy-section h5 {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #BA6BBE;
  margin-top: 20px;
  margin-bottom: 8px;
}

.policy-section h6 {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7a4a7e;
  margin-top: 20px;
  margin-bottom: 8px;
}

.policy-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #2d1f2e;
  margin-top: 0;
  margin-bottom: 20px;
  max-width: 72ch;
}

.policy-section ul {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 20px;
  list-style: none;
}

.policy-section ol {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 20px;
  list-style: none;
  counter-reset: policy-counter;
}

.policy-section ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #2d1f2e;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  max-width: 72ch;
}

.policy-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 0px;
  background: #BA6BBE;
  transform: rotate(45deg);
}

.policy-section ol li {
  font-size: 16px;
  line-height: 1.8;
  color: #2d1f2e;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  max-width: 72ch;
  counter-increment: policy-counter;
}

.policy-section ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #BA6BBE;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.policy-section ul ul,
.policy-section ol ol,
.policy-section ul ol,
.policy-section ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 20px;
}

.policy-section ul ul li::before {
  background: transparent;
  border: 2px solid #BA6BBE;
  width: 5px;
  height: 5px;
}

.policy-section em,
.policy-section i {
  font-style: italic;
  color: #7a4a7e;
}

.policy-section hr {
  border: none;
  border-top: 1px solid #E6CEE4;
  margin-top: 64px;
  margin-bottom: 64px;
  position: relative;
}

.policy-section hr::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #BA6BBE;
  position: absolute;
  top: -2px;
  left: 0;
  border-radius: 0px;
}

.policy-section div {
  font-size: 16px;
  line-height: 1.8;
  color: #2d1f2e;
}

.policy-section div.notice {
  background: #F9F5F9;
  border-left: 4px solid #BA6BBE;
  box-shadow: 0 3px 6px 0 rgba(186, 107, 190, 0.07), inset 1px 0 0 0 rgba(186, 107, 190, 0.10), inset 0 -1px 0 0 rgba(186, 107, 190, 0.05);
  border-radius: 0px 12px 12px 0px;
  padding: 20px 32px;
  margin-bottom: 32px;
}

.policy-section div.notice p {
  margin-bottom: 0;
}

@media (max-width: 1280px) {
  .policy-section {
    padding: 64px 32px;
  }

  .policy-section h1 {
    font-size: 34px;
  }

  .policy-section h2 {
    font-size: 24px;
    margin-top: 32px;
  }
}

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

  .policy-section h1 {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .policy-section h2 {
    font-size: 24px;
    margin-top: 32px;
  }

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

  .policy-section h4 {
    font-size: 16px;
  }

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

@media (max-width: 390px) {
  .policy-section {
    padding: 20px 12px;
  }

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

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

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

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

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

.srvs-pg .divider-radial {
  width: 100%;
  height: 2px;
  background: radial-gradient(ellipse at center, #BA6BBE 0%, transparent 70%);
  border: none;
  margin: 0;
}

.srvs-pg .wavy-line {
  width: 100%;
  height: 18px;
  display: block;
  position: relative;
}

.srvs-pg .wavy-line svg {
  width: 100%;
  height: 100%;
}

.srvs-pg .svc-lead {
  display: flex;
  flex-direction: row;
  min-height: 420px;
  position: relative;
}

.srvs-pg .svc-lead-img {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.srvs-pg .svc-lead-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.srvs-pg .svc-lead-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(30, 12, 32, 0.72) 100%);
  pointer-events: none;
}

.srvs-pg .svc-lead-img .noise-tex {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.09'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.55;
}

.srvs-pg .svc-lead-txt {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  background: #F9F5F9;
  position: relative;
}

.srvs-pg .svc-lead-txt .lbl-tag {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #BA6BBE;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.srvs-pg .svc-lead-txt .lbl-tag .ico-line {
  width: 32px;
  height: 2px;
  background: #BA6BBE;
  display: inline-block;
}

.srvs-pg .svc-lead-h1 {
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #2a1030;
  margin-bottom: 20px;
  font-style: italic;
}

.srvs-pg .svc-lead-sub {
  font-size: 16px;
  line-height: 1.8;
  color: #4a3050;
  max-width: 420px;
  text-align: justify;
  margin-bottom: 32px;
}

.srvs-pg .svc-lead-cta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #BA6BBE;
  color: #fff !important;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 0px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 20px 0 rgba(186, 107, 190, 0.08);
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.0, 0, 0.2, 1);
}

.srvs-pg .svc-lead-cta:hover {
  background: #9a4da0;
  box-shadow: 0 10px 40px 0 rgba(186, 107, 190, 0.14);
}

.srvs-pg .svc-lead-cta:focus {
  outline: 2px solid #BA6BBE;
  outline-offset: 3px;
}

.srvs-pg .svc-lead-cta .icon-arrow-right {
  font-size: 15px;
}

@keyframes slide-from-right {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0.3;
  }

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

@keyframes slide-from-left {
  from {
    clip-path: inset(0 0 0 100%);
    opacity: 0.3;
  }

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

.srvs-pg .svc-lead-img {
  animation: slide-from-left 0.26s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.srvs-pg .svc-lead-txt {
  animation: slide-from-right 0.24s cubic-bezier(0.0, 0, 0.2, 1) 0.05s both;
}

.srvs-pg .svc-grid-sec {
  background: #fff;
  padding: 64px 64px 64px;
  position: relative;
}

.srvs-pg .svc-grid-sec .sec-hd {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 32px;
}

.srvs-pg .svc-grid-sec .sec-hd-txt h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2a1030;
  font-style: italic;
  margin-bottom: 8px;
}

.srvs-pg .svc-grid-sec .sec-hd-txt p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a3050;
  max-width: 460px;
  text-align: justify;
}

.srvs-pg .svc-grid-sec .sec-hd-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.srvs-pg .svc-grid-sec .sec-hd-icons .sym-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #F9F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px 0 rgba(186, 107, 190, 0.07);
}

.srvs-pg .svc-grid-sec .sec-hd-icons .sym-ico i {
  font-size: 20px;
  color: #BA6BBE;
}

.srvs-pg .svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.srvs-pg .svc-card {
  background: #F9F5F9;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 3px 6px 0 rgba(186, 107, 190, 0.07);
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.srvs-pg .svc-card:hover {
  box-shadow: 0 10px 40px 0 rgba(186, 107, 190, 0.14);
  transform: translateY(-4px);
}

.srvs-pg .svc-card .card-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #E6CEE4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.srvs-pg .svc-card .card-ico i {
  font-size: 20px;
  color: #BA6BBE;
}

.srvs-pg .svc-card h4 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #2a1030;
  font-style: italic;
}

.srvs-pg .svc-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3050;
  text-align: justify;
  flex: 1;
}

.srvs-pg .svc-card .card-tag {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #BA6BBE;
  background: #E6CEE4;
  border-radius: 0px;
  padding: 4px 12px;
  align-self: flex-start;
}

.srvs-pg .svc-card.accent-row {
  background: #BA6BBE;
}

.srvs-pg .svc-card.accent-row h4,
.srvs-pg .svc-card.accent-row p {
  color: #fff !important;
}

.srvs-pg .svc-card.accent-row .card-ico {
  background: rgba(255, 255, 255, 0.18);
}

.srvs-pg .svc-card.accent-row .card-ico i {
  color: #fff;
}

.srvs-pg .svc-card.accent-row .card-tag {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.srvs-pg .svc-team-sec {
  background: #F9F5F9;
  padding: 64px;
  position: relative;
}

.srvs-pg .svc-team-sec .noise-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.srvs-pg .svc-team-sec .tm-layout {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
  position: relative;
}

.srvs-pg .svc-team-sec .tm-left {
  flex: 0 0 340px;
}

.srvs-pg .svc-team-sec .tm-left h3 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2a1030;
  font-style: italic;
  margin-bottom: 20px;
}

.srvs-pg .svc-team-sec .tm-left p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3050;
  text-align: justify;
  margin-bottom: 20px;
}

.srvs-pg .svc-team-sec .tm-left .aud-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srvs-pg .svc-team-sec .tm-left .aud-list li {
  font-size: 15px;
  line-height: 1.8;
  padding: 8px 12px;
  border-radius: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.srvs-pg .svc-team-sec .tm-left .aud-list li:nth-child(odd) {
  background: #E6CEE4;
  color: #2a1030;
}

.srvs-pg .svc-team-sec .tm-left .aud-list li:nth-child(even) {
  background: #fff;
  color: #4a3050;
}

.srvs-pg .svc-team-sec .tm-left .aud-list li i {
  color: #BA6BBE;
  font-size: 15px;
  flex-shrink: 0;
}

.srvs-pg .svc-team-sec .tm-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.srvs-pg .svc-team-sec .tm-right .tm-hd {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #2a1030;
  font-style: italic;
  margin-bottom: 4px;
}

.srvs-pg .svc-team-sec .tm-profiles {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.srvs-pg .svc-team-sec .tm-card {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 32px 20px;
  box-shadow: 0 5px 20px 0 rgba(186, 107, 190, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: box-shadow 0.25s cubic-bezier(0.0, 0, 0.2, 1);
}

.srvs-pg .svc-team-sec .tm-card:hover {
  box-shadow: 0 10px 40px 0 rgba(186, 107, 190, 0.14);
}

.srvs-pg .svc-team-sec .tm-card .portrait-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 3px 6px 0 rgba(186, 107, 190, 0.07);
}

.srvs-pg .svc-team-sec .tm-card .portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.srvs-pg .svc-team-sec .tm-card .tm-name {
  font-size: 16px;
  line-height: 1.2;
  color: #2a1030;
  font-weight: 600;
}

.srvs-pg .svc-team-sec .tm-card .tm-role {
  font-size: 15px;
  line-height: 1.8;
  color: #BA6BBE;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.srvs-pg .svc-team-sec .tm-card .tm-bio {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3050;
  text-align: justify;
}

.srvs-pg .svc-team-sec .tm-card .tm-quote {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3050;
  font-style: italic;
  border-top: 1px solid #E6CEE4;
  padding-top: 12px;
  width: 100%;
  text-align: left;
}

.srvs-pg .svc-team-sec .metrics-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 4px;
}

.srvs-pg .svc-team-sec .metric-box {
  flex: 1;
  background: #2a1030;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 5px 20px 0 rgba(186, 107, 190, 0.08);
}

.srvs-pg .svc-team-sec .metric-box .m-val {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #E6CEE4;
  font-style: italic;
}

.srvs-pg .svc-team-sec .metric-box .m-lbl {
  font-size: 15px;
  line-height: 1.8;
  color: #BA6BBE;
}

@media (max-width: 1280px) {
  .srvs-pg .svc-lead-txt {
    padding: 64px 32px;
  }

  .srvs-pg .svc-lead-h1 {
    font-size: 34px;
  }

  .srvs-pg .svc-grid-sec {
    padding: 64px 32px;
  }

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

  .srvs-pg .svc-team-sec {
    padding: 64px 32px;
  }

  .srvs-pg .svc-team-sec .tm-layout {
    gap: 32px;
  }

  .srvs-pg .svc-team-sec .tm-left {
    flex: 0 0 280px;
  }
}

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

  .srvs-pg .svc-lead-img {
    flex: none;
    height: 260px;
  }

  .srvs-pg .svc-lead-txt {
    flex: none;
    padding: 32px 20px;
  }

  .srvs-pg .svc-lead-h1 {
    font-size: 34px;
  }

  .srvs-pg .svc-grid-sec {
    padding: 32px 20px;
  }

  .srvs-pg .svc-grid-sec .sec-hd {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

  .srvs-pg .svc-team-sec {
    padding: 32px 20px;
  }

  .srvs-pg .svc-team-sec .tm-layout {
    flex-direction: column;
    gap: 32px;
  }

  .srvs-pg .svc-team-sec .tm-left {
    flex: none;
    width: 100%;
  }

  .srvs-pg .svc-team-sec .tm-profiles {
    flex-direction: column;
  }

  .srvs-pg .svc-team-sec .metrics-row {
    flex-direction: column;
  }
}

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

  .srvs-pg .svc-lead-txt {
    padding: 20px;
  }

  .srvs-pg .svc-grid-sec {
    padding: 20px;
  }

  .srvs-pg .svc-team-sec {
    padding: 20px;
  }

  .srvs-pg .svc-team-sec .metric-box .m-val {
    font-size: 24px;
  }
}

.bse {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip;
}

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

.bse ::selection {
  background: #E6CEE4;
  color: #1b1b2e;
}

.bse .load-up {
  opacity: 0;
  transform: translateY(32px);
  animation: riseUp 0.6s cubic-bezier(0.0, 0, 0.2, 1) forwards;
}

.bse .load-up.d1 {
  animation-delay: 0.08s;
}

.bse .load-up.d2 {
  animation-delay: 0.18s;
}

.bse .load-up.d3 {
  animation-delay: 0.28s;
}

.bse .load-up.d4 {
  animation-delay: 0.38s;
}

.bse .load-up.d5 {
  animation-delay: 0.48s;
}

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

.bse .sec1 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 32px 64px 64px 64px;
  gap: 32px;
  background: #fff;
}

.bse .sec1-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 32px;
}

.bse .sec1-text .eyebrow {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #BA6BBE;
  font-weight: 600;
}

.bse .sec1-text .h-main {
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1b1b2e;
  font-weight: 800;
  margin: 0;
}

.bse .sec1-text .h-sub {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #4a3d5c;
  font-weight: 400;
  font-style: italic;
  margin: 0;
}

.bse .sec1-text .desc {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3248;
  max-width: 480px;
  text-align: justified;
  margin: 0;
}

.bse .sec1-text .dots-path {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  padding-top: 8px;
}

.bse .sec1-text .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #BA6BBE;
  opacity: 0.25;
}

.bse .sec1-text .dot.active {
  opacity: 1;
  background: #BA6BBE;
}

.bse .sec1-text .dot.med {
  opacity: 0.55;
}

.bse .sec1-mosaic {
  flex: 0 0 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.bse .sec1-mosaic .img-wrap {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.bse .sec1-mosaic .img-wrap.tall {
  grid-row: span 2;
}

.bse .sec1-mosaic .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bse .sec1-mosaic .img-wrap .grad-ov {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, rgba(186, 107, 190, 0.38) 0%, transparent 100%);
  pointer-events: none;
}

.bse .sec1-mosaic .img-wrap.tall {
  height: 340px;
}

.bse .sec1-mosaic .img-wrap.sm {
  height: 160px;
}

.bse .sec1-mosaic .css-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #E6CEE4 0%, #BA6BBE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bse .sec1-mosaic .css-img svg {
  opacity: 0.35;
}

.bse .divider-wave {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.bse .divider-wave svg {
  display: block;
  width: 100%;
}

.bse .sec2 {
  background: #F9F5F9;
  padding: 64px 64px 64px 64px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
}

.bse .sec2-label {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 32px;
}

.bse .sec2-label .s-tag {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #BA6BBE;
  font-weight: 600;
}

.bse .sec2-label .s-head {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1b1b2e;
  font-weight: 700;
  font-style: italic;
  margin: 0;
}

.bse .dashed-line {
  width: 2px;
  height: 64px;
  border-left: 2px dashed #BA6BBE;
  opacity: 0.4;
  margin-top: 8px;
}

.bse .sec2-items {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bse .req-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 6px 0 rgba(186, 107, 190, 0.07);
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.bse .req-item:hover {
  box-shadow: 0 5px 20px 0 rgba(186, 107, 190, 0.08);
}

.bse .req-item:nth-child(odd) {
  border-left: 3px solid #BA6BBE;
}

.bse .req-item:nth-child(even) {
  border-left: 3px solid #E6CEE4;
}

.bse .req-num {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  color: #E6CEE4;
  min-width: 48px;
}

.bse .req-body .r-head {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1b1b2e;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.bse .req-body .r-text {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3248;
  margin: 0;
  text-align: justify;
}

.bse .divider-plain {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #E6CEE4 40%, #BA6BBE 60%, transparent 100%);
}

.bse .sec3 {
  background: #fff;
  padding: 64px 64px 32px 64px;
}

.bse .sec3-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.bse .sec3-top .s-tag {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #BA6BBE;
  font-weight: 600;
}

.bse .sec3-top .s-head {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1b1b2e;
  font-weight: 700;
  font-style: italic;
  margin: 0;
}

.bse .sec3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.bse .persona-card {
  border-radius: 12px;
  background: #F9F5F9;
  padding: 32px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  outline: 2px solid transparent;
  outline-offset: 3px;
  transition: outline-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.bse .persona-card:hover {
  outline-color: #BA6BBE;
  box-shadow: 0 5px 20px 0 rgba(186, 107, 190, 0.08);
}

.bse .persona-card .pc-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #E6CEE4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.bse .persona-card .pc-icon svg {
  width: 20px;
  height: 20px;
}

.bse .persona-card .pc-head {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1b1b2e;
  font-weight: 600;
  font-style: italic;
  margin: 0;
}

.bse .persona-card .pc-text {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3248;
  margin: 0;
  text-align: justify;
}

.bse .persona-card .pc-tag {
  font-size: 15px;
  line-height: 1.2;
  color: #BA6BBE;
  font-weight: 600;
  margin-top: 4px;
}

.bse .divider-svg {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.bse .sec4 {
  background: #1b1b2e;
  padding: 64px 64px 64px 64px;
  position: relative;
  overflow: hidden;
}

.bse .sec4-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('./digital_assets/media-7.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.08;
  pointer-events: none;
}

.bse .sec4-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.bse .sec4-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bse .sec4-left .s-tag {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E6CEE4;
  font-weight: 600;
}

.bse .sec4-left .s-head {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  font-weight: 700;
  font-style: italic;
  margin: 0;
}

.bse .sec4-left .s-text {
  font-size: 16px;
  line-height: 1.8;
  color: #c9b8d4;
  margin: 0;
  text-align: justify;
}

.bse .quote-block {
  flex: 0 0 380px;
  border-radius: 12px;
  background: rgba(230, 206, 228, 0.08);
  border: 1px solid rgba(186, 107, 190, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 -1px 0 rgba(186, 107, 190, 0.15);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bse .quote-block .q-mark {
  font-size: 64px;
  line-height: 1.2;
  color: #BA6BBE;
  font-weight: 800;
  line-height: 0.7;
  display: block;
}

.bse .quote-block .q-text {
  font-size: 20px;
  line-height: 1.8;
  color: #fff;
  font-style: italic;
  margin: 0;
}

.bse .quote-block .q-attr {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.bse .quote-block .q-portrait {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.bse .quote-block .q-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bse .quote-block .q-name {
  font-size: 15px;
  line-height: 1.2;
  color: #E6CEE4;
  font-weight: 600;
}

.bse .quote-block .q-role {
  font-size: 15px;
  line-height: 1.2;
  color: #9b82a8;
}

.bse .sec4-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.bse .step-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.bse .step-row .st-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(186, 107, 190, 0.2);
  border: 1px solid rgba(186, 107, 190, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #BA6BBE;
  flex-shrink: 0;
}

.bse .step-row .st-text {
  font-size: 15px;
  line-height: 1.8;
  color: #c9b8d4;
  margin: 0;
  padding-top: 4px;
}

.bse .step-row .st-text strong {
  color: #fff;
  font-weight: 600;
}

.bse .divider-fade {
  height: 1px;
  background: linear-gradient(90deg, #E6CEE4 0%, transparent 100%);
  opacity: 0.3;
}

.bse .sec5 {
  background: #F9F5F9;
  padding: 64px 64px 64px 64px;
}

.bse .sec5-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.bse .sec5-top .s-tag {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #BA6BBE;
  font-weight: 600;
}

.bse .sec5-top .s-head {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1b1b2e;
  font-weight: 700;
  font-style: italic;
  margin: 0;
}

.bse .case-layout {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.bse .case-img {
  flex: 0 0 400px;
  border-radius: 12px;
  overflow: hidden;
  height: 360px;
  box-shadow: 0 10px 40px 0 rgba(186, 107, 190, 0.14);
}

.bse .case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bse .case-body {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bse .case-body .cb-head {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1b1b2e;
  font-weight: 700;
  font-style: italic;
  margin: 0;
}

.bse .case-body .cb-text {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3248;
  margin: 0;
  text-align: justify;
}

.bse .case-metrics {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}

.bse .metric-box {
  flex: 1 1 120px;
  border-radius: 12px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 3px 6px 0 rgba(186, 107, 190, 0.07);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 3px solid #BA6BBE;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.bse .metric-box:hover {
  box-shadow: 0 5px 20px 0 rgba(186, 107, 190, 0.08);
}

.bse .metric-box .mb-val {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  color: #BA6BBE;
  letter-spacing: -0.02em;
}

.bse .metric-box .mb-label {
  font-size: 15px;
  line-height: 1.2;
  color: #3a3248;
}

.bse .case-attr {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 6px 0 rgba(186, 107, 190, 0.07);
}

.bse .case-attr .ca-portrait {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.bse .case-attr .ca-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bse .case-attr .ca-name {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  color: #1b1b2e;
}

.bse .case-attr .ca-role {
  font-size: 15px;
  line-height: 1.2;
  color: #7a6888;
  margin-top: 4px;
}

.bse .dbl-border {
  border: 3px solid #BA6BBE;
  outline: 1px solid #E6CEE4;
  outline-offset: 4px;
  border-radius: 12px;
  padding: 20px;
}

@media (max-width: 1280px) {
  .bse .sec1 {
    padding: 32px 32px 64px 32px;
  }

  .bse .sec1-mosaic {
    flex: 0 0 360px;
  }

  .bse .sec1-text .h-main {
    font-size: 48px;
  }

  .bse .sec2,
  .bse .sec3,
  .bse .sec4,
  .bse .sec5 {
    padding: 64px 32px;
  }

  .bse .sec3-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bse .sec4-inner {
    flex-direction: column;
  }

  .bse .quote-block {
    flex: 0 0 auto;
    width: 100%;
  }

  .bse .case-layout {
    flex-direction: column;
  }

  .bse .case-img {
    flex: 0 0 auto;
    width: 100%;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .bse .sec1 {
    flex-direction: column;
    padding: 20px 20px 64px 20px;
  }

  .bse .sec1-text .h-main {
    font-size: 34px;
  }

  .bse .sec1-mosaic {
    flex: 0 0 auto;
    width: 100%;
  }

  .bse .sec1-mosaic .img-wrap.tall {
    height: 220px;
  }

  .bse .sec1-mosaic .img-wrap.sm {
    height: 104px;
  }

  .bse .sec2 {
    flex-direction: column;
    padding: 32px 20px;
    gap: 32px;
  }

  .bse .sec2-label {
    flex: 0 0 auto;
    position: static;
  }

  .bse .sec3 {
    padding: 32px 20px;
  }

  .bse .sec3-grid {
    grid-template-columns: 1fr;
  }

  .bse .sec4,
  .bse .sec5 {
    padding: 32px 20px;
  }

  .bse .sec4-inner {
    flex-direction: column;
    gap: 32px;
  }

  .bse .case-metrics {
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .bse .sec1-text .h-main {
    font-size: 24px;
  }

  .bse .sec1-text .h-sub {
    font-size: 16px;
  }

  .bse .sec2-label .s-head {
    font-size: 24px;
  }

  .bse .sec3-top .s-head,
  .bse .sec4-left .s-head,
  .bse .sec5-top .s-head {
    font-size: 24px;
  }

  .bse .quote-block .q-text {
    font-size: 16px;
  }
}

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

.abt-us .split-hero {
  display: flex;
  flex-direction: row;
  min-height: 480px;
}

.abt-us .split-left {
  flex: 0 0 58%;
  background: #2a1a2e;
  padding: 64px 64px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.abt-us .split-left::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  width: 2px;
  height: 100%;
  background: #BA6BBE;
  opacity: 0.6;
}

.abt-us .diag-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.abt-us .diag-line svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.abt-us .hero-eyebrow {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #BA6BBE;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
}

.abt-us .hero-h1 {
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 20px 0;
  font-style: italic;
}

.abt-us .hero-h1 span {
  color: #BA6BBE;
}

.abt-us .hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #c9b8cb;
  max-width: 420px;
  text-align: justify;
  margin: 0;
}

.abt-us .flow-arrows {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 32px;
}

.abt-us .flow-arr {
  width: 32px;
  height: 2px;
  background: #BA6BBE;
  position: relative;
}

.abt-us .flow-arr::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #BA6BBE;
}

.abt-us .flow-arr:nth-child(2) {
  opacity: 0.6;
}

.abt-us .flow-arr:nth-child(3) {
  opacity: 0.3;
}

.abt-us .split-right {
  flex: 0 0 42%;
  position: relative;
  overflow: hidden;
}

.abt-us .split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.35) brightness(0.75);
  display: block;
}

.abt-us .img-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(186, 107, 190, 0.92);
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  padding: 12px 20px;
  border-radius: 12px;
}

.abt-us .pillars-band {
  background: #F9F5F9;
  padding: 64px 64px;
  position: relative;
}

.abt-us .pillars-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, #E6CEE4 0%, #F9F5F9 70%);
  pointer-events: none;
  animation: glowpulse 5s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes glowpulse {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

.abt-us .pillars-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.abt-us .sec-label {
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #BA6BBE;
  margin-bottom: 20px;
  line-height: 1.2;
}

.abt-us .pillars-h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1e0e22;
  margin: 0 0 8px 0;
  font-style: italic;
}

.abt-us .pillars-sub {
  font-size: 16px;
  line-height: 1.8;
  color: #5a3d5e;
  margin: 0 0 32px 0;
  max-width: 560px;
}

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

.abt-us .pill-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 20px;
  box-shadow: 0 5px 20px 0 rgba(186, 107, 190, 0.08);
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-us .pill-card:hover {
  box-shadow: 0 10px 40px 0 rgba(186, 107, 190, 0.14);
  transform: translateY(-4px);
}

.abt-us .pill-card:nth-child(odd) {
  background: #fff;
}

.abt-us .pill-card:nth-child(even) {
  background: #F9F5F9;
}

.abt-us .pill-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-us .pill-icon svg {
  width: 32px;
  height: 32px;
}

.abt-us .pill-h {
  font-size: 20px;
  line-height: 1.2;
  color: #1e0e22;
  margin: 0 0 12px 0;
  font-style: italic;
  letter-spacing: -0.01em;
}

.abt-us .pill-p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3050;
  margin: 0;
  text-align: justify;
}

.abt-us .team-editorial {
  padding: 64px 64px;
  background: #fff;
  position: relative;
}

.abt-us .team-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.abt-us .team-main {}

.abt-us .team-h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1e0e22;
  margin: 0 0 20px 0;
  font-style: italic;
}

.abt-us .team-body {
  font-size: 16px;
  line-height: 1.8;
  color: #3d2642;
  text-align: justify;
  margin: 0 0 32px 0;
  max-width: 580px;
}

.abt-us .checklist {
  background: #F9F5F9;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
}

.abt-us .check-head {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #BA6BBE;
  margin-bottom: 20px;
  line-height: 1.2;
}

.abt-us .check-progress {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.abt-us .prog-bar {
  flex: 1;
  height: 6px;
  background: #E6CEE4;
  border-radius: 0px;
  overflow: hidden;
}

.abt-us .prog-fill {
  height: 100%;
  width: 71.4%;
  background: #BA6BBE;
  border-radius: 0px;
  transition: width 0.28s cubic-bezier(0.0, 0, 0.2, 1);
}

.abt-us .prog-label {
  font-size: 15px;
  color: #BA6BBE;
  white-space: nowrap;
  line-height: 1.2;
}

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

.abt-us .check-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.8;
  padding: 8px 12px;
  border-radius: 0px;
}

.abt-us .check-list li:nth-child(odd) {
  background: #fff;
  color: #1e0e22;
}

.abt-us .check-list li:nth-child(even) {
  background: #E6CEE4;
  color: #2a1a2e;
}

.abt-us .check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-us .check-icon svg {
  width: 16px;
  height: 16px;
}

.abt-us .check-done {
  color: #BA6BBE;
}

.abt-us .check-pend {
  color: #c9b8cb;
}

.abt-us .team-portraits {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.abt-us .portrait-card {
  background: #F9F5F9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 6px 0 rgba(186, 107, 190, 0.07);
}

.abt-us .portrait-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

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

.abt-us .portrait-meta {
  padding: 20px;
}

.abt-us .portrait-name {
  font-size: 16px;
  line-height: 1.2;
  color: #1e0e22;
  margin: 0 0 4px 0;
  font-style: italic;
}

.abt-us .portrait-role {
  font-size: 15px;
  line-height: 1.2;
  color: #BA6BBE;
  margin: 0;
}

.abt-us .diag-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.abt-us .media-mosaic {
  padding: 64px 64px;
  background: #2a1a2e;
  position: relative;
}

.abt-us .media-mosaic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(186, 107, 190, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: glowpulse 7s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.abt-us .mosaic-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.abt-us .mosaic-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.abt-us .mosaic-h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  font-style: italic;
}

.abt-us .mosaic-tagline {
  font-size: 15px;
  line-height: 1.8;
  color: #c9b8cb;
  max-width: 320px;
  text-align: right;
  margin: 0;
}

.abt-us .mosaic-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}

.abt-us .mos-cell {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.abt-us .mos-cell.span2 {
  grid-row: span 2;
}

.abt-us .mos-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.5) brightness(0.8);
  transition: filter 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-us .mos-cell:hover img {
  filter: saturate(0.2) brightness(0.4);
  transform: scale(1.04);
}

.abt-us .mos-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-us .mos-cell:hover .mos-overlay {
  opacity: 1;
}

.abt-us .mos-label {
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  font-style: italic;
  margin: 0 0 4px 0;
}

.abt-us .mos-sub {
  font-size: 15px;
  line-height: 1.8;
  color: #E6CEE4;
  margin: 0;
}

.abt-us .anchor-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-us .anchor-icon svg {
  width: 56px;
  height: 56px;
}

@media (max-width: 1280px) {
  .abt-us .split-left {
    padding: 64px 32px;
  }

  .abt-us .hero-h1 {
    font-size: 48px;
  }

  .abt-us .pillars-band {
    padding: 64px 32px;
  }

  .abt-us .team-editorial {
    padding: 64px 32px;
  }

  .abt-us .media-mosaic {
    padding: 64px 32px;
  }

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

  .abt-us .team-inner {
    grid-template-columns: 1fr 280px;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .abt-us .split-hero {
    flex-direction: column;
  }

  .abt-us .split-left {
    flex: none;
    padding: 64px 20px;
  }

  .abt-us .split-left::after {
    display: none;
  }

  .abt-us .split-right {
    flex: none;
    height: 280px;
  }

  .abt-us .hero-h1 {
    font-size: 34px;
  }

  .abt-us .pillars-band {
    padding: 64px 20px;
  }

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

  .abt-us .team-editorial {
    padding: 64px 20px;
  }

  .abt-us .team-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .abt-us .team-portraits {
    flex-direction: row;
    gap: 20px;
  }

  .abt-us .portrait-card {
    flex: 1;
  }

  .abt-us .media-mosaic {
    padding: 64px 20px;
  }

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

  .abt-us .mosaic-tagline {
    text-align: left;
    max-width: 100%;
  }

  .abt-us .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .abt-us .mos-cell.span2 {
    grid-row: span 1;
    grid-column: span 2;
    height: 220px;
  }

  .abt-us .mos-cell {
    height: 180px;
  }
}

@media (max-width: 390px) {
  .abt-us .split-left {
    padding: 32px 20px;
  }

  .abt-us .hero-h1 {
    font-size: 24px;
  }

  .abt-us .pillars-band {
    padding: 32px 20px;
  }

  .abt-us .team-editorial {
    padding: 32px 20px;
  }

  .abt-us .media-mosaic {
    padding: 32px 20px;
  }

  .abt-us .team-portraits {
    flex-direction: column;
  }

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

  .abt-us .mos-cell.span2 {
    grid-column: span 1;
    height: 200px;
  }

  .abt-us .mos-cell {
    height: 160px;
  }

  .abt-us .checklist {
    padding: 20px;
  }
}

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

.ct-us .pg-lead {
  background: linear-gradient(158deg, #2a1a2e 0%, #3d1f42 40%, #1e1020 100%);
  padding: 64px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bg-pulse 6s ease-in-out infinite;
}

@keyframes bg-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.93;
  }
}

.ct-us .pg-lead::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(186, 107, 190, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(186, 107, 190, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.ct-us .pg-lead::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(186, 107, 190, 0.18);
  border-radius: 12px;
  pointer-events: none;
}

.ct-us .lead-bg-num {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 64px;
  font-weight: 900;
  color: rgba(186, 107, 190, 0.07);
  letter-spacing: -4px;
  line-height: 1.2;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.ct-us .lead-col {
  max-width: 640px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.ct-us .lead-eyebrow {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #E6CEE4;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.78;
  line-height: 1.2;
}

.ct-us .lead-h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #f0e8f0;
  margin: 0 0 20px 0;
}

.ct-us .lead-h1 .acc {
  color: #BA6BBE;
}

.ct-us .lead-sub {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(230, 206, 228, 0.72);
  margin: 0;
  text-align: left;
}

.ct-us .form-area {
  background: #F9F5F9;
  padding: 64px 32px;
}

.ct-us .form-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ct-us .form-col-full {
  grid-column: 1 / -1;
}

.ct-us .form-hd {
  font-size: 34px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -1px;
  line-height: 1.2;
  color: #1d0f22;
  margin: 0 0 8px 0;
  text-align: left;
}

.ct-us .form-hd .acc {
  color: #BA6BBE;
}

.ct-us .form-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3350;
  margin: 0 0 32px 0;
  text-align: left;
}

.ct-us .fld-grp {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-us .fld-grp label {
  font-size: 15px;
  font-weight: 700;
  color: #2a1a2e;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.ct-us .fld-grp input[type="text"],
.ct-us .fld-grp input[type="email"],
.ct-us .fld-grp input[type="tel"] {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #1d0f22;
  background: #fff;
  border: 2px solid #E6CEE4;
  border-radius: 12px;
  box-shadow: 0 3px 6px 0 rgba(186, 107, 190, 0.07);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  outline: none;
  appearance: none;
}

.ct-us .fld-grp input[type="text"]::placeholder,
.ct-us .fld-grp input[type="email"]::placeholder,
.ct-us .fld-grp input[type="tel"]::placeholder {
  color: rgba(74, 51, 80, 0.38);
  font-weight: 400;
}

.ct-us .fld-grp input[type="text"]:focus,
.ct-us .fld-grp input[type="email"]:focus,
.ct-us .fld-grp input[type="tel"]:focus {
  border-color: #BA6BBE;
  box-shadow: 0 5px 20px 0 rgba(186, 107, 190, 0.08);
}

.ct-us .radio-grp {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-us .radio-grp legend {
  font-size: 15px;
  font-weight: 700;
  color: #2a1a2e;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  float: none;
  width: 100%;
}

.ct-us .radio-grp fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.ct-us .radio-opts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.ct-us .radio-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.ct-us .radio-item input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: #BA6BBE;
  cursor: pointer;
  flex-shrink: 0;
}

.ct-us .radio-item span {
  font-size: 15px;
  font-weight: 700;
  color: #2a1a2e;
  line-height: 1.2;
}

.ct-us .radio-item:nth-child(odd) span {
  color: #2a1a2e;
}

.ct-us .radio-item:nth-child(even) span {
  color: #4a3350;
}

.ct-us .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 6px 0 rgba(186, 107, 190, 0.07);
}

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

.ct-us .privacy-row .prv-txt {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3350;
}

.ct-us .privacy-row .prv-txt a {
  color: #BA6BBE;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(186, 107, 190, 0.4);
  transition: text-decoration-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ct-us .privacy-row .prv-txt a:hover {
  text-decoration-color: #BA6BBE;
}

.ct-us .submit-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ct-us .contact-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-us .contact-meta .meta-item {
  font-size: 15px;
  color: #4a3350;
  line-height: 1.8;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.ct-us .contact-meta .meta-item svg {
  flex-shrink: 0;
}

.ct-us .contact-meta .meta-item a {
  color: #BA6BBE;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ct-us .contact-meta .meta-item a:hover {
  color: #9a4b9e;
}

.ct-us .btn-submit {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: #BA6BBE;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 5px 20px 0 rgba(186, 107, 190, 0.08);
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.0, 0, 0.2, 1);
  position: relative;
}

.ct-us .btn-submit:hover {
  background: #9a4b9e;
  box-shadow: 0 10px 40px 0 rgba(186, 107, 190, 0.14);
  transform: translateY(-2px);
}

.ct-us .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px 0 rgba(186, 107, 190, 0.07);
}

.ct-us .btn-submit:focus-visible {
  outline: 3px solid #BA6BBE;
  outline-offset: 3px;
}

.ct-us .divider-strip {
  height: 4px;
  background: linear-gradient(90deg, #BA6BBE 0%, #E6CEE4 60%, #F9F5F9 100%);
}

@media (max-width: 768px) {
  .ct-us .lead-h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .ct-us .lead-bg-num {
    font-size: 34px;
    opacity: 0.5;
  }

  .ct-us .pg-lead {
    padding: 64px 20px;
  }

  .ct-us .form-area {
    padding: 64px 20px;
  }

  .ct-us .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ct-us .form-col-full {
    grid-column: 1;
  }

  .ct-us .submit-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .ct-us .radio-opts {
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .ct-us .lead-h1 {
    font-size: 24px;
  }

  .ct-us .form-hd {
    font-size: 24px;
  }

  .ct-us .pg-lead {
    padding: 32px 12px;
  }

  .ct-us .form-area {
    padding: 32px 12px;
  }
}

.lp-prog {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: hidden;
}

.lp-prog .schema-block {
  display: none;
}

.lp-prog .tb {
  position: relative;
  padding: 120px 64px 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background: #F9F5F9;
  overflow: hidden;
}

.lp-prog .tb-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #BA6BBE 0%, #E6CEE4 45%, #F9F5F9 100%);
  background-size: 300% 300%;
  animation: gradShift 8s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  z-index: 0;
}

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

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

.lp-prog .tb-curves {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.lp-prog .tb-curves svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.lp-prog .tb-body {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.lp-prog .tb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: flipIn 0.26s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.lp-prog .tb-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 0px;
  background: #fff;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.lp-prog .tb-h1 {
  font-size: 64px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1a0a1e;
  margin: 0 0 20px;
  opacity: 0;
  animation: flipIn 0.26s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.lp-prog .tb-sub {
  font-size: 20px;
  line-height: 1.8;
  color: #3b1a40;
  max-width: 560px;
  margin: 0 0 32px;
  opacity: 0;
  animation: flipIn 0.26s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.lp-prog .tb-cta {
  display: inline-block;
  padding: 12px 32px;
  background: #1a0a1e;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0px;
  border: none;
  cursor: pointer;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 20px 0 rgba(186, 107, 190, 0.08);
  opacity: 0;
  animation: flipIn 0.26s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.lp-prog .tb-cta:hover {
  background: #BA6BBE;
  box-shadow: 0 10px 40px 0 rgba(186, 107, 190, 0.14);
  color: #fff;
  text-decoration: none;
}

.lp-prog .tb-img-wrap {
  position: absolute;
  right: 64px;
  bottom: 0;
  z-index: 2;
  width: 420px;
  height: 340px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.lp-prog .tb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(0px);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 60%, transparent 100%);
}

@keyframes flipIn {
  0% {
    opacity: 0;
    transform: rotateX(-18deg) translateY(12px);
  }

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

.lp-prog .div-brush {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.lp-prog .div-brush svg {
  display: block;
  width: 100%;
}

.lp-prog .mod-sec {
  padding: 64px 64px;
  background: #fff;
  position: relative;
}

.lp-prog .mod-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(230, 206, 228, 0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.lp-prog .mod-hd {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto 64px;
  text-align: center;
}

.lp-prog .mod-hd h2 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0a1e;
  margin: 0 0 12px;
  font-style: italic;
}

.lp-prog .mod-hd p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a3050;
  margin: 0;
  text-align: justify;
}

.lp-prog .mod-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: stretch;
}

.lp-prog .mod-card {
  flex: 1;
  background: #F9F5F9;
  border-radius: 12px;
  padding: 32px 20px;
  box-shadow: 0 3px 6px 0 rgba(186, 107, 190, 0.07);
  transition: flex 0.24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1), transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-prog .mod-grid:hover .mod-card {
  flex: 0.7;
  transform: scale(0.97);
}

.lp-prog .mod-grid .mod-card:hover {
  flex: 1.6;
  transform: scale(1.02);
  box-shadow: 0 10px 40px 0 rgba(186, 107, 190, 0.14);
}

.lp-prog .mod-card-num {
  font-size: 34px;
  font-weight: 800;
  color: #E6CEE4;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.lp-prog .mod-card h3 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #1a0a1e;
  margin: 0;
  font-style: italic;
}

.lp-prog .mod-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3050;
  margin: 0;
  text-align: justify;
}

.lp-prog .mod-card .mc-tag {
  display: inline-block;
  margin-top: auto;
  font-size: 15px;
  font-weight: 600;
  color: #BA6BBE;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lp-prog .mod-card .mc-icon {
  width: 40px;
  height: 40px;
  border-radius: 0px;
  background: #E6CEE4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-prog .mod-card .mc-icon svg {
  width: 20px;
  height: 20px;
}

.lp-prog .div-line {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #E6CEE4 30%, #BA6BBE 50%, #E6CEE4 70%, transparent 100%);
}

.lp-prog .team-sec {
  padding: 64px 64px;
  background: #F9F5F9;
  position: relative;
}

.lp-prog .team-topo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.lp-prog .team-topo svg {
  width: 100%;
  height: 100%;
  opacity: 0.06;
}

.lp-prog .team-inner {
  position: relative;
  z-index: 1;
}

.lp-prog .team-hd {
  max-width: 480px;
  margin: 0 0 64px;
}

.lp-prog .team-hd h2 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0a1e;
  margin: 0 0 12px;
  font-style: italic;
}

.lp-prog .team-hd p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a3050;
  margin: 0;
  text-align: justify;
}

.lp-prog .team-layout {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.lp-prog .team-portraits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

.lp-prog .portrait-card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 6px 0 rgba(186, 107, 190, 0.07);
  width: 340px;
  transition: box-shadow 0.22s cubic-bezier(0.0, 0, 0.2, 1);
}

.lp-prog .portrait-card:hover {
  box-shadow: 0 10px 40px 0 rgba(186, 107, 190, 0.14);
}

.lp-prog .portrait-img-wrap {
  width: 80px;
  height: 112px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0px;
}

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

.lp-prog .portrait-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.lp-prog .portrait-info h4 {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #1a0a1e;
  margin: 0;
}

.lp-prog .portrait-info .p-role {
  font-size: 15px;
  color: #BA6BBE;
  font-weight: 600;
  margin: 0;
}

.lp-prog .portrait-info .p-bio {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3050;
  margin: 0;
}

.lp-prog .portrait-card-noimg {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 6px 0 rgba(186, 107, 190, 0.07);
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.22s cubic-bezier(0.0, 0, 0.2, 1);
}

.lp-prog .portrait-card-noimg:hover {
  box-shadow: 0 10px 40px 0 rgba(186, 107, 190, 0.14);
}

.lp-prog .portrait-card-noimg h4 {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #1a0a1e;
  margin: 0;
}

.lp-prog .portrait-card-noimg .p-role {
  font-size: 15px;
  color: #BA6BBE;
  font-weight: 600;
}

.lp-prog .portrait-card-noimg .p-bio {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3050;
}

.lp-prog .team-reviews {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-prog .review-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 5px 20px 0 rgba(186, 107, 190, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-prog .review-card:hover {
  box-shadow: 0 10px 40px 0 rgba(186, 107, 190, 0.14);
}

.lp-prog .review-card:nth-child(odd) {
  background: #fff;
}

.lp-prog .review-card:nth-child(even) {
  background: #F9F5F9;
}

.lp-prog .review-q {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #BA6BBE;
  margin: 0;
  font-style: italic;
}

.lp-prog .review-txt {
  font-size: 15px;
  line-height: 1.8;
  color: #3b1a40;
  margin: 0;
  text-align: justify;
}

.lp-prog .review-author {
  font-size: 15px;
  font-weight: 600;
  color: #1a0a1e;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-prog .review-dot {
  width: 8px;
  height: 8px;
  border-radius: 0px;
  background: #BA6BBE;
  transform: rotate(45deg);
  flex-shrink: 0;
  display: inline-block;
}

.lp-prog .circles-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 320px;
  height: 320px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.lp-prog .circles-deco span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(186, 107, 190, 0.15);
}

.lp-prog .circles-deco span:nth-child(1) {
  width: 120px;
  height: 120px;
  right: 40px;
  bottom: 40px;
}

.lp-prog .circles-deco span:nth-child(2) {
  width: 200px;
  height: 200px;
  right: 0px;
  bottom: 0px;
}

.lp-prog .circles-deco span:nth-child(3) {
  width: 300px;
  height: 300px;
  right: -50px;
  bottom: -50px;
  opacity: 0.5;
}

@media (max-width: 1280px) {
  .lp-prog .tb {
    padding: 100px 32px 64px;
  }

  .lp-prog .tb-img-wrap {
    width: 320px;
    height: 260px;
    right: 32px;
  }

  .lp-prog .tb-h1 {
    font-size: 64px;
  }

  .lp-prog .mod-sec {
    padding: 64px 32px;
  }

  .lp-prog .team-sec {
    padding: 64px 32px;
  }
}

@media (max-width: 768px) {
  .lp-prog .tb {
    padding: 80px 20px 32px;
  }

  .lp-prog .tb-h1 {
    font-size: 34px;
  }

  .lp-prog .tb-sub {
    font-size: 16px;
  }

  .lp-prog .tb-img-wrap {
    display: none;
  }

  .lp-prog .mod-sec {
    padding: 64px 20px;
  }

  .lp-prog .mod-grid {
    flex-direction: column;
    gap: 12px;
  }

  .lp-prog .mod-grid:hover .mod-card {
    flex: 1;
    transform: none;
  }

  .lp-prog .mod-grid .mod-card:hover {
    flex: 1;
    transform: none;
    box-shadow: 0 5px 20px 0 rgba(186, 107, 190, 0.08);
  }

  .lp-prog .team-sec {
    padding: 64px 20px;
  }

  .lp-prog .team-layout {
    flex-direction: column;
    gap: 32px;
  }

  .lp-prog .portrait-card {
    width: 100%;
  }

  .lp-prog .portrait-card-noimg {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .lp-prog .tb-h1 {
    font-size: 24px;
  }

  .lp-prog .tb {
    padding: 64px 12px 32px;
  }

  .lp-prog .mod-sec {
    padding: 32px 12px;
  }

  .lp-prog .team-sec {
    padding: 32px 12px;
  }

  .lp-prog .mod-hd {
    margin-bottom: 32px;
  }

  .lp-prog .portrait-card {
    flex-direction: column;
  }

  .lp-prog .portrait-img-wrap {
    width: 100%;
    height: 160px;
  }
}

.pg-success {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
  background-color: #F9F5F9;
}

.pg-success .success-wrap {
  max-width: 560px;
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px 0 rgba(186, 107, 190, 0.14);
  padding: 64px 32px;
  text-align: center;
}

.pg-success .success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-success .success-icon svg {
  width: 72px;
  height: 72px;
}

.pg-success .success-heading {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-style: italic;
  color: #2d1a2e;
  margin: 0 0 20px;
}

.pg-success .success-msg {
  font-size: 16px;
  line-height: 1.8;
  color: #4a3a4b;
  margin: 0 0 32px;
  text-align: justify;
}

.pg-success .success-divider {
  width: 48px;
  height: 3px;
  background: #BA6BBE;
  border-radius: 0px;
  margin: 0 auto 32px;
}

.pg-success .success-detail {
  font-size: 15px;
  line-height: 1.8;
  color: #6b4f6d;
  margin: 0 0 32px;
}

.pg-success .success-detail strong {
  color: #2d1a2e;
}

.pg-success .btn-home {
  display: inline-block;
  padding: 12px 32px;
  background: #BA6BBE;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 20px 0 rgba(186, 107, 190, 0.08);
  transition: background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.0, 0, 0.2, 1);
}

.pg-success .btn-home:hover {
  background: #a35aa7;
  box-shadow: 0 10px 40px 0 rgba(186, 107, 190, 0.14);
}

.pg-success .btn-home:focus {
  outline: 2px solid #BA6BBE;
  outline-offset: 4px;
}

.pg-success .btn-home:active {
  background: #8e4a92;
}

.pg-success .success-brand {
  margin-top: 32px;
  font-size: 15px;
  color: #9a7a9b;
  line-height: 1.2;
}

.pg-success .success-brand span {
  color: #BA6BBE;
  font-style: italic;
}

@media (max-width: 768px) {
  .pg-success {
    padding: 32px 20px;
  }

  .pg-success .success-wrap {
    padding: 32px 20px;
  }

  .pg-success .success-heading {
    font-size: 24px;
  }
}

@media (max-width: 390px) {
  .pg-success .success-heading {
    font-size: 20px;
  }

  .pg-success .success-wrap {
    padding: 32px 12px;
  }
}