@import "https://cdn.jsdelivr.net/npm/@fontsource/ubuntu@latest/300.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/ubuntu@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/ubuntu@latest/700.css";

html {
  box-sizing: border-box;
  scroll-behavior: smooth
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Cantarell, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: #2a2a2a;
  background: #fefefe
}

.upper_band {
  background: linear-gradient(135deg, #f8f6fa 0%, #fff 100%);
  border-bottom: 1px solid #733caf1f;
  padding: 16px 0
}

.upper_band_container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px
}

.brand_lockup {
  display: flex;
  align-items: center;
  gap: 16px
}

.logo_container {
  width: 56px;
  height: 56px;
  padding: 8px;
  background: #fff;
  border: 1px solid #733caf2e;
  box-shadow: 0 1px 5px 0 #733caf14 0 5px 28px 0 #733caf17;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .42s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .42s cubic-bezier(0.16, 1, 0.3, 1)
}

.logo_container:hover {
  transform: perspective(600px) rotateY(-8deg) rotateX(4deg);
  box-shadow: 0 5px 28px 0 #733caf17 0 10px 44px 0 #733caf1f
}

.logo_container img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.company_name {
  font-size: 37px;
  font-weight: 700;
  line-height: 1.1;
  color: #733CAF;
  letter-spacing: -.5px;
  text-decoration: none;
  transition: color .38s ease-in-out
}

.company_name:hover {
  color: #8e4dd1
}

.primary_nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.nav_link {
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 400;
  color: #3a3a3a;
  text-decoration: none;
  border-radius: 34px;
  background: transparent;
  transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), color .45s cubic-bezier(0.16, 1, 0.3, 1), transform .45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden
}

.nav_link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #D39ADC 0%, #E7E1EB 100%);
  opacity: 0;
  transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 34px;
  z-index: -1
}

.nav_link:hover::before {
  opacity: 1
}

.nav_link:hover {
  color: #733CAF;
  transform: perspective(500px) rotateX(-4deg) rotateY(6deg)
}

.nav_link:focus {
  outline: 2px solid #733CAF;
  outline-offset: 4px;
  animation: focus_fade .4s ease-in-out
}

@keyframes focus_fade {
  from {
    outline-color: transparent
  }

  to {
    outline-color: #733CAF
  }
}

.lower_band {
  background: linear-gradient(90deg, #733CAF 0%, #8e4dd1 100%);
  padding: 24px 0;
  box-shadow: 0 5px 28px 0 #733caf17
}

.lower_band_container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap
}

.contact_item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: transform .38s cubic-bezier(0.16, 1, 0.3, 1), opacity .38s ease-in-out
}

.contact_item:hover {
  transform: perspective(400px) rotateY(-5deg);
  opacity: .88
}

.contact_icon {
  width: 20px;
  height: 20px;
  fill: #fff
}

.footer_frame {
  background: linear-gradient(180deg, #fafbfc 0%, #f4f5f7 100%);
  border-top: 1px solid #733caf24;
  padding: 48px 0 24px;
  margin-top: 48px
}

.footer_container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px
}

.footer_top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px
}

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

.footer_logo_wrap {
  padding-top: 24px;
  border-top: 2px solid #733CAF;
  display: inline-block;
  align-self: flex-start
}

.footer_logo_container {
  width: 52px;
  height: 52px;
  padding: 8px;
  background: #fff;
  border: 1px solid #733caf29;
  box-shadow: 0 1px 5px 0 #733caf14;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center
}

.footer_logo_container img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.brand_description {
  font-size: 15px;
  line-height: 1.55;
  color: #4a4a4a;
  max-width: 420px
}

.legal_zone {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end
}

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

.legal_link {
  padding: 8px 16px;
  font-size: 15px;
  color: #5a5a5a;
  text-decoration: none;
  border-radius: 5px;
  background: transparent;
  transition: background .4s ease-in-out, color .4s ease-in-out, transform .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.legal_link:hover {
  background: #d39adc2e;
  color: #733CAF;
  transform: perspective(450px) rotateX(3deg) rotateY(-5deg)
}

.legal_link:focus {
  outline: 2px solid #733CAF;
  outline-offset: 3px;
  animation: focus_fade .35s ease-in-out
}

.footer_bottom {
  padding-top: 24px;
  border-top: 1px solid #733caf1f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px
}

.copyright_box {
  padding: 16px 24px;
  background: #ffffffb8;
  backdrop-filter: blur(12px);
  border: 1px solid #733caf24;
  border-radius: 34px;
  box-shadow: 0 1px 5px 0 #733caf14
}

.copyright_text {
  font-size: 15px;
  color: #5a5a5a;
  margin: 0
}

.address_box {
  padding: 16px 24px;
  background: #ffffffb8;
  backdrop-filter: blur(12px);
  border: 1px solid #733caf24;
  border-radius: 34px;
  box-shadow: 0 1px 5px 0 #733caf14
}

.address_text {
  font-size: 15px;
  color: #5a5a5a;
  margin: 0
}

.preference_link {
  padding: 12px 24px;
  font-size: 15px;
  color: #733CAF;
  text-decoration: underline;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .38s ease-in-out, text-decoration-color .38s ease-in-out
}

.preference_link:hover {
  color: #8e4dd1;
  text-decoration-color: transparent
}

.preference_link:focus {
  outline: 2px solid #733CAF;
  outline-offset: 3px;
  animation: focus_fade .35s ease-in-out
}

@media (max-width: 768px) {
  .upper_band_container {
    flex-direction: column;
    align-items: flex-start
  }

  .brand_lockup {
    width: 100%
  }

  .primary_nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch
  }

  .nav_link {
    text-align: center
  }

  .lower_band_container {
    flex-direction: column;
    align-items: flex-start
  }

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

  .legal_zone {
    align-items: flex-start
  }

  .legal_nav {
    align-items: flex-start
  }

  .footer_bottom {
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width: 480px) {
  .company_name {
    font-size: 28px
  }

  .logo_container {
    width: 48px;
    height: 48px
  }

  .nav_link {
    padding: 12px 16px;
    font-size: 15px
  }

  .contact_item {
    font-size: 15px
  }
}

.ghr-doc-area {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px
}

.ghr-doc-area h1 {
  font-size: 68px;
  line-height: 1.1;
  margin: 0 0 48px;
  color: #733CAF
}

.ghr-doc-area h2 {
  font-size: 37px;
  line-height: 1.35;
  margin: 48px 0 24px;
  color: #733CAF
}

.ghr-doc-area h3 {
  font-size: 17px;
  line-height: 1.35;
  margin: 24px 0 16px;
  font-weight: 600;
  color: #733CAF
}

.ghr-doc-area h4,
.ghr-doc-area h5,
.ghr-doc-area h6 {
  font-size: 17px;
  line-height: 1.35;
  margin: 24px 0 16px;
  font-weight: 600
}

.ghr-doc-area p {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 16px
}

.ghr-doc-area ul,
.ghr-doc-area ol {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 16px;
  padding-left: 24px
}

.ghr-doc-area li {
  margin: 0 0 8px
}

.ghr-doc-area li:last-child {
  margin-bottom: 0
}

.ghr-doc-area em,
.ghr-doc-area i {
  font-style: italic
}

.ghr-doc-area a {
  color: #733CAF;
  text-decoration: underline;
  transition: color .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.ghr-doc-area a:hover {
  color: #D39ADC
}

.ghr-doc-area div {
  margin: 0 0 16px
}

@media (max-width: 768px) {
  .ghr-doc-area {
    padding: 24px 16px
  }

  .ghr-doc-area h1 {
    font-size: 37px;
    margin-bottom: 24px
  }

  .ghr-doc-area h2 {
    font-size: 17px;
    margin-top: 24px
  }
}

.srv_dtl {
  background: #FDFCFD;
  color: #1D1A1F;
  overflow-x: clip
}

.srv_dtl * {
  box-sizing: border-box
}

.srv_dtl .grad_top {
  background: linear-gradient(167deg, #733CAF 0%, #D39ADC 58%, #E7E1EB 100%);
  padding: 96px 24px 72px;
  position: relative;
  overflow: hidden
}

.srv_dtl .grad_top::before {
  content: '';
  position: absolute;
  top: 48px;
  right: 48px;
  width: 180px;
  height: 180px;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 8px, #ffffff1f 8px, #ffffff1f 9px), repeating-linear-gradient(90deg, transparent, transparent 8px, #ffffff1f 8px, #ffffff1f 9px);
  pointer-events: none
}

.srv_dtl .grad_top_inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2
}

.srv_dtl .grad_top h1 {
  font-size: 68px;
  line-height: 1.1;
  color: #FFF;
  margin: 0 0 24px;
  background: linear-gradient(167deg, #FFF 0%, #ffffffe0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: srv_dtl_title_reveal .52s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: rotate(-2deg)
}

@keyframes srv_dtl_title_reveal {
  to {
    opacity: 1;
    transform: rotate(0deg)
  }
}

.srv_dtl .grad_top_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center
}

.srv_dtl .grad_top_list li {
  font-size: 17px;
  line-height: 1.55;
  color: #fffffff2;
  position: relative;
  padding-left: 32px;
  max-width: 680px
}

.srv_dtl .grad_top_list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #FFF;
  border-radius: 50%;
  box-shadow: 0 0 8px #fff9
}

.srv_dtl .price_card_zone {
  padding: 48px 24px;
  background: #FDFCFD;
  position: relative
}

.srv_dtl .price_card_zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, #733CAF 0px, #733CAF 8px, transparent 8px, transparent 16px);
  opacity: .3
}

.srv_dtl .price_card_zone_inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.srv_dtl .img_frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 10px 44px 0 #733caf1f;
  animation: srv_dtl_img_reveal .48s cubic-bezier(0.16, 1, 0.3, 1) .15s forwards;
  opacity: 0;
  transform: rotate(1.5deg)
}

@keyframes srv_dtl_img_reveal {
  to {
    opacity: 1;
    transform: rotate(0deg)
  }
}

.srv_dtl .img_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.srv_dtl .price_card {
  background: linear-gradient(135deg, #FFF 0%, #F9F8FA 100%);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 5px 28px 0 #733caf17;
  border: 1px solid #733caf14;
  position: relative;
  animation: srv_dtl_card_reveal .44s cubic-bezier(0.16, 1, 0.3, 1) .2s forwards;
  opacity: 0;
  transform: rotate(-1deg)
}

@keyframes srv_dtl_card_reveal {
  to {
    opacity: 1;
    transform: rotate(0deg)
  }
}

.srv_dtl .price_card::before {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 48px;
  height: 2px;
  background: #733CAF;
  opacity: .2
}

.srv_dtl .price_card::after {
  content: '';
  position: absolute;
  bottom: 24px;
  left: 16px;
  width: 32px;
  height: 2px;
  background: #D39ADC;
  opacity: .2
}

.srv_dtl .price_num {
  font-size: 68px;
  line-height: 1.1;
  background: linear-gradient(167deg, #D39ADC 0%, #733CAF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 8px;
  text-align: center
}

.srv_dtl .price_note {
  font-size: 15px;
  line-height: 1.55;
  color: #5A4F63;
  text-align: center;
  margin: 0 0 24px
}

.srv_dtl .price_cta {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg, #733CAF 0%, #D39ADC 100%);
  color: #FFF;
  font-size: 17px;
  line-height: 1.35;
  border: none;
  border-radius: 34px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .42s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .42s cubic-bezier(0.16, 1, 0.3, 1), background .42s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 5px 28px 0 #733caf17;
  width: 100%;
  text-align: center
}

.srv_dtl .price_cta:hover {
  background: linear-gradient(225deg, #733CAF 0%, #D39ADC 100%);
  transform: perspective(600px) rotateX(3deg) rotateY(-2deg);
  box-shadow: 0 10px 44px 0 #733caf1f
}

.srv_dtl .price_cta:active {
  transform: perspective(600px) rotateX(1deg) rotateY(-1deg) scale(0.98)
}

.srv_dtl .prog_zone {
  padding: 48px 24px;
  background: #733CAF;
  position: relative;
  overflow: hidden
}

.srv_dtl .prog_zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(60deg, transparent, transparent 24px, #ffffff05 24px, #ffffff05 48px), repeating-linear-gradient(-60deg, transparent, transparent 24px, #ffffff05 24px, #ffffff05 48px);
  pointer-events: none
}

.srv_dtl .prog_zone_inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.srv_dtl .prog_zone h2 {
  font-size: 37px;
  line-height: 1.35;
  color: #FFF;
  margin: 0 0 48px;
  text-align: center;
  background: linear-gradient(167deg, #FFF 0%, #E7E1EB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.srv_dtl .prog_content {
  color: #ffffffeb;
  font-size: 17px;
  line-height: 1.55
}

.srv_dtl .prog_content p {
  margin: 0 0 24px
}

.srv_dtl .prog_content p:last-child {
  margin-bottom: 0
}

.srv_dtl .prog_content h2 {
  font-size: 37px;
  line-height: 1.35;
  color: #FFF;
  margin: 48px 0 24px;
  background: linear-gradient(167deg, #E7E1EB 0%, #FFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.srv_dtl .prog_content h2:first-child {
  margin-top: 0
}

.srv_dtl .prog_content small {
  font-size: 15px;
  opacity: .75
}

.srv_dtl .prog_content ul {
  list-style: none;
  padding: 0;
  margin: 24px 0
}

.srv_dtl .prog_content li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px
}

.srv_dtl .prog_content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: #E7E1EB;
  border-radius: 50%
}

.srv_dtl .prog_content figure {
  margin: 24px 0;
  padding: 24px;
  background: #ffffff14;
  border-radius: 20px;
  border: 1px solid #ffffff1f
}

.srv_dtl .prog_content figcaption {
  font-size: 15px;
  margin-top: 16px;
  opacity: .8;
  font-style: italic
}

.srv_dtl .desc_zone {
  padding: 48px 24px;
  background: #FDFCFD;
  position: relative
}

.srv_dtl .desc_zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, #D39ADC 0px, #D39ADC 8px, transparent 8px, transparent 16px);
  opacity: .3
}

.srv_dtl .desc_zone_inner {
  max-width: 1100px;
  margin: 0 auto
}

.srv_dtl .desc_zone h2 {
  font-size: 37px;
  line-height: 1.35;
  margin: 0 0 48px;
  text-align: center;
  background: linear-gradient(167deg, #D39ADC 0%, #733CAF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.srv_dtl .desc_content {
  color: #1D1A1F;
  font-size: 17px;
  line-height: 1.55;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px
}

.srv_dtl .desc_content>div:nth-child(1) {
  animation: srv_dtl_desc_left .5s cubic-bezier(0.16, 1, 0.3, 1) .1s forwards;
  opacity: 0;
  transform: rotate(-1deg)
}

.srv_dtl .desc_content>div:nth-child(2) {
  animation: srv_dtl_desc_right .5s cubic-bezier(0.16, 1, 0.3, 1) .25s forwards;
  opacity: 0;
  transform: rotate(1deg)
}

@keyframes srv_dtl_desc_left {
  to {
    opacity: 1;
    transform: rotate(0deg)
  }
}

@keyframes srv_dtl_desc_right {
  to {
    opacity: 1;
    transform: rotate(0deg)
  }
}

.srv_dtl .desc_content p {
  margin: 0 0 24px
}

.srv_dtl .desc_content p:last-child {
  margin-bottom: 0
}

.srv_dtl .desc_content h2 {
  font-size: 37px;
  line-height: 1.35;
  margin: 48px 0 24px;
  text-align: left;
  background: linear-gradient(167deg, #733CAF 0%, #D39ADC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.srv_dtl .desc_content h2:first-child {
  margin-top: 0
}

.srv_dtl .desc_content h3 {
  font-size: 17px;
  line-height: 1.35;
  margin: 24px 0 16px;
  color: #733CAF;
  font-weight: 600
}

.srv_dtl .desc_content mark {
  background: #E7E1EB;
  color: #1D1A1F;
  padding: 4px 8px;
  border-radius: 5px
}

.srv_dtl .desc_content cite {
  font-style: italic;
  color: #5A4F63
}

.srv_dtl .desc_content ul {
  list-style: none;
  padding: 0;
  margin: 24px 0
}

.srv_dtl .desc_content li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px
}

.srv_dtl .desc_content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: #733CAF;
  border-radius: 50%
}

.srv_dtl .desc_content dl {
  margin: 24px 0;
  padding: 24px;
  background: #F9F8FA;
  border-radius: 20px;
  border: 1px solid #733caf14
}

.srv_dtl .desc_content dt {
  font-weight: 600;
  color: #733CAF;
  margin-bottom: 8px
}

.srv_dtl .desc_content dd {
  margin: 0 0 16px
}

.srv_dtl .desc_content dd:last-child {
  margin-bottom: 0
}

.srv_dtl .desc_content blockquote {
  margin: 24px 0;
  padding: 24px;
  background: linear-gradient(135deg, #733caf0a 0%, #d39adc0a 100%);
  border-radius: 20px;
  border-left: 4px solid #733CAF;
  font-style: italic;
  color: #5A4F63
}

.srv_dtl .desc_content details {
  margin: 24px 0;
  padding: 24px;
  background: #FFF;
  border-radius: 20px;
  border: 1px solid #733caf14;
  box-shadow: 0 1px 5px 0 #733caf14
}

.srv_dtl .desc_content summary {
  cursor: pointer;
  font-weight: 600;
  color: #733CAF;
  list-style: none;
  position: relative;
  padding-left: 32px
}

.srv_dtl .desc_content summary::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 0;
  height: 0;
  border-left: 6px solid #733CAF;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: transform .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.srv_dtl .desc_content details[open] summary::before {
  transform: rotate(90deg)
}

.srv_dtl .desc_content summary::-webkit-details-marker {
  display: none
}

.srv_dtl .path_visual {
  padding: 48px 24px;
  background: linear-gradient(135deg, #F9F8FA 0%, #FFF 100%);
  position: relative
}

.srv_dtl .path_visual_inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px
}

.srv_dtl .path_icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #733CAF 0%, #D39ADC 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 28px 0 #733caf17;
  position: relative;
  animation: srv_dtl_icon_cycle 3.6s cubic-bezier(0.16, 1, 0.3, 1) infinite
}

.srv_dtl .path_icon:nth-child(2) {
  animation-delay: 1.2s
}

.srv_dtl .path_icon:nth-child(3) {
  animation-delay: 2.4s
}

@keyframes srv_dtl_icon_cycle {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 5px 28px 0 #733caf17
  }

  33% {
    transform: scale(1.15);
    box-shadow: 0 10px 44px 0 #733caf1f
  }

  66% {
    transform: scale(1);
    box-shadow: 0 5px 28px 0 #733caf17
  }
}

.srv_dtl .path_icon svg {
  width: 32px;
  height: 32px;
  fill: #FFF
}

.srv_dtl .path_connector {
  width: 120px;
  height: 2px;
  background: repeating-linear-gradient(90deg, #733CAF 0px, #733CAF 8px, transparent 8px, transparent 16px);
  opacity: .3
}

@media (max-width: 768px) {
  .srv_dtl .grad_top {
    padding: 72px 16px 48px
  }

  .srv_dtl .grad_top h1 {
    font-size: 37px
  }

  .srv_dtl .grad_top_list li {
    font-size: 15px;
    padding-left: 24px
  }

  .srv_dtl .price_card_zone {
    padding: 24px 16px
  }

  .srv_dtl .price_card_zone_inner {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .srv_dtl .price_card {
    padding: 24px
  }

  .srv_dtl .price_num {
    font-size: 37px
  }

  .srv_dtl .price_cta {
    padding: 16px 24px;
    font-size: 15px
  }

  .srv_dtl .prog_zone {
    padding: 24px 16px
  }

  .srv_dtl .prog_zone h2 {
    font-size: 17px;
    margin-bottom: 24px
  }

  .srv_dtl .prog_content {
    font-size: 15px
  }

  .srv_dtl .prog_content h2 {
    font-size: 17px;
    margin: 24px 0 16px
  }

  .srv_dtl .desc_zone {
    padding: 24px 16px
  }

  .srv_dtl .desc_zone h2 {
    font-size: 17px;
    margin-bottom: 24px
  }

  .srv_dtl .desc_content {
    grid-template-columns: 1fr;
    gap: 24px;
    font-size: 15px
  }

  .srv_dtl .desc_content h2 {
    font-size: 17px;
    margin: 24px 0 16px
  }

  .srv_dtl .desc_content h3 {
    font-size: 15px
  }

  .srv_dtl .path_visual {
    padding: 24px 16px
  }

  .srv_dtl .path_visual_inner {
    flex-direction: column;
    gap: 24px
  }

  .srv_dtl .path_connector {
    width: 2px;
    height: 60px;
    background: repeating-linear-gradient(180deg, #733CAF 0px, #733CAF 8px, transparent 8px, transparent 16px)
  }

  .srv_dtl .path_icon {
    width: 64px;
    height: 64px
  }

  .srv_dtl .path_icon svg {
    width: 28px;
    height: 28px
  }
}

.srvcs_pg {
  background: #fdfcfe;
  color: #1b1823;
  overflow-x: hidden
}

.srvcs_pg * {
  box-sizing: border-box
}

.srvcs_pg .title_zone {
  position: relative;
  padding: 48px 24px;
  background: linear-gradient(127deg, #733CAF 0%, #D39ADC 52%, #E7E1EB 100%);
  overflow: hidden
}

.srvcs_pg .title_zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, #ffffff08 2px, #ffffff08 4px), repeating-linear-gradient(90deg, transparent, transparent 2px, #ffffff08 2px, #ffffff08 4px);
  pointer-events: none;
  opacity: .6
}

.srvcs_pg .title_zone .wrap_tl {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  transform: rotate(-1.2deg);
  animation: tl_reveal .85s cubic-bezier(0.16, 1, 0.3, 1) forwards
}

@keyframes tl_reveal {
  from {
    opacity: 0;
    transform: rotate(-1.2deg) translateY(24px)
  }

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

.srvcs_pg .title_zone h1 {
  font-size: 68px;
  line-height: 1.1;
  margin: 0 0 24px;
  text-align: center;
  background: linear-gradient(95deg, #fff 0%, #fdfcfe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.02em
}

.srvcs_pg .title_zone .act_lnk {
  display: inline-block;
  padding: 16px 48px;
  background: #fff;
  color: #733CAF;
  text-decoration: none !important;
  border-radius: 34px;
  font-size: 17px;
  font-weight: 600;
  transition: transform .42s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .42s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 5px 28px 0 #733caf17
}

.srvcs_pg .title_zone .act_lnk:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 44px 0 #733caf1f
}

.srvcs_pg .title_zone .lnk_wrap {
  text-align: center
}

.srvcs_pg .offerings_grid {
  padding: 48px 24px;
  background: #fdfcfe;
  position: relative
}

.srvcs_pg .offerings_grid::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #733caf26 50%, transparent 100%);
  filter: blur(2px)
}

.srvcs_pg .offerings_grid .cnt_wrap {
  max-width: 1100px;
  margin: 0 auto;
  animation: grid_reveal .92s cubic-bezier(0.16, 1, 0.3, 1) .15s backwards
}

@keyframes grid_reveal {
  from {
    opacity: 0;
    transform: rotate(1.5deg) translateY(32px)
  }

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

.srvcs_pg .offerings_grid h2 {
  font-size: 37px;
  line-height: 1.35;
  margin: 0 0 48px;
  text-align: center;
  background: linear-gradient(112deg, #D39ADC 0%, #733CAF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.srvcs_pg .offerings_grid .cards_holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.srvcs_pg .offerings_grid .svc_card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 5px 0 #733caf14;
  transition: transform .48s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .48s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative
}

.srvcs_pg .offerings_grid .svc_card:hover {
  transform: perspective(800px) rotateX(2deg) rotateY(-3deg);
  box-shadow: 0 10px 44px 0 #733caf1f
}

.srvcs_pg .offerings_grid .svc_card .img_zone {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative
}

.srvcs_pg .offerings_grid .svc_card .img_zone::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #733caf40 0%, #d39adc26 100%);
  pointer-events: none
}

.srvcs_pg .offerings_grid .svc_card .img_zone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s ease-in-out
}

.srvcs_pg .offerings_grid .svc_card:hover .img_zone img {
  transform: scale(1.08)
}

.srvcs_pg .offerings_grid .svc_card .txt_zone {
  padding: 24px
}

.srvcs_pg .offerings_grid .svc_card h3 {
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 8px;
  color: #1b1823
}

.srvcs_pg .offerings_grid .svc_card .desc_txt {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 16px;
  color: #4a4552
}

.srvcs_pg .offerings_grid .svc_card .price_row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 16px
}

.srvcs_pg .offerings_grid .svc_card .price_val {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 700;
  color: #733CAF
}

.srvcs_pg .offerings_grid .svc_card .price_spec {
  font-size: 15px;
  line-height: 1.35;
  color: #6b6473
}

.srvcs_pg .offerings_grid .svc_card .crd_lnk {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(95deg, #733CAF 0%, #D39ADC 100%);
  color: #fff;
  text-decoration: none !important;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  transition: background .5s ease-in-out, transform .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.srvcs_pg .offerings_grid .svc_card .crd_lnk:hover {
  background: linear-gradient(185deg, #733CAF 0%, #D39ADC 100%);
  transform: translateY(-1px)
}

.srvcs_pg .method_zone {
  padding: 48px 24px;
  background: radial-gradient(ellipse at 30% 40%, #733caf14 0%, #d39adc0d 35%, #e7e1eb05 70%, transparent 100%), radial-gradient(ellipse at 75% 65%, #d39adc0f 0%, #e7e1eb08 40%, transparent 80%);
  position: relative
}

.srvcs_pg .method_zone .cnt_wrap {
  max-width: 1100px;
  margin: 0 auto;
  animation: method_reveal .78s cubic-bezier(0.16, 1, 0.3, 1) .25s backwards
}

@keyframes method_reveal {
  from {
    opacity: 0;
    transform: rotate(-0.8deg) translateY(24px)
  }

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

.srvcs_pg .method_zone h2 {
  font-size: 37px;
  line-height: 1.35;
  margin: 0 0 24px;
  text-align: center;
  background: linear-gradient(88deg, #733CAF 0%, #D39ADC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.srvcs_pg .method_zone .intro_txt {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 48px;
  text-align: center;
  color: #3d3543;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto
}

.srvcs_pg .method_zone .steps_list {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.srvcs_pg .method_zone .step_item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 1px 5px 0 #733caf14;
  transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.srvcs_pg .method_zone .step_item:hover {
  transform: perspective(800px) rotateY(1.5deg);
  box-shadow: 0 5px 28px 0 #733caf17
}

.srvcs_pg .method_zone .step_item:nth-child(even) {
  flex-direction: row-reverse
}

.srvcs_pg .method_zone .step_item .icn_holder {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E7E1EB 0%, #D39ADC 100%);
  border-radius: 34px
}

.srvcs_pg .method_zone .step_item .icn_holder svg {
  width: 48px;
  height: 48px;
  fill: #733CAF
}

.srvcs_pg .method_zone .step_item .txt_holder {
  flex: 1
}

.srvcs_pg .method_zone .step_item h3 {
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 8px;
  color: #1b1823
}

.srvcs_pg .method_zone .step_item .step_desc {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: #4a4552
}

.srvcs_pg .proof_zone {
  padding: 48px 24px;
  background: #fff;
  position: relative
}

.srvcs_pg .proof_zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #733caf26 50%, transparent 100%);
  filter: blur(2px)
}

.srvcs_pg .proof_zone .cnt_wrap {
  max-width: 1100px;
  margin: 0 auto;
  animation: proof_reveal .88s cubic-bezier(0.16, 1, 0.3, 1) .35s backwards
}

@keyframes proof_reveal {
  from {
    opacity: 0;
    transform: rotate(1deg) translateY(28px)
  }

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

.srvcs_pg .proof_zone h2 {
  font-size: 37px;
  line-height: 1.35;
  margin: 0 0 48px;
  text-align: center;
  background: linear-gradient(102deg, #D39ADC 0%, #733CAF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.srvcs_pg .proof_zone .testimonials_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.srvcs_pg .proof_zone .testi_card {
  background: #fdfcfe;
  padding: 24px;
  border-radius: 20px;
  border: 2px dashed #E7E1EB;
  transition: border-color .4s ease-in-out, transform .52s cubic-bezier(0.16, 1, 0.3, 1)
}

.srvcs_pg .proof_zone .testi_card:hover {
  border-color: #D39ADC;
  transform: perspective(800px) rotateX(-2deg)
}

.srvcs_pg .proof_zone .testi_card .auth_row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px
}

.srvcs_pg .proof_zone .testi_card .auth_img {
  width: 64px;
  height: 73px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0
}

.srvcs_pg .proof_zone .testi_card .auth_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.srvcs_pg .proof_zone .testi_card .auth_info h3 {
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 4px;
  color: #1b1823
}

.srvcs_pg .proof_zone .testi_card .auth_info .role_txt {
  font-size: 15px;
  line-height: 1.35;
  margin: 0;
  color: #6b6473
}

.srvcs_pg .proof_zone .testi_card .quote_txt {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: #3d3543;
  font-style: italic
}

.srvcs_pg .diagram_zone {
  padding: 48px 24px;
  background: #fdfcfe;
  position: relative
}

.srvcs_pg .diagram_zone::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #733caf26 50%, transparent 100%);
  filter: blur(2px)
}

.srvcs_pg .diagram_zone .cnt_wrap {
  max-width: 1100px;
  margin: 0 auto;
  animation: diagram_reveal .95s cubic-bezier(0.16, 1, 0.3, 1) .45s backwards
}

@keyframes diagram_reveal {
  from {
    opacity: 0;
    transform: rotate(-1.2deg) translateY(32px)
  }

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

.srvcs_pg .diagram_zone h2 {
  font-size: 37px;
  line-height: 1.35;
  margin: 0 0 24px;
  text-align: center;
  background: linear-gradient(118deg, #733CAF 0%, #D39ADC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.srvcs_pg .diagram_zone .diagram_holder {
  display: flex;
  gap: 24px;
  align-items: flex-start
}

.srvcs_pg .diagram_zone .map_visual {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 1px 5px 0 #733caf14;
  overflow: hidden;
  position: relative
}

.srvcs_pg .diagram_zone .map_visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px
}

.srvcs_pg .diagram_zone .legend_panel {
  width: 280px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 1px 5px 0 #733caf14
}

.srvcs_pg .diagram_zone .legend_panel h3 {
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 16px;
  color: #1b1823
}

.srvcs_pg .diagram_zone .legend_items {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.srvcs_pg .diagram_zone .legend_item {
  display: flex;
  align-items: center;
  gap: 8px
}

.srvcs_pg .diagram_zone .legend_color {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  flex-shrink: 0
}

.srvcs_pg .diagram_zone .legend_color.c1 {
  background: #733CAF
}

.srvcs_pg .diagram_zone .legend_color.c2 {
  background: #D39ADC
}

.srvcs_pg .diagram_zone .legend_color.c3 {
  background: #E7E1EB
}

.srvcs_pg .diagram_zone .legend_label {
  font-size: 15px;
  line-height: 1.35;
  color: #3d3543
}

.srvcs_pg .anchor_zone {
  padding: 48px 24px;
  background: linear-gradient(142deg, #fdfcfe 0%, #f9f7fb 100%);
  position: relative
}

.srvcs_pg .anchor_zone .cnt_wrap {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  animation: anchor_reveal .72s cubic-bezier(0.16, 1, 0.3, 1) .55s backwards
}

@keyframes anchor_reveal {
  from {
    opacity: 0;
    transform: rotate(0.8deg) translateY(24px)
  }

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

.srvcs_pg .anchor_zone .big_icon {
  width: 128px;
  height: 128px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(125deg, #E7E1EB 0%, #D39ADC 100%);
  border-radius: 34px;
  box-shadow: 0 5px 28px 0 #733caf17
}

.srvcs_pg .anchor_zone .big_icon svg {
  width: 72px;
  height: 72px;
  fill: #733CAF
}

.srvcs_pg .anchor_zone h2 {
  font-size: 37px;
  line-height: 1.35;
  margin: 0 0 16px;
  background: linear-gradient(95deg, #733CAF 0%, #D39ADC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.srvcs_pg .anchor_zone .anchor_txt {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 24px;
  color: #3d3543;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto
}

.srvcs_pg .anchor_zone .anchor_btn {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(95deg, #733CAF 0%, #D39ADC 100%);
  color: #fff;
  text-decoration: none !important;
  border-radius: 34px;
  font-size: 17px;
  font-weight: 600;
  transition: background .5s ease-in-out, transform .42s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .42s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 5px 28px 0 #733caf17
}

.srvcs_pg .anchor_zone .anchor_btn:hover {
  background: linear-gradient(185deg, #733CAF 0%, #D39ADC 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 44px 0 #733caf1f
}

@media (max-width: 768px) {
  .srvcs_pg .title_zone h1 {
    font-size: 37px
  }

  .srvcs_pg .offerings_grid .cards_holder {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .srvcs_pg .offerings_grid h2,
  .srvcs_pg .method_zone h2,
  .srvcs_pg .proof_zone h2,
  .srvcs_pg .diagram_zone h2,
  .srvcs_pg .anchor_zone h2 {
    font-size: 17px;
    margin-bottom: 24px
  }

  .srvcs_pg .method_zone .step_item {
    flex-direction: column !important;
    gap: 16px
  }

  .srvcs_pg .method_zone .step_item .icn_holder {
    width: 72px;
    height: 72px
  }

  .srvcs_pg .method_zone .step_item .icn_holder svg {
    width: 36px;
    height: 36px
  }

  .srvcs_pg .proof_zone .testimonials_grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .srvcs_pg .diagram_zone .diagram_holder {
    flex-direction: column
  }

  .srvcs_pg .diagram_zone .legend_panel {
    width: 100%
  }

  .srvcs_pg .anchor_zone .big_icon {
    width: 96px;
    height: 96px
  }

  .srvcs_pg .anchor_zone .big_icon svg {
    width: 56px;
    height: 56px
  }

  .srvcs_pg .title_zone,
  .srvcs_pg .offerings_grid,
  .srvcs_pg .method_zone,
  .srvcs_pg .proof_zone,
  .srvcs_pg .diagram_zone,
  .srvcs_pg .anchor_zone {
    padding: 24px 16px
  }
}

.a_propos {
  max-width: 1100px;
  margin: 0 auto;
  background: #fefefe;
  color: #1a0d26
}

.a_propos .titre_intro {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 24px;
  padding: 48px 24px;
  background: linear-gradient(127deg, #f4f0f7 0%, #fdfcfe 100%);
  position: relative;
  overflow: hidden
}

.a_propos .titre_intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 48px, #733caf05 48px, #733caf05 96px);
  pointer-events: none
}

.a_propos .bande_img {
  flex: 0 0 280px;
  position: relative;
  border-radius: 5px;
  overflow: hidden
}

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

.a_propos .bande_img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #733cafbf 0%, transparent 60%);
  pointer-events: none
}

.a_propos .texte_titre {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1
}

.a_propos .texte_titre h1 {
  font-size: 68px;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(135deg, #733CAF 0%, #D39ADC 50%, #E7E1EB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center
}

.a_propos .texte_titre .slogan {
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  color: #3d2453;
  text-align: center
}

.a_propos .liens_action {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  margin-top: 8px
}

.a_propos .liens_action a {
  display: inline-block;
  padding: 16px 24px;
  font-size: 15px;
  line-height: 1.35;
  text-decoration: none;
  border-radius: 34px;
  transition: transform .42s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .38s ease-in-out, background .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.a_propos .lien_principal {
  background: linear-gradient(127deg, #733CAF 0%, #D39ADC 100%);
  color: #fff;
  box-shadow: 0 5px 28px 0 #733caf17
}

.a_propos .lien_principal:hover {
  transform: perspective(500px) rotateX(3deg) rotateY(-2deg);
  box-shadow: 0 10px 44px 0 #733caf1f;
  background: linear-gradient(217deg, #733CAF 0%, #D39ADC 100%)
}

.a_propos .lien_secondaire {
  background: #E7E1EB;
  color: #733CAF;
  box-shadow: 0 1px 5px 0 #733caf14
}

.a_propos .lien_secondaire:hover {
  transform: perspective(500px) rotateX(-2deg) rotateY(3deg);
  box-shadow: 0 5px 28px 0 #733caf17;
  background: #D39ADC;
  color: #fff
}

.a_propos .mission_valeurs {
  padding: 48px 24px;
  background: #fff;
  position: relative
}

.a_propos .mission_valeurs::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: #fff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: translateY(100%)
}

.a_propos .mission_valeurs .conteneur_mission {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.a_propos .bloc_texte_mission {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.a_propos .bloc_texte_mission h2 {
  font-size: 37px;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(135deg, #D39ADC 0%, #733CAF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center
}

.a_propos .bloc_texte_mission p {
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  color: #2d1a3d;
  text-align: center
}

.a_propos .grille_valeurs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px
}

.a_propos .carte_valeur {
  background: linear-gradient(135deg, #faf9fb 0%, #f7f5f9 100%);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 1px 5px 0 #733caf14;
  position: relative;
  overflow: hidden;
  transition: transform .48s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .41s ease-in-out;
  border-right: 4px solid #733CAF
}

.a_propos .carte_valeur::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #733CAF 0%, #D39ADC 100%);
  transform: rotate(45deg);
  opacity: .15;
  pointer-events: none
}

.a_propos .carte_valeur:hover {
  transform: perspective(600px) rotateX(-3deg) rotateY(2deg);
  box-shadow: 0 10px 44px 0 #733caf1f
}

.a_propos .carte_valeur h3 {
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 8px;
  color: #733CAF;
  text-align: center
}

.a_propos .carte_valeur p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: #3d2453;
  text-align: center
}

.a_propos .equipe_expertise {
  padding: 128px 24px 48px;
  background: linear-gradient(180deg, #f9f7fb 0%, #fff 100%);
  position: relative
}

.a_propos .equipe_expertise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .4
}

.a_propos .conteneur_equipe {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  position: relative;
  z-index: 1
}

.a_propos .barre_laterale {
  flex: 0 0 280px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-content: start
}

.a_propos .stat_indicateur {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 5px 28px 0 #733caf17;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: oscillation_fond 6s ease-in-out infinite
}

@keyframes oscillation_fond {

  0%,
  100% {
    background-color: #fff
  }

  50% {
    background-color: #fdfcfe
  }
}

.a_propos .stat_indicateur .numero {
  font-size: 37px;
  line-height: 1.1;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #733CAF 0%, #D39ADC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700
}

.a_propos .stat_indicateur .label {
  font-size: 15px;
  line-height: 1.35;
  margin: 0;
  color: #3d2453
}

.a_propos .stat_indicateur .barre_progres {
  margin-top: 16px;
  height: 8px;
  background: #E7E1EB;
  border-radius: 20px;
  overflow: hidden;
  position: relative
}

.a_propos .stat_indicateur .remplissage {
  height: 100%;
  background: linear-gradient(90deg, #733CAF 0%, #D39ADC 100%);
  border-radius: 20px;
  transition: width .52s cubic-bezier(0.16, 1, 0.3, 1)
}

.a_propos .zone_principale {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.a_propos .zone_principale h2 {
  font-size: 37px;
  line-height: 1.1;
  margin: 0 0 24px;
  background: linear-gradient(135deg, #D39ADC 0%, #733CAF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center
}

.a_propos .grille_membres {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.a_propos .carte_membre {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 1px 5px 0 #733caf14;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform .44s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .37s ease-in-out
}

.a_propos .carte_membre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #733CAF 0%, #D39ADC 100%);
  opacity: 0;
  transition: opacity .46s ease-in-out;
  pointer-events: none;
  z-index: 1
}

.a_propos .carte_membre:hover::before {
  opacity: 1
}

.a_propos .carte_membre:hover {
  transform: perspective(500px) rotateX(2deg) rotateY(-3deg);
  box-shadow: 0 10px 44px 0 #733caf1f
}

.a_propos .photo_profil {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #E7E1EB;
  position: relative;
  z-index: 2;
  transition: border-color .39s ease-in-out, opacity .46s ease-in-out
}

.a_propos .carte_membre:hover .photo_profil {
  border-color: #fff;
  opacity: 0
}

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

.a_propos .info_membre {
  text-align: center;
  position: relative;
  z-index: 2;
  transition: opacity .46s ease-in-out, color .39s ease-in-out
}

.a_propos .carte_membre:hover .info_membre {
  opacity: 0
}

.a_propos .info_membre h3 {
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 4px;
  color: #733CAF
}

.a_propos .info_membre .role {
  font-size: 15px;
  line-height: 1.35;
  margin: 0;
  color: #3d2453
}

.a_propos .grille_competences {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px
}

.a_propos .carte_competence {
  background: linear-gradient(135deg, #fdfcfe 0%, #f9f7fb 100%);
  padding: 24px;
  border-radius: 5px;
  box-shadow: 0 1px 5px 0 #733caf14;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform .51s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .43s ease-in-out
}

.a_propos .carte_competence::after {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D39ADC 0%, #E7E1EB 100%);
  transform: rotate(45deg);
  opacity: .2;
  pointer-events: none
}

.a_propos .carte_competence:hover {
  transform: perspective(600px) rotateX(-2deg) rotateY(3deg);
  box-shadow: 0 5px 28px 0 #733caf17
}

.a_propos .icone_competence {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #733CAF 0%, #D39ADC 100%);
  display: flex;
  align-items: center;
  justify-content: center
}

.a_propos .icone_competence svg {
  width: 24px;
  height: 24px;
  fill: #fff
}

.a_propos .texte_competence h4 {
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 4px;
  color: #733CAF
}

.a_propos .texte_competence p {
  font-size: 15px;
  line-height: 1.35;
  margin: 0;
  color: #3d2453
}

@media (max-width: 900px) {
  .a_propos .titre_intro {
    flex-direction: column;
    gap: 24px
  }

  .a_propos .bande_img {
    flex: 0 0 auto;
    height: 240px
  }

  .a_propos .texte_titre h1 {
    font-size: 37px
  }

  .a_propos .liens_action {
    flex-direction: column
  }

  .a_propos .mission_valeurs .conteneur_mission {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .a_propos .conteneur_equipe {
    flex-direction: column
  }

  .a_propos .barre_laterale {
    flex: 0 0 auto;
    grid-template-columns: repeat(2, 1fr)
  }

  .a_propos .grille_membres {
    grid-template-columns: 1fr
  }

  .a_propos .grille_competences {
    grid-template-columns: 1fr
  }
}

@media (max-width: 600px) {
  .a_propos .texte_titre h1 {
    font-size: 37px
  }

  .a_propos .barre_laterale {
    grid-template-columns: 1fr
  }
}

.contact_pg {
  font-size: 17px;
  line-height: 1.55;
  color: #2a2a2a;
  background: #fefefe;
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: clip
}

.contact_pg * {
  box-sizing: border-box
}

.contact_pg .manifesto_radial {
  position: relative;
  padding: 96px 24px 48px;
  background: radial-gradient(ellipse at center, #f7f3f9, #fefefe);
  text-align: center;
  overflow: hidden
}

.contact_pg .manifesto_radial::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, #733CAF, #D39ADC)
}

.contact_pg .manifesto_radial::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, #733CAF, #D39ADC)
}

.contact_pg .manifesto_radial .corner_accent {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 60px;
  height: 1px;
  background: linear-gradient(to left, #D39ADC, transparent)
}

.contact_pg .manifesto_h {
  font-size: 68px;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  background: linear-gradient(135deg, #D39ADC, #733CAF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.contact_pg .manifesto_text {
  font-size: 17px;
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto 48px;
  color: #3d3d3d
}

.contact_pg .manifesto_img {
  width: 100%;
  max-width: 820px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 20px;
  filter: saturate(0.6) brightness(1.05);
  box-shadow: 0 10px 44px 0 #733caf1f
}

.contact_pg .geo_circles {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid #733caf0f;
  border-radius: 50%;
  pointer-events: none
}

.contact_pg .geo_circles.circle_tl {
  top: -140px;
  left: -140px
}

.contact_pg .geo_circles.circle_br {
  bottom: -140px;
  right: -140px
}

.contact_pg .wave_divider {
  display: block;
  width: 100%;
  height: auto
}

.contact_pg .form_sanctuary {
  background: linear-gradient(165deg, #733CAF, #9854c7, #733CAF);
  padding: 48px 24px;
  position: relative;
  overflow: hidden
}

.contact_pg .form_sanctuary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 80%, #d39adc26, transparent 40%);
  animation: bleed_color 8s ease-in-out infinite;
  pointer-events: none
}

@keyframes bleed_color {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: .4
  }

  50% {
    transform: translate(8%, -8%);
    opacity: .7
  }
}

.contact_pg .form_inner {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 48px;
  border-radius: 34px;
  box-shadow: 0 10px 44px 0 #733caf1f;
  position: relative;
  z-index: 2
}

.contact_pg .form_heading {
  font-size: 37px;
  line-height: 1.35;
  text-align: center;
  margin: 0 0 16px;
  background: linear-gradient(95deg, #733CAF, #D39ADC, #733CAF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.contact_pg .form_subtext {
  text-align: center;
  color: #555;
  margin: 0 0 48px;
  font-size: 17px;
  line-height: 1.55
}

.contact_pg .form_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px
}

.contact_pg .field_wrap {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact_pg .field_wrap.full_width {
  grid-column: 1 / -1
}

.contact_pg .field_label {
  font-size: 15px;
  line-height: 1.35;
  color: #2a2a2a;
  font-weight: 600;
  letter-spacing: .02em
}

.contact_pg .field_input {
  padding: 16px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  font-size: 17px;
  line-height: 1.35;
  color: #2a2a2a;
  background: #fefefe;
  transition: border-color .42s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .42s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 1px 3px 0 #733caf0a
}

.contact_pg .field_input:focus {
  outline: none;
  border-color: #733CAF;
  box-shadow: inset 0 1px 3px 0 #733caf14 0 0 0 3px #733caf1f
}

.contact_pg .field_input::placeholder {
  color: #999;
  font-size: 15px
}

.contact_pg .field_input:hover {
  border-color: #a87dcc
}

.contact_pg .radio_section {
  grid-column: 1 / -1;
  margin: 16px 0 24px
}

.contact_pg .radio_title {
  font-size: 15px;
  line-height: 1.35;
  color: #2a2a2a;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 16px
}

.contact_pg .radio_options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px
}

.contact_pg .radio_item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform .38s ease-in-out
}

.contact_pg .radio_item:hover {
  transform: translateX(4px)
}

.contact_pg .radio_input {
  width: 20px;
  height: 20px;
  border: 2px solid #733CAF;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s cubic-bezier(0.16, 1, 0.3, 1)
}

.contact_pg .radio_input input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0
}

.contact_pg .radio_input input:checked+.radio_dot {
  opacity: 1;
  transform: scale(1)
}

.contact_pg .radio_dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  background: #733CAF;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1), transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.contact_pg .radio_input:hover {
  box-shadow: 0 0 0 4px #733caf14
}

.contact_pg .radio_label {
  font-size: 17px;
  line-height: 1.35;
  color: #2a2a2a;
  cursor: pointer
}

.contact_pg .privacy_checkbox {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0
}

.contact_pg .checkbox_box {
  width: 22px;
  height: 22px;
  border: 2px solid #733CAF;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .4s ease-in-out, border-color .4s ease-in-out
}

.contact_pg .checkbox_box input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0
}

.contact_pg .checkbox_box input:checked~.checkbox_mark {
  opacity: 1;
  transform: scale(1) rotate(0deg)
}

.contact_pg .checkbox_box:hover {
  background: #733caf0d
}

.contact_pg .checkbox_mark {
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid #733CAF;
  border-width: 0 2px 2px 0;
  transform: scale(0) rotate(45deg);
  opacity: 0;
  transition: opacity .48s cubic-bezier(0.16, 1, 0.3, 1), transform .48s cubic-bezier(0.16, 1, 0.3, 1)
}

.contact_pg .checkbox_text {
  font-size: 15px;
  line-height: 1.55;
  color: #555
}

.contact_pg .checkbox_text a {
  color: #733CAF;
  text-decoration: underline;
  transition: color .38s ease-in-out
}

.contact_pg .checkbox_text a:hover {
  color: #9854c7
}

.contact_pg .submit_btn {
  grid-column: 1 / -1;
  padding: 16px 48px;
  background: linear-gradient(135deg, #733CAF, #9854c7);
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background .5s cubic-bezier(0.16, 1, 0.3, 1), transform .4s ease-in-out, box-shadow .4s ease-in-out;
  box-shadow: 0 5px 28px 0 #733caf17;
  letter-spacing: .03em
}

.contact_pg .submit_btn:hover {
  background: linear-gradient(225deg, #733CAF, #9854c7);
  transform: translateY(-2px) perspective(500px) rotateX(5deg);
  box-shadow: 0 10px 44px 0 #733caf1f
}

.contact_pg .submit_btn:active {
  transform: translateY(0) perspective(500px) rotateX(0deg)
}

.contact_pg .quad_info {
  padding: 48px 24px;
  background: #fefefe
}

.contact_pg .quad_heading {
  font-size: 37px;
  line-height: 1.35;
  text-align: center;
  margin: 0 0 48px;
  color: #2a2a2a
}

.contact_pg .quad_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto
}

.contact_pg .quad_card {
  background: linear-gradient(145deg, #f9f7fb, #fff);
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 28px 0 #733caf17;
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden
}

.contact_pg .quad_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #733CAF, #D39ADC, #E7E1EB);
  opacity: 0;
  transition: opacity .45s ease-in-out
}

.contact_pg .quad_card:hover {
  transform: perspective(600px) rotateY(5deg);
  box-shadow: 0 10px 44px 0 #733caf1f inset 0 0 40px 0 #733caf0f
}

.contact_pg .quad_card:hover::before {
  opacity: 1
}

.contact_pg .quad_icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #D39ADC, #E7E1EB);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 28px 0 #733caf17
}

.contact_pg .quad_icon svg {
  width: 28px;
  height: 28px;
  fill: #733CAF
}

.contact_pg .quad_label {
  font-size: 15px;
  line-height: 1.35;
  color: #733CAF;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: .05em;
  text-transform: uppercase
}

.contact_pg .quad_value {
  font-size: 17px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0
}

.contact_pg .quad_value a {
  color: #733CAF;
  text-decoration: none;
  transition: color .38s ease-in-out
}

.contact_pg .quad_value a:hover {
  color: #9854c7;
  text-decoration: underline
}

@media (max-width: 768px) {
  .contact_pg .manifesto_radial {
    padding: 48px 16px 24px
  }

  .contact_pg .manifesto_h {
    font-size: 37px;
    margin-bottom: 16px
  }

  .contact_pg .manifesto_text {
    font-size: 15px;
    margin-bottom: 24px
  }

  .contact_pg .form_sanctuary {
    padding: 24px 16px
  }

  .contact_pg .form_inner {
    padding: 24px
  }

  .contact_pg .form_heading {
    font-size: 28px
  }

  .contact_pg .form_grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .contact_pg .radio_options {
    flex-direction: column;
    gap: 12px
  }

  .contact_pg .quad_info {
    padding: 24px 16px
  }

  .contact_pg .quad_heading {
    font-size: 28px;
    margin-bottom: 24px
  }

  .contact_pg .quad_grid {
    grid-template-columns: 1fr;
    gap: 16px
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .contact_pg .form_grid {
    gap: 16px
  }

  .contact_pg .quad_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }
}

.inquiry_entry {
  max-width: 1100px;
  margin: 0 auto;
  background: #fefefe;
  color: #1d1d1d
}

.inquiry_entry * {
  box-sizing: border-box
}

.inquiry_entry .manifesto_block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #faf9fb 0%, #f5f3f7 100%)
}

.inquiry_entry .manifesto_block::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #733caf14 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1
}

.inquiry_entry .manifesto_block::after {
  content: '';
  position: absolute;
  bottom: -140px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #d39adc0f 0%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 1
}

.inquiry_entry .declaration_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 24px 0
}

.inquiry_entry .declaration_text h1 {
  font-size: 68px;
  line-height: 1.1;
  margin: 0 0 24px;
  background: linear-gradient(135deg, #D39ADC 0%, #733CAF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: inquiry_settle .5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform: scale(0.95)
}

@keyframes inquiry_settle {
  to {
    transform: scale(1)
  }
}

.inquiry_entry .declaration_text p {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 16px;
  color: #2a2a2a
}

.inquiry_entry .declaration_text p:last-child {
  margin-bottom: 0
}

.inquiry_entry .manifesto_visual {
  position: relative;
  z-index: 2;
  border-top: 2px solid #733CAF;
  border-bottom: 2px solid #D39ADC;
  padding: 16px 0
}

.inquiry_entry .manifesto_visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.2);
  border-radius: 5px;
  box-shadow: 0 5px 28px 0 #733caf17;
  aspect-ratio: 16/9
}

.inquiry_entry .experience_mirror {
  background: #fff;
  padding: 48px 24px;
  position: relative
}

.inquiry_entry .experience_mirror::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #faf9fb 0%, #fff 100%);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  z-index: 0;
  pointer-events: none
}

.inquiry_entry .experience_wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.inquiry_entry .experience_mirror h2 {
  font-size: 37px;
  line-height: 1.35;
  margin: 0 0 48px;
  text-align: center;
  color: #1d1d1d
}

.inquiry_entry .witness_grid {
  display: grid;
  grid-template-columns: 1fr 2fr 2.4fr;
  gap: 24px;
  align-items: start
}

.inquiry_entry .witness_profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #faf9fb 0%, #f5f3f7 100%);
  border-radius: 20px;
  box-shadow: 0 1px 5px 0 #733caf14;
  transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.inquiry_entry .witness_profile:hover {
  transform: perspective(600px) rotateY(3deg) rotateX(-2deg);
  box-shadow: 0 10px 44px 0 #733caf1f
}

.inquiry_entry .witness_avatar {
  width: 120px;
  height: 160px;
  border-radius: 34px;
  overflow: hidden;
  margin-bottom: 16px
}

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

.inquiry_entry .witness_name {
  font-size: 17px;
  line-height: 1.35;
  font-weight: 600;
  color: #1d1d1d;
  margin: 0
}

.inquiry_entry .witness_role {
  font-size: 15px;
  line-height: 1.35;
  color: #5a5a5a;
  margin: 4px 0 0
}

.inquiry_entry .witness_story {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 1px 5px 0 #733caf14;
  border-top: 2px solid #E7E1EB;
  border-bottom: 2px solid #D39ADC
}

.inquiry_entry .witness_story h3 {
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 16px;
  color: #733CAF;
  font-weight: 600
}

.inquiry_entry .witness_story p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 16px;
  color: #2a2a2a
}

.inquiry_entry .witness_story p:last-child {
  margin-bottom: 0
}

.inquiry_entry .witness_context {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.inquiry_entry .context_card {
  background: linear-gradient(135deg, #faf9fb 0%, #fff 100%);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 1px 5px 0 #733caf14;
  transition: transform .4s ease-in-out, box-shadow .4s ease-in-out
}

.inquiry_entry .context_card:hover {
  transform: perspective(600px) rotateY(-2deg) rotateX(1deg);
  box-shadow: 0 5px 28px 0 #733caf17
}

.inquiry_entry .context_card h4 {
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 8px;
  color: #733CAF;
  font-weight: 600
}

.inquiry_entry .context_card p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: #2a2a2a
}

.inquiry_entry .scale_reveal {
  background: linear-gradient(135deg, #f5f3f7 0%, #faf9fb 100%);
  padding: 48px 24px;
  position: relative;
  overflow: hidden
}

.inquiry_entry .scale_reveal::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background-image: radial-gradient(circle at 50% 50%, transparent 20%, transparent 21%, #733caf05 21%, #733caf05 22%, transparent 22%), radial-gradient(circle at 50% 50%, transparent 35%, transparent 36%, #733caf05 36%, #733caf05 37%, transparent 37%), radial-gradient(circle at 50% 50%, transparent 55%, transparent 56%, #733caf05 56%, #733caf05 57%, transparent 57%);
  opacity: .3;
  pointer-events: none;
  z-index: 0
}

.inquiry_entry .scale_wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.inquiry_entry .scale_reveal h2 {
  font-size: 37px;
  line-height: 1.35;
  margin: 0 0 48px;
  text-align: center;
  background: linear-gradient(135deg, #D39ADC 0%, #733CAF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.inquiry_entry .metrics_display {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px
}

.inquiry_entry .metric_block {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 1px 5px 0 #733caf14;
  position: relative;
  overflow: hidden;
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
  animation: inquiry_metric_rise .6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform: scale(0.95);
  opacity: 0
}

.inquiry_entry .metric_block:nth-child(1) {
  animation-delay: .1s
}

.inquiry_entry .metric_block:nth-child(2) {
  animation-delay: .2s
}

.inquiry_entry .metric_block:nth-child(3) {
  animation-delay: .3s
}

@keyframes inquiry_metric_rise {
  to {
    transform: scale(1);
    opacity: 1
  }
}

.inquiry_entry .metric_block:hover {
  transform: perspective(600px) rotateY(2deg) rotateX(-1deg) scale(1.02)
}

.inquiry_entry .metric_block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #733CAF 0%, #D39ADC 50%, #E7E1EB 100%);
  transition: background .5s ease-in-out
}

.inquiry_entry .metric_block:hover::before {
  background: linear-gradient(270deg, #733CAF 0%, #D39ADC 50%, #E7E1EB 100%)
}

.inquiry_entry .metric_number {
  font-size: 68px;
  line-height: 1.1;
  font-weight: 700;
  color: #733CAF;
  margin: 0 0 8px
}

.inquiry_entry .metric_label {
  font-size: 17px;
  line-height: 1.35;
  color: #2a2a2a;
  margin: 0
}

.inquiry_entry .scale_context {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.inquiry_entry .context_visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 28px 0 #733caf17
}

.inquiry_entry .context_visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9;
  position: relative
}

.inquiry_entry .context_visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 40%, #0000004d 100%);
  pointer-events: none
}

.inquiry_entry .context_explanation {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 1px 5px 0 #733caf14;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.inquiry_entry .context_explanation h3 {
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 16px;
  color: #733CAF;
  font-weight: 600
}

.inquiry_entry .context_explanation p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 16px;
  color: #2a2a2a
}

.inquiry_entry .context_explanation p:last-child {
  margin-bottom: 0
}

.inquiry_entry .conditions_frame {
  background: #fff;
  padding: 48px 24px;
  position: relative
}

.inquiry_entry .conditions_frame::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, #E7E1EB 50%, transparent 100%);
  pointer-events: none
}

.inquiry_entry .conditions_wrapper {
  max-width: 1100px;
  margin: 0 auto
}

.inquiry_entry .conditions_frame h2 {
  font-size: 37px;
  line-height: 1.35;
  margin: 0 0 48px;
  text-align: center;
  color: #1d1d1d
}

.inquiry_entry .conditions_layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px
}

.inquiry_entry .primary_condition {
  background: linear-gradient(135deg, #f5f3f7 0%, #faf9fb 100%);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 5px 28px 0 #733caf17;
  border-top: 2px solid #733CAF;
  border-bottom: 2px solid #D39ADC;
  transition: transform .35s ease-in-out
}

.inquiry_entry .primary_condition:hover {
  transform: perspective(600px) rotateY(-3deg) rotateX(2deg)
}

.inquiry_entry .primary_condition h3 {
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #D39ADC 0%, #733CAF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600
}

.inquiry_entry .primary_condition p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 16px;
  color: #2a2a2a
}

.inquiry_entry .primary_condition p:last-child {
  margin-bottom: 0
}

.inquiry_entry .secondary_condition {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 1px 5px 0 #733caf14;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.inquiry_entry .secondary_condition:hover {
  transform: perspective(600px) rotateY(2deg) rotateX(-1deg);
  box-shadow: 0 5px 28px 0 #733caf17
}

.inquiry_entry .secondary_condition h4 {
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 16px;
  color: #733CAF;
  font-weight: 600
}

.inquiry_entry .secondary_condition p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: #2a2a2a
}

.inquiry_entry .condition_visuals {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px
}

.inquiry_entry .mini_visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 5px 0 #733caf14;
  position: relative
}

.inquiry_entry .mini_visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9
}

.inquiry_entry .mini_visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 30%, #00000040 100%);
  pointer-events: none
}

.inquiry_entry .action_zone {
  margin-top: 48px;
  text-align: center
}

.inquiry_entry .inquiry_link {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg, #733CAF 0%, #D39ADC 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 34px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 600;
  box-shadow: 0 5px 28px 0 #733caf17;
  transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1), background .5s ease-in-out
}

.inquiry_entry .inquiry_link:hover {
  transform: perspective(600px) rotateY(-2deg) rotateX(1deg) scale(1.05);
  box-shadow: 0 10px 44px 0 #733caf1f;
  background: linear-gradient(315deg, #733CAF 0%, #D39ADC 100%)
}

.inquiry_entry .inquiry_link:active {
  transform: scale(0.98)
}

@media (max-width: 768px) {
  .inquiry_entry .manifesto_block {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 16px
  }

  .inquiry_entry .declaration_text h1 {
    font-size: 37px
  }

  .inquiry_entry .declaration_text p {
    font-size: 15px
  }

  .inquiry_entry .witness_grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .inquiry_entry .metrics_display {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .inquiry_entry .metric_number {
    font-size: 37px
  }

  .inquiry_entry .scale_context {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .inquiry_entry .conditions_layout {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .inquiry_entry .condition_visuals {
    grid-template-rows: auto;
    grid-template-columns: 1fr
  }

  .inquiry_entry .experience_mirror,
  .inquiry_entry .scale_reveal,
  .inquiry_entry .conditions_frame {
    padding: 24px 16px
  }

  .inquiry_entry .experience_mirror h2,
  .inquiry_entry .scale_reveal h2,
  .inquiry_entry .conditions_frame h2 {
    font-size: 37px;
    margin-bottom: 24px
  }

  .inquiry_entry .inquiry_link {
    padding: 16px 24px;
    font-size: 15px
  }
}

.success_page {
  min-height: 100vh;
  background: linear-gradient(157deg, #F5F2F7 0%, #FDFCFE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px
}

.success_page .confirmation_container {
  max-width: 580px;
  width: 100%;
  background: #FFF;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 5px 28px 0 #733caf17;
  text-align: center
}

.success_page .check_icon_wrapper {
  width: 92px;
  height: 92px;
  margin: 0 auto 24px;
  background: linear-gradient(157deg, #733CAF 0%, #D39ADC 100%);
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.success_page .check_icon_wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(157deg, #D39ADC 0%, #733CAF 100%);
  opacity: 0;
  transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.success_page .check_icon_wrapper:hover::before {
  opacity: 1
}

.success_page .check_mark {
  width: 38px;
  height: 38px;
  position: relative;
  z-index: 1
}

.success_page .check_mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #FFF;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round
}

.success_page .main_heading {
  font-size: 37px;
  line-height: 1.1;
  background: linear-gradient(157deg, #D39ADC 0%, #733CAF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 16px
}

.success_page .confirmation_text {
  font-size: 17px;
  line-height: 1.55;
  color: #3A3A3A;
  margin: 0 0 24px
}

.success_page .detail_info {
  background: #F9F7FB;
  border-radius: 5px;
  padding: 24px;
  margin: 0 0 24px
}

.success_page .detail_info p {
  font-size: 15px;
  line-height: 1.55;
  color: #5A5A5A;
  margin: 0
}

.success_page .detail_info p:first-child {
  margin-bottom: 8px
}

.success_page .detail_info strong {
  color: #733CAF
}

.success_page .action_buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.success_page .primary_button {
  background: linear-gradient(157deg, #733CAF 0%, #D39ADC 100%);
  color: #FFF;
  border: none;
  border-radius: 20px;
  padding: 16px 48px;
  font-size: 17px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s ease-in-out;
  box-shadow: 0 1px 5px 0 #733caf14
}

.success_page .primary_button:hover {
  transform: perspective(600px) rotateX(5deg);
  box-shadow: 0 10px 44px 0 #733caf1f
}

.success_page .secondary_button {
  background: transparent;
  color: #733CAF;
  border: 2px solid #D39ADC;
  border-radius: 20px;
  padding: 14px 48px;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .5s ease-in-out, color .5s ease-in-out, border-color .5s ease-in-out
}

.success_page .secondary_button:hover {
  background: #E7E1EB;
  border-color: #733CAF;
  color: #733CAF
}

.success_page .reference_number {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #E7E1EB
}

.success_page .reference_number p {
  font-size: 15px;
  line-height: 1.35;
  color: #7A7A7A;
  margin: 0
}

.success_page .reference_code {
  display: inline-block;
  background: linear-gradient(157deg, #733CAF 0%, #D39ADC 50%, #E7E1EB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 17px;
  letter-spacing: .08em;
  margin-top: 4px
}

@media (max-width: 768px) {
  .success_page .confirmation_container {
    padding: 24px
  }

  .success_page .main_heading {
    font-size: 37px
  }

  .success_page .action_buttons {
    flex-direction: column
  }

  .success_page .primary_button,
  .success_page .secondary_button {
    width: 100%
  }
}