html {
  box-sizing: border-box;
  font-size: 100%;
}

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

body {
  margin: 0;
  position: relative;
  min-height: 100vh;
}

.skip-anchor {
  position: absolute;
  left: -9999px;
}

.hx-frame {
  background: linear-gradient(160deg, #ffffff 0%, #EEE9F0 55%, #D0C9DC 100%);
  padding: 20px 40px 0 40px;
  border-bottom: 1.5px solid #D0C9DC;
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
  font-family: 'Cabin', sans-serif;
  position: relative;
  overflow: hidden;
}

.hx-frame::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(147, 108, 179, 0.06) 100%);
  pointer-events: none;
}

.hx-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #936CB3 0%, #D0C9DC 60%, transparent 100%);
  pointer-events: none;
}

.hx-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1366px;
  margin: 0 auto;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(147, 108, 179, 0.15);
  gap: 40px;
}

.hx-brand-pod {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.hx-logo-hex {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background-color: #ffffff;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
  border: none;
  outline: 2px solid rgba(147, 108, 179, 0.18);
  outline-offset: 2px;
  padding: 8px;
}

.hx-logo-hex img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.hx-tagline-pod {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hx-tagline-pod .hx-tag-label {
  font-size: 15px;
  font-weight: 600;
  color: #2d1a42;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.hx-tagline-pod .hx-tag-sub {
  font-size: 15px;
  font-weight: 400;
  color: #5a3d78;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.hx-contact-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.hx-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cabin', sans-serif;
  font-size: 15px;
  color: #3d2257;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.4;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.hx-contact-item:hover {
  color: #936CB3;
  border-color: rgba(147, 108, 179, 0.3);
  background-color: rgba(147, 108, 179, 0.05);
}

.hx-contact-item:focus {
  outline: none;
  color: #ffffff;
  background-color: #2d1a42;
  border-color: #2d1a42;
}

.hx-contact-item i {
  font-size: 16px;
  color: #936CB3;
  flex-shrink: 0;
}

.hx-divider-v {
  width: 1px;
  height: 32px;
  background: rgba(147, 108, 179, 0.25);
  flex-shrink: 0;
}

.hx-nav-deck {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0;
}

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

.hx-nav-list li {
  display: flex;
}

.hx-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cabin', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #3d2257;
  text-decoration: none;
  padding: 20px 20px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  border-bottom: 3px solid transparent;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
}

.hx-nav-link i {
  font-size: 16px;
  color: #936CB3;
  flex-shrink: 0;
}

.hx-nav-link:hover {
  color: #936CB3;
  border-bottom-color: #936CB3;
  background-color: rgba(147, 108, 179, 0.04);
}

.hx-nav-link:focus {
  outline: none;
  color: #ffffff;
  background-color: #2d1a42;
  border-bottom-color: #2d1a42;
}

.hx-nav-link.active {
  color: #936CB3;
  border-bottom-color: #936CB3;
}

.hx-nav-sep {
  width: 1px;
  background: rgba(147, 108, 179, 0.12);
  margin: 8px 0;
  align-self: stretch;
}

@media (max-width: 1024px) {
  .hx-frame {
    padding: 20px 20px 0 20px;
  }

  .hx-top {
    gap: 20px;
  }

  .hx-contact-strip {
    gap: 8px;
  }

  .hx-nav-link {
    padding: 20px 12px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .hx-top {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hx-contact-strip {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hx-divider-v {
    display: none;
  }

  .hx-nav-link {
    padding: 16px 8px;
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .hx-frame {
    padding: 20px 20px 0 20px;
  }

  .hx-contact-strip {
    width: 100%;
  }

  .hx-nav-list {
    gap: 0;
  }

  .hx-nav-link {
    padding: 16px 8px;
    white-space: normal;
    font-size: 15px;
  }
}

.ft-frame {
  background: #ffffff;
  border-top: 2px solid #D0C9DC;
  font-family: 'Cabin', sans-serif;
  box-shadow: 1px 12px 52px 0 rgba(147, 108, 179, 0.12) inset;
}

.ft-top-bar {
  background: linear-gradient(90deg, #EEE9F0 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(147, 108, 179, 0.18);
  padding: 20px 40px;
}

.ft-top-bar-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ft-brand-phrase {
  font-size: 15px;
  font-weight: 600;
  color: #3d2257;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.ft-brand-phrase span {
  color: #936CB3;
}

.ft-top-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ft-top-link {
  font-family: 'Cabin', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #5a3d78;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.4;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.ft-top-link:hover {
  color: #936CB3;
  border-bottom-color: #936CB3;
}

.ft-top-link:focus {
  outline: none;
  color: #ffffff;
  background-color: #2d1a42;
  padding: 4px 8px;
  border-radius: 2px;
  border-bottom-color: transparent;
}

.ft-cols {
  max-width: 1366px;
  margin: 0 auto;
  padding: 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

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

.ft-logo-cell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ft-logo-hex {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #ffffff;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  box-shadow: 1px 2px 6px 0 rgba(147, 108, 179, 0.05);
  outline: 2px solid rgba(147, 108, 179, 0.2);
  outline-offset: 2px;
  padding: 8px;
}

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

.ft-brand-desc {
  font-size: 15px;
  font-weight: 400;
  color: #5a3d78;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

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

.ft-col-label {
  font-size: 15px;
  font-weight: 700;
  color: #2d1a42;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.15;
  padding-bottom: 8px;
  border-bottom: 1.5px solid rgba(147, 108, 179, 0.25);
}

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

.ft-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.ft-contact-list i {
  font-size: 16px;
  color: #936CB3;
  margin-top: 2px;
  flex-shrink: 0;
}

.ft-contact-list a,
.ft-contact-list span {
  font-family: 'Cabin', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #3d2257;
  text-decoration: none;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.ft-contact-list a:hover {
  color: #936CB3;
}

.ft-contact-list a:focus {
  outline: none;
  color: #ffffff;
  background-color: #2d1a42;
  border-radius: 2px;
  padding: 0 4px;
}

.ft-email-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cabin', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #936CB3;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.4;
  padding: 8px 20px;
  border: 1.5px solid rgba(147, 108, 179, 0.4);
  border-radius: 6px;
  background: rgba(147, 108, 179, 0.04);
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 8px;
  align-self: flex-start;
}

.ft-email-highlight:hover {
  background-color: rgba(147, 108, 179, 0.1);
  border-color: #936CB3;
  color: #5a3d78;
}

.ft-email-highlight:focus {
  outline: none;
  background-color: #2d1a42;
  color: #ffffff;
  border-color: #2d1a42;
}

.ft-col-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.ft-nav-list li {
  display: flex;
}

.ft-nav-list a {
  font-family: 'Cabin', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #3d2257;
  text-decoration: none;
  line-height: 1.6;
  letter-spacing: 0.01em;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ft-nav-list a:hover {
  color: #936CB3;
  border-bottom-color: rgba(147, 108, 179, 0.35);
}

.ft-nav-list a:focus {
  outline: none;
  color: #ffffff;
  background-color: #2d1a42;
  border-radius: 2px;
  padding: 4px 8px;
  border-bottom-color: transparent;
}

.ft-bottom {
  border-top: 1px solid rgba(147, 108, 179, 0.18);
  padding: 20px 40px;
  background: #EEE9F0;
}

.ft-bottom-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ft-copy {
  font-size: 15px;
  font-weight: 400;
  color: #5a3d78;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

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

.ft-legal-links a {
  font-family: 'Cabin', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #5a3d78;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.4;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.ft-legal-links a:hover {
  color: #936CB3;
}

.ft-legal-links a:focus {
  outline: none;
  color: #ffffff;
  background-color: #2d1a42;
  border-radius: 2px;
  padding: 2px 8px;
}

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

  .ft-col-brand {
    grid-column: 1 / -1;
  }

  .ft-top-bar {
    padding: 20px;
  }

  .ft-bottom {
    padding: 20px;
  }
}

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

  .ft-top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

.ck-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4000;
  background: #ffffff;
  border-bottom: 2px solid #D0C9DC;
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
  font-family: 'Cabin', sans-serif;
  display: none;
}

.ck-bar-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ck-icon-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(147, 108, 179, 0.08);
  border-radius: 12px;
  flex-shrink: 0;
}

.ck-icon-cell i {
  font-size: 20px;
  color: #936CB3;
}

.ck-text-pod {
  flex: 1;
  min-width: 200px;
}

.ck-choice {
  font-size: 15px;
  font-weight: 600;
  color: #2d1a42;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.ck-detail {
  font-size: 15px;
  font-weight: 400;
  color: #5a3d78;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin-top: 4px;
}

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

.ck-btn {
  font-family: 'Cabin', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  border: 1.5px solid #936CB3;
  min-height: 44px;
  min-width: 120px;
  transition: background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.ck-btn-accept:hover {
  background: #7a5698;
}

.ck-btn-accept:focus {
  outline: none;
  background: #2d1a42;
  border-color: #2d1a42;
  color: #ffffff;
}

.ck-btn-decline {
  background: #ffffff;
  color: #936CB3;
}

.ck-btn-decline:hover {
  background: rgba(147, 108, 179, 0.08);
}

.ck-btn-decline:focus {
  outline: none;
  background: #2d1a42;
  border-color: #2d1a42;
  color: #ffffff;
}

@media (max-width: 640px) {
  .ck-bar-inner {
    padding: 20px;
  }

  .ck-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

.policy-container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 40px;
  color: #2a2035;
}

.policy-container h1 {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #1e1528;
  margin-bottom: 40px;
  margin-top: 0;
  padding-bottom: 20px;
  border-bottom: 2px solid #EEE9F0;
}

.policy-container h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1e1528;
  margin-top: 80px;
  margin-bottom: 20px;
}

.policy-container h3 {
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #2a2035;
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-container h4 {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: #2a2035;
  margin-top: 40px;
  margin-bottom: 8px;
}

.policy-container h5 {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #4a3d5c;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 8px;
}

.policy-container h6 {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #6a5880;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 8px;
}

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

.policy-container ul,
.policy-container ol {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 40px;
}

.policy-container ul {
  list-style: none;
  padding-left: 20px;
}

.policy-container ol {
  list-style: decimal;
}

.policy-container ul li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #2a2035;
  margin-bottom: 8px;
}

.policy-container ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background-color: #936CB3;
  transform: rotate(45deg);
}

.policy-container ol li {
  font-size: 16px;
  line-height: 1.6;
  color: #2a2035;
  margin-bottom: 8px;
  padding-left: 8px;
}

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

.policy-container ul ul li::before {
  background-color: transparent;
  border: 1.5px solid #936CB3;
}

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

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

.policy-container a {
  color: #936CB3;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    text-decoration-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-container a:hover {
  color: #6b4a8a;
  text-decoration-color: #936CB3;
}

.policy-container a:visited {
  color: #7a5a9a;
}

.policy-container table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.policy-container thead {
  background-color: #EEE9F0;
}

.policy-container thead tr {
  border-bottom: 2px solid #D0C9DC;
}

.policy-container tbody tr {
  border-bottom: 1px solid #EEE9F0;
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.policy-container tbody tr:hover {
  background-color: #f7f4fa;
}

.policy-container th {
  padding: 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4a3d5c;
}

.policy-container td {
  padding: 20px;
  text-align: left;
  color: #2a2035;
  vertical-align: top;
}

.policy-container div {
  margin-bottom: 20px;
}

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

@media (max-width: 1024px) {
  .policy-container {
    padding: 80px 40px;
  }

  .policy-container h1 {
    font-size: 48px;
  }

  .policy-container h2 {
    font-size: 34px;
  }
}

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

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

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

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

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

  .policy-container table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 6px;
  }

  .policy-container th,
  .policy-container td {
    padding: 20px 8px;
    min-width: 120px;
  }
}

@media (max-width: 640px) {
  .policy-container {
    padding: 40px 20px;
  }

  .policy-container h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .policy-container h2 {
    font-size: 20px;
    margin-top: 40px;
  }

  .policy-container h3 {
    font-size: 16px;
    margin-top: 20px;
  }

  .policy-container h4,
  .policy-container h5,
  .policy-container h6 {
    font-size: 15px;
    margin-top: 20px;
  }

  .policy-container ul,
  .policy-container ol {
    padding-left: 20px;
  }

  .policy-container ul li {
    padding-left: 20px;
  }
}

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

.spd .pg-top {
  background: #EEE9F0;
  padding: 80px 40px 80px;
  position: relative;
}

.spd .pg-top::after {
  content: '';
  display: block;
  height: 2px;
  background: repeating-linear-gradient(90deg, #936CB3 0, #936CB3 8px, transparent 8px, transparent 16px);
  margin-top: 80px;
}

.spd .pg-top__grid {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
  max-width: 1366px;
  margin: 0 auto;
}

.spd .pg-top__text {
  flex: 1 1 0;
  min-width: 0;
}

.spd .pg-top__back {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: #936CB3;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.spd .pg-top__back:hover {
  color: #6b4a8a;
}

.spd .pg-top__back i {
  font-size: 16px;
}

.spd .pg-top__kicker {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.spd .pg-top__kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 40px;
  background: #936CB3;
  flex-shrink: 0;
}

.spd .pg-top__kicker-label {
  font-size: 15px;
  color: #936CB3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spd .pg-top__h1 {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1e1530;
  margin: 0 0 20px;
}

.spd .pg-top__h1 span {
  background: conic-gradient(from 210deg at 30% 60%, #936CB3, #D0C9DC, #936CB3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.spd .pg-top__meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.spd .pg-top__meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #4a3d5e;
  letter-spacing: 0.01em;
}

.spd .pg-top__meta-item i {
  color: #936CB3;
  font-size: 16px;
}

.spd .pg-top__img-col {
  flex: 0 0 420px;
  max-width: 420px;
}

.spd .pg-top__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 1px 12px 52px 0 rgba(147, 108, 179, 0.12);
}

.spd .pg-top__img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(147, 108, 179, 0.32) 0%, transparent 60%);
  z-index: 1;
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.spd .pg-top__img-wrap:hover::before {
  opacity: 0;
}

.spd .pg-top__img-wrap img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.spd .pg-top__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 56px 56px 0;
  border-color: transparent #936CB3 transparent transparent;
  z-index: 2;
}

.spd .price-bar {
  background: #fff;
  border: 1.5px dashed #936CB3;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
}

.spd .price-bar__amount {
  font-size: 34px;
  line-height: 1.15;
  color: #1e1530;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.spd .price-bar__note {
  font-size: 15px;
  color: #6a5a80;
  margin-top: 8px;
  line-height: 1.4;
}

.spd .price-bar__seats {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 15px;
  color: #936CB3;
  font-weight: 600;
}

.spd .price-bar__seats i {
  font-size: 16px;
}

.spd .price-bar__btn {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 20px 40px;
  background: #936CB3;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
  position: relative;
  overflow: hidden;
}

.spd .price-bar__btn:hover {
  background: #7a58a0;
  box-shadow: 1px 12px 52px 0 rgba(147, 108, 179, 0.12);
}

.spd .price-bar__btn:focus {
  outline: 3px solid #936CB3;
  outline-offset: 2px;
}

.spd .price-bar__btn:active {
  background: #6b4a8a;
}

.spd .desc-sec {
  padding: 80px 40px;
  background: #fff;
}

.spd .desc-sec__inner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.spd .desc-sec__body {
  flex: 1 1 0;
  min-width: 0;
}

.spd .desc-sec__h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1e1530;
  margin: 0 0 20px;
  text-align: center;
}

.spd .desc-sec__h2 .acc {
  color: #936CB3;
}

.spd .desc-sec__h2::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #936CB3;
  border-radius: 40px;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.spd .desc-sec__text {
  font-size: 16px;
  line-height: 1.6;
  color: #2e2240;
}

.spd .desc-sec__text p:first-child {
  font-size: 20px;
  line-height: 1.4;
  color: #1e1530;
}

.spd .desc-sec__text p {
  margin: 0 0 20px;
}

.spd .desc-sec__text h2 {
  font-size: 24px;
  line-height: 1.4;
  color: #1e1530;
  margin: 40px 0 8px;
  letter-spacing: -0.01em;
}

.spd .desc-sec__text ul,
.spd .desc-sec__text ol {
  padding-left: 20px;
  margin: 0 0 20px;
}

.spd .desc-sec__text li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: #2e2240;
}

.spd .desc-sec__text blockquote {
  border-top: 2px dashed #936CB3;
  border-bottom: 2px dashed #936CB3;
  margin: 40px 0;
  padding: 20px;
  background: #EEE9F0;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.6;
  color: #4a3d5e;
}

.spd .desc-sec__text figure {
  margin: 40px 0;
}

.spd .desc-sec__text figcaption {
  font-size: 15px;
  color: #6a5a80;
  margin-top: 8px;
}

.spd .desc-sec__text small {
  font-size: 15px;
  color: #6a5a80;
}

.spd .desc-sec__aside {
  flex: 0 0 300px;
  max-width: 300px;
}

.spd .aside-card {
  background: #EEE9F0;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 1px 2px 6px 0 rgba(147, 108, 179, 0.05);
  position: sticky;
  top: 40px;
}

.spd .aside-card__heading {
  font-size: 16px;
  color: #1e1530;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}

.spd .aside-card__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #2e2240;
  line-height: 1.4;
}

.spd .aside-card__item i {
  color: #936CB3;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.spd .prog-sec {
  background: #EEE9F0;
  padding: 80px 40px;
  position: relative;
}

.spd .prog-sec__topo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  border-radius: 0;
}

.spd .prog-sec__topo svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.045;
}

.spd .prog-sec__inner {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.spd .prog-sec__h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1e1530;
  margin: 0 0 8px;
  text-align: center;
}

.spd .prog-sec__h2 .acc {
  color: #936CB3;
}

.spd .prog-sec__h2::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #936CB3;
  border-radius: 40px;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.spd .prog-sec__sub {
  font-size: 16px;
  color: #4a3d5e;
  line-height: 1.6;
  margin: 0 0 40px;
  text-align: left;
  max-width: 640px;
}

.spd .prog-sec__body {
  font-size: 16px;
  line-height: 1.6;
  color: #2e2240;
}

.spd .prog-sec__body p {
  margin: 0 0 20px;
}

.spd .prog-sec__body h2 {
  font-size: 24px;
  line-height: 1.4;
  color: #1e1530;
  margin: 40px 0 8px;
  letter-spacing: -0.01em;
}

.spd .prog-sec__body ul,
.spd .prog-sec__body ol {
  padding-left: 20px;
  margin: 0 0 20px;
}

.spd .prog-sec__body li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: #2e2240;
}

.spd .prog-sec__body blockquote {
  border-top: 2px dashed #936CB3;
  border-bottom: 2px dashed #936CB3;
  margin: 40px 0;
  padding: 20px;
  background: #fff;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.6;
  color: #4a3d5e;
}

.spd .prog-sec__body strong {
  color: #1e1530;
  font-weight: 700;
}

.spd .prog-sec__body details {
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 8px;
  box-shadow: 1px 2px 6px 0 rgba(147, 108, 179, 0.05);
}

.spd .prog-sec__body summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #1e1530;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.spd .prog-sec__body summary::-webkit-details-marker {
  display: none;
}

.spd .prog-sec__body summary::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #936CB3;
  border-bottom: 2px solid #936CB3;
  transform: rotate(-45deg);
  flex-shrink: 0;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.spd .prog-sec__body details[open] summary::before {
  transform: rotate(45deg);
}

.spd .prog-sec__body figure {
  margin: 40px 0;
}

.spd .prog-sec__body figcaption {
  font-size: 15px;
  color: #6a5a80;
  margin-top: 8px;
}

.spd .prog-sec__body cite {
  font-style: italic;
  color: #6a5a80;
}

.spd .bottom-bar {
  padding: 40px 40px;
  background: #fff;
  border-top: 1.5px dashed #D0C9DC;
}

.spd .bottom-bar__inner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.spd .bottom-bar__back-top {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: #936CB3;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1.5px solid #D0C9DC;
  border-radius: 6px;
  padding: 8px 20px;
  transition: border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.spd .bottom-bar__back-top:hover {
  border-color: #936CB3;
  color: #6b4a8a;
}

.spd .bottom-bar__back-top i {
  font-size: 16px;
}

.spd .bottom-bar__link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: #4a3d5e;
  text-decoration: none;
  font-size: 15px;
  border-radius: 6px;
  padding: 8px 20px;
  border: 1.5px solid #D0C9DC;
  transition: border-color 0.22s cubic-bezier(0.0, 0, 0.2, 1), color 0.22s cubic-bezier(0.0, 0, 0.2, 1);
}

.spd .bottom-bar__link:hover {
  border-color: #936CB3;
  color: #936CB3;
}

.spd .bottom-bar__link i {
  font-size: 15px;
  opacity: 0;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.spd .bottom-bar__link:hover i {
  opacity: 1;
}

@media (max-width: 1024px) {
  .spd .pg-top__grid {
    flex-direction: column;
    gap: 40px;
  }

  .spd .pg-top__img-col {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .spd .pg-top__img-wrap img {
    height: 220px;
  }

  .spd .desc-sec__inner {
    flex-direction: column;
    gap: 40px;
  }

  .spd .desc-sec__aside {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .spd .aside-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .spd .pg-top {
    padding: 40px 20px 40px;
  }

  .spd .pg-top__h1 {
    font-size: 34px;
  }

  .spd .desc-sec {
    padding: 40px 20px;
  }

  .spd .prog-sec {
    padding: 40px 20px;
  }

  .spd .bottom-bar {
    padding: 20px;
  }

  .spd .bottom-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .spd .pg-top__meta {
    gap: 8px;
  }
}

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

  .spd .desc-sec__h2,
  .spd .prog-sec__h2 {
    font-size: 24px;
  }

  .spd .price-bar__amount {
    font-size: 24px;
  }
}

.aff-pg {
  position: relative;
  overflow-x: clip;
}

.aff-pg .radial-bg {
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(147, 108, 179, 0.07) 0%, transparent 72%);
}

.aff-pg .zigzag-bottom {
  position: relative;
}

.aff-pg .zigzag-bottom::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(135deg, #fff 25%, transparent 25%) -20px 0,
    linear-gradient(225deg, #fff 25%, transparent 25%) -20px 0,
    linear-gradient(315deg, #fff 25%, transparent 25%),
    linear-gradient(45deg, #fff 25%, transparent 25%);
  background-size: 40px 12px;
  background-color: transparent;
  z-index: 2;
}

.aff-pg .aff-lead {
  background: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.aff-pg .aff-lead::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(147, 108, 179, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 108, 179, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.aff-pg .aff-lead-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.aff-pg .aff-lead-text {
  padding: 40px 0 40px 20px;
}

.aff-pg .aff-lead-text .eyebrow {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #936CB3;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.aff-pg .aff-lead-text h1 {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1e1530;
  margin: 0 0 20px;
  font-weight: 700;
}

.aff-pg .aff-lead-text h1 .acc {
  color: #936CB3;
}

.aff-pg .aff-lead-text .lead-p {
  font-size: 20px;
  line-height: 1.6;
  color: #3a3048;
  margin: 0 0 40px;
}

.aff-pg .aff-lead-text .body-p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4060;
  margin: 0 0 20px;
}

.aff-pg .aff-lead-text .body-p:last-child {
  margin-bottom: 0;
}

.aff-pg .aff-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.aff-pg .aff-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.aff-pg .aff-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(147, 108, 179, 0.28) 0%, rgba(30, 21, 48, 0.55) 100%);
  border-radius: 12px;
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

.aff-pg .aff-img-wrap:hover::before {
  opacity: 0.1;
}

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

.aff-pg .aff-img-wrap .img-border {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  pointer-events: none;
}

.aff-pg .aff-img-wrap:hover .img-border {
  border-color: #936CB3;
}

.aff-pg .aff-terms {
  background: #EEE9F0;
  padding: 80px 20px;
  position: relative;
}

.aff-pg .aff-terms-inner {
  max-width: 1366px;
  margin: 0 auto;
}

.aff-pg .aff-terms-inner .sec-label {
  font-size: 15px;
  color: #936CB3;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.aff-pg .aff-terms-inner h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1e1530;
  text-align: center;
  margin: 0 0 8px;
  font-weight: 700;
}

.aff-pg .aff-terms-inner h2 .acc {
  color: #936CB3;
}

.aff-pg .aff-terms-inner .sec-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 40px;
  background: #936CB3;
  margin: 0 auto 40px;
}

.aff-pg .terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.aff-pg .term-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.aff-pg .term-card:hover {
  box-shadow: 1px 12px 52px 0 rgba(147, 108, 179, 0.12);
  transform: translateY(-4px);
}

.aff-pg .term-card .tc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: conic-gradient(from 220deg at 30% 70%, #EEE9F0 0%, #D0C9DC 40%, #936CB3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: #fff;
}

.aff-pg .term-card h4 {
  font-size: 16px;
  line-height: 1.4;
  color: #1e1530;
  font-weight: 700;
  margin: 0 0 8px;
}

.aff-pg .term-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4060;
  margin: 0;
}

.aff-pg .terms-note {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 1px 2px 6px 0 rgba(147, 108, 179, 0.05);
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 40px;
  align-items: center;
}

.aff-pg .terms-note h4 {
  font-size: 20px;
  line-height: 1.4;
  color: #1e1530;
  font-weight: 700;
  margin: 0 0 8px;
}

.aff-pg .terms-note p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4060;
  margin: 0;
}

.aff-pg .terms-note .tn-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aff-pg .stat-bar-item .sb-label {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #3a3048;
  font-weight: 600;
  margin-bottom: 8px;
}

.aff-pg .stat-bar-item .sb-track {
  height: 8px;
  border-radius: 40px;
  background: #EEE9F0;
  overflow: hidden;
}

.aff-pg .stat-bar-item .sb-fill {
  height: 100%;
  border-radius: 40px;
  background: linear-gradient(90deg, #D0C9DC 0%, #936CB3 100%);
  animation: bar-grow 1.1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

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

  to {}
}

.aff-pg .aff-steps {
  background: #1e1530;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.aff-pg .aff-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 40px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(147, 108, 179, 0.18) 0%, transparent 70%);
  pointer-events: none;
  animation: ring-pulse 4s cubic-bezier(0.0, 0, 0.2, 1) infinite;
}

@keyframes ring-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.5;
  }

  60% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.18;
  }

  100% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.5;
  }
}

.aff-pg .aff-steps-inner {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
}

.aff-pg .aff-steps-inner .sec-label {
  font-size: 15px;
  color: #D0C9DC;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.aff-pg .aff-steps-inner h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  text-align: center;
  margin: 0 0 8px;
  font-weight: 700;
}

.aff-pg .aff-steps-inner h2 .acc {
  color: #D0C9DC;
}

.aff-pg .aff-steps-inner .sec-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 40px;
  background: #936CB3;
  margin: 0 auto 40px;
}

.aff-pg .steps-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.aff-pg .step-item {
  padding: 40px 20px;
  border-radius: 12px;
  background: rgba(147, 108, 179, 0.08);
  border: 1px solid rgba(208, 201, 220, 0.15);
  transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  animation: step-appear 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.aff-pg .step-item:nth-child(1) {
  animation-delay: 0.05s;
}

.aff-pg .step-item:nth-child(2) {
  animation-delay: 0.12s;
  animation-name: step-appear-r;
}

.aff-pg .step-item:nth-child(3) {
  animation-delay: 0.19s;
}

.aff-pg .step-item:nth-child(4) {
  animation-delay: 0.26s;
  animation-name: step-appear-r;
}

@keyframes step-appear {
  from {
    opacity: 0;
    transform: rotate(-3deg) translateY(12px);
  }

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

@keyframes step-appear-r {
  from {
    opacity: 0;
    transform: rotate(3deg) translateY(12px);
  }

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

.aff-pg .step-item:hover {
  background: rgba(147, 108, 179, 0.16);
  border-color: rgba(208, 201, 220, 0.35);
}

.aff-pg .step-item .st-num {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  color: rgba(208, 201, 220, 0.2);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.aff-pg .step-item h4 {
  font-size: 16px;
  line-height: 1.4;
  color: #EEE9F0;
  font-weight: 700;
  margin: 0 0 8px;
}

.aff-pg .step-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #a898c0;
  margin: 0;
}

.aff-pg .aff-contact {
  background: #fff;
  padding: 80px 20px;
  position: relative;
}

.aff-pg .aff-contact-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 80px;
  align-items: start;
}

.aff-pg .aff-contact-left .sec-label {
  font-size: 15px;
  color: #936CB3;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.aff-pg .aff-contact-left h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1e1530;
  font-weight: 700;
  margin: 0 0 8px;
}

.aff-pg .aff-contact-left h2 .acc {
  color: #936CB3;
}

.aff-pg .aff-contact-left .sec-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 40px;
  background: #936CB3;
  margin: 0 0 20px;
}

.aff-pg .aff-contact-left p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4060;
  margin: 0 0 20px;
}

.aff-pg .aff-contact-left p:last-of-type {
  margin-bottom: 40px;
}

.aff-pg .contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aff-pg .ci-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.aff-pg .ci-row .ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EEE9F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #936CB3;
  flex-shrink: 0;
  transition: background 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.aff-pg .ci-row:hover .ci-icon {
  background: #D0C9DC;
}

.aff-pg .ci-row .ci-text {
  font-size: 15px;
  line-height: 1.4;
  color: #3a3048;
}

.aff-pg .ci-row .ci-text a {
  color: #3a3048;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.aff-pg .ci-row .ci-text a .lnk-icon {
  opacity: 0;
  font-size: 13px;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.aff-pg .ci-row .ci-text a:hover {
  color: #936CB3;
}

.aff-pg .ci-row .ci-text a:hover .lnk-icon {
  opacity: 1;
}

.aff-pg .aff-contact-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aff-pg .faq-item {
  border-radius: 12px;
  background: #EEE9F0;
  padding: 20px 40px;
  box-shadow: 1px 2px 6px 0 rgba(147, 108, 179, 0.05);
  box-shadow: inset 0 2px 6px 0 rgba(147, 108, 179, 0.04);
}

.aff-pg .faq-item h5 {
  font-size: 16px;
  line-height: 1.4;
  color: #1e1530;
  font-weight: 700;
  margin: 0 0 8px;
}

.aff-pg .faq-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4060;
  margin: 0;
}

.aff-pg .svg-divider {
  display: block;
  line-height: 0;
  overflow: hidden;
}

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

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

  .aff-pg .aff-lead-text {
    padding: 0;
  }

  .aff-pg .aff-img-wrap img {
    height: 340px;
  }

  .aff-pg .terms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aff-pg .terms-note {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .aff-pg .steps-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .aff-pg .aff-contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .aff-pg .aff-lead-text h1 {
    font-size: 34px;
  }

  .aff-pg .terms-grid {
    grid-template-columns: 1fr;
  }

  .aff-pg .steps-list {
    grid-template-columns: 1fr;
  }

  .aff-pg .aff-lead {
    padding: 40px 20px;
  }

  .aff-pg .aff-terms {
    padding: 40px 20px;
  }

  .aff-pg .aff-steps {
    padding: 40px 20px;
  }

  .aff-pg .aff-contact {
    padding: 40px 20px;
  }

  .aff-pg .terms-note {
    padding: 20px;
  }

  .aff-pg .faq-item {
    padding: 20px;
  }
}

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

  .aff-pg .aff-lead-text .lead-p {
    font-size: 16px;
  }

  .aff-pg .aff-steps-inner h2,
  .aff-pg .aff-terms-inner h2,
  .aff-pg .aff-contact-left h2 {
    font-size: 24px;
  }
}

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

.ctus-pg .slide-up {
  animation: slideUp 0.45s cubic-bezier(0.0, 0, 0.2, 1) both;
}

.ctus-pg .slide-up-d1 {
  animation-delay: 0.08s;
}

.ctus-pg .slide-up-d2 {
  animation-delay: 0.18s;
}

.ctus-pg .slide-up-d3 {
  animation-delay: 0.28s;
}

.ctus-pg .slide-up-d4 {
  animation-delay: 0.38s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

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

.ctus-pg .pg-frame {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 640px) {
  .ctus-pg .pg-frame {
    padding: 0 20px;
  }
}

.ctus-pg .grad-div {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #936CB3 50%, transparent 100%);
  border: none;
  margin: 0;
}

.ctus-pg .accent-word {
  color: #936CB3;
}

.ctus-pg .dot-acc {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #936CB3;
  border-radius: 40px;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.ctus-pg .tag-badge {
  display: inline-block;
  background: #EEE9F0;
  color: #936CB3;
  font-size: 15px;
  font-weight: 600;
  padding: 4px 20px;
  border-radius: 2px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ctus-pg .frame-lines {
  position: relative;
  padding: 40px;
}

.ctus-pg .frame-lines::before,
.ctus-pg .frame-lines::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  border-top: 1.5px solid #936CB3;
  border-left: 1.5px solid #936CB3;
  pointer-events: none;
}

.ctus-pg .frame-lines::after {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  border-top: none;
  border-left: none;
  border-bottom: 1.5px solid #936CB3;
  border-right: 1.5px solid #936CB3;
}

@media (max-width: 640px) {
  .ctus-pg .frame-lines {
    padding: 20px;
  }
}

.ctus-pg .ttl-blk {
  background: #EEE9F0;
  padding: 80px 0 80px;
}

.ctus-pg .ttl-blk .ttl-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.ctus-pg .ttl-blk h1 {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1e1630;
  margin: 0;
  font-weight: 800;
}

@media (max-width: 768px) {
  .ctus-pg .ttl-blk h1 {
    font-size: 34px;
  }
}

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

  .ctus-pg .ttl-blk {
    padding: 40px 0;
  }
}

.ctus-pg .ttl-blk .ttl-sub {
  font-size: 20px;
  line-height: 1.6;
  color: #3d3050;
  max-width: 620px;
  margin: 0;
  text-align: left;
}

@media (max-width: 640px) {
  .ctus-pg .ttl-blk .ttl-sub {
    font-size: 16px;
  }
}

.ctus-pg .form-sec {
  padding: 80px 0;
  background: #fff;
}

.ctus-pg .form-sec .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 1024px) {
  .ctus-pg .form-sec .form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.ctus-pg .form-sec h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1e1630;
  margin: 0 0 8px 0;
  font-weight: 700;
  text-align: center;
}

.ctus-pg .form-sec .form-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #3d3050;
  margin: 0 0 40px 0;
  text-align: left;
}

.ctus-pg .form-sec .form-desc strong {
  color: #1e1630;
}

.ctus-pg .frm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

@media (max-width: 640px) {
  .ctus-pg .frm .field-row {
    grid-template-columns: 1fr;
  }
}

.ctus-pg .frm .fld {
  position: relative;
}

.ctus-pg .frm .fld input,
.ctus-pg .frm .fld textarea {
  width: 100%;
  border: 1.5px solid #D0C9DC;
  border-radius: 6px;
  background: #fff;
  color: #1e1630;
  font-size: 16px;
  line-height: 1.4;
  padding: 20px 20px 8px;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 1px 2px 6px 0 rgba(147, 108, 179, 0.05);
  box-sizing: border-box;
}

.ctus-pg .frm .fld textarea {
  resize: vertical;
  min-height: 120px;
}

.ctus-pg .frm .fld input:focus,
.ctus-pg .frm .fld textarea:focus {
  border-color: #936CB3;
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
}

.ctus-pg .frm .fld label {
  position: absolute;
  left: 20px;
  top: 14px;
  font-size: 16px;
  color: #7a6e8a;
  pointer-events: none;
  transition: top 0.18s cubic-bezier(0.4, 0, 0.2, 1), font-size 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus-pg .frm .fld input:focus+label,
.ctus-pg .frm .fld input:not(:placeholder-shown)+label,
.ctus-pg .frm .fld textarea:focus+label,
.ctus-pg .frm .fld textarea:not(:placeholder-shown)+label {
  top: 5px;
  font-size: 15px;
  color: #936CB3;
}

.ctus-pg .frm .fld input::placeholder,
.ctus-pg .frm .fld textarea::placeholder {
  color: transparent;
}

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

.ctus-pg .chk-grp .chk-lbl {
  font-size: 15px;
  font-weight: 600;
  color: #1e1630;
  margin-bottom: 4px;
  display: block;
}

.ctus-pg .chk-grp .chk-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1.5px solid #EEE9F0;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus-pg .chk-grp .chk-item:hover {
  border-color: #D0C9DC;
  background: #EEE9F0;
}

.ctus-pg .chk-grp .chk-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #936CB3;
  flex-shrink: 0;
  cursor: pointer;
}

.ctus-pg .chk-grp .chk-item span {
  font-size: 15px;
  color: #3d3050;
  line-height: 1.4;
}

.ctus-pg .prv-chk {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
}

.ctus-pg .prv-chk input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #936CB3;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.ctus-pg .prv-chk .prv-txt {
  font-size: 15px;
  color: #3d3050;
  line-height: 1.6;
}

.ctus-pg .prv-chk .prv-txt a {
  color: #936CB3;
  text-decoration: underline;
  text-decoration-color: rgba(147, 108, 179, 0.4);
  transition: text-decoration-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus-pg .prv-chk .prv-txt a:hover {
  text-decoration-color: #936CB3;
}

.ctus-pg .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #936CB3;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 12px;
  padding: 20px 40px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
  align-self: flex-start;
}

.ctus-pg .btn-submit:hover {
  background: #7d58a0;
  box-shadow: 1px 12px 52px 0 rgba(147, 108, 179, 0.12);
}

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

.ctus-pg .btn-submit:active {
  background: #6b499c;
}

.ctus-pg .btn-submit .ripple-origin {
  position: absolute;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.25);
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  animation: rippleAnim 0.5s cubic-bezier(0.0, 0, 0.2, 1) forwards;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.ctus-pg .contact-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ctus-pg .contact-panel h3 {
  font-size: 24px;
  line-height: 1.15;
  color: #1e1630;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-align: center;
}

.ctus-pg .contact-panel .contact-card {
  background: #EEE9F0;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 1px 2px 6px 0 rgba(147, 108, 179, 0.05);
  position: relative;
}

.ctus-pg .contact-panel .contact-card .ctag {
  position: absolute;
  top: -1px;
  right: 20px;
  background: #936CB3;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 0 0 6px 6px;
  letter-spacing: 0.04em;
}

.ctus-pg .contact-panel .c-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}

.ctus-pg .contact-panel .c-row .c-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #936CB3;
  font-size: 20px;
  box-shadow: 1px 2px 6px 0 rgba(147, 108, 179, 0.05);
}

.ctus-pg .contact-panel .c-row .c-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ctus-pg .contact-panel .c-row .c-detail .c-lbl {
  font-size: 15px;
  color: #7a6e8a;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.ctus-pg .contact-panel .c-row .c-detail .c-val {
  font-size: 16px;
  color: #1e1630;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus-pg .contact-panel .c-row .c-detail a.c-val:hover {
  color: #936CB3;
}

.ctus-pg .contact-panel .c-row .c-detail .c-val-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ctus-pg .contact-panel .c-row .c-detail .c-val-link .lnk-icon {
  opacity: 0;
  font-size: 15px;
  transition: opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus-pg .contact-panel .c-row .c-detail a.c-val:hover .lnk-icon {
  opacity: 1;
}

.ctus-pg .img-strip {
  padding: 80px 0;
  background: #2a1e3f;
  position: relative;
  overflow: hidden;
}

.ctus-pg .img-strip .strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .ctus-pg .img-strip .strip-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.ctus-pg .img-strip .strip-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.ctus-pg .img-strip .strip-text h2 {
  font-size: 34px;
  line-height: 1.15;
  color: #fff;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

.ctus-pg .img-strip .strip-text .st-acc {
  color: #D0C9DC;
}

.ctus-pg .img-strip .strip-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #c4b8d8;
  margin: 0;
}

.ctus-pg .img-strip .strip-text p strong {
  color: #fff;
}

.ctus-pg .img-strip .steps-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ctus-pg .img-strip .steps-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding-bottom: 20px;
}

.ctus-pg .img-strip .steps-list li:last-child {
  padding-bottom: 0;
}

.ctus-pg .img-strip .steps-list li::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  width: 2px;
  height: calc(100% - 20px);
  background: rgba(147, 108, 179, 0.35);
  border-radius: 2px;
}

.ctus-pg .img-strip .steps-list li:last-child::after {
  display: none;
}

.ctus-pg .img-strip .steps-list .step-num {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #936CB3;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
}

.ctus-pg .img-strip .steps-list .step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
}

.ctus-pg .img-strip .steps-list .step-body strong {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}

.ctus-pg .img-strip .steps-list .step-body span {
  font-size: 15px;
  color: #c4b8d8;
  line-height: 1.6;
}

.ctus-pg .img-strip .strip-img-col {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 12px 52px 0 rgba(147, 108, 179, 0.12);
}

.ctus-pg .img-strip .strip-img-col img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) brightness(0.75);
  transition: filter 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus-pg .img-strip .strip-img-col:hover img {
  filter: grayscale(0%) brightness(0.9);
}

.ctus-pg .img-strip .strip-img-col .img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 30, 63, 0.45);
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.ctus-pg .img-strip .strip-img-col:hover .img-overlay {
  background: rgba(42, 30, 63, 0.1);
}

.ctus-pg .img-strip .strip-img-col .img-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .ctus-pg .img-strip .strip-img-col img {
    height: 280px;
  }
}

.ctus-pg .img-strip .dec-conic {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: conic-gradient(from 220deg at 70% 30%, rgba(147, 108, 179, 0.18) 0deg, rgba(208, 201, 220, 0.08) 120deg, transparent 200deg);
  border-radius: 40px;
  pointer-events: none;
}

.ctus-pg .img-strip .dec-line-h {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(147, 108, 179, 0.5) 50%, transparent 100%);
  pointer-events: none;
}

.stproj {
  max-width: 1366px;
  margin: 0 auto;
  overflow-x: hidden;
}

.stproj .pg-reveal {
  animation: riseIn 0.25s cubic-bezier(0.0, 0, 0.2, 1) both;
}

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

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

.stproj .pg-reveal:nth-child(2) {
  animation-delay: 0.07s;
}

.stproj .pg-reveal:nth-child(3) {
  animation-delay: 0.14s;
}

.stproj .pg-reveal:nth-child(4) {
  animation-delay: 0.21s;
}

/* TITLE BLOCK */
.stproj .tb {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px;
  padding: 80px 40px 80px;
  position: relative;
}

.stproj .tb__img-col {
  flex: 0 0 340px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
}

.stproj .tb__img-col img {
  width: 340px;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  filter: grayscale(12%) contrast(1.04);
  transition: filter 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.stproj .tb__img-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(147, 108, 179, 0.22);
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  pointer-events: none;
}

.stproj .tb__img-col:hover::after {
  opacity: 0;
}

.stproj .tb__img-col:hover img {
  filter: grayscale(0%) contrast(1);
}

.stproj .tb__img-col .tb__grain {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

.stproj .tb__text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.stproj .tb__bg-num {
  position: absolute;
  right: -20px;
  top: -20px;
  font-size: 160px;
  line-height: 1.15;
  color: rgba(147, 108, 179, 0.06);
  font-weight: 900;
  letter-spacing: -8px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.stproj .tb__label {
  font-size: 15px;
  line-height: 1.4;
  color: #936CB3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.stproj .tb__h1 {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #2a1f35;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}

.stproj .tb__h1 .acc {
  color: #936CB3;
}

.stproj .tb__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #4a3f56;
  max-width: 540px;
  position: relative;
  z-index: 1;
}

.stproj .tb__corner {
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.stproj .tb__corner--tl {
  top: 0;
  left: 0;
  border-top: 2px solid #936CB3;
  border-left: 2px solid #936CB3;
  border-radius: 2px 0 0 0;
}

.stproj .tb__corner--br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid #936CB3;
  border-right: 2px solid #936CB3;
  border-radius: 0 0 2px 0;
}

/* DIVIDER SVG ZIGZAG */
.stproj .zdiv {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block;
}

/* CARD GRID */
.stproj .grid-area {
  padding: 80px 40px;
  background: #fff;
}

.stproj .grid-area__head {
  margin-bottom: 40px;
}

.stproj .grid-area__head h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #2a1f35;
  margin: 0 0 8px;
}

.stproj .grid-area__head h2 .acc {
  color: #936CB3;
}

.stproj .grid-area__head p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a3f56;
  max-width: 520px;
}

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

.stproj .proj-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid #EEE9F0;
}

.stproj .proj-card:hover {
  box-shadow: 1px 12px 52px 0 rgba(147, 108, 179, 0.12);
  transform: translateY(-4px);
}

.stproj .proj-card__img-wrap {
  position: relative;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  height: 200px;
}

.stproj .proj-card__img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), filter 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(8%);
}

.stproj .proj-card__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(147, 108, 179, 0.18);
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.stproj .proj-card:hover .proj-card__img-overlay {
  opacity: 0;
}

.stproj .proj-card:hover .proj-card__img-wrap img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.stproj .proj-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #936CB3;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  padding: 4px 8px;
  border-radius: 6px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.stproj .proj-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 8px;
}

.stproj .proj-card__meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.stproj .proj-card__meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  line-height: 1.4;
  color: #6b5c7e;
}

.stproj .proj-card__meta-item i {
  font-size: 15px;
  color: #936CB3;
}

.stproj .proj-card__title {
  font-size: 20px;
  line-height: 1.4;
  color: #2a1f35;
  letter-spacing: -0.01em;
  margin: 0;
}

.stproj .proj-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3f56;
  margin: 0;
  flex: 1 1 auto;
}

.stproj .proj-card__footer {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.stproj .proj-card__price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stproj .proj-card__price {
  font-size: 24px;
  line-height: 1.15;
  color: #2a1f35;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stproj .proj-card__price-note {
  font-size: 15px;
  line-height: 1.4;
  color: #6b5c7e;
}

.stproj .proj-card__seats {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  line-height: 1.4;
  color: #936CB3;
  font-weight: 600;
}

.stproj .proj-card__seats i {
  font-size: 15px;
}

.stproj .proj-card__link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #936CB3;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stproj .proj-card__link:hover {
  background: #7a559a;
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.18);
}

.stproj .proj-card__link:focus-visible {
  outline: 2px solid #936CB3;
  outline-offset: 2px;
}

.stproj .proj-card__link i {
  font-size: 15px;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.stproj .proj-card__link:hover i {
  transform: translateX(3px);
}

/* DIAGONAL SPLIT SECTION */
.stproj .diag-split {
  position: relative;
  padding: 80px 40px;
  overflow: hidden;
}

.stproj .diag-split__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.stproj .diag-split__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(162deg, #EEE9F0 55%, #D0C9DC 55%);
}

.stproj .diag-split__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
}

.stproj .diag-split__text {
  flex: 1 1 0;
}

.stproj .diag-split__text h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #2a1f35;
  margin: 0 0 20px;
}

.stproj .diag-split__text h2 .acc {
  color: #936CB3;
}

.stproj .diag-split__text p {
  font-size: 16px;
  line-height: 1.6;
  color: #3b2e4a;
  margin: 0 0 20px;
}

.stproj .diag-split__text p.lead {
  font-size: 20px;
  line-height: 1.4;
  color: #2a1f35;
  margin-bottom: 20px;
}

.stproj .diag-split__qa {
  flex: 0 0 380px;
}

.stproj .qa-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
  border: 1.5px solid #EEE9F0;
  position: relative;
}

.stproj .qa-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: conic-gradient(from 220deg at 0% 50%, #936CB3, #D0C9DC, #936CB3);
  border-radius: 12px 12px 0 0;
}

.stproj .qa-card__q {
  font-size: 16px;
  line-height: 1.4;
  color: #2a1f35;
  font-weight: 700;
  margin: 0 0 8px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.stproj .qa-card__q i {
  color: #936CB3;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.stproj .qa-card__a {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3f56;
  margin: 0;
  padding-left: 28px;
}

.stproj .qa-card__divider {
  height: 1px;
  background: #EEE9F0;
  margin: 20px 0;
}

/* STATS STRIP */
.stproj .stats-strip {
  background: #2a1f35;
  padding: 40px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.stproj .stat-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
  border-right: 1px solid rgba(208, 201, 220, 0.18);
  gap: 8px;
}

.stproj .stat-item:last-child {
  border-right: none;
}

.stproj .stat-item__num {
  font-size: 48px;
  line-height: 1.15;
  color: #D0C9DC;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.stproj .stat-item__num .acc {
  color: #936CB3;
}

.stproj .stat-item__label {
  font-size: 15px;
  line-height: 1.4;
  color: #b8adc8;
  text-align: center;
  letter-spacing: 0.04em;
}

.stproj .stat-item i {
  font-size: 24px;
  color: #936CB3;
  margin-bottom: 4px;
}

/* PROCESS SECTION */
.stproj .process-sec {
  padding: 80px 40px;
  background: #EEE9F0;
}

.stproj .process-sec__head {
  text-align: center;
  margin-bottom: 40px;
}

.stproj .process-sec__head h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #2a1f35;
  margin: 0 0 8px;
}

.stproj .process-sec__head h2 .acc {
  color: #936CB3;
}

.stproj .process-sec__head p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a3f56;
}

.stproj .process-steps {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.stproj .pstep {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 1px 2px 6px 0 rgba(147, 108, 179, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.stproj .pstep:hover {
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.1);
}

.stproj .pstep__num {
  font-size: 34px;
  line-height: 1.15;
  color: rgba(147, 108, 179, 0.15);
  font-weight: 900;
  letter-spacing: -0.03em;
  position: absolute;
  top: 8px;
  right: 20px;
}

.stproj .pstep__icon {
  width: 40px;
  height: 40px;
  background: #EEE9F0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stproj .pstep__icon i {
  font-size: 20px;
  color: #936CB3;
}

.stproj .pstep h4 {
  font-size: 16px;
  line-height: 1.4;
  color: #2a1f35;
  margin: 0;
  font-weight: 700;
}

.stproj .pstep p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3f56;
  margin: 0;
}

.stproj .pstep__dot {
  width: 6px;
  height: 6px;
  border-radius: 40px;
  background: #936CB3;
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
}

/* TYPEWRITER */
.stproj .tw-label {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #936CB3;
  animation: twType 1.8s steps(28, end) 0.3s both, twBlink 0.7s step-end 2.1s infinite;
  max-width: 28ch;
  font-size: 15px;
  line-height: 1.4;
  color: #936CB3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes twType {
  from {
    width: 0;
  }

  to {
    width: 28ch;
  }
}

@keyframes twBlink {

  0%,
  100% {
    border-color: #936CB3;
  }

  50% {
    border-color: transparent;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .stproj .tb {
    flex-direction: column;
    padding: 40px 20px;
  }

  .stproj .tb__img-col {
    flex: 0 0 auto;
    width: 100%;
  }

  .stproj .tb__img-col img {
    width: 100%;
    height: 240px;
    min-height: 0;
  }

  .stproj .tb__bg-num {
    font-size: 100px;
  }

  .stproj .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stproj .diag-split__inner {
    flex-direction: column;
  }

  .stproj .diag-split__qa {
    flex: 0 0 auto;
    width: 100%;
  }

  .stproj .stats-strip {
    flex-wrap: wrap;
  }

  .stproj .stat-item {
    flex: 1 1 40%;
    border-right: none;
    border-bottom: 1px solid rgba(208, 201, 220, 0.18);
  }

  .stproj .stat-item:last-child {
    border-bottom: none;
  }
}

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

  .stproj .grid-area {
    padding: 40px 20px;
  }

  .stproj .process-sec {
    padding: 40px 20px;
  }

  .stproj .diag-split {
    padding: 40px 20px;
  }

  .stproj .stats-strip {
    padding: 40px 20px;
  }

  .stproj .tb__h1 {
    font-size: 34px;
  }

  .stproj .process-steps {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .stproj .proj-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .stproj .stat-item {
    flex: 1 1 100%;
  }

  .stproj .tb__h1 {
    font-size: 24px;
  }
}

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

.dbt .pg-wrap {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── SCHEMA ── */
/* ── SECTION 1: TITLE BLOCK ── */
.dbt .ttl-blk {
  position: relative;
  padding: 80px 20px;
  background: #f5f2f8;
  overflow: hidden;
}

.dbt .ttl-blk::before {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(from 210deg at 30% 60%, #EEE9F0 0deg, #D0C9DC 80deg, #936CB3 160deg, #EEE9F0 240deg, #D0C9DC 320deg, #EEE9F0 360deg);
  opacity: 0.22;
  animation: bg-glow 14s ease-in-out infinite alternate;
}

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

@keyframes bg-glow {
  0% {
    opacity: 0.18;
  }

  100% {
    opacity: 0.28;
  }
}

.dbt .ttl-inner {
  position: relative;
  z-index: 1;
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dbt .ttl-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dbt .ttl-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #936CB3;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
}

.dbt .ttl-label i {
  font-size: 15px;
}

.dbt .ttl-h1 {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1e1530;
  margin: 0;
}

.dbt .ttl-h1 .acc {
  color: #936CB3;
}

.dbt .ttl-sub {
  font-size: 20px;
  line-height: 1.6;
  color: #3d2f52;
  margin: 0;
}

.dbt .ttl-body {
  font-size: 16px;
  line-height: 1.6;
  color: #4a3d5c;
  margin: 0;
}

.dbt .ttl-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 20px 40px;
  background: #936CB3;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  align-self: flex-start;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.dbt .ttl-cta:hover {
  background: #7a559a;
  box-shadow: 1px 12px 52px 0 rgba(147, 108, 179, 0.12);
}

.dbt .ttl-cta:focus {
  outline: 2px solid #936CB3;
  outline-offset: 3px;
}

.dbt .ttl-cta:active {
  background: #6b4888;
}

.dbt .ttl-img-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dbt .ttl-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 1px 12px 52px 0 rgba(147, 108, 179, 0.12);
}

.dbt .ttl-img-frame img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: filter 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  filter: saturate(0.7) sepia(0.18);
}

.dbt .ttl-img-frame:hover img {
  filter: saturate(1) sepia(0);
}

.dbt .ttl-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(147, 108, 179, 0.28) 0%, rgba(208, 201, 220, 0.12) 60%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dbt .ttl-img-frame:hover::after {
  opacity: 0;
}

.dbt .ttl-deco-line {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid rgba(147, 108, 179, 0.18);
  border-radius: 24px;
  pointer-events: none;
}

.dbt .ttl-deco-line2 {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid rgba(208, 201, 220, 0.3);
  border-radius: 24px;
  pointer-events: none;
}

/* ── SECTION 2: PROOF / CURRENT ── */
.dbt .proof-sec {
  padding: 80px 20px;
  background: #fff;
  position: relative;
}

.dbt .proof-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #D0C9DC 30%, #936CB3 60%, transparent 100%);
}

.dbt .proof-grid {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.dbt .proof-img-col {
  position: relative;
}

.dbt .proof-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
}

.dbt .proof-img-wrap img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: saturate(0.75);
  transition: filter 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.dbt .proof-img-wrap:hover img {
  filter: saturate(1);
}

.dbt .proof-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(147, 108, 179, 0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.dbt .proof-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.dbt .proof-stat {
  background: #EEE9F0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 1px 2px 6px 0 rgba(147, 108, 179, 0.05);
}

.dbt .proof-stat strong {
  display: block;
  font-size: 34px;
  line-height: 1.15;
  color: #936CB3;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.dbt .proof-stat span {
  font-size: 15px;
  color: #4a3d5c;
  line-height: 1.4;
}

.dbt .proof-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dbt .proof-eyebrow {
  font-size: 15px;
  color: #936CB3;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dbt .proof-h2 {
  font-size: 34px;
  line-height: 1.15;
  color: #1e1530;
  margin: 0;
  letter-spacing: -0.01em;
}

.dbt .proof-h2 .acc {
  color: #936CB3;
}

.dbt .proof-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #936CB3;
  border-radius: 40px;
  margin-left: 4px;
  vertical-align: middle;
}

.dbt .proof-lead {
  font-size: 20px;
  line-height: 1.6;
  color: #3d2f52;
  margin: 0;
}

.dbt .proof-body {
  font-size: 16px;
  line-height: 1.6;
  color: #4a3d5c;
  margin: 0;
}

.dbt .proof-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.dbt .proof-item {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: #EEE9F0;
  border-radius: 12px;
  box-shadow: 1px 2px 6px 0 rgba(147, 108, 179, 0.05);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dbt .proof-item:hover {
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
}

.dbt .proof-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #936CB3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.dbt .proof-item-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dbt .proof-item-body h4 {
  font-size: 16px;
  line-height: 1.4;
  color: #1e1530;
  margin: 0;
  font-weight: 600;
}

.dbt .proof-item-body p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3d5c;
  margin: 0;
}

/* ── SECTION 3: EXPERIENCE SHAPE ── */
.dbt .exp-sec {
  padding: 80px 20px;
  background: #EEE9F0;
  position: relative;
  clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
}

.dbt .exp-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.dbt .exp-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.dbt .exp-heading-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dbt .exp-eyebrow {
  font-size: 15px;
  color: #936CB3;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dbt .exp-h2 {
  font-size: 34px;
  line-height: 1.15;
  color: #1e1530;
  margin: 0;
  letter-spacing: -0.01em;
}

.dbt .exp-h2 .acc {
  color: #936CB3;
}

.dbt .exp-lead {
  font-size: 20px;
  line-height: 1.6;
  color: #3d2f52;
  margin: 0;
}

.dbt .exp-body-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.dbt .exp-body {
  font-size: 16px;
  line-height: 1.6;
  color: #4a3d5c;
  margin: 0;
}

.dbt .exp-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dbt .exp-phase {
  background: #fff;
  border-radius: 12px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 1px 2px 6px 0 rgba(147, 108, 179, 0.05);
  position: relative;
  transition: box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.dbt .exp-phase:hover {
  box-shadow: 1px 12px 52px 0 rgba(147, 108, 179, 0.12);
  transform: translateY(-2px);
}

.dbt .exp-phase-num {
  font-size: 48px;
  line-height: 1.15;
  color: #D0C9DC;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.dbt .exp-phase h4 {
  font-size: 16px;
  line-height: 1.4;
  color: #1e1530;
  margin: 0;
  font-weight: 600;
}

.dbt .exp-phase p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3d5c;
  margin: 0;
}

.dbt .exp-phase-bar {
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: #936CB3;
  border-radius: 0 0 2px 2px;
}

.dbt .exp-img-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dbt .exp-img-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
  position: relative;
}

.dbt .exp-img-item img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: saturate(0.7) sepia(0.12);
  transition: filter 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dbt .exp-img-item:hover img {
  filter: saturate(1) sepia(0);
}

.dbt .exp-img-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(147, 108, 179, 0.18) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dbt .exp-img-item:hover::after {
  opacity: 0;
}

/* ── SECTION 4: CONDITIONS ── */
.dbt .cond-sec {
  padding: 80px 20px;
  background: #fff;
  position: relative;
}

.dbt .cond-sec::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #936CB3 40%, #D0C9DC 70%, transparent 100%);
}

.dbt .cond-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.dbt .cond-top {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.dbt .cond-eyebrow {
  font-size: 15px;
  color: #936CB3;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dbt .cond-h2 {
  font-size: 34px;
  line-height: 1.15;
  color: #1e1530;
  margin: 0;
  letter-spacing: -0.01em;
  max-width: 700px;
}

.dbt .cond-h2 .acc {
  color: #936CB3;
}

.dbt .cond-lead {
  font-size: 20px;
  line-height: 1.6;
  color: #3d2f52;
  margin: 0;
  max-width: 620px;
  text-align: left;
}

.dbt .cond-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.dbt .cond-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dbt .cond-col-h {
  font-size: 20px;
  line-height: 1.4;
  color: #1e1530;
  margin: 0;
  font-weight: 600;
}

.dbt .cond-card {
  background: #EEE9F0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 1px 2px 6px 0 rgba(147, 108, 179, 0.05);
  transition: box-shadow 0.2s cubic-bezier(0.0, 0, 0.2, 1);
}

.dbt .cond-card:hover {
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
}

.dbt .cond-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #936CB3;
  font-size: 20px;
  box-shadow: 1px 2px 6px 0 rgba(147, 108, 179, 0.05);
}

.dbt .cond-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dbt .cond-card-body h5 {
  font-size: 16px;
  line-height: 1.4;
  color: #1e1530;
  margin: 0;
  font-weight: 600;
}

.dbt .cond-card-body p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3d5c;
  margin: 0;
}

.dbt .cond-img-col {
  position: relative;
}

.dbt .cond-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 1px 12px 52px 0 rgba(147, 108, 179, 0.12);
  position: relative;
}

.dbt .cond-img-wrap img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: saturate(0.72);
  transition: filter 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.dbt .cond-img-wrap:hover img {
  filter: saturate(1);
}

.dbt .cond-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(147, 108, 179, 0.22) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.dbt .cond-img-wrap:hover::before {
  opacity: 0;
}

.dbt .cond-quote {
  background: #EEE9F0;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  box-shadow: 1px 2px 6px 0 rgba(147, 108, 179, 0.05);
}

.dbt .cond-quote blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #3d2f52;
  font-style: italic;
}

.dbt .cond-quote cite {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  color: #936CB3;
  font-style: normal;
  font-weight: 600;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .dbt .ttl-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dbt .ttl-h1 {
    font-size: 34px;
  }

  .dbt .proof-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dbt .exp-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dbt .exp-phases {
    grid-template-columns: 1fr 1fr;
  }

  .dbt .cond-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {

  .dbt .ttl-blk,
  .dbt .proof-sec,
  .dbt .exp-sec,
  .dbt .cond-sec {
    padding: 40px 20px;
  }

  .dbt .ttl-h1 {
    font-size: 34px;
  }

  .dbt .proof-h2,
  .dbt .exp-h2,
  .dbt .cond-h2 {
    font-size: 24px;
  }

  .dbt .exp-phases {
    grid-template-columns: 1fr;
  }

  .dbt .exp-img-strip {
    grid-template-columns: 1fr;
  }

  .dbt .proof-stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .dbt .exp-sec {
    clip-path: none;
  }
}

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

  .dbt .proof-stat-row {
    grid-template-columns: 1fr;
  }

  .dbt .ttl-cta {
    padding: 20px;
    width: 100%;
    justify-content: center;
  }
}

.abt-us {
  overflow-x: clip;
  position: relative;
}

.abt-us .pg-ld {
  display: none;
}

/* ── TITLE BLOCK ── */
.abt-us .ttl-blk {
  position: relative;
  padding: 80px 20px 80px;
  background: linear-gradient(127deg, #EEE9F0 0%, #D0C9DC 40%, #936CB3 80%, #EEE9F0 100%);
  background-size: 300% 300%;
  animation: grad-shift 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

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

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

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

.abt-us .ttl-blk .bg-num {
  position: absolute;
  top: -20px;
  right: 40px;
  font-size: 200px;
  font-weight: 900;
  color: rgba(147, 108, 179, 0.08);
  line-height: 1.15;
  pointer-events: none;
  user-select: none;
  letter-spacing: -8px;
}

.abt-us .ttl-blk .sub-label {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #5a3d75;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 40px;
  padding: 4px 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.abt-us .ttl-blk h1 {
  font-size: 64px;
  line-height: 1.15;
  font-weight: 800;
  color: #2d1a45;
  letter-spacing: -1.5px;
  margin: 0 0 8px;
  max-width: 800px;
}

.abt-us .ttl-blk h1 .acc {
  color: #936CB3;
}

.abt-us .ttl-blk .ttl-sub {
  font-size: 20px;
  line-height: 1.6;
  color: #3e2660;
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: left;
}

.abt-us .ttl-blk .ttl-img-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 900px;
}

.abt-us .ttl-blk .ttl-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 12px 52px 0 rgba(147, 108, 179, 0.12);
  flex: 0 0 auto;
}

.abt-us .ttl-blk .ttl-img-wrap img {
  display: block;
  width: 340px;
  height: 240px;
  object-fit: cover;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-us .ttl-blk .ttl-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(147, 108, 179, 0.32);
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-us .ttl-blk .ttl-img-wrap:hover::after {
  opacity: 0;
}

.abt-us .ttl-blk .ttl-img-wrap:hover img {
  transform: scale(1.04);
}

.abt-us .ttl-blk .ttl-img-wrap.sm img {
  width: 240px;
  height: 180px;
}

/* reveal animation */
.abt-us .rev-1 {
  opacity: 0;
  transform: translateY(12px);
  animation: rev-up 0.28s cubic-bezier(0.0, 0, 0.2, 1) 0.1s forwards;
}

.abt-us .rev-2 {
  opacity: 0;
  transform: translateY(20px);
  animation: rev-up 0.28s cubic-bezier(0.0, 0, 0.2, 1) 0.22s forwards;
}

.abt-us .rev-3 {
  opacity: 0;
  transform: translateY(30px);
  animation: rev-up 0.28s cubic-bezier(0.0, 0, 0.2, 1) 0.36s forwards;
}

.abt-us .rev-4 {
  opacity: 0;
  transform: translateY(42px);
  animation: rev-up 0.28s cubic-bezier(0.0, 0, 0.2, 1) 0.52s forwards;
}

@keyframes rev-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── SECTION 2 - WHO WE ARE ── */
.abt-us .who-sec {
  padding: 80px 20px;
  background: #fff;
  position: relative;
}

.abt-us .who-sec::before {
  content: '';
  display: block;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, rgba(208, 201, 220, 0.28), transparent);
  position: absolute;
  top: 0;
  left: 0;
}

.abt-us .who-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.abt-us .who-txt h2 {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  color: #2d1a45;
  letter-spacing: -1px;
  margin: 0 0 20px;
}

.abt-us .who-txt h2 .acc {
  color: #936CB3;
}

.abt-us .who-txt .dot-acc {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #936CB3;
  border-radius: 40px;
  margin-left: 4px;
  vertical-align: middle;
}

.abt-us .who-txt .intro-p {
  font-size: 20px;
  line-height: 1.6;
  color: #2d1a45;
  margin: 0 0 20px;
}

.abt-us .who-txt .body-p {
  font-size: 16px;
  line-height: 1.6;
  color: #3e2660;
  margin: 0 0 20px;
}

.abt-us .who-txt .body-p:last-child {
  margin-bottom: 0;
}

.abt-us .who-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.abt-us .who-img-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
  border-top: 3px solid #936CB3;
}

.abt-us .who-img-item img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-us .who-img-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(147, 108, 179, 0.3);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-us .who-img-item:hover::after {
  opacity: 0;
}

.abt-us .who-img-item:hover img {
  transform: scale(1.05);
}

.abt-us .who-img-item.span2 {
  grid-column: 1 / 3;
}

.abt-us .who-img-item.span2 img {
  height: 200px;
}

/* stat strip */
.abt-us .stat-strip {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(208, 201, 220, 0.5);
}

.abt-us .stat-item {
  flex: 1;
  text-align: center;
}

.abt-us .stat-item .s-num {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: #936CB3;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.abt-us .stat-item .s-lbl {
  display: block;
  font-size: 15px;
  color: #5a3d75;
  line-height: 1.4;
  margin-top: 4px;
}

/* ── SECTION 3 - TEAM + APPROACH ── */
.abt-us .team-sec {
  padding: 80px 20px;
  background: #F5F2F8;
  position: relative;
}

.abt-us .team-sec::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), transparent);
}

.abt-us .team-inner {
  max-width: 1366px;
  margin: 0 auto;
}

.abt-us .team-head {
  text-align: center;
  margin-bottom: 40px;
}

.abt-us .team-head h2 {
  font-size: 48px;
  font-weight: 800;
  color: #2d1a45;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 8px;
}

.abt-us .team-head h2 .acc {
  color: #936CB3;
}

.abt-us .team-head .th-sub {
  font-size: 16px;
  color: #5a3d75;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

/* icon grid with connecting lines */
.abt-us .approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 80px;
}

.abt-us .approach-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  width: calc(75% - 40px);
  height: 2px;
  background: linear-gradient(90deg, #936CB3 0%, #D0C9DC 100%);
  z-index: 1;
}

.abt-us .ap-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
  position: relative;
  z-index: 2;
}

.abt-us .ap-node .ap-icon {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
  border-top: 3px solid #936CB3;
  margin-bottom: 20px;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-us .ap-node:hover .ap-icon {
  box-shadow: 1px 12px 52px 0 rgba(147, 108, 179, 0.12);
  transform: translateY(-4px);
}

.abt-us .ap-node .ap-icon i {
  font-size: 34px;
  color: #936CB3;
}

.abt-us .ap-node h5 {
  font-size: 16px;
  font-weight: 700;
  color: #2d1a45;
  margin: 0 0 8px;
  text-align: center;
  line-height: 1.4;
}

.abt-us .ap-node p {
  font-size: 15px;
  color: #5a3d75;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

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

.abt-us .mbr-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 1px 2px 6px 0 rgba(147, 108, 179, 0.05);
  overflow: hidden;
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid #936CB3;
}

.abt-us .mbr-card:hover {
  box-shadow: 1px 12px 52px 0 rgba(147, 108, 179, 0.12);
  transform: translateY(-4px);
}

.abt-us .mbr-card .mbr-img-wrap {
  position: relative;
  overflow: hidden;
}

.abt-us .mbr-card .mbr-img-wrap img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-us .mbr-card .mbr-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(147, 108, 179, 0.28);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-us .mbr-card:hover .mbr-img-wrap::after {
  opacity: 0;
}

.abt-us .mbr-card:hover .mbr-img-wrap img {
  transform: scale(1.04);
}

.abt-us .mbr-card .mbr-body {
  padding: 20px;
}

.abt-us .mbr-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2d1a45;
  margin: 0 0 4px;
  line-height: 1.4;
}

.abt-us .mbr-card .mbr-role {
  font-size: 15px;
  color: #936CB3;
  font-weight: 600;
  margin: 0 0 8px;
}

.abt-us .mbr-card .mbr-desc {
  font-size: 15px;
  color: #5a3d75;
  line-height: 1.6;
  margin: 0;
}

/* circles decoration */
.abt-us .circ-deco {
  position: absolute;
  pointer-events: none;
  overflow: hidden;
  inset: 0;
}

.abt-us .circ-deco span {
  position: absolute;
  border-radius: 40px;
  background: rgba(147, 108, 179, 0.05);
}

.abt-us .circ-deco .c1 {
  width: 320px;
  height: 320px;
  bottom: -80px;
  right: -80px;
}

.abt-us .circ-deco .c2 {
  width: 180px;
  height: 180px;
  top: 40px;
  left: -40px;
}

/* divider band */
.abt-us .band-div {
  height: 60px;
  background: linear-gradient(to bottom, #F5F2F8, #fff);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .abt-us .who-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .abt-us .approach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .abt-us .approach-grid::before {
    display: none;
  }

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

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

@media (max-width: 768px) {
  .abt-us .ttl-blk h1 {
    font-size: 34px;
  }

  .abt-us .ttl-blk .ttl-img-row {
    flex-direction: column;
    align-items: center;
  }

  .abt-us .ttl-blk .ttl-img-wrap img {
    width: 100%;
    height: 200px;
  }

  .abt-us .ttl-blk .ttl-img-wrap.sm {
    display: none;
  }

  .abt-us .who-txt h2 {
    font-size: 34px;
  }

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

  .abt-us .stat-strip {
    flex-direction: column;
    gap: 20px;
  }

  .abt-us .team-head h2 {
    font-size: 34px;
  }

  .abt-us .bg-num {
    font-size: 120px;
  }
}

@media (max-width: 640px) {
  .abt-us .approach-grid {
    grid-template-columns: 1fr;
  }

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

  .abt-us .who-img-item.span2 {
    grid-column: 1;
  }

  .abt-us .ttl-blk {
    padding: 80px 20px 40px;
  }
}

.succ-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: #EEE9F0;
}

.succ-page .succ-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 1px 12px 52px 0 rgba(147, 108, 179, 0.12);
  padding: 80px 40px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  position: relative;
}

.succ-page .succ-card .succ-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 40px;
  background: #EEE9F0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
}

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

.succ-page .succ-card .succ-label {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #936CB3;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.succ-page .succ-card .succ-heading {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1e1530;
  margin-bottom: 20px;
}

.succ-page .succ-card .succ-heading .succ-accent {
  color: #936CB3;
}

.succ-page .succ-card .succ-body {
  font-size: 16px;
  line-height: 1.6;
  color: #3d3450;
  margin-bottom: 40px;
}

.succ-page .succ-card .succ-divider {
  width: 48px;
  height: 2px;
  border-radius: 2px;
  background: #D0C9DC;
  margin: 0 auto 40px;
}

.succ-page .succ-card .succ-info {
  background: #EEE9F0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 40px;
  text-align: left;
}

.succ-page .succ-card .succ-info .succ-info__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  line-height: 1.4;
  color: #3d3450;
}

.succ-page .succ-card .succ-info .succ-info__row+.succ-info__row {
  margin-top: 8px;
}

.succ-page .succ-card .succ-info .succ-info__icon {
  color: #936CB3;
  flex-shrink: 0;
  margin-top: 2px;
}

.succ-page .succ-card .succ-btn {
  display: inline-block;
  padding: 20px 40px;
  background: #936CB3;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.0, 0, 0.2, 1);
  box-shadow: 1px 4px 14px 0 rgba(147, 108, 179, 0.08);
}

.succ-page .succ-card .succ-btn:hover {
  background: #7d5a9a;
  box-shadow: 1px 12px 52px 0 rgba(147, 108, 179, 0.12);
}

.succ-page .succ-card .succ-btn:focus-visible {
  outline: 2px solid #936CB3;
  outline-offset: 4px;
}

.succ-page .succ-card .succ-btn:active {
  background: #6b4d84;
}

.succ-page .succ-card .succ-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 40px;
  background: #936CB3;
  margin-left: 4px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

@media (max-width: 640px) {
  .succ-page {
    padding: 40px 20px;
  }

  .succ-page .succ-card {
    padding: 40px 20px;
  }

  .succ-page .succ-card .succ-heading {
    font-size: 24px;
  }
}