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

* {
  box-sizing: inherit
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: linear-gradient(165deg, #0a0514 0%, #0f0820 35%, #14082e 70%, #0d0619 100%);
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #e8e6f0;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: .015em
}

.top-bar {
  background: linear-gradient(135deg, #4e37e926 0%, #045eaa1f 100%);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid #4e37e947;
  box-shadow: 1px 4px 18px 0 #4e37e91c;
  position: relative;
  z-index: 100
}

.top-bar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: start
}

.brand-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: #0a0514d9;
  padding: 36px;
  border-radius: 36px;
  border: 2px solid #4e37e966;
  box-shadow: 1px 10px 48px 0 #4e37e91c inset 1px 2px 4px 0 #4e37e914;
  position: relative
}

.brand-stack::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #FAC613 50%, transparent 100%);
  opacity: .7
}

.logo-holder {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fac6130d;
  border-radius: 4px;
  border: 1px solid #fac61340;
  box-shadow: 1px 3px 2px 0 #fac61314;
  padding: 8px
}

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

.brand-name {
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: #FAC613;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px #fac6134d
}

.nav-right-zone {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 8px
}

.value-text {
  font-size: 18px;
  line-height: 1.55;
  color: #c5c1d8;
  letter-spacing: .02em;
  max-width: 720px;
  background: linear-gradient(110deg, #4e37e914 0%, #045eaa14 100%);
  padding: 16px 36px;
  border-radius: 36px;
  border: 1px solid #045eaa4d;
  box-shadow: inset 1px 2px 3px 0 #045eaa14;
  position: relative
}

.value-text::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: 36px;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #045EAA 100%)
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center
}

.nav-link {
  font-size: 16px;
  font-weight: 400;
  color: #e8e6f0;
  text-decoration: none;
  padding: 16px 36px;
  background: #4e37e91f;
  border: 1px solid #4e37e959;
  border-radius: 36px;
  letter-spacing: .025em;
  transition: background .28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .28s cubic-bezier(0.34, 1.56, 0.64, 1), transform .2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 1px 3px 2px 0 #4e37e914;
  position: relative;
  overflow: hidden
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #fac61326;
  transform: translate(-50%, -50%);
  transition: width .35s cubic-bezier(0.68, -0.55, 0.27, 1.55), height .35s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.nav-link:hover {
  background: #4e37e938;
  border-color: #4E37E9;
  transform: translateY(-2px);
  box-shadow: 1px 10px 48px 0 #4e37e91c
}

.nav-link:hover::before {
  width: 300px;
  height: 300px
}

.nav-link:focus {
  outline: none;
  border-color: #FAC613;
  box-shadow: 1px 4px 18px 0 #fac6131c 0 0 0 3px #fac61333
}

.nav-link:focus::after {
  content: 'focused';
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: #FAC613;
  background: #0a0514f2;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: .03em
}

.nav-link:active {
  transform: translateY(1px);
  box-shadow: inset 1px 2px 4px 0 #4e37e933
}

@media (max-width: 1280px) {
  .top-bar-inner {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .brand-stack {
    margin: 0 auto
  }

  .nav-right-zone {
    align-items: center
  }

  .value-text {
    text-align: center
  }

  .primary-nav {
    justify-content: center
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    padding: 36px 16px
  }

  .brand-stack {
    padding: 16px 36px
  }

  .logo-holder {
    width: 72px;
    height: 72px
  }

  .value-text {
    font-size: 16px;
    padding: 16px
  }

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

@media (max-width: 390px) {
  .top-bar-inner {
    padding: 16px;
    gap: 16px
  }

  .brand-stack {
    padding: 16px
  }

  .nav-right-zone {
    gap: 16px
  }

  .primary-nav {
    flex-direction: column;
    width: 100%
  }

  .nav-link {
    width: 100%;
    text-align: center
  }
}

.base-floor {
  background: linear-gradient(175deg, #0d0619 0%, #1a0d2e 50%, #0a0514 100%);
  border-top: 2px solid #4e37e959;
  position: relative;
  overflow: hidden
}

.base-floor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #FAC613 20%, #4E37E9 50%, #045EAA 80%, transparent 100%);
  opacity: .6
}

.base-floor-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 36px 36px
}

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

.left-cell {
  background: #4e37e914;
  backdrop-filter: blur(12px);
  border: 2px solid #4e37e94d;
  border-radius: 36px;
  padding: 36px;
  box-shadow: 1px 10px 48px 0 #4e37e91c inset 1px 2px 4px 0 #4e37e914;
  position: relative
}

.left-cell::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 36px;
  right: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #4E37E9 50%, transparent 100%)
}

.left-cell::after {
  content: '';
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at center, #fac61326 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.brand-footer-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px
}

.logo-footer-holder {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #045eaa1f;
  border-radius: 4px;
  border: 1px solid #045eaa66;
  box-shadow: 1px 3px 2px 0 #045eaa14;
  padding: 8px
}

.logo-footer-holder img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.brand-footer-name {
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: #045EAA;
  letter-spacing: .08em;
  text-transform: uppercase
}

.company-year {
  font-size: 16px;
  color: #9d98b8;
  letter-spacing: .02em;
  text-align: center;
  line-height: 1.55
}

.right-cell {
  background: #045eaa14;
  backdrop-filter: blur(12px);
  border: 2px solid #045eaa4d;
  border-radius: 36px;
  padding: 36px;
  box-shadow: 1px 10px 48px 0 #045eaa1c inset 1px 2px 4px 0 #045eaa14;
  position: relative
}

.right-cell::before {
  content: '';
  position: absolute;
  top: -2px;
  right: 36px;
  left: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #045EAA 50%, transparent 100%)
}

.right-cell::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at center, #4e37e933 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.reach-label {
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: #FAC613;
  letter-spacing: .05em;
  margin-bottom: 16px;
  text-transform: uppercase
}

.reach-list {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.reach-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: #c5c1d8;
  letter-spacing: .02em;
  line-height: 1.55;
  padding: 16px;
  background: #045eaa14;
  border-radius: 4px;
  border: 1px solid #045eaa40;
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .2s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.reach-item:hover {
  background: #045eaa26;
  border-color: #045EAA;
  transform: translateX(4px)
}

.reach-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #4E37E9 0%, #045EAA 100%);
  box-shadow: 1px 3px 2px 0 #045eaa14
}

.reach-link {
  color: #e8e6f0;
  text-decoration: none;
  transition: color .2s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.reach-link:hover {
  color: #FAC613
}

.reach-link:focus {
  outline: none;
  color: #FAC613;
  text-decoration: underline;
  text-decoration-color: #FAC613;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px
}

.legal-strip {
  padding-top: 36px;
  border-top: 1px solid #4e37e940;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap
}

.copyright-text {
  font-size: 16px;
  color: #7d7793;
  letter-spacing: .015em
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px
}

.legal-link {
  font-size: 16px;
  color: #9d98b8;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid #4e37e933;
  letter-spacing: .02em;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1), background .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.legal-link:hover {
  color: #e8e6f0;
  border-color: #4E37E9;
  background: #4e37e91f
}

.legal-link:focus {
  outline: none;
  color: #FAC613;
  border-color: #FAC613;
  box-shadow: 0 0 0 2px #fac61333;
  position: relative
}

.legal-link:focus::before {
  content: 'in focus';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: #FAC613;
  background: #0a0514f2;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: .03em
}

@media (max-width: 1280px) {
  .floor-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

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

@media (max-width: 768px) {
  .base-floor-inner {
    padding: 36px 16px 16px
  }

  .floor-grid {
    margin-bottom: 36px
  }

  .left-cell,
  .right-cell {
    padding: 16px
  }

  .legal-strip {
    padding-top: 16px;
    gap: 16px
  }

  .legal-nav {
    width: 100%;
    flex-direction: column
  }

  .legal-link {
    width: 100%;
    text-align: center
  }
}

@media (max-width: 390px) {
  .base-floor-inner {
    padding: 16px
  }

  .floor-grid {
    gap: 16px;
    margin-bottom: 16px
  }

  .left-cell::after,
  .right-cell::after {
    display: none
  }
}

.consent-frame {
  position: fixed;
  bottom: 36px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 920px;
  width: calc(100% - 72px);
  background: linear-gradient(135deg, #0a0514fa 0%, #14082efa 100%);
  backdrop-filter: blur(24px) saturate(1.6);
  border: 2px solid #4e37e973;
  border-radius: 36px;
  padding: 36px;
  box-shadow: 1px 10px 48px 0 #4e37e91c 1px 4px 18px 0 #045eaa1c;
  z-index: 2000;
  display: none
}

.consent-frame.active {
  display: block
}

.consent-text {
  font-size: 16px;
  line-height: 1.55;
  color: #c5c1d8;
  letter-spacing: .02em;
  margin-bottom: 8px
}

.consent-headline {
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: #FAC613;
  letter-spacing: .04em;
  margin-bottom: 16px
}

.consent-policy-link {
  color: #4E37E9;
  text-decoration: underline;
  text-decoration-color: #4e37e966;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .2s cubic-bezier(0.34, 1.56, 0.64, 1), text-decoration-color .2s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.consent-policy-link:hover {
  color: #FAC613;
  text-decoration-color: #FAC613
}

.consent-policy-link:focus {
  outline: none;
  color: #FAC613;
  text-decoration-thickness: 2px
}

.consent-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap
}

.consent-btn {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #e8e6f0;
  background: #4e37e933;
  border: 1px solid #4e37e980;
  border-radius: 36px;
  padding: 16px 36px;
  cursor: pointer;
  letter-spacing: .025em;
  transition: background .28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .28s cubic-bezier(0.34, 1.56, 0.64, 1), transform .2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 1px 3px 2px 0 #4e37e914;
  position: relative;
  overflow: hidden
}

.consent-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #fac61333;
  transform: translate(-50%, -50%);
  transition: width .35s cubic-bezier(0.68, -0.55, 0.27, 1.55), height .35s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.consent-btn:hover {
  background: #4e37e959;
  border-color: #4E37E9;
  transform: translateY(-2px);
  box-shadow: 1px 10px 48px 0 #4e37e91c
}

.consent-btn:hover::before {
  width: 300px;
  height: 300px
}

.consent-btn:focus {
  outline: none;
  border-color: #FAC613;
  box-shadow: 0 0 0 3px #fac61333
}

.consent-btn:active {
  transform: translateY(1px);
  box-shadow: inset 1px 2px 4px 0 #4e37e933
}

.consent-settings-link {
  font-size: 16px;
  color: #9d98b8;
  text-decoration: underline;
  text-decoration-color: #9d98b866;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  letter-spacing: .02em;
  transition: color .2s cubic-bezier(0.34, 1.56, 0.64, 1), text-decoration-color .2s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.consent-settings-link:hover {
  color: #FAC613;
  text-decoration-color: #FAC613
}

.consent-settings-link:focus {
  outline: none;
  color: #FAC613;
  text-decoration-thickness: 2px
}

.consent-toggles {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #4e37e940
}

.consent-toggles.visible {
  display: flex
}

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

.toggle-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #4E37E9
}

.toggle-label {
  font-size: 16px;
  color: #c5c1d8;
  letter-spacing: .02em;
  cursor: pointer;
  user-select: none
}

@media (max-width: 768px) {
  .consent-frame {
    width: calc(100% - 36px);
    bottom: 16px;
    padding: 16px
  }

  .consent-actions {
    flex-direction: column
  }

  .consent-btn {
    width: 100%;
    text-align: center
  }
}

@media (max-width: 390px) {
  .consent-frame {
    width: calc(100% - 16px)
  }
}

.terms-body {
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 16px;
  background: #4e37e908;
  border-radius: 4px
}

@media (min-width: 768px) {
  .terms-body {
    padding: 72px 36px
  }
}

@media (min-width: 1280px) {
  .terms-body {
    padding: 72px
  }
}

.terms-body p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
  color: #ffffffde
}

.terms-body p:last-child {
  margin-bottom: 0
}

.terms-body ul,
.terms-body ol {
  margin: 0 0 16px;
  padding-left: 36px
}

.terms-body ul {
  list-style-type: disc
}

.terms-body ol {
  list-style-type: decimal
}

.terms-body li {
  font-size: 16px;
  line-height: 1.75;
  color: #ffffffde;
  margin-bottom: 8px;
  padding-left: 8px
}

.terms-body li:last-child {
  margin-bottom: 0
}

.terms-body ul ul,
.terms-body ol ol,
.terms-body ul ol,
.terms-body ol ul {
  margin-top: 8px;
  margin-bottom: 8px
}

.terms-body em,
.terms-body i {
  font-style: italic;
  color: #fac613eb
}

.terms-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 36px;
  background: #045eaa14;
  border-radius: 4px;
  overflow: hidden
}

.terms-body thead {
  background: #4e37e92e
}

.terms-body th {
  font-size: 16px;
  line-height: 1.55;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: #fffffff2;
  border-bottom: 1px solid #4e37e94d
}

.terms-body td {
  font-size: 16px;
  line-height: 1.75;
  padding: 16px;
  color: #ffffffde;
  border-bottom: 1px solid #4e37e91f
}

.terms-body tbody tr:last-child td {
  border-bottom: none
}

.terms-body tbody tr {
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.terms-body tbody tr:hover {
  background: #4e37e90f
}

@media (max-width: 767px) {
  .terms-body table {
    display: block;
    overflow-x: auto
  }

  .terms-body th,
  .terms-body td {
    padding: 8px;
    font-size: 16px
  }
}

.terms-body div {
  margin-bottom: 16px
}

.terms-body div:last-child {
  margin-bottom: 0
}

.idx {
  background: #0a0a0f;
  color: #e8e9ed;
  overflow-x: clip;
  max-width: 100%
}

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

.idx .ld-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px
}

.idx .opener {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 620px;
  padding: 72px 0;
  overflow: hidden
}

.idx .opener::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  background: radial-gradient(ellipse 60% 50% at 70% 40%, #4e37e926, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1
}

.idx .opener-txt {
  position: relative;
  z-index: 2;
  padding-right: 72px;
  animation: slide-in-left .8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-120px)
  }

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

.idx .opener-hd {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 36px;
  font-weight: 700;
  color: #fff
}

.idx .opener-hd br {
  display: block
}

.idx .opener-desc {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .01em;
  margin: 0 0 36px;
  color: #c1c3cc
}

.idx .opener-act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: #4E37E9;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .02em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .18s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: 1px 10px 48px 0 #4e37e91c;
  text-decoration: none
}

.idx .opener-act::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #fff3;
  transform: translate(-50%, -50%);
  transition: width .5s cubic-bezier(0.34, 1.56, 0.64, 1), height .5s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.idx .opener-act:hover {
  background: #5d47f0;
  transform: translateY(-2px);
  box-shadow: 1px 10px 48px 0 #4e37e92e
}

.idx .opener-act:active {
  transform: scale(0.96)
}

.idx .opener-act:active::before {
  width: 300px;
  height: 300px
}

.idx .opener-act:focus-visible {
  outline: 3px solid #FAC613 !important;
  outline-offset: 4px !important
}

.idx .opener-vis {
  position: relative;
  z-index: 2;
  height: 520px;
  animation: slide-in-left 1s cubic-bezier(0.34, 1.56, 0.64, 1) .2s forwards;
  opacity: 0
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-120px)
  }

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

.idx .opener-vis-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid #4e37e94d;
  box-shadow: 1px 10px 48px 0 #4e37e91c inset 0 0 0 1px #ffffff0d
}

.idx .opener-vis-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4e37e940;
  z-index: 2;
  transition: opacity .35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none
}

.idx .opener-vis-inner:hover::before {
  opacity: 0
}

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

.idx .opener-deco {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid #045eaa33;
  border-radius: 36px;
  top: 15%;
  left: -60px;
  z-index: 0;
  transform: rotate(-15deg);
  pointer-events: none
}

.idx .opener-deco-alt {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid #fac61326;
  border-radius: 50%;
  bottom: 20%;
  right: 10%;
  z-index: 0;
  pointer-events: none
}

.idx .journey {
  position: relative;
  padding: 72px 0;
  background: linear-gradient(158deg, #0d0d14 0%, #12121c 50%, #0a0a0f 100%)
}

.idx .journey::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, #045eaa14, transparent 65%);
  pointer-events: none;
  z-index: 1
}

.idx .journey-inner {
  position: relative;
  z-index: 2;
  animation: slide-in-left .9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

.idx .journey-hd {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -.01em;
  margin: 0 0 16px;
  font-weight: 700;
  color: #fff;
  text-align: center
}

.idx .journey-lead {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .01em;
  margin: 0 0 72px;
  color: #a8aab5;
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto
}

.idx .journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px
}

.idx .journey-card {
  background: #12121c99;
  border: 2px solid #4e37e933;
  border-radius: 4px;
  padding: 36px;
  position: relative;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 1px 3px 2px 0 #4e37e914;
  backdrop-filter: blur(12px)
}

.idx .journey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4E37E9, #045EAA);
  opacity: 0;
  transition: opacity .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.idx .journey-card:hover {
  transform: translateY(-8px);
  border-color: #4e37e980;
  box-shadow: 1px 10px 48px 0 #4e37e91c
}

.idx .journey-card:hover::before {
  opacity: 1
}

.idx .journey-card:active {
  transform: scale(1.05) translateY(-8px)
}

.idx .journey-card-num {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 700;
  color: #4e37e94d;
  margin: 0 0 16px;
  letter-spacing: -.03em
}

.idx .journey-card-title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: .01em
}

.idx .journey-card-txt {
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  color: #a8aab5;
  letter-spacing: .01em
}

.idx .catalog {
  position: relative;
  padding: 72px 0;
  background: #0a0a0f
}

.idx .catalog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 60% 55% at 75% 45%, #fac6130f, transparent 70%);
  pointer-events: none;
  z-index: 1
}

.idx .catalog-inner {
  position: relative;
  z-index: 2;
  animation: slide-in-left .95s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

.idx .catalog-hd {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -.01em;
  margin: 0 0 72px;
  font-weight: 300;
  color: #fff;
  text-align: center
}

.idx .catalog-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start
}

.idx .catalog-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  background: #12121c80;
  border: 2px solid #045eaa33;
  border-radius: 36px;
  padding: 36px;
  position: relative;
  transition: transform .26s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .26s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 1px 4px 18px 0 #045eaa1c;
  backdrop-filter: blur(10px)
}

.idx .catalog-item:hover {
  transform: translateX(8px);
  border-color: #045eaa80;
  box-shadow: 1px 10px 48px 0 #045eaa1c
}

.idx .catalog-item:active {
  transform: scale(1.04) translateX(8px)
}

.idx .catalog-item:nth-child(even) {
  grid-template-columns: 1fr 280px
}

.idx .catalog-item:nth-child(even) .catalog-item-vis {
  order: 2
}

.idx .catalog-item:nth-child(even) .catalog-item-content {
  order: 1
}

.idx .catalog-item-vis {
  position: relative;
  width: 280px;
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid #045eaa4d;
  box-shadow: 1px 4px 18px 0 #045eaa1c inset 0 0 0 1px #ffffff0a
}

.idx .catalog-item-vis::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #045eaa33;
  z-index: 2;
  transition: opacity .32s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none
}

.idx .catalog-item:hover .catalog-item-vis::before {
  opacity: 0
}

.idx .catalog-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.idx .catalog-item-content {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.idx .catalog-item-title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
  color: #fff;
  letter-spacing: .01em
}

.idx .catalog-item-txt {
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  color: #a8aab5;
  letter-spacing: .01em
}

.idx .space {
  position: relative;
  padding: 72px 0;
  background: linear-gradient(202deg, #0d0d14 0%, #12121c 50%, #0a0a0f 100%)
}

.idx .space::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 65% 55% at 40% 50%, #4e37e91a, transparent 68%);
  pointer-events: none;
  z-index: 1
}

.idx .space-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  animation: slide-in-left 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

.idx .space-content {
  display: flex;
  flex-direction: column;
  gap: 36px
}

.idx .space-hd {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -.01em;
  margin: 0;
  font-weight: 700;
  color: #fff
}

.idx .space-txt {
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  color: #a8aab5;
  letter-spacing: .01em
}

.idx .space-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #12121c99;
  border: 2px solid #4e37e933;
  border-radius: 36px;
  padding: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 1px 3px 2px 0 #4e37e914;
  transition: transform .24s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .2s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.idx .space-profile:hover {
  transform: translateX(6px);
  border-color: #4e37e966
}

.idx .space-profile:active {
  transform: scale(1.03) translateX(6px)
}

.idx .space-profile-pic {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #4e37e966;
  flex-shrink: 0
}

.idx .space-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.idx .space-profile-info {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.idx .space-profile-name {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
  color: #fff;
  letter-spacing: .01em
}

.idx .space-profile-role {
  font-size: 16px;
  line-height: 1.3;
  margin: 0;
  color: #7d7f8c;
  letter-spacing: .01em
}

.idx .space-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.idx .space-metric {
  background: #12121c99;
  border: 2px solid #fac61333;
  border-radius: 4px;
  padding: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 1px 3px 2px 0 #fac61314;
  transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .18s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.idx .space-metric:hover {
  transform: scale(1.05);
  border-color: #fac61366
}

.idx .space-metric:active {
  transform: scale(1.08)
}

.idx .space-metric-val {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 8px;
  color: #FAC613;
  letter-spacing: -.02em
}

.idx .space-metric-label {
  font-size: 16px;
  line-height: 1.3;
  margin: 0;
  color: #a8aab5;
  letter-spacing: .01em
}

.idx .space-vis {
  position: relative;
  height: 480px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid #4e37e94d;
  box-shadow: 1px 10px 48px 0 #4e37e91c inset 0 0 0 1px #ffffff0d
}

.idx .space-vis::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4e37e938;
  z-index: 2;
  transition: opacity .34s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none
}

.idx .space-vis:hover::before {
  opacity: 0
}

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

@media (max-width: 1280px) {
  .idx .opener {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto
  }

  .idx .opener-txt {
    padding-right: 0
  }

  .idx .opener-vis {
    height: 420px
  }

  .idx .journey-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .idx .catalog-layout {
    grid-template-columns: 1fr
  }

  .idx .catalog-item {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .idx .catalog-item:nth-child(even) {
    grid-template-columns: 1fr
  }

  .idx .catalog-item:nth-child(even) .catalog-item-vis {
    order: 1
  }

  .idx .catalog-item:nth-child(even) .catalog-item-content {
    order: 2
  }

  .idx .catalog-item-vis {
    width: 100%
  }

  .idx .space-inner {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

@media (max-width: 768px) {
  .idx .opener-hd {
    font-size: 32px
  }

  .idx .opener-vis {
    height: 320px
  }

  .idx .journey-hd,
  .idx .catalog-hd,
  .idx .space-hd {
    font-size: 32px
  }

  .idx .space-metrics {
    grid-template-columns: 1fr
  }

  .idx .space-vis {
    height: 320px
  }
}

@media (max-width: 390px) {
  .idx .ld-wrap {
    padding: 0 8px
  }

  .idx .opener,
  .idx .journey,
  .idx .catalog,
  .idx .space {
    padding: 36px 0
  }

  .idx .opener-hd {
    font-size: 32px;
    margin-bottom: 16px
  }

  .idx .opener-desc {
    font-size: 16px;
    margin-bottom: 16px
  }

  .idx .opener-vis {
    height: 240px
  }

  .idx .journey-hd,
  .idx .catalog-hd,
  .idx .space-hd {
    font-size: 32px;
    margin-bottom: 36px
  }

  .idx .journey-card,
  .idx .catalog-item,
  .idx .space-profile {
    padding: 16px
  }

  .idx .space-vis {
    height: 240px
  }
}

.idx ::selection {
  background: #4e37e933;
  color: #fff
}

.contact-pg {
  background: #0a0a0f;
  color: #e8e8ee;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow-x: clip
}

.contact-pg .title-strip {
  position: relative;
  background: linear-gradient(127deg, #1a1a28 0%, #0d0d16 100%);
  padding: 36px 16px;
  overflow: hidden;
  border-radius: 4px;
  margin: 0 16px 72px
}

.contact-pg .title-strip::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid #4e37e94d;
  border-radius: 4px;
  pointer-events: none
}

.contact-pg .title-strip::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid #045eaa33;
  border-radius: 4px;
  pointer-events: none
}

.contact-pg .strip-content {
  display: flex;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 1
}

.contact-pg .strip-txt {
  flex: 1
}

.contact-pg .strip-main-head {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 8px;
  font-weight: 700;
  color: #fff
}

.contact-pg .strip-sub-head {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .01em;
  margin: 0 0 16px;
  color: #b8b8c8;
  font-weight: 400
}

.contact-pg .strip-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: .005em;
  color: #FAC613;
  text-decoration: none;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1), color .18s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.contact-pg .strip-action:hover {
  color: #ffd84d;
  transform: translateX(4px)
}

.contact-pg .strip-action::after {
  content: '';
  width: 16px;
  height: 16px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%)
}

.contact-pg .strip-visual {
  width: 280px;
  height: 160px;
  position: relative;
  opacity: 0;
  animation: reveal-img .8s cubic-bezier(0.34, 1.56, 0.64, 1) .3s forwards
}

@keyframes reveal-img {
  to {
    opacity: 1
  }
}

.contact-pg .strip-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 1px 10px 48px 0 #4e37e91c
}

.contact-pg .form-zone {
  padding: 72px 16px;
  position: relative;
  background: linear-gradient(180deg, #0d0d16 0%, #1a1a28 100%)
}

.contact-pg .form-zone::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border: 2px solid #045eaa26;
  border-radius: 36px;
  transform: rotate(25deg);
  pointer-events: none
}

.contact-pg .form-inner {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.contact-pg .form-head {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -.01em;
  margin: 0 0 8px;
  font-weight: 700;
  color: #fff
}

.contact-pg .form-intro {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .005em;
  margin: 0 0 36px;
  color: #b8b8c8
}

.contact-pg .reach-form {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-pg .field-row {
  display: flex;
  gap: 16px
}

.contact-pg .field-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.contact-pg .field-label {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: .005em;
  color: #e8e8ee;
  font-weight: 600
}

.contact-pg .field-input {
  background: #16161f;
  border: 1px solid #4e37e94d;
  border-radius: 4px;
  padding: 16px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: .005em;
  color: #e8e8ee;
  transition: border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: inset 1px 2px 3px 0 #4e37e914
}

.contact-pg .field-input::placeholder {
  color: #6a6a7a
}

.contact-pg .field-input:focus {
  outline: none;
  border-color: #4e37e9b3;
  box-shadow: inset 1px 2px 3px 0 #4e37e91f 1px 4px 18px 0 #4e37e91c
}

.contact-pg .field-input:hover {
  border-color: #4e37e980
}

.contact-pg .method-select {
  background: #16161f;
  border: 1px solid #4e37e94d;
  border-radius: 4px;
  padding: 16px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: .005em;
  color: #e8e8ee;
  cursor: pointer;
  transition: border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: inset 1px 2px 3px 0 #4e37e914
}

.contact-pg .method-select:focus {
  outline: none;
  border-color: #4e37e9b3;
  box-shadow: inset 1px 2px 3px 0 #4e37e91f 1px 4px 18px 0 #4e37e91c
}

.contact-pg .method-select:hover {
  border-color: #4e37e980
}

.contact-pg .interest-group {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.contact-pg .interest-label {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: .005em;
  color: #e8e8ee;
  font-weight: 600;
  margin-bottom: 8px
}

.contact-pg .interest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px
}

.contact-pg .check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #16161f;
  border: 1px solid #045eaa33;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .2s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.contact-pg .check-item:hover {
  background: #1c1c2a;
  border-color: #045eaa66
}

.contact-pg .check-input {
  width: 20px;
  height: 20px;
  accent-color: #4E37E9;
  cursor: pointer
}

.contact-pg .check-text {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: .005em;
  color: #e8e8ee;
  cursor: pointer
}

.contact-pg .privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  background: #4e37e90d;
  border-radius: 4px
}

.contact-pg .privacy-check {
  width: 20px;
  height: 20px;
  accent-color: #4E37E9;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0
}

.contact-pg .privacy-txt {
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: .005em;
  color: #b8b8c8
}

.contact-pg .privacy-txt a {
  color: #FAC613;
  text-decoration: none;
  transition: color .18s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.contact-pg .privacy-txt a:hover {
  color: #ffd84d
}

.contact-pg .submit-btn {
  background: #4E37E9;
  border: none;
  border-radius: 4px;
  padding: 16px 36px;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: .005em;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background .24s cubic-bezier(0.34, 1.56, 0.64, 1), transform .24s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .24s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 1px 4px 18px 0 #4e37e91c;
  position: relative;
  overflow: hidden
}

.contact-pg .submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #fff3;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .35s cubic-bezier(0.68, -0.55, 0.27, 1.55), height .35s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.contact-pg .submit-btn:hover {
  background: #5d47f0;
  transform: translateY(-2px);
  box-shadow: 1px 10px 48px 0 #4e37e91c
}

.contact-pg .submit-btn:hover::before {
  width: 300px;
  height: 300px
}

.contact-pg .submit-btn:active {
  transform: translateY(0)
}

.contact-pg .details-zone {
  padding: 72px 16px;
  background: #0a0a0f;
  position: relative
}

.contact-pg .details-zone::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border: 2px solid #fac6131f;
  border-radius: 36px;
  transform: rotate(-15deg);
  pointer-events: none
}

.contact-pg .details-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 72px;
  align-items: start
}

.contact-pg .main-details {
  display: flex;
  flex-direction: column;
  gap: 36px
}

.contact-pg .detail-head {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -.01em;
  margin: 0 0 16px;
  font-weight: 700;
  color: #fff
}

.contact-pg .detail-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.contact-pg .info-card {
  background: linear-gradient(135deg, #16161f 0%, #1a1a28 100%);
  border: 1px solid #4e37e933;
  border-radius: 4px;
  padding: 16px;
  box-shadow: 1px 3px 2px 0 #045eaa14;
  transition: border-color .26s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .26s cubic-bezier(0.34, 1.56, 0.64, 1), transform .26s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.contact-pg .info-card:hover {
  border-color: #4e37e980;
  box-shadow: 1px 10px 48px 0 #045eaa1c;
  transform: translateY(-4px)
}

.contact-pg .card-icon {
  width: 36px;
  height: 36px;
  background: #4e37e926;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px
}

.contact-pg .card-icon svg {
  width: 20px;
  height: 20px;
  fill: #4E37E9
}

.contact-pg .card-type {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: .005em;
  color: #b8b8c8;
  margin: 0 0 4px;
  font-weight: 600
}

.contact-pg .card-value {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .005em;
  color: #e8e8ee;
  margin: 0;
  word-break: break-word
}

.contact-pg .card-value a {
  color: inherit;
  text-decoration: none;
  transition: color .18s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.contact-pg .card-value a:hover {
  color: #FAC613
}

.contact-pg .sidebar-content {
  position: sticky;
  top: 36px
}

.contact-pg .visual-feature {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px
}

.contact-pg .visual-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #4e37e966 0%, #045eaa4d 100%);
  opacity: 1;
  transition: opacity .32s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 1
}

.contact-pg .visual-feature:hover::before {
  opacity: 0
}

.contact-pg .visual-feature img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block
}

.contact-pg .hours-card {
  background: linear-gradient(135deg, #16161f 0%, #1a1a28 100%);
  border: 1px solid #fac61333;
  border-radius: 4px;
  padding: 16px;
  box-shadow: 1px 3px 2px 0 #fac61314
}

.contact-pg .hours-title {
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: .005em;
  color: #fff;
  margin: 0 0 8px;
  font-weight: 600
}

.contact-pg .hours-list {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.contact-pg .hours-entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: .005em
}

.contact-pg .day-name {
  color: #b8b8c8
}

.contact-pg .day-time {
  color: #e8e8ee;
  font-weight: 600
}

@media (max-width: 1280px) {
  .contact-pg .details-layout {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .contact-pg .sidebar-content {
    position: static;
    max-width: 480px;
    margin: 0 auto
  }
}

@media (max-width: 768px) {
  .contact-pg .strip-content {
    flex-direction: column;
    gap: 16px
  }

  .contact-pg .strip-visual {
    width: 100%;
    height: 200px
  }

  .contact-pg .strip-main-head {
    font-size: 32px
  }

  .contact-pg .field-row {
    flex-direction: column
  }

  .contact-pg .interest-grid {
    grid-template-columns: 1fr
  }

  .contact-pg .detail-blocks {
    grid-template-columns: 1fr
  }

  .contact-pg .form-zone {
    padding: 36px 16px
  }

  .contact-pg .details-zone {
    padding: 36px 16px
  }
}

@media (max-width: 390px) {
  .contact-pg .strip-main-head {
    font-size: 32px
  }

  .contact-pg .form-head,
  .contact-pg .detail-head {
    font-size: 32px
  }

  .contact-pg .submit-btn {
    width: 100%
  }
}

.abt {
  background: #0a0a0f;
  color: #e8e8f0;
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip
}

.abt .lead-zone {
  min-height: 420px;
  background: linear-gradient(142deg, #1a1a2e 0%, #0f0f18 100%);
  padding: 72px 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.abt .lead-zone::before {
  content: '';
  position: absolute;
  top: 72px;
  right: 8%;
  width: 180px;
  height: 180px;
  border: 2px solid #4e37e926;
  border-radius: 36px;
  pointer-events: none
}

.abt .lead-content {
  max-width: 680px;
  text-align: center
}

.abt .lead-primary {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 16px;
  font-weight: 700
}

.abt .lead-primary .mark {
  position: relative;
  display: inline-block
}

.abt .lead-primary .mark::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 4px;
  background: #4E37E9;
  border-radius: 4px
}

.abt .lead-secondary {
  font-size: 18px;
  line-height: 1.55;
  color: #b8b8c8;
  margin: 0;
  letter-spacing: .01em
}

.abt .dual-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #0f0f18;
  position: relative
}

.abt .dual-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #4E37E9 0%, #045EAA 50%, #FAC613 100%)
}

.abt .left-dominant {
  padding: 72px 36px;
  background: radial-gradient(ellipse 120% 100% at 85% 50%, #4e37e914 0%, transparent 60%)
}

.abt .right-support {
  padding: 72px 36px;
  background: #12121c;
  border-left: 4px solid #4E37E9;
  position: relative
}

.abt .right-support::before {
  content: '';
  position: absolute;
  top: 36px;
  left: -2px;
  width: 2px;
  height: 120px;
  background: #FAC613;
  border-radius: 4px
}

.abt .segment-label {
  font-size: 16px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #4E37E9;
  margin: 0 0 16px;
  font-weight: 600
}

.abt .segment-heading {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 36px;
  font-weight: 700
}

.abt .segment-text {
  font-size: 18px;
  line-height: 1.75;
  color: #c8c8d8;
  margin: 0 0 16px;
  letter-spacing: .005em
}

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

.abt .stat-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 36px 0 0
}

.abt .stat-item {
  background: #4e37e90f;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid #4e37e933;
  position: relative;
  overflow: hidden;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, #4e37e926 0%, transparent 70%);
  opacity: 0;
  transition: opacity .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none
}

.abt .stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 1px 10px 48px 0 #4e37e91c
}

.abt .stat-item:hover::before {
  opacity: 1
}

.abt .stat-value {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  color: #4E37E9;
  margin: 0 0 4px;
  letter-spacing: -.01em
}

.abt .stat-label {
  font-size: 16px;
  line-height: 1.3;
  color: #b8b8c8;
  margin: 0;
  letter-spacing: .005em
}

.abt .profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin: 36px 0 0
}

.abt .profile-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #045eaa0d;
  padding: 16px;
  border-radius: 36px;
  border: 1px solid #045eaa2e;
  position: relative;
  overflow: hidden
}

.abt .profile-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #045EAA 0%, transparent 100%);
  border-radius: 4px
}

.abt .profile-visual {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 36px;
  overflow: hidden;
  position: relative
}

.abt .profile-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: brightness(0.88) saturate(0.92);
  transition: filter .32s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt .profile-card:hover .profile-visual img {
  filter: brightness(1) saturate(1)
}

.abt .profile-details {
  padding: 0 8px
}

.abt .profile-name {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 4px;
  color: #e8e8f0;
  letter-spacing: .005em
}

.abt .profile-role {
  font-size: 16px;
  line-height: 1.3;
  color: #045EAA;
  margin: 0 0 8px;
  letter-spacing: .005em
}

.abt .profile-bio {
  font-size: 16px;
  line-height: 1.55;
  color: #b8b8c8;
  margin: 0;
  letter-spacing: .005em
}

.abt .code-display {
  background: #08080d;
  border: 1px solid #4e37e940;
  border-radius: 4px;
  padding: 16px;
  margin: 36px 0 0;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  line-height: 1.55;
  color: #FAC613;
  overflow-x: auto;
  box-shadow: inset 1px 2px 4px 0 #4e37e91f
}

.abt .code-line {
  display: block;
  white-space: pre
}

.abt .code-keyword {
  color: #4E37E9
}

.abt .code-string {
  color: #FAC613
}

.abt .code-comment {
  color: #6a6a7a
}

.abt .visual-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 36px 0 0
}

.abt .gallery-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #08080d
}

.abt .gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.88);
  transition: filter .35s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform .35s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.abt .gallery-frame:hover img {
  filter: brightness(1) saturate(1);
  transform: scale(1.04)
}

.abt .reveal-mask {
  position: relative;
  overflow: hidden
}

.abt .reveal-mask::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #4e37e914;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .45s cubic-bezier(0.34, 1.56, 0.64, 1), height .45s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 1
}

.abt .reveal-mask:hover::before {
  width: 200%;
  height: 200%
}

.abt .outlined-stat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border: 4px solid #4E37E9;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  color: #4E37E9;
  margin: 0 auto;
  position: relative
}

.abt .outlined-stat::after {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #FAC613;
  border-radius: 50%;
  border: 2px solid #0f0f18
}

.abt .slide-in {
  opacity: 0;
  transform: translateX(80px);
  animation: slideFromRight .6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

.abt .slide-in:nth-child(1) {
  animation-delay: .1s
}

.abt .slide-in:nth-child(2) {
  animation-delay: .2s
}

.abt .slide-in:nth-child(3) {
  animation-delay: .3s
}

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

@media (min-width: 768px) {
  .abt .lead-zone {
    padding: 72px 36px
  }

  .abt .dual-panel {
    grid-template-columns: 60fr 40fr
  }

  .abt .stat-showcase {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .abt .visual-gallery {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (min-width: 1280px) {
  .abt .lead-zone {
    padding: 72px
  }

  .abt .left-dominant {
    padding: 72px
  }

  .abt .right-support {
    padding: 72px 36px
  }

  .abt .lead-primary {
    font-size: 72px
  }

  .abt .stat-showcase {
    grid-template-columns: repeat(3, 1fr)
  }
}

.success-page {
  background: linear-gradient(147deg, #0a0a14 0%, #1a1a2e 100%);
  min-height: 100vh;
  padding: 72px 16px;
  display: flex;
  align-items: center;
  justify-content: center
}

.success-page .confirm-wrap {
  max-width: 680px;
  width: 100%;
  background: #1e1e2d99;
  backdrop-filter: blur(16px);
  border: 1px solid #4e37e94d;
  border-radius: 36px;
  padding: 72px 36px;
  text-align: center;
  box-shadow: 1px 10px 48px 0 #4e37e91c
}

.success-page .icon-check {
  width: 120px;
  height: 120px;
  margin: 0 auto 36px;
  background: radial-gradient(ellipse 70% 60% at 65% 40%, #4e37e940, transparent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.success-page .icon-check svg {
  width: 64px;
  height: 64px;
  stroke: #FAC613;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: draw-check .35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  stroke-dasharray: 100;
  stroke-dashoffset: 100
}

@keyframes draw-check {
  to {
    stroke-dashoffset: 0
  }
}

.success-page .confirm-title {
  font-size: 62px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -.02em
}

.success-page .confirm-desc {
  font-size: 18px;
  line-height: 1.55;
  color: #ffffffbf;
  margin: 0 0 36px;
  letter-spacing: .01em
}

.success-page .confirm-detail {
  background: #045eaa26;
  border: 1px solid #045eaa66;
  border-radius: 4px;
  padding: 16px;
  margin: 0 0 36px
}

.success-page .confirm-detail p {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffd9;
  margin: 0;
  letter-spacing: .01em
}

.success-page .action-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.success-page .btn-primary {
  background: #4E37E9;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 16px 36px;
  font-size: 18px;
  line-height: 1.3;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 1px 4px 18px 0 #4e37e91c;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden
}

.success-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 1px 10px 48px 0 #4e37e91c
}

.success-page .btn-primary:active {
  transform: translateY(0)
}

.success-page .btn-secondary {
  background: transparent;
  color: #ffffffd9;
  border: 1px solid #ffffff4d;
  border-radius: 4px;
  padding: 16px 36px;
  font-size: 18px;
  line-height: 1.3;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s cubic-bezier(0.34, 1.56, 0.64, 1), color .2s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: .01em
}

.success-page .btn-secondary:hover {
  border-color: #FAC613;
  color: #FAC613
}

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

  .success-page .confirm-wrap {
    padding: 36px 16px
  }

  .success-page .confirm-title {
    font-size: 32px
  }

  .success-page .icon-check {
    width: 96px;
    height: 96px;
    margin-bottom: 16px
  }

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

  .success-page .action-group {
    flex-direction: column
  }

  .success-page .btn-primary,
  .success-page .btn-secondary {
    width: 100%
  }
}

@media (max-width: 390px) {
  .success-page .confirm-title {
    font-size: 32px
  }

  .success-page .confirm-desc {
    font-size: 16px
  }
}