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

html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overscroll-behavior: contain;
  overflow-x: hidden;
  font-family: 'Public Sans', sans-serif;
}

.hd-shell {
  padding: 24px;
  position: relative;
  z-index: 100;
}

.hd-round {
  max-width: 1140px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff 60%, #f5e8f5 100%);
  border-radius: 24px;
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10), 0 10px 40px -1px rgba(148, 51, 153, 0.10);
  padding: 8px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1.5px solid #D8B7C3;
}

.hd-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
}

.hd-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.hd-logoframe {
  width: 44px;
  height: 44px;
  border: 2px dashed #943399;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  background: #fff;
  box-shadow: 0 2px 2px -1px rgba(148, 51, 153, 0.07);
  flex-shrink: 0;
}

.hd-logoframe img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.hd-wordmark {
  font-size: 18px;
  font-weight: 700;
  color: #943399;
  line-height: 1.2;
  letter-spacing: 0;
}

.hd-region {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hd-regionbtn {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #943399;
  background: #fff;
  border: 1.5px solid #CB83BB;
  border-radius: 40px;
  padding: 8px 24px;
  cursor: pointer;
  transition: background-color 0.28s ease-in-out, color 0.28s ease-in-out, border-color 0.28s ease-in-out;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.hd-regionbtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #943399, #CB83BB);
  transition: left 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.hd-regionbtn:hover::before,
.hd-regionbtn:focus::before {
  left: 0;
}

.hd-regionbtn:hover,
.hd-regionbtn:focus {
  color: #fff;
  border-color: #943399;
  outline: none;
}

.hd-regionbtn span {
  position: relative;
  z-index: 1;
}

.hd-regionbtn:focus {
  background-color: #f5e8f5;
}

.hd-flagmark {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  overflow: hidden;
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hd-flagmark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hd-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 8px;
}

.hd-navlink {
  font-family: 'Public Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #3d1040;
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 40px;
  transition: background-color 0.26s ease-in-out, color 0.26s ease-in-out;
  min-height: 44px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.hd-navlink::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #943399 0%, #CB83BB 100%);
  transition: left 0.30s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.hd-navlink:hover::before,
.hd-navlink:focus::before {
  left: 0;
}

.hd-navlink:hover,
.hd-navlink:focus {
  color: #fff;
  outline: none;
}

.hd-navlink:focus {
  background-color: #f5e8f5;
}

.hd-navlink span {
  position: relative;
  z-index: 1;
}

.hd-navlink.active {
  background: linear-gradient(90deg, #943399, #CB83BB);
  color: #fff;
}

.hd-navlink.active span {
  position: relative;
  z-index: 1;
}

.hd-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #D8B7C3 30%, #CB83BB 60%, transparent);
  margin: 0 -40px;
}

@media (max-width: 900px) {
  .hd-shell {
    padding: 24px 8px;
  }

  .hd-round {
    padding: 8px 24px;
  }

  .hd-divider {
    margin: 0 -24px;
  }

  .hd-nav {
    justify-content: flex-start;
  }

  .hd-navlink {
    font-size: 14px;
    padding: 8px 16px;
  }
}

@media (max-width: 600px) {
  .hd-round {
    padding: 8px 16px;
    border-radius: 12px;
  }

  .hd-divider {
    margin: 0 -16px;
  }

  .hd-top {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hd-wordmark {
    font-size: 16px;
  }

  .hd-navlink {
    font-size: 14px;
    padding: 8px 12px;
  }

  .hd-regionbtn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

.ft-shell {
  background: linear-gradient(160deg, #2a0630 0%, #3d1040 60%, #1a0020 100%);
  padding: 80px 24px 0;
  position: relative;
  overflow: hidden;
}

.ft-shell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #943399, #CB83BB, #D8B7C3, #CB83BB, #943399);
}

.ft-mount {
  max-width: 1140px;
  margin: 0 auto;
}

.ft-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 80px;
}

.ft-colhead {
  font-size: 14px;
  font-weight: 700;
  color: #CB83BB;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin: 0 0 24px;
}

.ft-about {
  font-size: 16px;
  color: #D8B7C3;
  line-height: 1.7;
  margin: 0 0 24px;
}

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

.ft-trustitem {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #D8B7C3;
  line-height: 1.5;
}

.ft-trustdot {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #943399;
  flex-shrink: 0;
}

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

.ft-navlist li a {
  font-size: 16px;
  color: #D8B7C3;
  text-decoration: none;
  line-height: 1.7;
  transition: color 0.25s ease-in-out;
  display: inline-block;
  padding: 4px 0;
}

.ft-navlist li a:hover,
.ft-navlist li a:focus {
  color: #fff;
  outline: none;
}

.ft-navlist li a:focus {
  background-color: rgba(148, 51, 153, 0.18);
  border-radius: 2px;
  padding-left: 8px;
}

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

.ft-contactrow {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ft-contactlabel {
  font-size: 14px;
  color: #CB83BB;
  font-weight: 500;
  line-height: 1.2;
}

.ft-contactval {
  font-size: 16px;
  color: #D8B7C3;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

.ft-contactval:hover,
.ft-contactval:focus {
  color: #fff;
  outline: none;
}

.ft-contactval:focus {
  background-color: rgba(148, 51, 153, 0.18);
  border-radius: 2px;
}

.ft-bottom {
  border-top: 1px solid rgba(203, 131, 187, 0.2);
  padding: 24px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ft-copy {
  font-size: 14px;
  color: rgba(216, 183, 195, 0.6);
  line-height: 1.5;
}

.ft-bottomnav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ft-bottomlink {
  font-size: 14px;
  color: rgba(216, 183, 195, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(203, 131, 187, 0.3);
  transition: color 0.25s ease-in-out, text-decoration-color 0.25s ease-in-out;
  line-height: 1.5;
}

.ft-bottomlink:hover,
.ft-bottomlink:focus {
  color: #fff;
  text-decoration-color: #CB83BB;
  outline: none;
}

.ft-bottomlink:focus {
  background-color: rgba(148, 51, 153, 0.18);
  border-radius: 2px;
  padding: 0 4px;
}

.ft-logoend {
  display: flex;
  justify-content: center;
  padding: 24px 0 40px;
  border-top: 1px solid rgba(203, 131, 187, 0.1);
}

.ft-logowrap {
  width: 40px;
  height: 40px;
  border: 2px dashed rgba(203, 131, 187, 0.5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 2px -1px rgba(148, 51, 153, 0.07);
}

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

@media (max-width: 900px) {
  .ft-cols {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .ft-shell {
    padding: 40px 24px 0;
  }

  .ft-cols {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }

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

.ck-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
}

.ck-card {
  background: #fff;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10), 0 10px 40px -1px rgba(148, 51, 153, 0.10);
  padding: 24px 40px;
  border: 1.5px solid #D8B7C3;
  border-top: none;
  max-width: 1140px;
  margin: 0 auto;
  transform: translateX(-100%);
  transition: transform 420ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ck-card.open {
  transform: translateX(0);
}

.ck-text {
  font-size: 14px;
  color: #3d1040;
  line-height: 1.7;
  margin: 0 0 24px;
}

.ck-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.ck-catitem {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #3d1040;
  line-height: 1.5;
}

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

.ck-catitem input[type="checkbox"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ck-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ck-accept {
  font-family: 'Public Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #943399;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #CB83BB;
  transition: color 0.26s ease-in-out, text-decoration-color 0.26s ease-in-out;
  line-height: 1.5;
}

.ck-accept:hover,
.ck-accept:focus {
  color: #3d1040;
  text-decoration-color: #943399;
  outline: none;
  background-color: transparent;
}

.ck-accept:focus {
  background-color: rgba(148, 51, 153, 0.08);
  border-radius: 2px;
  padding: 0 4px;
}

.ck-reject {
  font-family: 'Public Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #943399;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #CB83BB;
  transition: color 0.26s ease-in-out, text-decoration-color 0.26s ease-in-out;
  line-height: 1.5;
}

.ck-reject:hover,
.ck-reject:focus {
  color: #3d1040;
  text-decoration-color: #943399;
  outline: none;
  background-color: transparent;
}

.ck-reject:focus {
  background-color: rgba(148, 51, 153, 0.08);
  border-radius: 2px;
  padding: 0 4px;
}

@media (max-width: 600px) {
  .ck-card {
    padding: 24px;
    border-radius: 0 0 12px 12px;
  }
}

.policy-skvb-layout {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 40px;
  color: #2d1a2e;
  line-height: 1.7;
}

.policy-skvb-layout h1 {
  font-size: 70px;
  line-height: 1.2;
  color: #943399;
  margin-bottom: 40px;
  margin-top: 0;
  letter-spacing: -0.5px;
}

.policy-skvb-layout h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #943399;
  margin-top: 80px;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid #D8B7C3;
}

.policy-skvb-layout h3 {
  font-size: 24px;
  line-height: 1.5;
  color: #7a2a7e;
  margin-top: 40px;
  margin-bottom: 24px;
}

.policy-skvb-layout h4 {
  font-size: 18px;
  line-height: 1.5;
  color: #5c1f60;
  margin-top: 40px;
  margin-bottom: 8px;
}

.policy-skvb-layout h5 {
  font-size: 16px;
  line-height: 1.5;
  color: #5c1f60;
  margin-top: 24px;
  margin-bottom: 8px;
}

.policy-skvb-layout h6 {
  font-size: 14px;
  line-height: 1.5;
  color: #5c1f60;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 24px;
  margin-bottom: 8px;
}

.policy-skvb-layout p {
  font-size: 16px;
  line-height: 1.7;
  color: #2d1a2e;
  margin-top: 0;
  margin-bottom: 24px;
}

.policy-skvb-layout strong,
.policy-skvb-layout b {
  font-weight: 700;
  color: #943399;
}

.policy-skvb-layout div {
  margin-bottom: 24px;
}

.policy-skvb-layout table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 2px -1px rgba(148, 51, 153, 0.07), 0 6px 14px -1px rgba(148, 51, 153, 0.10);
}

.policy-skvb-layout thead {
  background: linear-gradient(135deg, #943399 0%, #CB83BB 100%);
}

.policy-skvb-layout thead th {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 24px;
  text-align: left;
  border: none;
}

.policy-skvb-layout tbody {
  background-color: #ffffff;
}

.policy-skvb-layout tbody tr {
  border-bottom: 1px solid #D8B7C3;
  transition: background-color 0.25s ease-in-out;
}

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

.policy-skvb-layout tbody tr:hover {
  background-color: #f9f0fb;
}

.policy-skvb-layout td {
  padding: 24px;
  font-size: 14px;
  line-height: 1.7;
  color: #2d1a2e;
  vertical-align: top;
  border: none;
}

.policy-skvb-layout th {
  padding: 24px;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: middle;
  border: none;
}

@media (max-width: 900px) {
  .policy-skvb-layout {
    padding: 40px 24px;
  }

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

  .policy-skvb-layout h2 {
    font-size: 24px;
    margin-top: 40px;
  }

  .policy-skvb-layout h3 {
    font-size: 18px;
    margin-top: 24px;
  }

  .policy-skvb-layout table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
  }
}

@media (max-width: 600px) {
  .policy-skvb-layout {
    padding: 40px 8px;
  }

  .policy-skvb-layout h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .policy-skvb-layout h2 {
    font-size: 24px;
  }

  .policy-skvb-layout thead th,
  .policy-skvb-layout td {
    padding: 8px;
  }
}

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

.guiddet .art-lead {
  padding: 80px 24px 40px;
  max-width: 1140px;
  margin: 0 auto;
}

.guiddet .art-lead-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
}

.guiddet .art-lead-text {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
}

.guiddet .art-lead-quote {
  position: absolute;
  top: -24px;
  left: -40px;
  font-size: 70px;
  line-height: 1.2;
  color: #CB83BB;
  opacity: 0.13;
  font-weight: 900;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.guiddet .art-tag-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.guiddet .art-tag {
  display: inline-block;
  background: #943399;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 24px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guiddet .art-readtime {
  font-size: 14px;
  line-height: 1.5;
  color: #943399;
  opacity: 0.7;
}

.guiddet .art-heading {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  color: #1b0a1e;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.guiddet .art-heading .grad-word {
  background: linear-gradient(120deg, #943399 30%, #CB83BB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.guiddet .art-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #3a1a3e;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}

.guiddet .art-meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.guiddet .art-author-name {
  font-size: 14px;
  line-height: 1.5;
  color: #943399;
  font-weight: 700;
}

.guiddet .art-likes {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #3a1a3e;
}

.guiddet .art-likes-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.guiddet .art-likes-icon svg {
  width: 18px;
  height: 18px;
  fill: #943399;
}

.guiddet .art-img-card {
  flex: 0 0 340px;
  width: 340px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px -1px rgba(148, 51, 153, 0.10);
  position: relative;
}

.guiddet .art-img-card img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  max-width: 100%;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.guiddet .art-img-card:hover img {
  transform: scale(1.04);
}

.guiddet .art-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(148, 51, 153, 0.28);
  pointer-events: none;
}

.guiddet .art-divider-tri {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

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

.guiddet .art-body-section {
  background: linear-gradient(160deg, #f7edf8 0%, #f0e0ef 100%);
  padding: 80px 24px;
  position: relative;
}

.guiddet .art-body-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.guiddet .art-body-col-main {
  flex: 1 1 0;
  min-width: 0;
}

.guiddet .art-body-col-side {
  flex: 0 0 280px;
  width: 280px;
}

.guiddet .art-body-divline {
  width: 1px;
  background: linear-gradient(180deg, transparent, #CB83BB 30%, #943399 70%, transparent);
  align-self: stretch;
  flex-shrink: 0;
}

.guiddet .art-body-text {
  font-size: 16px;
  line-height: 1.7;
  color: #1b0a1e;
}

.guiddet .art-body-text p {
  margin: 0 0 24px;
}

.guiddet .art-body-text h2 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  color: #1b0a1e;
  margin: 40px 0 24px;
  letter-spacing: -0.01em;
}

.guiddet .art-body-text h3 {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #943399;
  margin: 40px 0 24px;
}

.guiddet .art-body-text h4 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #1b0a1e;
  margin: 24px 0 8px;
}

.guiddet .art-body-text strong {
  color: #943399;
  font-weight: 700;
}

.guiddet .art-body-text blockquote {
  border-top: 2px solid #943399;
  border-bottom: 2px solid #CB83BB;
  padding: 24px 24px;
  margin: 40px 0;
  background: rgba(148, 51, 153, 0.05);
  border-radius: 12px;
  font-size: 18px;
  line-height: 1.7;
  color: #3a1a3e;
  font-style: italic;
}

.guiddet .art-body-text cite {
  display: block;
  font-size: 14px;
  color: #943399;
  font-style: normal;
  margin-top: 8px;
  font-weight: 700;
}

.guiddet .art-body-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.guiddet .art-body-text ul li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 1.7;
  color: #1b0a1e;
  margin-bottom: 8px;
  counter-increment: li-count;
}

.guiddet .art-body-text ul {
  counter-reset: li-count;
}

.guiddet .art-body-text ul li::before {
  content: counter(li-count);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 40px;
  background: #943399;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.guiddet .art-body-text time {
  display: inline-block;
  font-size: 14px;
  color: #CB83BB;
  font-style: normal;
}

.guiddet .art-side-bracket {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10);
  margin-bottom: 40px;
}

.guiddet .art-side-bracket::before,
.guiddet .art-side-bracket::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: #943399;
  border-style: solid;
}

.guiddet .art-side-bracket::before {
  top: 8px;
  left: 8px;
  border-width: 2px 0 0 2px;
  border-radius: 2px 0 0 0;
}

.guiddet .art-side-bracket::after {
  bottom: 8px;
  right: 8px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 2px 0;
}

.guiddet .art-side-label {
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #943399;
  font-weight: 700;
  margin-bottom: 24px;
}

.guiddet .art-steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.guiddet .art-step-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guiddet .art-step-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.guiddet .art-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 40px;
  background: linear-gradient(120deg, #943399, #CB83BB);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.guiddet .art-step-title {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #1b0a1e;
}

.guiddet .art-step-time {
  font-size: 14px;
  line-height: 1.5;
  color: #943399;
  padding-left: 36px;
}

.guiddet .art-step-bar {
  height: 4px;
  border-radius: 2px;
  background: #D8B7C3;
  margin-left: 36px;
  overflow: hidden;
}

.guiddet .art-step-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #943399, #CB83BB);
  transition: width 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.guiddet .art-side-cta {
  background: linear-gradient(120deg, #943399 0%, #CB83BB 100%);
  border-radius: 12px;
  padding: 24px;
  text-align: right;
}

.guiddet .art-side-cta-text {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 24px;
}

.guiddet .art-side-cta-btn {
  display: inline-block;
  background: #fff;
  color: #943399;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.28s ease-in-out, color 0.28s ease-in-out;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.guiddet .art-side-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1b0a1e;
  transition: left 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.guiddet .art-side-cta-btn:hover::before {
  left: 0;
}

.guiddet .art-side-cta-btn span {
  position: relative;
  z-index: 1;
  transition: color 0.28s ease-in-out;
}

.guiddet .art-side-cta-btn:hover span {
  color: #fff;
}

.guiddet .art-divider-tri2 {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.guiddet .art-divider-tri2 svg {
  display: block;
  width: 100%;
}

.guiddet .art-bottom {
  background: #fff;
  padding: 80px 24px;
}

.guiddet .art-bottom-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.guiddet .art-bottom-heading {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  color: #1b0a1e;
  margin: 0 0 40px;
  letter-spacing: -0.01em;
}

.guiddet .art-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.guiddet .art-metric-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 2px -1px rgba(148, 51, 153, 0.07), 0 6px 14px -1px rgba(148, 51, 153, 0.10);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.guiddet .art-metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #943399, #CB83BB);
  border-radius: 12px 12px 0 0;
}

.guiddet .art-metric-card:hover {
  box-shadow: 0 10px 40px -1px rgba(148, 51, 153, 0.10);
  transform: translateY(-4px);
}

.guiddet .art-metric-num {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  color: #943399;
  margin-bottom: 8px;
}

.guiddet .art-metric-label {
  font-size: 14px;
  line-height: 1.5;
  color: #3a1a3e;
}

.guiddet .art-metric-bar {
  height: 4px;
  border-radius: 2px;
  background: #D8B7C3;
  margin-top: 24px;
  overflow: hidden;
}

.guiddet .art-metric-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #943399, #CB83BB);
}

.guiddet .art-bottom-contact {
  margin-top: 80px;
  background: linear-gradient(160deg, #f7edf8 0%, #f0e0ef 100%);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10);
}

.guiddet .art-contact-text {
  flex: 1 1 0;
}

.guiddet .art-contact-heading {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  color: #1b0a1e;
  margin: 0 0 8px;
}

.guiddet .art-contact-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #3a1a3e;
  margin: 0;
}

.guiddet .art-contact-actions {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-shrink: 0;
}

.guiddet .art-btn-primary {
  display: inline-block;
  background: #943399;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 40px;
  border-radius: 2px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.28s ease-in-out;
  border: none;
  cursor: pointer;
}

.guiddet .art-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1b0a1e;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.guiddet .art-btn-primary:hover::before {
  left: 0;
}

.guiddet .art-btn-primary span {
  position: relative;
  z-index: 1;
}

.guiddet .art-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid #943399;
  color: #943399;
  text-decoration: none;
  transition: background 0.25s ease-in-out, color 0.25s ease-in-out;
  flex-shrink: 0;
}

.guiddet .art-btn-secondary:hover {
  background: #943399;
  color: #fff;
}

.guiddet .art-btn-secondary svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 1200px) {
  .guiddet .art-lead-grid {
    gap: 40px;
  }

  .guiddet .art-img-card {
    flex: 0 0 280px;
    width: 280px;
  }

  .guiddet .art-body-inner {
    gap: 40px;
  }

  .guiddet .art-bottom-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .guiddet .art-lead-grid {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .guiddet .art-img-card {
    flex: none;
    width: 100%;
  }

  .guiddet .art-img-card img {
    height: 220px;
  }

  .guiddet .art-body-inner {
    flex-direction: column;
    gap: 40px;
  }

  .guiddet .art-body-divline {
    width: 100%;
    height: 1px;
    align-self: auto;
  }

  .guiddet .art-body-col-side {
    flex: none;
    width: 100%;
  }

  .guiddet .art-bottom-contact {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .guiddet .art-contact-actions {
    width: 100%;
  }

  .guiddet .art-lead-quote {
    left: 0;
    top: -16px;
  }
}

@media (max-width: 600px) {
  .guiddet .art-lead {
    padding: 40px 24px 24px;
  }

  .guiddet .art-heading {
    font-size: 24px;
  }

  .guiddet .art-bottom-grid {
    grid-template-columns: 1fr;
  }

  .guiddet .art-body-section {
    padding: 40px 24px;
  }

  .guiddet .art-bottom {
    padding: 40px 24px;
  }

  .guiddet .art-bottom-contact {
    margin-top: 40px;
  }
}

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

.gdpg .pgwrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.gdpg .titlesplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  position: relative;
}

.gdpg .titlesplit .imgside {
  position: relative;
  overflow: hidden;
}

.gdpg .titlesplit .imgside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1);
  transition: filter 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.gdpg .titlesplit .imgside img:hover {
  filter: saturate(0);
}

.gdpg .titlesplit .imgside::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(148, 51, 153, 0.38) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(148, 51, 153, 0.28) 0%, transparent 50%);
  pointer-events: none;
}

.gdpg .titlesplit .textside {
  background: #fff;
  padding: 40px 80px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gdpg .titlesplit .textside h1 {
  font-size: 36px;
  line-height: 1.2;
  color: #1b0f1e;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0 0 24px 0;
}

.gdpg .titlesplit .textside h1 span {
  color: #943399;
}

.gdpg .titlesplit .textside .tpoints {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gdpg .titlesplit .textside .tpoints li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: #2d1a30;
}

.gdpg .titlesplit .textside .tpoints li .tnum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 40px;
  background: #943399;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.gdpg .divline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 0;
}

.gdpg .divline .dl {
  width: 60px;
  height: 2px;
  background: #CB83BB;
}

.gdpg .divline .dx {
  width: 10px;
  height: 10px;
  border: 2px solid #943399;
  border-radius: 2px;
  transform: rotate(45deg);
}

.gdpg .cardsarea {
  background: linear-gradient(155deg, #f7eef8 0%, #fdf8fb 60%, #f0e8f4 100%);
  padding: 80px 0;
  position: relative;
}

.gdpg .cardsarea::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(135deg,
      transparent,
      transparent 28px,
      rgba(148, 51, 153, 0.03) 28px,
      rgba(148, 51, 153, 0.03) 29px);
  pointer-events: none;
}

.gdpg .cardsarea .seclabel {
  font-size: 14px;
  font-weight: 700;
  color: #943399;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.gdpg .cardsarea h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  color: #1b0f1e;
  margin: 0 0 40px 0;
}

.gdpg .cardgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gdpg .postcard {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 2px -1px rgba(148, 51, 153, 0.07), 0 6px 14px -1px rgba(148, 51, 153, 0.10);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.28s ease-in-out, transform 0.28s ease-in-out;
}

.gdpg .postcard:hover {
  box-shadow: 0 10px 40px -1px rgba(148, 51, 153, 0.10);
  transform: translateY(-4px);
}

.gdpg .postcard .cardimg {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  background: #f0e0f4;
}

.gdpg .postcard .cardimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1);
  transition: filter 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gdpg .postcard:hover .cardimg img {
  filter: saturate(0);
}

.gdpg .postcard .cardimg .ctag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #943399;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  line-height: 1.5;
}

.gdpg .postcard .cardbody {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.gdpg .postcard .cardbody .csub {
  font-size: 14px;
  color: #943399;
  font-weight: 600;
  line-height: 1.5;
}

.gdpg .postcard .cardbody h3 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  color: #1b0f1e;
  margin: 0;
}

.gdpg .postcard .cardbody .cdesc {
  font-size: 14px;
  line-height: 1.7;
  color: #3d2540;
  margin: 0;
  flex: 1;
}

.gdpg .postcard .cardfooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 24px 24px;
  gap: 8px;
}

.gdpg .postcard .cardfooter .cmeta {
  font-size: 14px;
  color: #7a4d82;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gdpg .postcard .cardfooter .cmeta .cauthor {
  font-weight: 600;
  color: #1b0f1e;
}

.gdpg .postcard .cardfooter .clikes {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #943399;
  font-weight: 700;
}

.gdpg .postcard .cardfooter .clikes .hrt {
  width: 18px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.gdpg .postcard .cardfooter .clikes .hrt::before,
.gdpg .postcard .cardfooter .clikes .hrt::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  background: #943399;
  border-radius: 40px 40px 0 0;
  top: 0;
}

.gdpg .postcard .cardfooter .clikes .hrt::before {
  left: 0;
  transform: rotate(-45deg);
  transform-origin: bottom left;
}

.gdpg .postcard .cardfooter .clikes .hrt::after {
  right: 0;
  transform: rotate(45deg);
  transform-origin: bottom right;
}

.gdpg .postcard .readbtn {
  display: block;
  margin: 0 24px 24px 24px;
  padding: 8px 24px;
  background: #fff;
  border: 2px solid #943399;
  border-radius: 12px;
  color: #943399;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.gdpg .postcard .readbtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #943399;
  transition: left 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.gdpg .postcard .readbtn:hover::before {
  left: 0;
}

.gdpg .postcard .readbtn:hover {
  color: #fff;
}

.gdpg .postcard .readbtn span {
  position: relative;
  z-index: 1;
}

.gdpg .infostrip {
  background: #fff;
  padding: 80px 0 40px 0;
}

.gdpg .infostrip .stripgrid {
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  gap: 40px;
  align-items: start;
}

.gdpg .infostrip .sidenum {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.gdpg .infostrip .sidenum .numblock {
  text-align: right;
  padding: 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f7eef8 0%, #fdf8fb 100%);
  box-shadow: 0 2px 2px -1px rgba(148, 51, 153, 0.07);
}

.gdpg .infostrip .sidenum .numblock .nbig {
  font-size: 36px;
  font-weight: 900;
  color: #943399;
  line-height: 1.2;
  display: block;
}

.gdpg .infostrip .sidenum .numblock .nlab {
  font-size: 14px;
  color: #3d2540;
  line-height: 1.5;
}

.gdpg .infostrip .sidenum.right .numblock {
  text-align: left;
}

.gdpg .infostrip .centercol {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.gdpg .infostrip .centercol .bigicon {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: linear-gradient(135deg, #943399 0%, #CB83BB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10);
  flex-shrink: 0;
}

.gdpg .infostrip .centercol .bigicon svg {
  width: 40px;
  height: 40px;
}

.gdpg .infostrip .centercol h2 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  color: #1b0f1e;
  margin: 0;
}

.gdpg .infostrip .centercol p {
  font-size: 16px;
  line-height: 1.7;
  color: #3d2540;
  margin: 0;
  max-width: 520px;
}

.gdpg .divline2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 0;
}

.gdpg .divline2 .dl2 {
  width: 40px;
  height: 1px;
  background: #D8B7C3;
}

.gdpg .divline2 .dc {
  width: 8px;
  height: 8px;
  background: #CB83BB;
  border-radius: 2px;
}

.gdpg .cyclestrip {
  background: linear-gradient(155deg, #943399 0%, #CB83BB 100%);
  padding: 40px 0;
  overflow: hidden;
}

.gdpg .cyclestrip .cycleitems {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.gdpg .cyclestrip .citem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  transition: opacity 0.35s ease-in-out;
}

.gdpg .cyclestrip .citem:nth-child(1) {
  animation: cychl 3.6s 0s infinite;
}

.gdpg .cyclestrip .citem:nth-child(2) {
  animation: cychl 3.6s 0.6s infinite;
}

.gdpg .cyclestrip .citem:nth-child(3) {
  animation: cychl 3.6s 1.2s infinite;
}

.gdpg .cyclestrip .citem:nth-child(4) {
  animation: cychl 3.6s 1.8s infinite;
}

.gdpg .cyclestrip .citem:nth-child(5) {
  animation: cychl 3.6s 2.4s infinite;
}

.gdpg .cyclestrip .citem:nth-child(6) {
  animation: cychl 3.6s 3.0s infinite;
}

@keyframes cychl {

  0%,
  100% {
    opacity: 0.45;
  }

  10%,
  30% {
    opacity: 1;
  }
}

.gdpg .cyclestrip .citem .cicn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.gdpg .cyclestrip .citem .cicn svg {
  width: 26px;
  height: 26px;
}

.gdpg .cyclestrip .citem .clbl {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.gdpg .ctaband {
  background: #fff;
  padding: 80px 0;
}

.gdpg .ctaband .ctainner {
  background: linear-gradient(135deg, #f7eef8 0%, #fdf8fb 100%);
  border-radius: 24px;
  padding: 40px 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 2px 2px -1px rgba(148, 51, 153, 0.07), 0 6px 14px -1px rgba(148, 51, 153, 0.10);
}

.gdpg .ctaband .ctainner .ctxt {
  flex: 1;
}

.gdpg .ctaband .ctainner .ctxt h2 {
  font-size: 24px;
  font-weight: 900;
  color: #1b0f1e;
  line-height: 1.2;
  margin: 0 0 8px 0;
}

.gdpg .ctaband .ctainner .ctxt p {
  font-size: 16px;
  line-height: 1.7;
  color: #3d2540;
  margin: 0;
}

.gdpg .ctaband .ctainner .cbtn {
  display: inline-block;
  padding: 8px 40px;
  background: #943399;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10);
  transition: color 0.28s ease-in-out;
  flex-shrink: 0;
}

.gdpg .ctaband .ctainner .cbtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #CB83BB;
  transition: left 0.28s ease-in-out;
  z-index: 0;
}

.gdpg .ctaband .ctainner .cbtn:hover::before {
  left: 0;
}

.gdpg .ctaband .ctainner .cbtn span {
  position: relative;
  z-index: 1;
}

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

  .gdpg .infostrip .stripgrid {
    grid-template-columns: 120px 1fr 120px;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .gdpg .titlesplit {
    grid-template-columns: 1fr;
  }

  .gdpg .titlesplit .imgside {
    height: 280px;
  }

  .gdpg .titlesplit .textside {
    padding: 40px 24px 80px 24px;
  }

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

  .gdpg .infostrip .stripgrid {
    grid-template-columns: 1fr;
  }

  .gdpg .infostrip .sidenum {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .gdpg .infostrip .sidenum .numblock {
    text-align: left;
    flex: 1;
  }

  .gdpg .ctaband .ctainner {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .gdpg .cardgrid {
    grid-template-columns: 1fr;
  }

  .gdpg .titlesplit .textside h1 {
    font-size: 24px;
  }

  .gdpg .cyclestrip .cycleitems {
    gap: 24px;
  }

  .gdpg .cardsarea {
    padding: 40px 0;
  }

  .gdpg .ctaband {
    padding: 40px 0;
  }
}

.ctus {
  background: #fff;
  overflow-x: clip;
  position: relative;
}

.ctus .pg-strip {
  width: 100%;
  padding: 80px 24px 80px;
  background: linear-gradient(160deg, #943399 0%, #CB83BB 60%, #D8B7C3 100%);
  position: relative;
  overflow: hidden;
}

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

.ctus .pg-strip::after {
  content: '"';
  position: absolute;
  right: 60px;
  top: -40px;
  font-size: 320px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  font-weight: 900;
  overflow: hidden;
}

.ctus .strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ctus .strip-label {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  padding: 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.ctus .strip-h1 {
  font-size: 70px;
  line-height: 1.2;
  color: #fff;
  font-weight: 900;
  margin: 0 0 80px;
  max-width: 700px;
  animation: headLift 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes headLift {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

.ctus .strip-meta {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
}

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

.ctus .smeta-num {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  color: #fff;
}

.ctus .smeta-arr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #D8B7C3;
  font-size: 14px;
}

.ctus .arr-icon {
  width: 32px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
}

.ctus .arr-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 8px;
  height: 2px;
  background: #D8B7C3;
  transform: translateY(-50%);
}

.ctus .arr-icon::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #D8B7C3;
  border-right: 2px solid #D8B7C3;
  transform: translateY(-50%) rotate(45deg);
}

.ctus .smeta-lbl {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.ctus .smeta-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
}

.ctus .contact-body {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ctus .cinfo-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ctus .cinfo-heading {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  color: #1b0a1e;
  margin: 0;
}

.ctus .cinfo-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #3d1f45;
  margin: 0;
}

.ctus .cinfo-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ctus .ccard {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #D8B7C3;
  background: #fff;
  box-shadow: 0 2px 2px -1px rgba(148, 51, 153, 0.07), 0 6px 14px -1px rgba(148, 51, 153, 0.10);
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease-in-out;
  cursor: default;
}

.ctus .ccard:hover {
  background: rgba(203, 131, 187, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 40px -1px rgba(148, 51, 153, 0.10);
}

.ctus .ccard-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #943399, #CB83BB);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctus .ccard-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.ctus .ccard-type {
  font-size: 14px;
  line-height: 1.5;
  color: #943399;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ctus .ccard-val {
  font-size: 16px;
  line-height: 1.5;
  color: #1b0a1e;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

.ctus .ccard-val:hover {
  color: #943399;
}

.ctus .ccard-note {
  font-size: 14px;
  line-height: 1.5;
  color: #6b4570;
}

.ctus .trust-strip {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(148, 51, 153, 0.06), rgba(216, 183, 195, 0.12));
  border: 1px solid rgba(148, 51, 153, 0.12);
}

.ctus .trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  text-align: right;
}

.ctus .trust-num {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  color: #943399;
}

.ctus .trust-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #3d1f45;
}

.ctus .trust-sep {
  width: 1px;
  background: rgba(148, 51, 153, 0.2);
  align-self: stretch;
}

.ctus .form-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ctus .form-heading {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  color: #1b0a1e;
  margin: 0;
}

.ctus .form-sub {
  font-size: 16px;
  line-height: 1.7;
  color: #3d1f45;
  margin: 0;
}

.ctus .cform {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.ctus .field-lbl {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #1b0a1e;
}

.ctus .field-lbl span {
  color: #943399;
  margin-left: 2px;
}

.ctus .finput {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #1b0a1e;
  background: #fff;
  border: 1.5px solid #D8B7C3;
  border-radius: 12px;
  outline: none;
  box-sizing: border-box;
  box-shadow: inset 0 1px 2px rgba(148, 51, 153, 0.07);
  transition: border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus .finput::placeholder {
  color: rgba(148, 51, 153, 0.35);
}

.ctus .finput:focus {
  border-color: #943399;
  box-shadow: 0 0 0 3px rgba(148, 51, 153, 0.12), inset 0 1px 2px rgba(148, 51, 153, 0.07);
}

.ctus .fselect {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #1b0a1e;
  background: #fff;
  border: 1.5px solid #D8B7C3;
  border-radius: 12px;
  outline: none;
  box-sizing: border-box;
  appearance: none;
  cursor: pointer;
  box-shadow: inset 0 1px 2px rgba(148, 51, 153, 0.07);
  transition: border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus .fselect:focus {
  border-color: #943399;
  box-shadow: 0 0 0 3px rgba(148, 51, 153, 0.12), inset 0 1px 2px rgba(148, 51, 153, 0.07);
}

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

.ctus .select-wrap::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #943399;
  border-bottom: 2px solid #943399;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.ctus .ftextarea {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 1.7;
  color: #1b0a1e;
  background: #fff;
  border: 1.5px solid #D8B7C3;
  border-radius: 12px;
  outline: none;
  box-sizing: border-box;
  resize: vertical;
  min-height: 120px;
  box-shadow: inset 0 1px 2px rgba(148, 51, 153, 0.07);
  transition: border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus .ftextarea::placeholder {
  color: rgba(148, 51, 153, 0.35);
}

.ctus .ftextarea:focus {
  border-color: #943399;
  box-shadow: 0 0 0 3px rgba(148, 51, 153, 0.12), inset 0 1px 2px rgba(148, 51, 153, 0.07);
}

.ctus .cond-toggle {
  display: none;
}

.ctus .cond-trigger {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 0;
}

.ctus .cond-trigger-box {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 2px solid #CB83BB;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease-in-out, border-color 0.25s ease-in-out;
  position: relative;
}

.ctus .cond-trigger-box::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) scale(0);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  top: 2px;
}

.ctus .cond-toggle:checked+.cond-trigger .cond-trigger-box {
  background: #943399;
  border-color: #943399;
}

.ctus .cond-toggle:checked+.cond-trigger .cond-trigger-box::after {
  transform: rotate(45deg) scale(1);
}

.ctus .cond-trigger-lbl {
  font-size: 14px;
  line-height: 1.5;
  color: #3d1f45;
  user-select: none;
}

.ctus .cond-panel {
  display: none;
  flex-direction: column;
  gap: 24px;
}

.ctus .cond-toggle:checked~.cond-panel {
  display: flex;
}

.ctus .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.ctus .priv-check {
  width: 18px;
  height: 18px;
  border: 2px solid #CB83BB;
  border-radius: 2px;
  accent-color: #943399;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.ctus .priv-lbl {
  font-size: 14px;
  line-height: 1.5;
  color: #3d1f45;
}

.ctus .priv-lbl a {
  color: #943399;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.25s ease-in-out;
}

.ctus .priv-lbl a:hover {
  color: #CB83BB;
}

.ctus .btn-submit {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  background: #943399;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease-in-out;
  align-self: flex-start;
}

.ctus .btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #CB83BB;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px;
  z-index: 0;
}

.ctus .btn-submit:hover::before {
  transform: translateX(0);
}

.ctus .btn-submit:hover {
  box-shadow: 0 10px 40px -1px rgba(148, 51, 153, 0.10);
}

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

.ctus .btn-submit:active {
  transform: translateY(1px);
}

.ctus .btn-txt {
  position: relative;
  z-index: 1;
}

.ctus .diag-section {
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

.ctus .diag-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(168deg, #fff 50%, #f3e6f5 50%);
  z-index: 0;
}

.ctus .diag-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.ctus .diag-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ctus .diag-h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  color: #1b0a1e;
  margin: 0;
}

.ctus .diag-p {
  font-size: 16px;
  line-height: 1.7;
  color: #3d1f45;
  margin: 0;
}

.ctus .addr-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #D8B7C3;
  box-shadow: 0 2px 2px -1px rgba(148, 51, 153, 0.07), 0 6px 14px -1px rgba(148, 51, 153, 0.10);
}

.ctus .addr-line {
  font-size: 16px;
  line-height: 1.5;
  color: #1b0a1e;
}

.ctus .addr-sub {
  font-size: 14px;
  line-height: 1.5;
  color: #6b4570;
}

.ctus .diag-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ctus .diag-li {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
}

.ctus .dli-num {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #943399;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ctus .dli-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

.ctus .dli-h {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #1b0a1e;
  margin: 0;
}

.ctus .dli-p {
  font-size: 14px;
  line-height: 1.7;
  color: #3d1f45;
  margin: 0;
}

@media (max-width: 900px) {
  .ctus .strip-h1 {
    font-size: 36px;
  }

  .ctus .contact-body {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px;
  }

  .ctus .diag-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ctus .pg-strip::after {
    font-size: 180px;
    right: 20px;
    top: -20px;
  }

  .ctus .trust-strip {
    flex-direction: column;
    gap: 24px;
  }

  .ctus .trust-sep {
    width: 100%;
    height: 1px;
    align-self: auto;
  }

  .ctus .trust-item {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .ctus .pg-strip {
    padding: 40px 24px 40px;
  }

  .ctus .strip-h1 {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .ctus .strip-meta {
    gap: 24px;
  }

  .ctus .smeta-divider {
    display: none;
  }

  .ctus .diag-section {
    padding: 40px 24px;
  }

  .ctus .diag-section::before {
    background: #f3e6f5;
  }

  .ctus .btn-submit {
    width: 100%;
    justify-content: center;
  }
}

.supp {
  background: #fff;
  overflow-x: clip;
}

.supp .slidein {
  opacity: 0;
  transform: translateX(-48px);
  animation: slideFromLeft 0.38s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.supp .slidein.even {
  transform: translateX(48px);
  animation: slideFromRight 0.38s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideFromLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.supp .slidein:nth-child(1) {
  animation-delay: 0.05s;
}

.supp .slidein:nth-child(2) {
  animation-delay: 0.12s;
}

.supp .slidein:nth-child(3) {
  animation-delay: 0.19s;
}

.supp .slidein:nth-child(4) {
  animation-delay: 0.26s;
}

.supp ::selection {
  background: #943399;
  color: #fff;
}

.supp input::placeholder,
.supp textarea::placeholder {
  color: rgba(148, 51, 153, 0.38);
}

.supp .pg-top {
  background: linear-gradient(128deg, #943399 0%, #CB83BB 55%, #D8B7C3 100%);
  position: relative;
  padding: 80px 24px;
  border-bottom: 3px solid #943399;
}

.supp .pg-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.13) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(148, 51, 153, 0.22) 0%, transparent 50%),
    radial-gradient(circle at 60% 10%, rgba(203, 131, 187, 0.18) 0%, transparent 40%);
  pointer-events: none;
}

.supp .pg-top::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.supp .top-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.supp .top-text {
  flex: 1 1 0;
}

.supp .top-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 2px;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.supp .top-text h1 {
  font-size: 70px;
  line-height: 1.2;
  color: #fff;
  font-weight: 900;
  margin: 0 0 24px 0;
  letter-spacing: -0.01em;
}

.supp .top-text p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 40px 0;
  max-width: 480px;
}

.supp .top-link {
  display: inline-block;
  background: #fff;
  color: #943399;
  font-size: 16px;
  font-weight: 700;
  padding: 24px 40px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10);
  position: relative;
  overflow: hidden;
  transition: color 0.28s ease-in-out, box-shadow 0.28s ease-in-out;
}

.supp .top-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #943399;
  transition: left 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.supp .top-link:hover::before {
  left: 0;
}

.supp .top-link:hover {
  color: #fff;
  box-shadow: 0 10px 40px -1px rgba(148, 51, 153, 0.10);
}

.supp .top-link span {
  position: relative;
  z-index: 1;
}

.supp .top-img-wrap {
  flex: 0 0 340px;
  width: 340px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px -1px rgba(148, 51, 153, 0.10);
}

.supp .top-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
}

.supp .faq-area {
  background: #fff;
  padding: 80px 24px;
}

.supp .faq-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.supp .faq-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
}

.supp .faq-header-text {
  flex: 1 1 0;
}

.supp .faq-header-text h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  color: #1b1035;
  margin: 0 0 24px 0;
}

.supp .faq-header-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #3d2f4a;
  margin: 0;
  max-width: 520px;
}

.supp .faq-contact-card {
  flex: 0 0 300px;
  background: linear-gradient(128deg, #943399 0%, #CB83BB 100%);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10);
  text-align: right;
}

.supp .faq-contact-card h4 {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.supp .faq-contact-card p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 24px 0;
}

.supp .faq-contact-card a {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 8px;
  transition: opacity 0.25s ease-in-out;
}

.supp .faq-contact-card a:hover {
  opacity: 0.75;
}

.supp .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.supp .faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 2px -1px rgba(148, 51, 153, 0.07), 0 6px 14px -1px rgba(148, 51, 153, 0.10);
  position: relative;
  transition: box-shadow 0.28s ease-in-out, transform 0.28s ease-in-out;
}

.supp .faq-item:hover {
  box-shadow: 0 10px 40px -1px rgba(148, 51, 153, 0.10);
  transform: translateY(-2px);
}

.supp .faq-item.wide {
  grid-column: 1 / -1;
}

.supp .faq-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: linear-gradient(128deg, #943399 0%, #CB83BB 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 24px;
  box-shadow: 0 2px 2px -1px rgba(148, 51, 153, 0.07);
}

.supp .faq-item h4 {
  font-size: 18px;
  font-weight: 900;
  color: #1b1035;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.supp .faq-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #3d2f4a;
  margin: 0;
}

.supp .faq-item .fact-block {
  background: linear-gradient(128deg, rgba(148, 51, 153, 0.07) 0%, rgba(216, 183, 195, 0.18) 100%);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}

.supp .faq-item .fact-block p {
  font-size: 14px;
  line-height: 1.5;
  color: #943399;
  font-weight: 700;
  margin: 0;
}

.supp .faq-item.right-align {
  text-align: right;
}

.supp .faq-item.right-align .faq-num {
  margin-left: auto;
  margin-right: 0;
}

.supp .portrait-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(148, 51, 153, 0.12);
}

.supp .portrait-img {
  width: 80px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 2px -1px rgba(148, 51, 153, 0.07);
}

.supp .portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
}

.supp .portrait-info h5 {
  font-size: 16px;
  font-weight: 900;
  color: #1b1035;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.supp .portrait-info p {
  font-size: 14px;
  line-height: 1.5;
  color: #3d2f4a;
  margin: 0;
}

.supp .steps-strip {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.supp .step-pill {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: rgba(148, 51, 153, 0.06);
  border-radius: 40px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #943399;
}

.supp .step-pill-num {
  font-size: 18px;
  font-weight: 900;
  color: #943399;
}

.supp .step-pill-frac {
  font-size: 14px;
  color: #CB83BB;
  font-weight: 700;
}

.supp .img-bg-block {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 180px;
  margin-top: 40px;
}

.supp .img-bg-block img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
}

.supp .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 16, 53, 0.88);
}

.supp .img-bg-text {
  position: relative;
  z-index: 1;
  padding: 40px;
}

.supp .img-bg-text p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-width: 560px;
}

.supp .img-bg-text strong {
  color: #CB83BB;
}

.supp .tri-accent-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 60px 60px 0 0;
  border-color: rgba(148, 51, 153, 0.13) transparent transparent transparent;
  pointer-events: none;
}

.supp .tri-accent-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 48px 48px;
  border-color: transparent transparent rgba(203, 131, 187, 0.15) transparent;
  pointer-events: none;
}

@media (max-width: 900px) {
  .supp .top-inner {
    flex-direction: column;
    gap: 40px;
  }

  .supp .top-img-wrap {
    flex: none;
    width: 100%;
    height: 280px;
  }

  .supp .top-text h1 {
    font-size: 36px;
  }

  .supp .faq-header {
    flex-direction: column;
    gap: 24px;
  }

  .supp .faq-contact-card {
    flex: none;
    width: 100%;
  }

  .supp .faq-grid {
    grid-template-columns: 1fr;
  }

  .supp .faq-item.wide {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .supp .pg-top {
    padding: 40px 24px;
  }

  .supp .faq-area {
    padding: 40px 24px;
  }

  .supp .faq-header {
    margin-bottom: 40px;
  }

  .supp .faq-item {
    padding: 24px;
  }

  .supp .faq-contact-card {
    padding: 24px;
  }

  .supp .steps-strip {
    flex-direction: column;
  }
}

.abus {
  overflow-x: hidden;
}

.abus .split-screen {
  display: flex;
  flex-direction: row;
  min-height: 0;
  position: relative;
}

.abus .split-left {
  flex: 1 1 52%;
  background: #f3e8f5;
  padding: 80px 40px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.abus .split-right {
  flex: 1 1 48%;
  background: #943399;
  padding: 80px 80px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.abus .split-left .decor-curve {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border: 3px solid rgba(148, 51, 153, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.abus .split-left .decor-curve2 {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 110px;
  height: 110px;
  border: 2px solid rgba(148, 51, 153, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.abus .split-right .decor-bg {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.abus .tag-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #943399;
  background: rgba(148, 51, 153, 0.09);
  border-radius: 2px;
  padding: 8px 24px;
  margin-bottom: 24px;
}

.abus .main-heading {
  font-size: 70px;
  line-height: 1.2;
  font-weight: 900;
  color: #1b0a1e;
  margin: 0 0 24px 0;
  letter-spacing: -0.01em;
}

.abus .main-heading .accent-word {
  color: #943399;
}

.abus .sub-heading {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  color: #3d1a42;
  margin: 0 0 40px 0;
  max-width: 480px;
}

.abus .img-clipped {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1/1;
  object-fit: cover;
  clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 15% 100%, 0 85%);
  display: block;
  margin-bottom: 24px;
}

.abus .right-stat {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 8px 0;
}

.abus .right-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 40px 0;
  max-width: 340px;
}

.abus .right-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
}

.abus .arrows-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 0;
  background: #fff;
}

.abus .arr {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #CB83BB;
  opacity: 0.5;
}

.abus .arr.dark {
  border-left-color: #943399;
  opacity: 1;
}

.abus .arr.light {
  border-left-color: #D8B7C3;
  opacity: 0.4;
}

.abus .story-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.abus .story-text-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abus .story-heading {
  font-size: 36px;
  font-weight: 900;
  color: #1b0a1e;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}

.abus .story-para {
  font-size: 16px;
  line-height: 1.7;
  color: #2e1033;
  margin: 0;
  max-width: 520px;
}

.abus .ranked-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}

.abus .ranked-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abus .ranked-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.abus .rank-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #943399;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.abus .rank-label {
  font-size: 16px;
  font-weight: 700;
  color: #1b0a1e;
  line-height: 1.2;
}

.abus .rank-bar-track {
  height: 6px;
  background: #f0ddf5;
  border-radius: 2px;
  overflow: hidden;
  margin-left: 60px;
}

.abus .rank-bar-fill {
  height: 100%;
  background: linear-gradient(135deg, #943399, #CB83BB);
  border-radius: 2px;
  transition: width 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.abus .story-img-col {
  position: relative;
}

.abus .story-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 40px -1px rgba(148, 51, 153, 0.10);
}

.abus .img-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: #fff;
  border-radius: 12px;
  padding: 8px 24px;
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abus .badge-num {
  font-size: 24px;
  font-weight: 900;
  color: #943399;
  line-height: 1.2;
}

.abus .badge-text {
  font-size: 14px;
  color: #3d1a42;
  line-height: 1.5;
}

.abus .divider-wave {
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #D8B7C3 0%, #943399 50%, #D8B7C3 100%);
  opacity: 0.35;
}

.abus .team-strip {
  background: #f7f0fa;
  padding: 80px 40px;
  animation: warmcool 8s ease-in-out infinite;
}

@keyframes warmcool {
  0% {
    background: #f7f0fa;
  }

  50% {
    background: #f0eaf7;
  }

  100% {
    background: #f7f0fa;
  }
}

.abus .team-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.abus .team-heading {
  font-size: 36px;
  font-weight: 900;
  color: #1b0a1e;
  line-height: 1.2;
  margin: 0;
  text-align: right;
}

.abus .team-sub {
  font-size: 18px;
  color: #3d1a42;
  line-height: 1.7;
  margin: 0;
  text-align: right;
  max-width: 600px;
  align-self: flex-end;
}

.abus .team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.6fr;
  gap: 24px;
  align-items: start;
}

.abus .team-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 2px -1px rgba(148, 51, 153, 0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.28s ease-in-out, transform 0.28s ease-in-out;
}

.abus .team-card:hover {
  box-shadow: 0 10px 40px -1px rgba(148, 51, 153, 0.10);
  transform: translateY(-2px);
}

.abus .portrait-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 8px;
}

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

.abus .card-name {
  font-size: 16px;
  font-weight: 700;
  color: #1b0a1e;
  line-height: 1.2;
  margin: 0;
}

.abus .card-role {
  font-size: 14px;
  color: #943399;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.abus .card-text {
  font-size: 14px;
  color: #2e1033;
  line-height: 1.7;
  margin: 0;
}

.abus .team-card.featured {
  background: linear-gradient(135deg, #943399 0%, #CB83BB 100%);
  border-radius: 24px;
  padding: 40px;
}

.abus .team-card.featured .card-name {
  color: #fff;
  font-size: 18px;
}

.abus .team-card.featured .card-role {
  color: rgba(255, 255, 255, 0.75);
}

.abus .team-card.featured .card-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

.abus .trust-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.abus .trust-chip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 40px;
  padding: 8px 24px;
}

.abus .chip-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.abus .chip-label {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}

.abus .arrows-divider2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 24px 40px;
  background: #fff;
  max-width: 100%;
}

.abus .process-band {
  background: #fff;
  padding: 80px 40px;
}

.abus .process-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.abus .process-top {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-end;
}

.abus .process-heading {
  font-size: 36px;
  font-weight: 900;
  color: #1b0a1e;
  line-height: 1.2;
  margin: 0;
  flex: 1 1 auto;
}

.abus .process-lead {
  font-size: 16px;
  line-height: 1.7;
  color: #2e1033;
  margin: 0;
  max-width: 420px;
  flex-shrink: 0;
}

.abus .process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.abus .step-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border-radius: 12px;
  background: #f7f0fa;
  position: relative;
  transition: background 0.35s ease-in-out;
}

.abus .step-item:hover {
  background: #eddff5;
}

.abus .step-num-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #943399;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #943399;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.abus .step-title {
  font-size: 16px;
  font-weight: 700;
  color: #1b0a1e;
  line-height: 1.2;
  margin: 0;
}

.abus .step-desc {
  font-size: 14px;
  color: #2e1033;
  line-height: 1.7;
  margin: 0;
}

.abus .check-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #943399;
  font-weight: 600;
  margin-top: 8px;
}

.abus .check-svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.abus .process-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.abus .proc-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10);
}

.abus .proc-text-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abus .proc-sub-heading {
  font-size: 24px;
  font-weight: 900;
  color: #1b0a1e;
  line-height: 1.2;
  margin: 0;
}

.abus .proc-para {
  font-size: 16px;
  line-height: 1.7;
  color: #2e1033;
  margin: 0;
}

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

.abus .checklist li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  color: #2e1033;
  line-height: 1.7;
}

.abus .checklist li .chk {
  flex-shrink: 0;
  margin-top: 3px;
}

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

.abus .tooltip-wrap:focus-within .tooltip-box,
.abus .tooltip-wrap:focus .tooltip-box {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.abus .tooltip-box {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #1b0a1e;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 24px;
  border-radius: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
  z-index: 10;
}

.abus .tooltip-box::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: #1b0a1e transparent transparent transparent;
}

.abus .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #943399;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 700;
  padding: 24px 40px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10);
  transition: box-shadow 0.28s ease-in-out, color 0.28s ease-in-out;
}

.abus .cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #CB83BB;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.abus .cta-btn:hover::before {
  left: 0;
}

.abus .cta-btn span {
  position: relative;
  z-index: 1;
}

.abus .cta-btn:focus {
  outline: 3px solid #943399;
  outline-offset: 3px;
}

@media (max-width: 1200px) {
  .abus .main-heading {
    font-size: 36px;
  }

  .abus .split-left {
    padding: 80px 24px 80px 40px;
  }

  .abus .split-right {
    padding: 80px 40px 80px 24px;
  }

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

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

@media (max-width: 900px) {
  .abus .split-screen {
    flex-direction: column;
  }

  .abus .split-left,
  .abus .split-right {
    flex: none;
    width: 100%;
    padding: 40px 24px;
  }

  .abus .story-grid {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .abus .img-badge {
    left: 0;
  }

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

  .abus .process-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .abus .process-img-row {
    grid-template-columns: 1fr;
  }

  .abus .team-strip {
    padding: 40px 24px;
  }

  .abus .process-band {
    padding: 40px 24px;
  }
}

@media (max-width: 600px) {
  .abus .team-grid {
    grid-template-columns: 1fr;
  }

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

  .abus .split-left,
  .abus .split-right {
    padding: 40px 24px;
  }

  .abus .main-heading {
    font-size: 36px;
  }

  .abus .story-heading,
  .abus .team-heading,
  .abus .process-heading {
    font-size: 24px;
  }

  .abus .trust-row {
    flex-direction: column;
  }
}

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

.frst .db-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.frst ::selection {
  background: #943399;
  color: #fff;
}

.frst input::placeholder,
.frst textarea::placeholder {
  color: rgba(148, 51, 153, 0.4);
}

.frst .tblock {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 600px;
  background: #1a0020;
  overflow: hidden;
}

.frst .tblock-curves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.frst .tblock-curves svg {
  width: 100%;
  height: 100%;
  opacity: 0.18;
}

.frst .tblock-imgzone {
  position: relative;
  padding: 80px 24px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.frst .tblock-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 340px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px -1px rgba(148, 51, 153, 0.10);
}

.frst .tblock-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.frst .tblock-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to bottom, transparent, rgba(20, 0, 30, 0.82));
  border-radius: 0 0 24px 24px;
}

.frst .tblock-textzone {
  position: relative;
  padding: 80px 40px 80px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(ellipse at 90% 15%, rgba(148, 51, 153, 0.38) 0%, transparent 62%);
  z-index: 1;
}

.frst .tblock-label {
  display: inline-block;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #CB83BB;
  border: 1px solid rgba(203, 131, 187, 0.35);
  border-radius: 2px;
  padding: 8px 24px;
  margin-bottom: 24px;
  width: fit-content;
}

.frst .tblock-h1 {
  font-size: 70px;
  line-height: 1.2;
  font-weight: 900;
  color: #fff;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.frst .tblock-h1 em {
  font-style: normal;
  color: #CB83BB;
}

.frst .tblock-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(216, 183, 195, 0.88);
  margin: 0 0 40px 0;
  max-width: 440px;
}

.frst .tblock-cta {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  background: #943399;
  border: none;
  border-radius: 12px;
  padding: 24px 40px;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10);
}

.frst .tblock-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #6b1f70;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  border-radius: 12px;
}

.frst .tblock-cta:hover::before {
  transform: translateX(0);
}

.frst .tblock-cta span {
  position: relative;
  z-index: 1;
}

.frst .tblock-cta:focus-visible {
  outline: 3px solid #CB83BB;
  outline-offset: 3px;
}

.frst .tblock-rightborder {
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(203, 131, 187, 0.5), transparent);
}

@keyframes clipReveal {
  from {
    clip-path: inset(40% 40% 40% 40% round 24px);
    opacity: 0.2;
  }

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

.frst .tblock-img {
  animation: clipReveal 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes bgShift {
  0% {
    background-position: 0% 0%, 100% 100%;
  }

  50% {
    background-position: 8% 4%, 92% 96%;
  }

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

.frst .tblock {
  animation: bgShift 9s ease-in-out infinite;
}

.frst .relat {
  background: #fff;
  padding: 80px 0;
  position: relative;
}

.frst .relat-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.frst .relat-text {
  padding-right: 24px;
}

.frst .relat-eyebrow {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #943399;
  margin-bottom: 24px;
  display: block;
}

.frst .relat-h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  color: #1a0020;
  margin: 0 0 24px 0;
}

.frst .relat-body {
  font-size: 16px;
  line-height: 1.7;
  color: #3a1a40;
  margin: 0 0 24px 0;
}

.frst .relat-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.frst .relat-step {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
}

.frst .relat-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #943399;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10);
}

.frst .relat-step-text {
  font-size: 16px;
  line-height: 1.7;
  color: #3a1a40;
  padding-top: 8px;
}

.frst .relat-step-text strong {
  color: #1a0020;
  font-weight: 700;
}

.frst .relat-imgcol {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.frst .relat-imgbox {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 40px -1px rgba(148, 51, 153, 0.10);
}

.frst .relat-imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.frst .relat-stat {
  background: linear-gradient(135deg, #943399 0%, #CB83BB 100%);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10);
}

.frst .relat-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.frst .relat-stat-label {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.frst .relat-rightborder {
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(148, 51, 153, 0.22), transparent);
}

.frst .clients {
  background: #2a0035;
  padding: 80px 0;
  position: relative;
}

.frst .clients-head {
  text-align: center;
  margin-bottom: 40px;
}

.frst .clients-eyebrow {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #CB83BB;
  display: block;
  margin-bottom: 24px;
}

.frst .clients-h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  color: #fff;
  margin: 0 0 24px 0;
}

.frst .clients-intro {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(216, 183, 195, 0.82);
  max-width: 560px;
  margin: 0 auto;
}

.frst .clients-rows {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.frst .clients-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(203, 131, 187, 0.12);
  box-shadow: 0 2px 2px -1px rgba(148, 51, 153, 0.07);
  transition: background 0.27s ease-in-out, border-color 0.27s ease-in-out;
}

.frst .clients-row:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(203, 131, 187, 0.28);
}

.frst .clients-row.alt {
  direction: ltr;
}

.frst .clients-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.frst .clients-portrait {
  width: 80px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10);
}

.frst .clients-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.frst .clients-noimg {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: rgba(148, 51, 153, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.frst .clients-noimg-init {
  font-size: 24px;
  font-weight: 900;
  color: #CB83BB;
  line-height: 1;
}

.frst .clients-pname {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.frst .clients-prole {
  font-size: 14px;
  color: rgba(203, 131, 187, 0.8);
  line-height: 1.5;
}

.frst .clients-quote {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(216, 183, 195, 0.9);
  border-radius: 12px;
  padding: 24px;
  background: rgba(148, 51, 153, 0.1);
  position: relative;
}

.frst .clients-quote strong {
  color: #fff;
  font-weight: 700;
}

.frst .clients-outcome {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.frst .clients-outcome-label {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(203, 131, 187, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.frst .clients-outcome-val {
  font-size: 24px;
  font-weight: 900;
  color: #CB83BB;
  line-height: 1.2;
}

.frst .clients-outcome-desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(216, 183, 195, 0.75);
}

.frst .profctx {
  background: #f5eef8;
  padding: 80px 0;
  position: relative;
}

.frst .profctx-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.frst .profctx-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.frst .profctx-eyebrow {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #943399;
  display: block;
}

.frst .profctx-h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  color: #1a0020;
  margin: 0;
}

.frst .profctx-body {
  font-size: 16px;
  line-height: 1.7;
  color: #3a1a40;
  margin: 0;
}

.frst .profctx-body a {
  color: #943399;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s ease-in-out;
}

.frst .profctx-body a:hover {
  color: #6b1f70;
}

.frst .profctx-imgrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.frst .profctx-imgbox {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 40px -1px rgba(148, 51, 153, 0.10);
}

.frst .profctx-imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.frst .profctx-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.frst .profctx-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.frst .profctx-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10);
  text-align: right;
  border-top: 3px solid #943399;
  transition: box-shadow 0.32s cubic-bezier(0.4, 0, 0.2, 1), transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.frst .profctx-card:hover {
  box-shadow: 0 10px 40px -1px rgba(148, 51, 153, 0.10);
  transform: translateY(-3px);
}

.frst .profctx-card-h {
  font-size: 18px;
  font-weight: 900;
  color: #1a0020;
  line-height: 1.2;
  margin: 0 0 8px 0;
}

.frst .profctx-card-p {
  font-size: 14px;
  line-height: 1.7;
  color: #3a1a40;
  margin: 0;
}

.frst .profctx-accent {
  font-size: 18px;
  line-height: 1.7;
  color: #3a1a40;
  background: linear-gradient(135deg, rgba(148, 51, 153, 0.08) 0%, rgba(216, 183, 195, 0.22) 100%);
  border-radius: 12px;
  padding: 24px;
}

.frst .profctx-accent strong {
  color: #943399;
}

.frst .profctx-rightborder {
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(148, 51, 153, 0.18), transparent);
}

.frst .ih-item {
  margin: 0 auto;
}

@media (max-width: 900px) {
  .frst .tblock {
    grid-template-columns: 1fr;
  }

  .frst .tblock-imgzone {
    display: none;
  }

  .frst .tblock-textzone {
    padding: 80px 24px;
  }

  .frst .tblock-h1 {
    font-size: 36px;
  }

  .frst .relat-grid {
    grid-template-columns: 1fr;
  }

  .frst .relat-text {
    padding-right: 0;
  }

  .frst .clients-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .frst .clients-outcome {
    text-align: center;
  }

  .frst .profctx-inner {
    grid-template-columns: 1fr;
  }

  .frst .profctx-imgrow {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .frst .tblock-h1 {
    font-size: 36px;
  }

  .frst .relat-steps {
    gap: 24px;
  }

  .frst .clients-row {
    padding: 24px;
  }

  .frst .profctx-imgrow {
    grid-template-columns: 1fr;
  }

  .frst .clients-h2,
  .frst .relat-h2,
  .frst .profctx-h2 {
    font-size: 24px;
  }
}

@media (min-width: 1200px) {
  .frst .tblock-h1 {
    font-size: 70px;
  }
}

.successPage {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: linear-gradient(158deg, #ffffff 0%, #f5e8f5 60%, #ede0ea 100%);
}

.successPage .successWrap {
  max-width: 1140px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.successPage .successCard {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 2px 2px -1px rgba(148, 51, 153, 0.07), 0 6px 14px -1px rgba(148, 51, 153, 0.10), 0 10px 40px -1px rgba(148, 51, 153, 0.10);
  padding: 80px 80px;
  max-width: 640px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.successPage .successCard .iconWrap {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: linear-gradient(158deg, #943399 0%, #CB83BB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10), 0 10px 40px -1px rgba(148, 51, 153, 0.10);
  flex-shrink: 0;
}

.successPage .successCard .iconWrap svg {
  display: block;
}

.successPage .successCard .successTitle {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  color: #1b1035;
  margin: 0;
  letter-spacing: -0.5px;
}

.successPage .successCard .successSub {
  font-size: 18px;
  line-height: 1.7;
  color: #3d2a4a;
  margin: 0;
  max-width: 480px;
}

.successPage .successCard .successDivider {
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #943399 0%, #CB83BB 100%);
}

.successPage .successCard .successDetail {
  font-size: 16px;
  line-height: 1.5;
  color: #5a4068;
  margin: 0;
}

.successPage .successCard .successDetail span {
  color: #943399;
  font-weight: 700;
}

.successPage .successActions {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.successPage .successActions .btnPrimary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: 12px;
  border: none;
  background: #943399;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 2px -1px rgba(148, 51, 153, 0.07), 0 6px 14px -1px rgba(148, 51, 153, 0.10);
}

.successPage .successActions .btnPrimary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #CB83BB 0%, #943399 100%);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  z-index: 0;
}

.successPage .successActions .btnPrimary:hover::before {
  transform: translateX(0);
}

.successPage .successActions .btnPrimary:hover {
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10), 0 10px 40px -1px rgba(148, 51, 153, 0.10);
}

.successPage .successActions .btnPrimary:focus-visible {
  outline: 2px solid #943399;
  outline-offset: 3px;
}

.successPage .successActions .btnPrimary span {
  position: relative;
  z-index: 1;
}

.successPage .successActions .btnSecondary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: 12px;
  border: 2px solid #943399;
  background: transparent;
  color: #943399;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.25s ease-in-out, border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

.successPage .successActions .btnSecondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #943399;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.successPage .successActions .btnSecondary:hover::before {
  transform: translateX(0);
}

.successPage .successActions .btnSecondary:hover {
  color: #ffffff;
  box-shadow: 0 6px 14px -1px rgba(148, 51, 153, 0.10);
}

.successPage .successActions .btnSecondary:focus-visible {
  outline: 2px solid #943399;
  outline-offset: 3px;
}

.successPage .successActions .btnSecondary span {
  position: relative;
  z-index: 1;
}

.successPage .successNote {
  font-size: 14px;
  line-height: 1.5;
  color: #7a5e88;
  text-align: center;
  max-width: 480px;
  margin: 0;
}

.successPage .successNote a {
  color: #943399;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid #CB83BB;
  transition: border-color 0.25s ease-in-out, color 0.25s ease-in-out;
}

.successPage .successNote a:hover {
  color: #CB83BB;
  border-color: #943399;
}

@media (max-width: 600px) {
  .successPage {
    padding: 40px 24px;
  }

  .successPage .successCard {
    padding: 40px 24px;
  }

  .successPage .successCard .successTitle {
    font-size: 24px;
  }

  .successPage .successCard .successSub {
    font-size: 16px;
  }

  .successPage .successActions {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .successPage .successActions .btnPrimary,
  .successPage .successActions .btnSecondary {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .successPage .successCard {
    padding: 40px 40px;
  }
}