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

html {
  box-sizing: border-box
}

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

body {
  margin: 0;
  overscroll-behavior: contain;
  overflow-x: hidden;
  font-family: 'Arimo', sans-serif;
  background: linear-gradient(165deg, #1a1624 0%, #2F2D46 45%, #1e1c32 100%);
  color: #E1DFDF;
  font-size: 19px;
  line-height: 1.7
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, #2f2d4608 2px, #2f2d4608 4px);
  pointer-events: none;
  z-index: 1;
  opacity: .4
}

.top-bar {
  background: #2f2d4699;
  border-bottom: 1px solid #f3d48e26;
  padding: 8px 0
}

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

.top-bar__contacts {
  display: flex;
  gap: 40px;
  flex-wrap: wrap
}

.top-bar__link {
  color: #E1DFDF;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.top-bar__link:hover {
  color: #F3D48E
}

.top-bar__link:focus {
  outline: 2px solid #F3D48E;
  outline-offset: 4px;
  color: #2F2D46;
  background: #F3D48E;
  padding: 4px 8px;
  margin: -4px -8px;
  border-radius: 4px
}

.top-bar__icon {
  font-size: 19px
}

.top-bar__utility {
  display: flex;
  gap: 24px;
  align-items: center
}

.top-bar__hours {
  font-size: 14px;
  color: #e1dfdfbf
}

.hd {
  background: linear-gradient(135deg, #2f2d46f2 0%, #2f2d46d9 100%);
  box-shadow: 0 5px 20px 0 #2f2d4614;
  position: relative;
  z-index: 100
}

.hd__brand-row {
  padding: 24px 0;
  border-bottom: 2px solid #f3d48e33
}

.hd__brand-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center
}

.hd__logo-mount {
  border: 3px solid #F3D48E;
  border-radius: 8px;
  padding: 16px;
  background: #e1dfdf0d;
  box-shadow: 0 5px 20px 0 #f3d48e14;
  transition: all .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.hd__logo-mount:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px 0 #f3d48e24;
  border-color: #E1DFDF
}

.hd__logo {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain
}

.hd__nav-row {
  padding: 0
}

.hd__nav-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px
}

.hd__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0
}

.hd__nav-item {
  position: relative
}

.hd__nav-lnk {
  display: block;
  padding: 24px 40px;
  color: #E1DFDF;
  text-decoration: none;
  font-size: 19px;
  font-weight: 400;
  transition: all .3s ease-in-out;
  position: relative;
  background: transparent;
  border-bottom: 3px solid transparent
}

.hd__nav-lnk::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #F3D48E 0%, #E1DFDF 100%);
  transition: width .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.hd__nav-lnk:hover {
  color: #F3D48E;
  background: #f3d48e14
}

.hd__nav-lnk:hover::before {
  width: 100%
}

.hd__nav-lnk:focus {
  outline: none;
  background: #F3D48E;
  color: #2F2D46;
  border-radius: 4px 4px 0 0
}

.hd__nav-item--active .hd__nav-lnk {
  background: #f3d48e1f;
  color: #F3D48E;
  border-bottom-color: #F3D48E
}

.hd__nav-item--active .hd__nav-lnk::before {
  width: 100%
}

@media (max-width: 968px) {
  .hd__nav-lnk {
    padding: 16px 24px;
    font-size: 19px
  }
}

@media (max-width: 640px) {
  .top-bar__contacts {
    flex-direction: column;
    gap: 8px
  }

  .hd__nav {
    flex-direction: column;
    align-items: stretch
  }

  .hd__nav-lnk {
    text-align: center;
    padding: 16px 24px
  }
}

.ftr {
  background: linear-gradient(165deg, #1e1c32 0%, #2F2D46 100%);
  border-top: 1px solid #f3d48e33;
  padding: 80px 0 40px;
  margin-top: 80px;
  position: relative
}

.ftr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #F3D48E 50%, transparent 100%)
}

.ftr__shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px
}

.ftr__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 80px
}

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

.ftr__logo-hold {
  border: 2px solid #f3d48e4d;
  border-radius: 8px;
  padding: 16px;
  background: #e1dfdf08;
  display: inline-block;
  width: fit-content;
  box-shadow: 0 1px 4px 0 #f3d48e14
}

.ftr__logo {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain
}

.ftr__brand-txt {
  font-size: 24px;
  font-weight: 700;
  color: #F3D48E;
  margin: 0;
  line-height: 1.15
}

.ftr__addr {
  font-style: normal;
  color: #e1dfdfcc;
  font-size: 19px;
  line-height: 1.7
}

.ftr__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e1dfdfcc;
  text-decoration: none;
  font-size: 19px;
  transition: color .3s ease-in-out
}

.ftr__contact-item:hover {
  color: #F3D48E
}

.ftr__contact-item:focus {
  outline: 2px solid #F3D48E;
  outline-offset: 4px;
  background: #F3D48E;
  color: #2F2D46;
  padding: 4px 8px;
  margin: -4px -8px;
  border-radius: 4px
}

.ftr__contact-icon {
  font-size: 24px
}

.ftr__heading {
  font-size: 24px;
  font-weight: 700;
  color: #E1DFDF;
  margin: 0 0 16px;
  line-height: 1.15
}

.ftr__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0
}

.ftr__link {
  color: #e1dfdfbf;
  text-decoration: none;
  font-size: 19px;
  transition: all .28s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  padding-left: 24px
}

.ftr__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #F3D48E;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.ftr__link:hover {
  color: #F3D48E;
  padding-left: 28px
}

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

.ftr__link:focus {
  outline: 2px solid #F3D48E;
  outline-offset: 4px;
  background: #F3D48E;
  color: #2F2D46;
  padding: 4px 8px 4px 28px;
  margin: -4px -8px;
  border-radius: 4px
}

.ftr__bottom {
  border-top: 1px solid #f3d48e26;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px
}

.ftr__copy {
  color: #e1dfdf99;
  font-size: 14px;
  margin: 0
}

.ftr__service-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0
}

.ftr__service-lnk {
  color: #e1dfdfa6;
  text-decoration: none;
  font-size: 14px;
  transition: color .3s ease-in-out;
  position: relative
}

.ftr__service-lnk::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #F3D48E;
  transition: width .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.ftr__service-lnk:hover {
  color: #F3D48E
}

.ftr__service-lnk:hover::after {
  width: 100%
}

.ftr__service-lnk:focus {
  outline: 2px solid #F3D48E;
  outline-offset: 4px;
  background: #F3D48E;
  color: #2F2D46;
  padding: 4px 8px;
  margin: -4px -8px;
  border-radius: 4px
}

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

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

  .ftr__service-links {
    flex-direction: column;
    gap: 16px
  }
}

.info-policy {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 24px;
  background: #1a1a2e;
  color: #E1DFDF;
  font-size: 19px;
  line-height: 1.7
}

.info-policy strong,
.info-policy b {
  font-weight: 600;
  color: #F3D48E
}

.info-policy em,
.info-policy i {
  font-style: italic;
  color: #f1d48ee6
}

.info-policy a {
  color: #F3D48E;
  text-decoration: none;
  border-bottom: 1px solid #f3d48e4d;
  transition: border-color .28s ease-in-out, color .28s ease-in-out
}

.info-policy a:hover {
  color: #fff;
  border-bottom-color: #F3D48E
}

.info-policy table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background: #2f2d4666;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px 0 #2f2d4614
}

.info-policy thead {
  background: #2F2D46
}

.info-policy th {
  padding: 16px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 19px;
  color: #F3D48E;
  border-bottom: 2px solid #f3d48e33
}

.info-policy td {
  padding: 16px 24px;
  border-bottom: 1px solid #e1dfdf1a
}

.info-policy tbody tr:last-child td {
  border-bottom: none
}

.info-policy tbody tr {
  transition: background-color .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.info-policy tbody tr:hover {
  background: #2f2d4699
}

.info-policy hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f3d48e4d, transparent);
  margin: 40px 0
}

.info-policy div {
  margin: 24px 0
}

@media (max-width: 768px) {
  .info-policy {
    padding: 40px 16px;
    font-size: 14px
  }

  .info-policy table {
    display: block;
    overflow-x: auto;
    margin: 24px 0
  }

  .info-policy th,
  .info-policy td {
    padding: 8px 16px;
    font-size: 14px
  }

  .info-policy hr {
    margin: 24px 0
  }

  .info-policy div {
    margin: 16px 0
  }
}

.prog-dtl {
  background: #0f0e14;
  color: #e8e7ed;
  min-height: 100vh;
  position: relative;
  overflow-x: clip
}

.prog-dtl::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, #2f2d4608 0%, transparent 50%), radial-gradient(circle at 80% 70%, #2f2d4608 0%, transparent 50%);
  pointer-events: none;
  z-index: 0
}

.prog-dtl::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, #2f2d4605 2px, #2f2d4605 4px);
  pointer-events: none;
  z-index: 0
}

.prog-dtl * {
  box-sizing: border-box
}

.prog-dtl__intro {
  position: relative;
  padding: 120px 24px 100px;
  background: linear-gradient(168deg, #1a1828 0%, #0f0e14 100%);
  z-index: 1
}

.prog-dtl__intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #f3d48e0a 1px, transparent 1px), radial-gradient(circle, #f3d48e0a 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  opacity: .6;
  pointer-events: none
}

.prog-dtl__intro-dots {
  position: absolute;
  top: 80px;
  right: 10%;
  width: 180px;
  height: 180px;
  pointer-events: none;
  z-index: 1
}

.prog-dtl__intro-dots::before,
.prog-dtl__intro-dots::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid #f3d48e26
}

.prog-dtl__intro-dots::before {
  width: 120px;
  height: 120px;
  top: 0;
  left: 0;
  animation: prog-float-1 4s ease-in-out infinite
}

.prog-dtl__intro-dots::after {
  width: 80px;
  height: 80px;
  bottom: 0;
  right: 0;
  animation: prog-float-2 5s ease-in-out infinite
}

@keyframes prog-float-1 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-10px, 15px)
  }
}

@keyframes prog-float-2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(12px, -10px)
  }
}

.prog-dtl__intro-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.prog-dtl__breadcrumb {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.prog-dtl__breadcrumb-link {
  color: #a8a6b8;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
  transition: color .28s ease-in-out
}

.prog-dtl__breadcrumb-link:hover {
  color: #F3D48E
}

.prog-dtl__breadcrumb-sep {
  color: #4a4858;
  font-size: 14px
}

.prog-dtl__breadcrumb-current {
  color: #e8e7ed;
  font-size: 14px;
  line-height: 1.45
}

.prog-dtl__meta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap
}

.prog-dtl__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #f3d48e14;
  border: 1px solid #f3d48e33;
  border-radius: 28px;
  font-size: 14px;
  line-height: 1.15;
  color: #F3D48E;
  letter-spacing: .02em
}

.prog-dtl__stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: #a8a6b8
}

.prog-dtl__stat-icon {
  width: 18px;
  height: 18px;
  opacity: .7
}

.prog-dtl__h1 {
  font-size: 62px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 24px;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #F3D48E 0%, #e8c56d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: prog-letter-drop 1.2s cubic-bezier(0.4, 0, 0.2, 1) backwards
}

@keyframes prog-letter-drop {
  0% {
    opacity: 0;
    transform: translateY(-30px)
  }

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

.prog-dtl__intro-desc {
  font-size: 19px;
  line-height: 1.7;
  color: #c8c6d8;
  margin: 0 0 40px;
  max-width: 820px
}

.prog-dtl__price-block {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.prog-dtl__price-main {
  font-size: 62px;
  line-height: 1.15;
  font-weight: 700;
  color: #F3D48E;
  letter-spacing: -.01em
}

.prog-dtl__price-terms {
  font-size: 14px;
  line-height: 1.7;
  color: #a8a6b8;
  max-width: 320px
}

.prog-dtl__content {
  position: relative;
  padding: 80px 24px;
  background: #2F2D46;
  z-index: 1
}

.prog-dtl__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(90deg, #e1dfdf4d 0px, #e1dfdf4d 4px, transparent 4px, transparent 12px)
}

.prog-dtl__content-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px
}

.prog-dtl__grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px
}

.prog-dtl__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px 0 #2f2d4624
}

.prog-dtl__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.prog-dtl__program {
  position: relative
}

.prog-dtl__program h2 {
  font-size: 24px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0 0 16px;
  color: #e8e7ed;
  letter-spacing: -.01em;
  background: linear-gradient(92deg, #e8c56d 0%, #F3D48E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.prog-dtl__program p {
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 24px;
  color: #e8e7ed
}

.prog-dtl__program mark {
  background: #f3d48e26;
  color: #F3D48E;
  padding: 2px 8px;
  border-radius: 4px
}

.prog-dtl__program cite {
  font-style: italic;
  color: #c8c6d8
}

.prog-dtl__program ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none
}

.prog-dtl__program ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 19px;
  line-height: 1.7;
  color: #e8e7ed
}

.prog-dtl__program ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 16px;
  height: 16px;
  border: 2px solid #f3d48e66;
  border-radius: 4px;
  background: transparent
}

.prog-dtl__program ul li:hover::before {
  background: #f3d48e1a;
  border-color: #F3D48E;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.prog-dtl__program dl {
  margin: 0 0 24px
}

.prog-dtl__program dt {
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
  color: #F3D48E;
  margin: 0 0 8px
}

.prog-dtl__program dd {
  font-size: 19px;
  line-height: 1.7;
  color: #e8e7ed;
  margin: 0 0 16px;
  padding-left: 24px
}

.prog-dtl__program blockquote {
  margin: 24px 0;
  padding: 24px;
  background: #0f0e1466;
  border-radius: 8px;
  border-left: 4px solid #F3D48E;
  font-size: 19px;
  line-height: 1.7;
  color: #c8c6d8;
  font-style: italic
}

.prog-dtl__program details {
  margin: 0 0 24px;
  background: #0f0e144d;
  border-radius: 8px;
  overflow: hidden
}

.prog-dtl__program summary {
  padding: 16px 24px;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
  color: #F3D48E;
  cursor: pointer;
  user-select: none;
  transition: background .3s ease-in-out
}

.prog-dtl__program summary:hover {
  background: #f3d48e0d
}

.prog-dtl__program details[open] summary {
  background: #f3d48e14
}

.prog-dtl__program details> :not(summary) {
  padding: 0 24px 24px
}

.prog-dtl__desc {
  position: relative
}

.prog-dtl__desc h2 {
  font-size: 24px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0 0 16px;
  color: #e8e7ed;
  letter-spacing: -.01em;
  background: linear-gradient(92deg, #e8c56d 0%, #F3D48E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.prog-dtl__desc p {
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 24px;
  color: #e8e7ed
}

.prog-dtl__desc p:nth-of-type(odd) {
  max-width: 85%
}

.prog-dtl__desc p:nth-of-type(even) {
  max-width: 95%
}

.prog-dtl__desc mark {
  background: #f3d48e26;
  color: #F3D48E;
  padding: 2px 8px;
  border-radius: 4px
}

.prog-dtl__desc ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none
}

.prog-dtl__desc ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 19px;
  line-height: 1.7;
  color: #e8e7ed
}

.prog-dtl__desc ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 16px;
  height: 16px;
  border: 2px solid #f3d48e66;
  border-radius: 4px;
  background: transparent
}

.prog-dtl__desc ul li:hover::before {
  background: #f3d48e1a;
  border-color: #F3D48E;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.prog-dtl__desc dl {
  margin: 0 0 24px
}

.prog-dtl__desc dt {
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
  color: #F3D48E;
  margin: 0 0 8px
}

.prog-dtl__desc dd {
  font-size: 19px;
  line-height: 1.7;
  color: #e8e7ed;
  margin: 0 0 16px;
  padding-left: 24px
}

.prog-dtl__desc figure {
  margin: 24px 0;
  padding: 24px;
  background: #0f0e1466;
  border-radius: 8px
}

.prog-dtl__desc figcaption {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #a8a6b8;
  font-style: italic
}

.prog-dtl__desc details {
  margin: 0 0 24px;
  background: #0f0e144d;
  border-radius: 8px;
  overflow: hidden
}

.prog-dtl__desc summary {
  padding: 16px 24px;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
  color: #F3D48E;
  cursor: pointer;
  user-select: none;
  transition: background .3s ease-in-out
}

.prog-dtl__desc summary:hover {
  background: #f3d48e0d
}

.prog-dtl__desc details[open] summary {
  background: #f3d48e14
}

.prog-dtl__desc details> :not(summary) {
  padding: 0 24px 24px
}

.prog-dtl__cta-zone {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e1dfdf26;
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.prog-dtl__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.prog-dtl__btn--primary {
  background: linear-gradient(118deg, #F3D48E 0%, #d9bb6e 100%);
  color: #2F2D46
}

.prog-dtl__btn--primary:hover {
  background: linear-gradient(118deg, #f5dd9f 0%, #e8c97d 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px 0 #f3d48e24;
  padding-left: 48px;
  padding-right: 48px
}

.prog-dtl__btn--secondary {
  background: transparent;
  color: #F3D48E;
  border: 2px solid #F3D48E
}

.prog-dtl__btn--secondary:hover {
  background: #f3d48e1a;
  border-color: #f5dd9f;
  color: #f5dd9f;
  padding-left: 48px;
  padding-right: 48px
}

.prog-dtl__back-top {
  display: block;
  margin: 80px auto 0;
  text-align: center;
  padding: 40px 24px 0;
  border-top: 1px solid #e1dfdf26;
  max-width: 1320px
}

.prog-dtl__back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: #f3d48e14;
  border: 1px solid #f3d48e33;
  border-radius: 44px;
  color: #F3D48E;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  transition: all .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.prog-dtl__back-link:hover {
  background: #f3d48e26;
  border-color: #F3D48E;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px 0 #f3d48e14
}

.prog-dtl__back-arrow {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.prog-dtl__back-link:hover .prog-dtl__back-arrow {
  transform: translateY(-3px)
}

@media (max-width: 1024px) {
  .prog-dtl__grid-2col {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .prog-dtl__h1 {
    font-size: 48px
  }

  .prog-dtl__price-main {
    font-size: 48px
  }
}

@media (max-width: 768px) {
  .prog-dtl__intro {
    padding: 80px 16px 60px
  }

  .prog-dtl__content {
    padding: 60px 16px
  }

  .prog-dtl__h1 {
    font-size: 36px
  }

  .prog-dtl__price-main {
    font-size: 36px
  }

  .prog-dtl__intro-desc {
    font-size: 16px
  }

  .prog-dtl__program h2,
  .prog-dtl__desc h2 {
    font-size: 20px
  }

  .prog-dtl__program p,
  .prog-dtl__desc p,
  .prog-dtl__program ul li,
  .prog-dtl__desc ul li,
  .prog-dtl__program dt,
  .prog-dtl__desc dt,
  .prog-dtl__program dd,
  .prog-dtl__desc dd,
  .prog-dtl__program blockquote,
  .prog-dtl__program summary,
  .prog-dtl__desc summary {
    font-size: 16px
  }

  .prog-dtl__btn {
    width: 100%;
    padding: 14px 24px
  }

  .prog-dtl__intro-dots {
    width: 120px;
    height: 120px;
    top: 40px;
    right: 5%
  }

  .prog-dtl__intro-dots::before {
    width: 80px;
    height: 80px
  }

  .prog-dtl__intro-dots::after {
    width: 50px;
    height: 50px
  }

  .prog-dtl__desc p:nth-of-type(odd),
  .prog-dtl__desc p:nth-of-type(even) {
    max-width: 100%
  }
}

.pr {
  background: #0f0e14;
  color: #d4d4d4;
  overflow-x: clip;
  position: relative
}

.pr::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 15% 25%, #2f2d460a 0%, transparent 45%), radial-gradient(circle at 85% 75%, #2f2d460a 0%, transparent 45%), radial-gradient(circle at 45% 60%, #2f2d4608 0%, transparent 40%);
  pointer-events: none;
  z-index: 0
}

.pr::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0
}

.pr * {
  position: relative;
  z-index: 1
}

.pr::selection {
  background: #2f2d4640;
  color: #d4d4d4
}

.pr .tx-gr {
  background: linear-gradient(135deg, #F3D48E 0%, #2F2D46 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.pr .tx-gr-rev {
  background: linear-gradient(135deg, #2F2D46 0%, #F3D48E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.pr .op-num {
  position: absolute;
  font-size: 280px;
  font-weight: 700;
  line-height: 1;
  opacity: .02;
  pointer-events: none;
  z-index: 0
}

.pr .divider-gr {
  height: 2px;
  background: linear-gradient(90deg, #F3D48E 0%, #2F2D46 50%, #E1DFDF 100%);
  margin: 80px auto;
  max-width: 1320px
}

.pr .corner-tag {
  position: absolute;
  top: -1px;
  right: -1px;
  background: linear-gradient(135deg, #F3D48E 0%, #2F2D46 100%);
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 600;
  color: #0f0e14;
  border-radius: 0 0 0 16px;
  z-index: 2
}

.pr .bn {
  background: linear-gradient(135deg, #2F2D46 0%, #F3D48E 100%);
  color: #0f0e14;
  border: none;
  padding: 16px 40px;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
  border-radius: 28px;
  cursor: pointer;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 20px 0 #2f2d4614;
  display: inline-block
}

.pr .bn:hover {
  transform: scaleX(1.08);
  box-shadow: 0 10px 40px 0 #2f2d4624
}

.pr .bn:focus {
  outline: 2px solid #F3D48E;
  outline-offset: 4px
}

.pr .bn:active {
  transform: scaleX(1.05)
}

.pr .ttl-blk {
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center
}

.pr .ttl-blk .op-num {
  top: -40px;
  right: 5%;
  font-size: 320px
}

.pr .ttl-txt h1 {
  font-size: 62px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 24px;
  color: #fff
}

.pr .ttl-img-wr {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1
}

.pr .ttl-img-wr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.pr .ttl-img-wr::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2f2d4699 0%, transparent 70%);
  pointer-events: none
}

@media (max-width: 768px) {
  .pr .ttl-blk {
    grid-template-columns: 1fr;
    padding: 80px 24px 40px
  }

  .pr .ttl-txt h1 {
    font-size: 42px
  }

  .pr .ttl-blk .op-num {
    font-size: 180px;
    right: 0
  }
}

.pr .cmmt {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.pr .cmmt h2 {
  font-size: 24px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0 0 24px
}

.pr .cmmt-lt p {
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 520px
}

.pr .cmmt-lt p:last-child {
  margin-bottom: 0
}

.pr .cmmt-rt {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.pr .cmmt-cd {
  background: #2f2d4626;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #f3d48e1a;
  transition: border-color .3s ease-in-out, transform .28s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slide-in-seq .6s ease-out backwards
}

.pr .cmmt-cd:nth-child(1) {
  animation-delay: .1s
}

.pr .cmmt-cd:nth-child(2) {
  animation-delay: .2s
}

.pr .cmmt-cd:nth-child(3) {
  animation-delay: .3s
}

@keyframes slide-in-seq {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

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

.pr .cmmt-cd:hover {
  border-color: #f3d48e4d;
  transform: translateY(-4px)
}

.pr .cmmt-cd h3 {
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0 0 8px
}

.pr .cmmt-cd p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #b8b8b8
}

@media (max-width: 968px) {
  .pr .cmmt {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

.pr .prb {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 24px;
  background: #2f2d4614;
  border-radius: 44px
}

.pr .prb-inn {
  max-width: 900px;
  margin: 0 auto;
  text-align: center
}

.pr .prb h2 {
  font-size: 24px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0 0 40px
}

.pr .prb-grd {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px
}

.pr .prb-itm {
  position: relative;
  background: #0f0e1499;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e1dfdf14;
  text-align: left;
  overflow: hidden
}

.pr .prb-itm::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #F3D48E 0%, #2F2D46 100%);
  opacity: 0;
  transition: opacity .32s ease-in-out
}

.pr .prb-itm:hover::before {
  opacity: 1
}

.pr .prb-itm h3 {
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0 0 16px
}

.pr .prb-itm p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #b8b8b8
}

.pr .prb-txt {
  font-size: 19px;
  line-height: 1.7;
  color: #d4d4d4;
  margin: 0
}

@media (max-width: 768px) {
  .pr .prb-grd {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

.pr .rdy {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center
}

.pr .rdy-txt h2 {
  font-size: 24px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0 0 24px
}

.pr .rdy-txt p {
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 24px
}

.pr .rdy-txt p:nth-child(even) {
  max-width: 480px
}

.pr .rdy-txt p:nth-child(odd) {
  max-width: 580px
}

.pr .rdy-txt p:last-child {
  margin-bottom: 0
}

.pr .rdy-img {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 1 / 1
}

.pr .rdy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .85;
  transition: opacity .35s ease-in-out, transform .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.pr .rdy-img:hover img {
  opacity: 1;
  transform: scale(1.05)
}

@media (max-width: 968px) {
  .pr .rdy {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

.pr .appr {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='5' /%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23grain)' opacity='0.05'/%3E%3C/svg%3E");
  background-color: #2f2d461f;
  border-radius: 44px
}

.pr .appr h2 {
  font-size: 24px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0 0 40px;
  text-align: center
}

.pr .appr-grd {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px
}

.pr .appr-cd {
  position: relative;
  background: #0f0e14b3;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #f3d48e14;
  transition: border-color .3s ease-in-out, box-shadow .3s ease-in-out
}

.pr .appr-cd:hover {
  border-color: #f3d48e40;
  box-shadow: 0 5px 20px 0 #2f2d4614
}

.pr .appr-num {
  font-size: 62px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #2F2D46 0%, #F3D48E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.pr .appr-cd h3 {
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0 0 8px
}

.pr .appr-cd p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #b8b8b8
}

@media (max-width: 968px) {
  .pr .appr-grd {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

.pr .obj {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 24px
}

.pr .obj-inn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.pr .obj-lt h2 {
  font-size: 24px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0 0 24px
}

.pr .obj-lt p {
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 24px
}

.pr .obj-lt p:last-child {
  margin-bottom: 0
}

.pr .obj-rt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.pr .obj-img-wr {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1
}

.pr .obj-img-wr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .75;
  transition: opacity .28s ease-in-out
}

.pr .obj-img-wr:hover img {
  opacity: 1
}

@media (max-width: 968px) {
  .pr .obj-inn {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .pr .obj-rt {
    grid-template-columns: 1fr
  }
}

.pr .ltc {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 24px 120px
}

.pr .ltc h2 {
  font-size: 24px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0 0 40px;
  text-align: center
}

.pr .ltc-grd {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px
}

.pr .ltc-cd {
  position: relative;
  background: #2f2d461a;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e1dfdf1a;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), border-color .3s ease-in-out;
  overflow: visible
}

.pr .ltc-cd:hover {
  transform: translateY(-8px);
  border-color: #e1dfdf33
}

.pr .ltc-cd .corner-tag {
  background: linear-gradient(135deg, #2F2D46 0%, #F3D48E 100%)
}

.pr .ltc-cd h3 {
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0 0 16px
}

.pr .ltc-cd p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 16px;
  color: #b8b8b8
}

.pr .ltc-cd p:last-child {
  margin-bottom: 0
}

.pr .ltc-auth {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  color: #F3D48E;
  margin-top: 16px;
  display: block
}

@media (max-width: 968px) {
  .pr .ltc-grd {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

.pr .acc-box {
  display: inline-block;
  border: 2px solid #F3D48E;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  color: #F3D48E;
  margin: 0 8px 0 0
}

.pr .lst-chk {
  list-style: none;
  padding: 0;
  margin: 0
}

.pr .lst-chk li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
  font-size: 19px;
  line-height: 1.7
}

.pr .lst-chk li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  border: 2px solid #F3D48E;
  border-radius: 4px;
  background: #f3d48e1a
}

.pr .lst-chk li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 10px;
  width: 8px;
  height: 12px;
  border: solid #F3D48E;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg)
}

.pr .lnk-hl {
  color: #d4d4d4;
  text-decoration: none;
  position: relative;
  transition: color .28s ease-in-out;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline
}

.pr .lnk-hl:hover {
  color: #0f0e14;
  background: #F3D48E
}

.prog-hub {
  background: #1a1a20;
  color: #e8e8e8;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden
}

.prog-hub::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, #2f2d4626 0%, transparent 50%), radial-gradient(circle at 80% 70%, #f3d48e14 0%, transparent 50%);
  pointer-events: none;
  z-index: 0
}

.prog-hub * {
  box-sizing: border-box
}

.prog-hub__intro {
  position: relative;
  background: linear-gradient(165deg, #2f2d46e6 0%, transparent 100%);
  padding: 80px 24px;
  overflow: hidden;
  z-index: 1
}

.prog-hub__intro-wrap {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.prog-hub__intro-band {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #F3D48E 100%);
  opacity: .6
}

.prog-hub__intro h1 {
  font-size: 62px;
  line-height: 1.15;
  margin: 0 0 24px;
  letter-spacing: -.02em;
  max-width: 680px
}

.prog-hub__intro h1 .accent-punct {
  background: linear-gradient(135deg, #F3D48E 0%, #2F2D46 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.prog-hub__intro-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 100%;
  opacity: .3;
  z-index: 1
}

.prog-hub__intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.4) hue-rotate(20deg) saturate(1.3)
}

@media (max-width: 968px) {
  .prog-hub__intro-img {
    width: 280px
  }
}

@media (max-width: 640px) {
  .prog-hub__intro {
    padding: 40px 16px
  }

  .prog-hub__intro h1 {
    font-size: 42px
  }

  .prog-hub__intro-img {
    opacity: .15;
    width: 200px
  }
}

.prog-hub__catalog {
  position: relative;
  padding: 80px 24px;
  z-index: 1
}

.prog-hub__catalog-wrap {
  max-width: 1320px;
  margin: 0 auto
}

.prog-hub__catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px
}

@media (max-width: 640px) {
  .prog-hub__catalog {
    padding: 40px 16px
  }

  .prog-hub__catalog-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

.prog-card {
  background: #2f2d464d;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e1dfdf14;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  transform: scale(0.9);
  animation: prog-card-reveal .6s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

.prog-card:nth-child(1) {
  animation-delay: .1s
}

.prog-card:nth-child(2) {
  animation-delay: .2s
}

.prog-card:nth-child(3) {
  animation-delay: .3s
}

@keyframes prog-card-reveal {
  to {
    transform: scale(1)
  }
}

.prog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f3d48e0d 0%, transparent 100%);
  opacity: 0;
  transition: opacity .3s ease-in-out;
  pointer-events: none
}

.prog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px 0 #2f2d4624
}

.prog-card:hover::before {
  opacity: 1
}

.prog-card__visual {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #0f0f14
}

.prog-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.prog-card:hover .prog-card__visual img {
  transform: scale(1.08)
}

.prog-card__meta-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2
}

.prog-card__duration {
  background: #2f2d46eb;
  padding: 8px 16px;
  border-radius: 28px;
  font-size: 14px;
  line-height: 1.45;
  color: #F3D48E;
  backdrop-filter: blur(8px);
  border: 1px solid #f3d48e33
}

.prog-card__readtime {
  background: #e1dfdf26;
  padding: 8px 16px;
  border-radius: 28px;
  font-size: 14px;
  line-height: 1.45;
  color: #e8e8e8;
  backdrop-filter: blur(8px)
}

.prog-card__body {
  padding: 24px
}

.prog-card__title {
  font-size: 24px;
  line-height: 1.45;
  margin: 0 0 16px;
  letter-spacing: -.01em
}

.prog-card__title a {
  color: #e8e8e8;
  text-decoration: none;
  background: linear-gradient(90deg, #F3D48E 0%, #2F2D46 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity .28s ease-in-out
}

.prog-card__title a:hover {
  opacity: .75
}

.prog-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #e1dfdfcc;
  margin: 0 0 24px
}

.prog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-top: 1px solid #e1dfdf14;
  gap: 16px
}

.prog-card__price-block {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.prog-card__price {
  font-size: 24px;
  line-height: 1.15;
  color: #F3D48E;
  font-weight: 600
}

.prog-card__pricedes {
  font-size: 14px;
  line-height: 1.45;
  color: #e1dfdf99
}

.prog-card__cta {
  background: linear-gradient(135deg, #2F2D46 0%, #F3D48E 100%);
  color: #1a1a20;
  padding: 16px 40px;
  border-radius: 44px;
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: width .32s cubic-bezier(0.4, 0, 0.2, 1), padding .32s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  font-weight: 500
}

.prog-card__cta:hover {
  padding-left: 48px;
  padding-right: 48px
}

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

  .prog-card__cta {
    width: 100%;
    text-align: center
  }
}

.prog-hub__divider-wave {
  position: relative;
  height: 80px;
  overflow: hidden
}

.prog-hub__divider-wave svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  fill: #2f2d4633
}

.prog-hub__metrics {
  position: relative;
  padding: 80px 24px;
  background: #2f2d4626;
  z-index: 1
}

.prog-hub__metrics-wrap {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center
}

.prog-hub__metrics h2 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -.01em;
  background: linear-gradient(90deg, #F3D48E 0%, #2F2D46 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.prog-hub__metrics-desc {
  font-size: 19px;
  line-height: 1.7;
  color: #e1dfdfcc;
  max-width: 640px;
  margin: 0 auto 40px
}

.prog-hub__metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0 auto;
  max-width: 960px
}

@media (max-width: 768px) {
  .prog-hub__metrics {
    padding: 40px 16px
  }

  .prog-hub__metrics h2 {
    font-size: 32px
  }

  .prog-hub__metrics-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

.metric-item {
  background: #2f2d4640;
  padding: 40px 24px;
  border-radius: 16px;
  border: 1px solid #f3d48e26;
  position: relative;
  overflow: hidden;
  transform: scale(0.9);
  animation: metric-reveal .6s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

.metric-item:nth-child(1) {
  animation-delay: .15s
}

.metric-item:nth-child(2) {
  animation-delay: .3s
}

.metric-item:nth-child(3) {
  animation-delay: .45s
}

@keyframes metric-reveal {
  to {
    transform: scale(1)
  }
}

.metric-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #F3D48E 0%, transparent 100%);
  opacity: 0;
  transition: opacity .35s ease-in-out;
  border-radius: 16px;
  z-index: -1
}

.metric-item:hover::before {
  opacity: .12
}

.metric-item__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #f3d48e33 0%, #2f2d4633 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.metric-item__icon svg {
  width: 32px;
  height: 32px;
  fill: #F3D48E
}

.metric-item__value {
  font-size: 42px;
  line-height: 1.15;
  color: #F3D48E;
  margin: 0 0 8px;
  font-weight: 600
}

.metric-item__label {
  font-size: 14px;
  line-height: 1.45;
  color: #e1dfdfb3;
  margin: 0
}

.prog-hub__approach {
  position: relative;
  padding: 80px 24px;
  z-index: 1
}

.prog-hub__approach-wrap {
  max-width: 680px;
  margin: 0 auto
}

.prog-hub__approach h2 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 40px;
  letter-spacing: -.01em;
  text-align: center;
  background: linear-gradient(90deg, #2F2D46 0%, #F3D48E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

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

.approach-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: #2f2d4633;
  border-radius: 8px;
  border-left: 4px solid transparent;
  transition: border-color .3s ease-in-out, background .3s ease-in-out
}

.approach-item:hover {
  border-left-color: #F3D48E;
  background: #2f2d4659
}

.approach-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #F3D48E;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
  box-shadow: 0 0 12px #f3d48e80
}

.approach-item__text {
  font-size: 14px;
  line-height: 1.7;
  color: #e1dfdfd9;
  margin: 0
}

@media (max-width: 640px) {
  .prog-hub__approach {
    padding: 40px 16px
  }

  .prog-hub__approach h2 {
    font-size: 32px;
    margin-bottom: 24px
  }
}

.prog-hub__immersion {
  position: relative;
  padding: 80px 24px;
  background: #2F2D46;
  z-index: 1;
  overflow: hidden
}

.prog-hub__immersion::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #f3d48e14 0%, transparent 70%);
  pointer-events: none
}

.prog-hub__immersion-wrap {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2
}

.prog-hub__immersion-content h2 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 24px;
  letter-spacing: -.01em;
  color: #F3D48E
}

.prog-hub__immersion-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #e1dfdfd9;
  margin: 0 0 16px
}

.prog-hub__immersion-content p:last-child {
  margin-bottom: 0
}

.prog-hub__immersion-visual {
  position: relative
}

.prog-hub__immersion-img {
  width: 100%;
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px 0 #2f2d4624
}

.prog-hub__immersion-img::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid #f3d48e4d;
  border-radius: 12px;
  pointer-events: none;
  z-index: 2
}

.prog-hub__immersion-img::after {
  content: '';
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 80px;
  height: 80px;
  background: #f3d48e26;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1
}

.prog-hub__immersion-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

@media (max-width: 968px) {
  .prog-hub__immersion-wrap {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .prog-hub__immersion {
    padding: 40px 16px
  }

  .prog-hub__immersion-content h2 {
    font-size: 32px
  }

  .prog-hub__immersion-img {
    height: 320px
  }
}

.prog-hub__cta-final {
  position: relative;
  padding: 80px 24px;
  text-align: center;
  z-index: 1
}

.prog-hub__cta-final-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: #2f2d4640;
  padding: 40px;
  border-radius: 28px;
  border: 1px solid #f3d48e33;
  position: relative;
  overflow: hidden;
  transform: scale(0.9);
  animation: cta-reveal .6s cubic-bezier(0.4, 0, 0.2, 1) .5s forwards
}

@keyframes cta-reveal {
  to {
    transform: scale(1)
  }
}

.prog-hub__cta-final-wrap::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #f3d48e26 0%, transparent 70%);
  pointer-events: none
}

.prog-hub__cta-final-wrap::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #2f2d464d 0%, transparent 70%);
  pointer-events: none
}

.prog-hub__cta-final h2 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -.01em;
  color: #F3D48E;
  position: relative;
  z-index: 2
}

.prog-hub__cta-final p {
  font-size: 14px;
  line-height: 1.7;
  color: #e1dfdfcc;
  margin: 0 0 24px;
  position: relative;
  z-index: 2
}

.prog-hub__cta-final-btn {
  background: linear-gradient(135deg, #F3D48E 0%, #2F2D46 100%);
  color: #e8e8e8;
  padding: 16px 40px;
  border-radius: 44px;
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: width .32s cubic-bezier(0.4, 0, 0.2, 1), padding .32s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  position: relative;
  z-index: 2
}

.prog-hub__cta-final-btn:hover {
  padding-left: 56px;
  padding-right: 56px
}

@media (max-width: 640px) {
  .prog-hub__cta-final {
    padding: 40px 16px
  }

  .prog-hub__cta-final-wrap {
    padding: 24px
  }

  .prog-hub__cta-final h2 {
    font-size: 32px
  }
}

.abt {
  background: #0f0f0f;
  color: #e8e8e8;
  overflow-x: clip;
  position: relative
}

.abt::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, #ffffff05 2px, #ffffff05 4px);
  pointer-events: none;
  z-index: 1
}

.abt>* {
  position: relative;
  z-index: 2
}

.abt::selection {
  background: #2f2d462e;
  color: #e8e8e8
}

.abt ::selection {
  background: #2f2d462e;
  color: #e8e8e8
}

.abt .intro-banner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 16px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

.abt .intro-banner__visual {
  padding: 80px 24px 40px;
  position: relative
}

.abt .intro-banner__visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(158deg, #2F2D46 0%, #1a1829 100%);
  border-radius: 28px;
  opacity: .4;
  z-index: -1
}

.abt .intro-banner__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 1/1;
  animation: intro-fade-in .8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0
}

@keyframes intro-fade-in {
  to {
    opacity: 1
  }
}

.abt .intro-banner__txt {
  padding: 40px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.abt .intro-banner__heading {
  font-size: 62px;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0;
  background: linear-gradient(158deg, #F3D48E 0%, #E1DFDF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.abt .intro-banner__subheading {
  font-size: 24px;
  line-height: 1.45;
  color: #b8b8b8;
  margin: 0;
  font-weight: 400
}

.abt .intro-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: linear-gradient(158deg, #2F2D46 0%, #1a1829 100%);
  color: #F3D48E;
  text-decoration: none;
  border-radius: 8px;
  font-size: 19px;
  line-height: 1.45;
  transition: width .35s cubic-bezier(0.4, 0, 0.2, 1), background .35s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  box-shadow: 0 5px 20px 0 #2f2d4614
}

.abt .intro-banner__link:hover {
  background: linear-gradient(158deg, #3d3a5e 0%, #252236 100%);
  padding-left: 48px;
  padding-right: 48px
}

.abt .intro-banner__link:focus {
  outline: 2px solid #F3D48E;
  outline-offset: 4px
}

.abt .story-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 16px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  position: relative
}

.abt .story-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #1a1a1a;
  z-index: -1
}

.abt .story-grid::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #0f0f0f;
  z-index: -1
}

.abt .story-grid__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  animation: story-reveal-1 .7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
  transform: scale(0.9)
}

@keyframes story-reveal-1 {
  to {
    opacity: 1;
    transform: scale(1)
  }
}

.abt .story-grid__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: story-reveal-2 .7s .15s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
  transform: scale(0.9)
}

@keyframes story-reveal-2 {
  to {
    opacity: 1;
    transform: scale(1)
  }
}

.abt .story-grid__title {
  font-size: 62px;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  color: #e8e8e8
}

.abt .story-grid__content-wide {
  font-size: 19px;
  line-height: 1.7;
  color: #b8b8b8;
  margin: 0
}

.abt .story-grid__content-wide:nth-of-type(2) {
  max-width: 75%
}

.abt .story-grid__content-wide:nth-of-type(3) {
  max-width: 90%
}

.abt .story-grid__accent-box {
  background: linear-gradient(158deg, #2F2D46 0%, #1a1829 100%);
  padding: 24px;
  border-radius: 16px;
  border-right: 3px solid #F3D48E;
  box-shadow: 0 5px 20px 0 #2f2d4614
}

.abt .story-grid__accent-title {
  font-size: 24px;
  line-height: 1.45;
  margin: 0 0 16px;
  background: linear-gradient(158deg, #F3D48E 0%, #E1DFDF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.abt .story-grid__accent-text {
  font-size: 14px;
  line-height: 1.7;
  color: #b8b8b8;
  margin: 0
}

.abt .story-grid__label {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #F3D48E;
  border-radius: 44px;
  font-size: 14px;
  line-height: 1.45;
  color: #F3D48E;
  text-align: center
}

.abt .story-grid__img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 40px 0 #2f2d4624
}

.abt .story-grid__img-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(158deg, #2f2d464d 0%, #1a18294d 100%);
  z-index: 1;
  pointer-events: none
}

.abt .story-grid__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1
}

.abt .approach-split {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 16px;
  position: relative
}

.abt .approach-split::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 200px;
  background: radial-gradient(ellipse at center, #2f2d4626 0%, transparent 70%);
  pointer-events: none
}

.abt .approach-split__heading {
  font-size: 62px;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 80px;
  text-align: center;
  color: #e8e8e8
}

.abt .approach-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px
}

.abt .approach-split__block {
  position: relative;
  animation: approach-reveal-1 .7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
  transform: scale(0.9)
}

.abt .approach-split__block:nth-child(2) {
  animation: approach-reveal-2 .7s .2s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

@keyframes approach-reveal-1 {
  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes approach-reveal-2 {
  to {
    opacity: 1;
    transform: scale(1)
  }
}

.abt .approach-split__block-title {
  font-size: 24px;
  line-height: 1.45;
  margin: 0 0 24px;
  background: linear-gradient(158deg, #E1DFDF 0%, #F3D48E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.abt .approach-split__img-frame {
  position: relative;
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px 0 #2f2d4614
}

.abt .approach-split__img-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, #0f0f0fb3 100%);
  pointer-events: none
}

.abt .approach-split__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1
}

.abt .approach-split__text {
  font-size: 19px;
  line-height: 1.7;
  color: #b8b8b8;
  margin: 0 0 24px
}

.abt .approach-split__text:last-child {
  margin-bottom: 0
}

.abt .approach-split__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.abt .approach-split__list-item {
  position: relative;
  padding-left: 40px;
  font-size: 19px;
  line-height: 1.7;
  color: #b8b8b8
}

.abt .approach-split__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  border: 2px solid #F3D48E;
  border-radius: 4px;
  background: transparent
}

.abt .approach-split__list-item::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 12px;
  width: 8px;
  height: 14px;
  border-right: 2px solid #F3D48E;
  border-bottom: 2px solid #F3D48E;
  transform: rotate(45deg)
}

.abt .comparison-dual {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 16px;
  background: #1a1a1a;
  border-radius: 28px;
  position: relative;
  overflow: hidden
}

.abt .comparison-dual::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, #f3d48e14 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%
}

.abt .comparison-dual__heading {
  font-size: 62px;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 40px;
  text-align: left;
  color: #e8e8e8;
  padding: 0 24px
}

.abt .comparison-dual__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 0 24px
}

.abt .comparison-dual__option {
  background: #0f0f0f;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  box-shadow: 0 5px 20px 0 #2f2d4614;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: comparison-reveal-1 .7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
  transform: scale(0.9)
}

.abt .comparison-dual__option:nth-child(2) {
  animation: comparison-reveal-2 .7s .25s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

@keyframes comparison-reveal-1 {
  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes comparison-reveal-2 {
  to {
    opacity: 1;
    transform: scale(1)
  }
}

.abt .comparison-dual__option:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px 0 #2f2d4624
}

.abt .comparison-dual__option-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(158deg, #2F2D46 0%, #1a1829 100%);
  color: #F3D48E;
  border-radius: 44px;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 24px;
  box-shadow: inset 0 2px 4px #0003
}

.abt .comparison-dual__option-title {
  font-size: 24px;
  line-height: 1.45;
  margin: 0 0 16px;
  background: linear-gradient(158deg, #E1DFDF 0%, #F3D48E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.abt .comparison-dual__option-text {
  font-size: 19px;
  line-height: 1.7;
  color: #b8b8b8;
  margin: 0 0 24px
}

.abt .comparison-dual__option-text:last-child {
  margin-bottom: 0
}

.abt .comparison-dual__option-img-wrapper {
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 1px 4px 0 #2f2d4614
}

.abt .comparison-dual__option-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1
}

@media (max-width: 1024px) {
  .abt .intro-banner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 16px 24px
  }

  .abt .intro-banner__visual {
    padding: 40px 16px 24px
  }

  .abt .intro-banner__txt {
    padding: 24px 16px 40px
  }

  .abt .intro-banner__heading {
    font-size: 48px
  }

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

  .abt .story-grid__title {
    font-size: 48px
  }

  .abt .story-grid__content-wide:nth-of-type(2),
  .abt .story-grid__content-wide:nth-of-type(3) {
    max-width: 100%
  }

  .abt .approach-split {
    padding: 40px 16px
  }

  .abt .approach-split__heading {
    font-size: 48px;
    margin-bottom: 40px
  }

  .abt .approach-split__grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .abt .comparison-dual {
    padding: 40px 16px
  }

  .abt .comparison-dual__heading {
    font-size: 48px;
    padding: 0 8px
  }

  .abt .comparison-dual__wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 8px
  }

  .abt .comparison-dual__option {
    padding: 24px
  }
}

@media (max-width: 640px) {
  .abt .intro-banner__heading {
    font-size: 36px
  }

  .abt .intro-banner__subheading {
    font-size: 19px
  }

  .abt .story-grid__title {
    font-size: 36px
  }

  .abt .approach-split__heading {
    font-size: 36px
  }

  .abt .comparison-dual__heading {
    font-size: 36px
  }
}

.cntc {
  background: #1a1624;
  color: #e8e6e3;
  position: relative;
  overflow-x: clip
}

.cntc::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, #2f2d4608 2px, #2f2d4608 4px), repeating-linear-gradient(90deg, transparent, transparent 2px, #2f2d4608 2px, #2f2d4608 4px);
  pointer-events: none;
  z-index: 1
}

.cntc>* {
  position: relative;
  z-index: 2
}

.cntc ::selection {
  background: #2f2d462e;
  color: #e8e6e3
}

.cntc input::placeholder,
.cntc textarea::placeholder {
  font-style: italic;
  opacity: .54
}

.hdr-zone {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 24px;
  background: linear-gradient(78deg, #2F2D46 0%, #1a1624 100%);
  position: relative;
  overflow: hidden
}

.hdr-zone::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 280px;
  height: 1px;
  background: #F3D48E
}

.hdr-zone::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, #E1DFDF 50%, transparent 100%)
}

.hdr-txt {
  font-size: 62px;
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #F3D48E 0%, #2F2D46 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hdr-shift 12s ease-in-out infinite
}

@keyframes hdr-shift {

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

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

.hdr-sub {
  font-size: 19px;
  line-height: 1.45;
  margin: 24px 0 0;
  color: #b8b5b0;
  max-width: 580px
}

.form-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
  background: linear-gradient(90deg, #2f2d4614 0%, transparent 100%);
  animation: bg-pulse 6s ease-in-out infinite
}

@keyframes bg-pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .6
  }
}

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

.form-intro {
  font-size: 19px;
  line-height: 1.7;
  color: #c7c4bf;
  margin: 0 0 16px
}

.form-elem {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.form-lbl {
  font-size: 14px;
  line-height: 1.45;
  color: #9d9a94;
  font-weight: 500;
  letter-spacing: .01em
}

.form-input,
.form-area,
.form-select {
  background: #2f2d4638;
  border: 1px solid #e1dfdf1f;
  border-radius: 8px;
  padding: 16px;
  font-size: 19px;
  line-height: 1.45;
  color: #e8e6e3;
  transition: border-color .28s cubic-bezier(0.4, 0, 0.2, 1), background .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none
}

.form-input:focus,
.form-area:focus,
.form-select:focus {
  border-color: #F3D48E;
  background: #2f2d4652;
  box-shadow: 0 5px 20px 0 #f3d48e14
}

.form-input:hover,
.form-area:hover,
.form-select:hover {
  border-color: #e1dfdf3d
}

.form-area {
  min-height: 160px;
  resize: vertical
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23E1DFDF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px
}

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

.privacy-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 8px 0 0
}

.privacy-check {
  width: 20px;
  height: 20px;
  border: 2px solid #e1dfdf3d;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color .32s ease-in-out, background .32s ease-in-out;
  position: relative
}

.privacy-check:hover {
  border-color: #F3D48E
}

.privacy-input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.privacy-input:checked+.privacy-check {
  background: #F3D48E;
  border-color: #F3D48E
}

.privacy-input:checked+.privacy-check::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 9px;
  border: solid #2F2D46;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg)
}

.privacy-txt {
  font-size: 14px;
  line-height: 1.7;
  color: #9d9a94;
  margin: 0
}

.privacy-txt a {
  color: #F3D48E;
  text-decoration: none;
  transition: color .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.privacy-txt a:hover {
  color: #E1DFDF
}

.form-submit {
  background: linear-gradient(112deg, #2F2D46 0%, #F3D48E 100%);
  border: none;
  border-radius: 28px;
  padding: 16px 40px;
  font-size: 19px;
  line-height: 1.45;
  color: #1a1624;
  font-weight: 600;
  cursor: pointer;
  transition: width .35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s cubic-bezier(0.4, 0, 0.2, 1), transform .35s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  position: relative;
  overflow: hidden
}

.form-submit:hover {
  width: calc(100% - 80px);
  box-shadow: 0 10px 40px 0 #f3d48e24;
  transform: translateY(-2px)
}

.form-submit:active {
  transform: translateY(0)
}

.side-info {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.info-block {
  padding: 24px;
  background: #2f2d4629;
  border-radius: 16px;
  border: 1px solid #e1dfdf14;
  position: relative;
  transition: border-color .38s ease-in-out, box-shadow .38s ease-in-out
}

.info-block:hover {
  border-color: #f3d48e3d;
  box-shadow: 0 5px 20px 0 #2f2d4614
}

.info-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: linear-gradient(180deg, #F3D48E 0%, #2F2D46 100%);
  border-radius: 0 4px 4px 0
}

.info-ttl {
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0 0 16px;
  color: #e8e6e3;
  padding-left: 16px
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 0 8px 16px;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.info-item:hover {
  transform: translateX(4px)
}

.info-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F3D48E;
  font-size: 24px
}

.info-detail {
  flex: 1
}

.info-detail a {
  color: #c7c4bf;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.7;
  transition: color .3s ease-in-out;
  display: inline-block
}

.info-detail a:hover {
  color: #F3D48E;
  background: #f3d48e14;
  padding: 2px 8px;
  margin: -2px -8px;
  border-radius: 4px
}

.info-txt {
  font-size: 14px;
  line-height: 1.7;
  color: #c7c4bf;
  margin: 0
}

.progress-wrap {
  margin-top: 16px;
  padding-left: 16px
}

.progress-lbl {
  font-size: 14px;
  line-height: 1.45;
  color: #9d9a94;
  margin: 0 0 8px
}

.progress-bar {
  display: flex;
  gap: 8px;
  height: 8px
}

.progress-seg {
  flex: 1;
  background: #e1dfdf1f;
  border-radius: 44px;
  position: relative;
  overflow: hidden
}

.progress-seg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, #F3D48E 0%, #2F2D46 100%);
  border-radius: 44px;
  animation: seg-fill 2s ease-in-out forwards
}

.progress-seg:nth-child(1)::before {
  animation-delay: .2s;
  width: 100%
}

.progress-seg:nth-child(2)::before {
  animation-delay: .4s;
  width: 100%
}

.progress-seg:nth-child(3)::before {
  animation-delay: .6s;
  width: 100%
}

.progress-seg:nth-child(4)::before {
  animation-delay: .8s;
  width: 72%
}

@keyframes seg-fill {
  from {
    width: 0
  }
}

.divider {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, #F3D48E 0px, #F3D48E 8px, transparent 8px, transparent 16px);
  opacity: .32
}

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

  .form-grid {
    grid-template-columns: 1fr
  }

  .side-info {
    order: -1
  }
}

@media (max-width: 768px) {
  .hdr-zone {
    padding: 40px 16px
  }

  .hdr-txt {
    font-size: 48px
  }

  .form-wrap {
    padding: 40px 16px
  }

  .form-submit:hover {
    width: 100%
  }
}

@media (min-width: 769px) {

  .form-input,
  .form-area,
  .form-select {
    display: block !important
  }
}

.pdc {
  background: #0f0e15;
  color: #e8e8e8;
  min-height: 100vh;
  position: relative
}

.pdc::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 800px 600px at 20% 30%, #2f2d4626 0%, transparent 50%), radial-gradient(ellipse 600px 800px at 80% 70%, #f3d48e14 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: pdc-aurora 18s ease-in-out infinite
}

@keyframes pdc-aurora {

  0%,
  100% {
    opacity: .4;
    transform: translateY(0) scale(1)
  }

  50% {
    opacity: .6;
    transform: translateY(-20px) scale(1.05)
  }
}

.pdc::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, #f3d48e05 40px, #f3d48e05 80px);
  pointer-events: none;
  z-index: 1
}

.pdc>* {
  position: relative;
  z-index: 2
}

.pdc::selection {
  background: #2f2d464d;
  color: #e8e8e8
}

.pdc-ttl {
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 24px 200px;
  position: relative;
  overflow: visible
}

.pdc-ttl::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at top right, #f3d48e1f 0%, transparent 70%);
  pointer-events: none;
  z-index: 0
}

.pdc-ttl__inner {
  position: relative;
  z-index: 2
}

.pdc-ttl__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.pdc-ttl__txt h1 {
  font-size: 62px;
  line-height: 1.15;
  margin: 0 0 24px;
  letter-spacing: -.02em;
  color: #fff
}

.pdc-ttl__txt p {
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 16px;
  color: #b8b8b8;
  max-width: 540px
}

.pdc-ttl__txt p:last-of-type {
  margin-bottom: 0
}

.pdc-ttl__vis {
  position: relative
}

.pdc-ttl__img {
  width: 100%;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  position: relative
}

.pdc-ttl__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, #0f0e15b3 100%);
  z-index: 1;
  pointer-events: none
}

.pdc-ttl__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #0f0e1526;
  z-index: 2;
  pointer-events: none
}

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

@media (max-width: 768px) {
  .pdc-ttl {
    padding: 80px 16px 120px
  }

  .pdc-ttl__grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .pdc-ttl__txt h1 {
    font-size: 42px
  }

  .pdc-ttl__img {
    height: 400px
  }
}

.pdc-arc {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative
}

.pdc-arc::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #f3d48e33 50%, transparent 100%);
  filter: blur(2px)
}

.pdc-arc__hd {
  text-align: center;
  margin-bottom: 80px
}

.pdc-arc__hd h2 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -.01em;
  background: linear-gradient(135deg, #F3D48E 0%, #2F2D46 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block
}

.pdc-arc__hd p {
  font-size: 19px;
  line-height: 1.7;
  margin: 0;
  color: #b8b8b8;
  max-width: 680px;
  margin: 0 auto
}

.pdc-arc__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0
}

.pdc-arc__item {
  background: #2f2d4626;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 20px 0 #2f2d4614;
  border: 1px solid #f3d48e1a
}

.pdc-arc__item::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  background: #f3d48e0d;
  border-radius: 16px;
  z-index: -1;
  transition: opacity .35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0
}

.pdc-arc__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px 0 #2f2d4624
}

.pdc-arc__item:hover::after {
  opacity: 1
}

.pdc-arc__num {
  font-size: 62px;
  line-height: 1.15;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #F3D48E 0%, #2F2D46 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700
}

.pdc-arc__item h3 {
  font-size: 24px;
  line-height: 1.45;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: -.01em
}

.pdc-arc__item p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #b8b8b8
}

@media (max-width: 1024px) {
  .pdc-arc__list {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 640px) {
  .pdc-arc {
    padding: 60px 16px
  }

  .pdc-arc__hd {
    margin-bottom: 40px
  }

  .pdc-arc__hd h2 {
    font-size: 32px
  }

  .pdc-arc__list {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .pdc-arc__item {
    padding: 24px
  }
}

.pdc-seq {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative
}

.pdc-seq::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #f3d48e33 50%, transparent 100%);
  filter: blur(2px)
}

.pdc-seq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 40px;
  align-items: start
}

.pdc-seq__col {
  background: #2f2d461f;
  border-radius: 16px;
  padding: 40px;
  box-shadow: inset 0 2px 4px 0 #0f0e154d 0 1px 4px 0 #2f2d4614
}

.pdc-seq__col.wide {
  background: transparent;
  padding: 0;
  box-shadow: none
}

.pdc-seq__col h2 {
  font-size: 24px;
  line-height: 1.45;
  margin: 0 0 24px;
  color: #fff;
  letter-spacing: -.01em
}

.pdc-seq__col p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 16px;
  color: #b8b8b8
}

.pdc-seq__col p:last-child {
  margin-bottom: 0
}

.pdc-seq__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative
}

.pdc-seq__steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, #f3d48e4d 0%, #2f2d464d 100%)
}

.pdc-seq__step {
  position: relative;
  padding-left: 64px;
  margin-bottom: 40px
}

.pdc-seq__step:last-child {
  margin-bottom: 0
}

.pdc-seq__step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #F3D48E 0%, #2F2D46 100%);
  border-radius: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  z-index: 1
}

.pdc-seq__step:nth-child(1)::before {
  content: '1'
}

.pdc-seq__step:nth-child(2)::before {
  content: '2'
}

.pdc-seq__step:nth-child(3)::before {
  content: '3'
}

.pdc-seq__step:nth-child(4)::before {
  content: '4'
}

.pdc-seq__step:nth-child(5)::before {
  content: '5'
}

.pdc-seq__step h3 {
  font-size: 19px;
  line-height: 1.45;
  margin: 0 0 8px;
  color: #fff
}

.pdc-seq__step p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #b8b8b8
}

@media (max-width: 1024px) {
  .pdc-seq__grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .pdc-seq__col.wide {
    background: #2f2d461f;
    padding: 40px;
    box-shadow: inset 0 2px 4px 0 #0f0e154d 0 1px 4px 0 #2f2d4614
  }
}

@media (max-width: 640px) {
  .pdc-seq {
    padding: 60px 16px
  }

  .pdc-seq__col {
    padding: 24px
  }

  .pdc-seq__col.wide {
    padding: 24px
  }

  .pdc-seq__step {
    padding-left: 56px;
    margin-bottom: 32px
  }

  .pdc-seq__steps::before {
    left: 15px
  }

  .pdc-seq__step::before {
    width: 32px;
    height: 32px;
    font-size: 12px
  }
}

.pdc-exp {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  position: relative
}

.pdc-exp::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #f3d48e33 50%, transparent 100%);
  filter: blur(2px)
}

.pdc-exp__wrap {
  background-image: url(./graphics/_MG_5166.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 40px 0 #2f2d4624
}

.pdc-exp__wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0f0e15bf;
  z-index: 1
}

.pdc-exp__inner {
  position: relative;
  z-index: 2;
  padding: 80px;
  width: 100%
}

.pdc-exp__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center
}

.pdc-exp__txt h2 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 24px;
  color: #fff;
  letter-spacing: -.02em
}

.pdc-exp__txt p {
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 16px;
  color: #e8e8e8;
  max-width: 620px
}

.pdc-exp__txt p:nth-child(3) {
  max-width: 480px
}

.pdc-exp__txt p:last-of-type {
  margin-bottom: 0
}

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

.pdc-exp__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #F3D48E 0%, #2F2D46 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1), width .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 20px 0 #2f2d4614;
  position: relative;
  overflow: hidden;
  white-space: nowrap
}

.pdc-exp__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px 0 #2f2d4624;
  padding-left: 48px;
  padding-right: 48px
}

.pdc-exp__btn:focus-visible {
  outline: 2px solid #F3D48E !important;
  outline-offset: 2px !important
}

.pdc-exp__icon {
  width: 80px;
  height: 80px;
  background: #f3d48e26;
  border-radius: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.pdc-exp__icon:hover {
  transform: rotate(180deg)
}

.pdc-exp__icon-default,
.pdc-exp__icon-alt {
  position: absolute;
  font-size: 32px;
  color: #F3D48E;
  transition: opacity .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.pdc-exp__icon-alt {
  opacity: 0
}

.pdc-exp__icon:hover .pdc-exp__icon-default {
  opacity: 0
}

.pdc-exp__icon:hover .pdc-exp__icon-alt {
  opacity: 1
}

@media (max-width: 1024px) {
  .pdc-exp__grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .pdc-exp__cta {
    justify-content: flex-start
  }
}

@media (max-width: 640px) {
  .pdc-exp {
    padding: 60px 16px 80px
  }

  .pdc-exp__inner {
    padding: 40px 24px
  }

  .pdc-exp__txt h2 {
    font-size: 32px
  }

  .pdc-exp__txt p {
    font-size: 16px
  }

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

  .pdc-exp__btn {
    width: 100%;
    justify-content: center
  }
}

.success-page {
  background: linear-gradient(158deg, #1a1625 0%, #2F2D46 100%);
  min-height: 100vh;
  padding: 80px 24px;
  position: relative
}

.success-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, #f3d48e08 0%, transparent 40%), radial-gradient(circle at 80% 70%, #f3d48e05 0%, transparent 35%);
  pointer-events: none
}

.success-page .wrap {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.success-page .confirm-box {
  background: #2f2d4666;
  border: 1px solid #f3d48e26;
  border-radius: 28px;
  padding: 80px 40px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 10px 40px 0 #2f2d4624
}

.success-page .icon-wrap {
  width: 88px;
  height: 88px;
  margin: 0 auto 40px;
  position: relative
}

.success-page .icon-circle {
  width: 100%;
  height: 100%;
  border-radius: 44px;
  background: linear-gradient(202deg, #F3D48E 0%, #d4b76a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px 0 #f3d48e14
}

.success-page .icon-check {
  width: 44px;
  height: 44px;
  stroke: #2F2D46;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.success-page .heading-main {
  font-size: 62px;
  line-height: 1.15;
  color: #E1DFDF;
  margin: 0 0 24px;
  letter-spacing: -.02em
}

.success-page .msg-text {
  font-size: 19px;
  line-height: 1.7;
  color: #e1dfdfd9;
  margin: 0 0 40px
}

.success-page .info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 0 40px;
  text-align: left
}

.success-page .info-item {
  background: #2f2d464d;
  border: 1px solid #f3d48e1a;
  border-radius: 16px;
  padding: 24px;
  transition: border-color .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.success-page .info-item:hover {
  border-color: #f3d48e40
}

.success-page .info-label {
  font-size: 14px;
  line-height: 1.45;
  color: #e1dfdf99;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .05em
}

.success-page .info-value {
  font-size: 19px;
  line-height: 1.45;
  color: #E1DFDF;
  margin: 0
}

.success-page .btn-home {
  display: inline-block;
  background: linear-gradient(117deg, #F3D48E 0%, #d4b76a 100%);
  color: #2F2D46;
  font-size: 19px;
  line-height: 1.45;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: width .32s ease-in-out, padding .32s ease-in-out;
  box-shadow: 0 5px 20px 0 #f3d48e14
}

.success-page .btn-home:hover {
  padding: 16px 56px
}

.success-page .note-bottom {
  margin: 40px 0 0;
  padding: 24px;
  background: #f3d48e0d;
  border-radius: 16px;
  border: 1px solid #f3d48e14
}

.success-page .note-text {
  font-size: 14px;
  line-height: 1.7;
  color: #e1dfdfb3;
  margin: 0
}

@media (min-width: 768px) {
  .success-page .info-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 767px) {
  .success-page {
    padding: 40px 16px
  }

  .success-page .confirm-box {
    padding: 40px 24px
  }

  .success-page .heading-main {
    font-size: 24px
  }

  .success-page .icon-wrap {
    width: 64px;
    height: 64px;
    margin-bottom: 24px
  }

  .success-page .icon-check {
    width: 32px;
    height: 32px
  }
}