html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
  margin: 0;
}

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

body {
  margin: 0;
  min-height: 100dvh;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: 'Source Serif Pro', Georgia, serif;
  background-color: #0d0a12;
}

*:focus {
  outline: none;
  border-color: #AD2D9A;
  background-color: rgba(173, 45, 154, 0.08);
}

::selection {
  background-color: #AD2D9A;
  color: #FEFBFA;
}

::placeholder {
  color: rgba(173, 45, 154, 0.45);
}

.site-header {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #0d0a12 0%, #160d1e 45%, #0a1208 100%);
  border-bottom: 1px solid rgba(173, 45, 154, 0.28);
  box-shadow: 0 1px 2px 0 rgba(173, 45, 154, 0.07), 0 4px 22px 0 rgba(173, 45, 154, 0.09);
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #255321 0%, #AD2D9A 50%, #255321 100%);
  pointer-events: none;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.header-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 8px;
  gap: 40px;
}

.brand-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(173, 45, 154, 0.22);
  box-shadow: 0 1px 2px 0 rgba(173, 45, 154, 0.07), 0 4px 22px 0 rgba(37, 83, 33, 0.09);
  text-decoration: none;
}

.brand-mark img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.1;
  color: #160d1e;
  letter-spacing: -0.01em;
  font-family: 'Source Serif Pro', Georgia, serif;
}

.brand-tagline {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.3;
  color: rgba(254, 251, 250, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-address-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.address-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.3;
  color: rgba(254, 251, 250, 0.65);
  letter-spacing: 0.03em;
}

.address-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: #AD2D9A;
}

.address-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: #AD2D9A;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.address-phone:hover {
  color: #FEFBFA;
}

.phone-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: currentColor;
}

.header-nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 0 16px;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(37, 83, 33, 0.25);
  margin-top: 8px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav li {
  display: flex;
  align-items: center;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(254, 251, 250, 0.75);
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: color 0.5s ease, border-color 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.6s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.primary-nav a:hover {
  color: #FEFBFA;
  border-color: rgba(173, 45, 154, 0.35);
  background-color: rgba(173, 45, 154, 0.1);
}

.primary-nav a.active {
  color: #FEFBFA;
  border-color: rgba(173, 45, 154, 0.5);
  background-color: rgba(173, 45, 154, 0.15);
}

.nav-dot {
  width: 4px;
  height: 4px;
  border-radius: 3px;
  background-color: rgba(37, 83, 33, 0.6);
  flex-shrink: 0;
}

.primary-nav li:last-child .nav-dot {
  display: none;
}

.site-footer {
  background: linear-gradient(180deg, #0a1208 0%, #060d05 100%);
  border-top: 1px solid rgba(37, 83, 33, 0.35);
  padding: 80px 40px 40px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-cascade {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-tagline {
  font-size: 23px;
  font-weight: 600;
  line-height: 1.3;
  color: #FEFBFA;
  letter-spacing: -0.01em;
}

.footer-tagline-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(254, 251, 250, 0.55);
  max-width: 520px;
  letter-spacing: 0.02em;
}

.footer-contact-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-contact-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: #255321;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact-value {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(254, 251, 250, 0.7);
  text-decoration: none;
  transition: color 0.55s ease;
}

.footer-contact-value:hover {
  color: #FEFBFA;
}

.footer-contact-address {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(254, 251, 250, 0.5);
  max-width: 260px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(173, 45, 154, 0.3) 30%, rgba(37, 83, 33, 0.3) 70%, transparent 100%);
}

.footer-legal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

.footer-legal-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-legal-nav a {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.3;
  color: rgba(254, 251, 250, 0.4);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-bottom: 1px solid rgba(173, 45, 154, 0.2);
  padding-bottom: 1px;
}

.footer-legal-nav a:hover {
  color: rgba(254, 251, 250, 0.75);
}

.footer-copyright {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.3;
  color: rgba(254, 251, 250, 0.3);
  letter-spacing: 0.03em;
}

.footer-brand-close {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
}

.footer-logo-container {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(37, 83, 33, 0.35);
  box-shadow: 0 1px 2px 0 rgba(37, 83, 33, 0.07), 0 4px 22px 0 rgba(37, 83, 33, 0.09);
}

.footer-logo-container img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  display: block;
}

.footer-brand-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  color: rgba(254, 251, 250, 0.35);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.consent-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: linear-gradient(135deg, #0d0a12 0%, #160d1e 100%);
  border-top: 1px solid rgba(173, 45, 154, 0.4);
  box-shadow: 0 9px 44px 0 rgba(173, 45, 154, 0.13);
  padding: 16px 40px;
}

.consent-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.consent-text-area {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 260px;
}

.consent-icon-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 6px;
  background-color: rgba(173, 45, 154, 0.15);
  border: 1px solid rgba(173, 45, 154, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.consent-icon-mark svg {
  width: 16px;
  height: 16px;
  fill: #AD2D9A;
}

.consent-sentence {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(254, 251, 250, 0.65);
  letter-spacing: 0.02em;
}

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

.consent-detail-panel {
  width: 100%;
  display: none;
  padding: 16px 0 8px;
  border-top: 1px solid rgba(37, 83, 33, 0.2);
  margin-top: 8px;
}

.consent-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.consent-toggle-label {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(254, 251, 250, 0.7);
  letter-spacing: 0.02em;
}

.consent-toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.consent-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.consent-toggle-track {
  position: absolute;
  inset: 0;
  background-color: rgba(254, 251, 250, 0.1);
  border-radius: 28px;
  border: 1px solid rgba(173, 45, 154, 0.3);
  cursor: pointer;
  transition: background-color 0.55s ease;
}

.consent-toggle-track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 28px;
  background-color: rgba(254, 251, 250, 0.4);
  transition: transform 0.55s ease, background-color 0.55s ease;
}

.consent-toggle-switch input:checked+.consent-toggle-track {
  background-color: rgba(173, 45, 154, 0.3);
}

.consent-toggle-switch input:checked+.consent-toggle-track::after {
  transform: translateX(18px);
  background-color: #AD2D9A;
}

.consent-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  border-radius: 6px;
  border: 1px solid rgba(173, 45, 154, 0.5);
  background-color: transparent;
  color: rgba(254, 251, 250, 0.75);
  cursor: pointer;
  letter-spacing: 0.04em;
  font-family: 'Source Serif Pro', Georgia, serif;
  transition: color 0.6s ease, border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.6s ease;
}

.consent-btn:hover {
  color: #FEFBFA;
  border-color: #AD2D9A;
  background-color: rgba(173, 45, 154, 0.12);
}

.consent-btn-accept {
  border-color: #255321;
  color: rgba(254, 251, 250, 0.85);
}

.consent-btn-accept:hover {
  border-color: #255321;
  background-color: rgba(37, 83, 33, 0.2);
  color: #FEFBFA;
}

.consent-btn-detail {
  border-color: rgba(254, 251, 250, 0.15);
  color: rgba(254, 251, 250, 0.45);
}

.consent-btn-detail:hover {
  border-color: rgba(254, 251, 250, 0.35);
  color: rgba(254, 251, 250, 0.7);
  background-color: transparent;
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 16px;
  }

  .header-top-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .header-address-area {
    align-items: flex-start;
  }

  .header-nav-row {
    gap: 8px;
  }

  .primary-nav a {
    font-size: 13px;
    padding: 8px 8px;
  }

  .site-footer {
    padding: 40px 16px 40px;
  }

  .footer-legal-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .consent-bar {
    padding: 16px;
  }

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

  .consent-actions {
    width: 100%;
    flex-wrap: wrap;
  }
}

.content-legal {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  background: rgba(254, 251, 250, 0.04);
  border-radius: 10px;
  box-shadow: 0 1px 2px 0 rgba(173, 45, 154, 0.07), 0 4px 22px 0 rgba(173, 45, 154, 0.09), 0 9px 44px 0 rgba(173, 45, 154, 0.13);
}

.content-legal h1 {
  font-size: 62px;
  line-height: 1.1;
  color: #FEFBFA;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.content-legal h2 {
  font-size: 32px;
  line-height: 1.3;
  color: #FEFBFA;
  margin-top: 80px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(173, 45, 154, 0.3);
  border-left: 4px solid #AD2D9A;
  border-radius: 3px;
  padding-left: 16px;
}

.content-legal h3 {
  font-size: 23px;
  line-height: 1.3;
  color: #FEFBFA;
  margin-top: 40px;
  margin-bottom: 16px;
}

.content-legal h4 {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(254, 251, 250, 0.85);
  margin-top: 40px;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.content-legal h5 {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(254, 251, 250, 0.75);
  margin-top: 16px;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.content-legal h6 {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(254, 251, 250, 0.6);
  margin-top: 16px;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-legal p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(254, 251, 250, 0.8);
  margin-bottom: 16px;
}

.content-legal ul {
  margin-bottom: 16px;
  padding-left: 40px;
  list-style: none;
}

.content-legal ol {
  margin-bottom: 16px;
  padding-left: 40px;
  list-style: none;
  counter-reset: policy-counter;
}

.content-legal ul li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(254, 251, 250, 0.8);
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.content-legal ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: #AD2D9A;
  border-radius: 50%;
}

.content-legal ol li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(254, 251, 250, 0.8);
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
  counter-increment: policy-counter;
}

.content-legal ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: -16px;
  color: #AD2D9A;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.content-legal strong,
.content-legal b {
  color: #FEFBFA;
  font-weight: 700;
}

.content-legal em,
.content-legal i {
  color: rgba(254, 251, 250, 0.85);
  font-style: italic;
}

.content-legal a {
  color: #AD2D9A;
  text-decoration: underline;
  text-decoration-color: rgba(173, 45, 154, 0.4);
  text-underline-offset: 3px;
  transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), text-decoration-color 0.5s ease;
}

.content-legal a:hover {
  color: #FEFBFA;
  text-decoration-color: rgba(254, 251, 250, 0.5);
}

@media (max-width: 768px) {
  .content-legal {
    padding: 40px 16px;
  }

  .content-legal h1 {
    font-size: 32px;
  }

  .content-legal h2 {
    font-size: 23px;
    margin-top: 40px;
  }

  .content-legal h3 {
    font-size: 18px;
  }

  .content-legal ul,
  .content-legal ol {
    padding-left: 16px;
  }
}

.portal {
  background: #0d0a0f;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.portal .frame-lines {
  position: fixed;
  inset: 16px;
  pointer-events: none;
  z-index: 0;
}

.portal .frame-lines::before,
.portal .frame-lines::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border-color: rgba(173, 45, 154, 0.22);
  border-style: solid;
}

.portal .frame-lines::before {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}

.portal .frame-lines::after {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}

.portal .max-bound {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.portal .divider-gradient {
  height: 1px;
  background: linear-gradient(to right, rgba(173, 45, 154, 0.5) 0%, rgba(173, 45, 154, 0.08) 60%, transparent 100%);
  border: none;
  margin: 0;
}

.portal .divider-secondary {
  height: 1px;
  background: linear-gradient(to right, rgba(37, 83, 33, 0.55) 0%, rgba(37, 83, 33, 0.07) 55%, transparent 100%);
  border: none;
  margin: 0;
}

.portal .title-block {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.portal .title-block .inner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 40px 40px;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  border: 1px solid rgba(173, 45, 154, 0.12);
  box-shadow: 0 1px 2px 0 rgba(173, 45, 154, 0.07), 0 4px 22px 0 rgba(173, 45, 154, 0.09), 0 9px 44px 0 rgba(173, 45, 154, 0.13);
}

.portal .title-block .corner-tl,
.portal .title-block .corner-tr,
.portal .title-block .corner-bl,
.portal .title-block .corner-br {
  position: absolute;
  width: 32px;
  height: 32px;
  pointer-events: none;
}

.portal .title-block .corner-tl {
  top: -1px;
  left: -1px;
  border-top: 2px solid rgba(173, 45, 154, 0.7);
  border-left: 2px solid rgba(173, 45, 154, 0.7);
  border-radius: 10px 0 0 0;
}

.portal .title-block .corner-tr {
  top: -1px;
  right: -1px;
  border-top: 2px solid rgba(173, 45, 154, 0.7);
  border-right: 2px solid rgba(173, 45, 154, 0.7);
  border-radius: 0 10px 0 0;
}

.portal .title-block .corner-bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid rgba(173, 45, 154, 0.7);
  border-left: 2px solid rgba(173, 45, 154, 0.7);
  border-radius: 0 0 0 10px;
}

.portal .title-block .corner-br {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid rgba(173, 45, 154, 0.7);
  border-right: 2px solid rgba(173, 45, 154, 0.7);
  border-radius: 0 0 10px 0;
}

.portal .title-block .image-zone {
  width: 100%;
  max-width: 540px;
  position: relative;
}

.portal .title-block .image-zone img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  animation: slow-zoom 12s ease-in-out infinite alternate;
}

@keyframes slow-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.04);
  }
}

.portal .title-block .image-zone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 48px 16px #0d0a0f;
  pointer-events: none;
}

.portal .title-block .text-zone {
  text-align: center;
  padding: 16px 40px 40px;
  width: 100%;
}

.portal .title-block .label-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(173, 45, 154, 0.85);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 8px 16px;
  border: 1px solid rgba(173, 45, 154, 0.2);
  border-radius: 3px;
}

.portal .title-block .main-heading {
  font-size: 62px;
  line-height: 1.1;
  font-weight: 200;
  letter-spacing: 0.06em;
  color: #FEFBFA;
  margin-bottom: 16px;
}

.portal .title-block .main-heading .accent-bracket {
  color: #AD2D9A;
  font-weight: 300;
}

.portal .title-block .numerical-accent {
  font-size: 13px;
  color: rgba(254, 251, 250, 0.45);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  display: block;
}

.portal .title-block .sub-text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(254, 251, 250, 0.7);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.portal .team-block {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(168deg, #0d0a0f 0%, #111018 100%);
  position: relative;
  z-index: 1;
}

.portal .team-block .team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.portal .team-block .team-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portal .team-block .section-label {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(37, 83, 33, 0.9);
}

.portal .team-block .section-heading {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 300;
  color: #FEFBFA;
  letter-spacing: 0.05em;
}

.portal .team-block .section-heading .accent-word {
  color: #AD2D9A;
}

.portal .team-block .body-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(254, 251, 250, 0.68);
}

.portal .team-block .team-image-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.portal .team-block .team-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portal .team-block .team-image-wrap:hover img {
  transform: scale(1.04);
}

.portal .team-block .image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(13, 10, 15, 0.88) 0%, transparent 100%);
  border-radius: 0 0 10px 10px;
}

.portal .team-block .image-caption span {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(254, 251, 250, 0.6);
}

.portal .team-block .credential-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.portal .team-block .credential-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(37, 83, 33, 0.07);
  border-radius: 6px;
  border: 1px solid rgba(37, 83, 33, 0.15);
  transition: background 0.6s ease, border-color 0.6s ease;
}

.portal .team-block .credential-item:hover {
  background: rgba(37, 83, 33, 0.13);
  border-color: rgba(37, 83, 33, 0.28);
}

.portal .team-block .credential-number {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 200;
  color: rgba(37, 83, 33, 0.7);
  min-width: 48px;
}

.portal .team-block .credential-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.portal .team-block .credential-text strong {
  font-size: 15px;
  color: #FEFBFA;
  font-weight: 500;
}

.portal .team-block .credential-text p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(254, 251, 250, 0.55);
  margin: 0;
}

.portal .experience-block {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #0a0810;
  position: relative;
  z-index: 1;
}

.portal .experience-block .exp-layout {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 40px;
  align-items: center;
}

.portal .experience-block .exp-image-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(173, 45, 154, 0.07), 0 4px 22px 0 rgba(173, 45, 154, 0.09), 0 9px 44px 0 rgba(173, 45, 154, 0.13);
}

.portal .experience-block .exp-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  animation: slow-pan 14s ease-in-out infinite alternate;
}

@keyframes slow-pan {
  from {
    object-position: 30% center;
  }

  to {
    object-position: 70% center;
  }
}

.portal .experience-block .exp-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(173, 45, 154, 0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  border-radius: 10px;
}

.portal .experience-block .exp-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portal .experience-block .quote-mark {
  width: 32px;
  height: 24px;
  display: block;
}

.portal .experience-block .quote-mark svg {
  width: 32px;
  height: 24px;
  fill: rgba(173, 45, 154, 0.4);
}

.portal .experience-block .section-label {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(173, 45, 154, 0.7);
}

.portal .experience-block .section-heading {
  font-size: 23px;
  line-height: 1.3;
  font-weight: 300;
  color: #FEFBFA;
  letter-spacing: 0.04em;
}

.portal .experience-block .story-card {
  background: rgba(173, 45, 154, 0.06);
  border: 1px solid rgba(173, 45, 154, 0.14);
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: inset 0 2px 6px rgba(173, 45, 154, 0.07);
  transition: border-color 0.6s ease;
}

.portal .experience-block .story-card:hover {
  border-color: rgba(173, 45, 154, 0.26);
}

.portal .experience-block .story-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(254, 251, 250, 0.72);
  font-style: italic;
}

.portal .experience-block .story-person {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(173, 45, 154, 0.12);
}

.portal .experience-block .story-person .person-name {
  font-size: 15px;
  color: #FEFBFA;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.portal .experience-block .story-person .person-detail {
  font-size: 13px;
  color: rgba(254, 251, 250, 0.45);
  letter-spacing: 0.08em;
}

.portal .experience-block .bar-compare {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.portal .experience-block .bar-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.portal .experience-block .bar-label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.portal .experience-block .bar-label span:first-child {
  font-size: 13px;
  color: rgba(254, 251, 250, 0.6);
  letter-spacing: 0.06em;
}

.portal .experience-block .bar-label span:last-child {
  font-size: 13px;
  color: rgba(173, 45, 154, 0.85);
}

.portal .experience-block .bar-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 3px;
  overflow: hidden;
}

.portal .experience-block .bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(to right, #AD2D9A, rgba(173, 45, 154, 0.4));
  animation: bar-grow 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transform-origin: left;
}

.portal .experience-block .bar-fill.secondary {
  background: linear-gradient(to right, #255321, rgba(37, 83, 33, 0.4));
}

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

.portal .experience-block .bar-fill.w-72 {
  width: 72%;
}

.portal .experience-block .bar-fill.w-58 {
  width: 58%;
}

.portal .experience-block .bar-fill.w-84 {
  width: 84%;
}

.portal .experience-block .bar-fill.w-65 {
  width: 65%;
}

.portal .fit-block {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(172deg, #0f0c14 0%, #0d0a0f 100%);
  position: relative;
  z-index: 1;
}

.portal .fit-block .fit-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px;
}

.portal .fit-block .section-label {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(173, 45, 154, 0.7);
}

.portal .fit-block .section-heading {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 300;
  color: #FEFBFA;
  letter-spacing: 0.05em;
  max-width: 620px;
}

.portal .fit-block .section-heading .accent-bracket {
  color: #AD2D9A;
}

.portal .fit-block .body-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(254, 251, 250, 0.65);
  max-width: 560px;
}

.portal .fit-block .fit-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.portal .fit-block .fit-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portal .fit-block .column-heading {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 8px;
}

.portal .fit-block .column-heading.yes {
  color: rgba(37, 83, 33, 0.9);
}

.portal .fit-block .column-heading.no {
  color: rgba(173, 45, 154, 0.7);
}

.portal .fit-block .fit-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.portal .fit-block .fit-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(254, 251, 250, 0.72);
  padding: 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.55s ease, border-color 0.55s ease;
  position: relative;
  overflow: hidden;
}

.portal .fit-block .fit-list li:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.1);
}

.portal .fit-block .fit-list.yes-list li {
  border-color: rgba(37, 83, 33, 0.12);
}

.portal .fit-block .fit-list.yes-list li:hover {
  background: rgba(37, 83, 33, 0.07);
  border-color: rgba(37, 83, 33, 0.22);
}

.portal .fit-block .fit-list.no-list li {
  border-color: rgba(173, 45, 154, 0.1);
}

.portal .fit-block .fit-list.no-list li:hover {
  background: rgba(173, 45, 154, 0.06);
  border-color: rgba(173, 45, 154, 0.2);
}

.portal .fit-block .check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.portal .fit-block .check-icon svg {
  width: 18px;
  height: 18px;
}

.portal .fit-block .fit-list li .slide-label {
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #255321;
  border-radius: 3px 0 0 3px;
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portal .fit-block .fit-list.no-list li .slide-label {
  background: #AD2D9A;
}

.portal .fit-block .fit-list li:hover .slide-label {
  left: 0;
}

.portal .fit-block .fit-large-element {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  padding: 40px;
  background: rgba(173, 45, 154, 0.05);
  border: 1px solid rgba(173, 45, 154, 0.12);
  border-radius: 10px;
  box-shadow: inset 0 3px 6px rgba(173, 45, 154, 0.06);
}

.portal .fit-block .large-number {
  font-size: 62px;
  line-height: 1.1;
  font-weight: 200;
  color: rgba(173, 45, 154, 0.35);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.portal .fit-block .large-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.portal .fit-block .large-text strong {
  font-size: 18px;
  color: #FEFBFA;
  font-weight: 400;
  line-height: 1.3;
}

.portal .fit-block .large-text p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(254, 251, 250, 0.6);
  margin: 0;
}

@media (max-width: 900px) {
  .portal .max-bound {
    padding-left: 16px;
    padding-right: 16px;
  }

  .portal .title-block .main-heading {
    font-size: 32px;
  }

  .portal .title-block .text-zone {
    padding: 16px;
  }

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

  .portal .experience-block .exp-layout {
    grid-template-columns: 1fr;
  }

  .portal .experience-block .exp-image-wrap img {
    height: 280px;
  }

  .portal .fit-block .fit-columns {
    grid-template-columns: 1fr;
  }

  .portal .fit-block .fit-large-element {
    flex-direction: column;
    gap: 16px;
  }

  .portal .fit-block .large-number {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .portal .title-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .portal .title-block .inner-card {
    padding: 40px 16px 16px;
  }

  .portal .title-block .image-zone img {
    height: 240px;
  }

  .portal .team-block,
  .portal .experience-block,
  .portal .fit-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .portal .team-block .credential-item {
    flex-direction: column;
    gap: 8px;
  }

  .portal .experience-block .story-card {
    padding: 16px;
  }
}

.student-projects {
  background: #0d0b12;
  overflow-x: clip;
}

.student-projects .projects-title-block {
  position: relative;
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.student-projects .title-blob-one {
  position: absolute;
  top: -40px;
  left: -80px;
  width: 420px;
  height: 320px;
  background: #AD2D9A;
  border-radius: 28px;
  opacity: 0.13;
  filter: blur(72px);
  pointer-events: none;
}

.student-projects .title-blob-two {
  position: absolute;
  bottom: 0;
  right: 80px;
  width: 280px;
  height: 200px;
  background: #255321;
  border-radius: 28px;
  opacity: 0.18;
  filter: blur(56px);
  pointer-events: none;
}

.student-projects .title-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 8% 30%, rgba(173, 45, 154, 0.18) 0%, transparent 62%);
  pointer-events: none;
}

.student-projects .title-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.student-projects .title-text-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.student-projects .title-eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #AD2D9A;
  font-weight: 600;
  text-transform: uppercase;
}

.student-projects .title-heading {
  font-size: 62px;
  line-height: 1.1;
  font-weight: 200;
  color: #FEFBFA;
  letter-spacing: 0.04em;
  margin: 0;
}

.student-projects .title-heading strong {
  font-weight: 700;
  color: #AD2D9A;
  display: block;
}

.student-projects .title-heading em {
  font-style: normal;
  color: #FEFBFA;
  opacity: 0.55;
  font-size: 32px;
  display: block;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

.student-projects .title-rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #AD2D9A 0%, #255321 100%);
  border-radius: 3px;
}

.student-projects .title-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #FEFBFA;
  opacity: 0.72;
  margin: 0;
  max-width: 480px;
}

.student-projects .title-image-col {
  position: relative;
}

.student-projects .title-image-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 9px 44px 0 rgba(173, 45, 154, 0.13);
}

.student-projects .title-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.student-projects .title-image-tint {
  position: absolute;
  inset: 0;
  background: rgba(173, 45, 154, 0.12);
  pointer-events: none;
}

.student-projects .title-image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0d0b12 0%, transparent 35%, transparent 70%, #0d0b12 100%);
  pointer-events: none;
}

.student-projects .title-diamond {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  background: #AD2D9A;
  transform: rotate(45deg);
  border-radius: 3px;
  opacity: 0.7;
}

.student-projects .projects-grid-block {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.student-projects .grid-block-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}

.student-projects .grid-heading {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 300;
  color: #FEFBFA;
  letter-spacing: 0.06em;
  margin: 0;
}

.student-projects .grid-heading span {
  color: #AD2D9A;
  font-weight: 700;
}

.student-projects .grid-rule {
  width: 32px;
  height: 1px;
  background: #255321;
  border-radius: 3px;
}

.student-projects .projects-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.student-projects .project-card {
  background: rgba(254, 251, 250, 0.04);
  border: 1px solid rgba(173, 45, 154, 0.15);
  border-radius: 10px;
  padding: 40px;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.5s ease;
  box-shadow: 0 1px 2px 0 rgba(173, 45, 154, 0.07);
  cursor: default;
}

.student-projects .project-card:hover {
  transform: scale(1.025);
  background: rgba(254, 251, 250, 0.07);
  box-shadow: 0 9px 44px 0 rgba(173, 45, 154, 0.13);
}

.student-projects .project-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.student-projects .card-label-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.student-projects .card-tag {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: #AD2D9A;
  text-transform: uppercase;
  font-weight: 600;
}

.student-projects .card-dot {
  width: 4px;
  height: 4px;
  border-radius: 3px;
  background: rgba(254, 251, 250, 0.25);
}

.student-projects .card-duration {
  font-size: 13px;
  color: rgba(254, 251, 250, 0.4);
  letter-spacing: 0.06em;
}

.student-projects .card-title {
  font-size: 23px;
  line-height: 1.3;
  font-weight: 600;
  color: #FEFBFA;
  margin: 0 0 8px 0;
  letter-spacing: 0.02em;
}

.student-projects .card-rule {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, #AD2D9A, transparent);
  border-radius: 3px;
  margin-bottom: 16px;
}

.student-projects .card-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(254, 251, 250, 0.65);
  margin: 0;
}

.student-projects .card-author-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.student-projects .author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #FEFBFA;
}

.student-projects .avatar-a {
  background: linear-gradient(135deg, #AD2D9A 0%, #255321 100%);
}

.student-projects .avatar-b {
  background: linear-gradient(135deg, #255321 0%, #AD2D9A 100%);
}

.student-projects .avatar-c {
  background: linear-gradient(135deg, #AD2D9A 40%, #0d0b12 100%);
}

.student-projects .avatar-d {
  background: linear-gradient(135deg, #255321 40%, #0d0b12 100%);
}

.student-projects .author-name {
  font-size: 13px;
  color: rgba(254, 251, 250, 0.55);
  letter-spacing: 0.04em;
}

.student-projects .featured-detail-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.student-projects .detail-card {
  background: rgba(37, 83, 33, 0.12);
  border: 1px solid rgba(37, 83, 33, 0.22);
  border-radius: 6px;
  padding: 16px;
  box-shadow: inset 0 2px 6px 0 rgba(37, 83, 33, 0.09);
}

.student-projects .detail-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.student-projects .detail-row+.detail-row {
  border-top: 1px solid rgba(254, 251, 250, 0.07);
}

.student-projects .detail-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(254, 251, 250, 0.4);
  text-transform: uppercase;
}

.student-projects .detail-value {
  font-size: 15px;
  color: #FEFBFA;
  font-weight: 600;
}

.student-projects .detail-value.accent {
  color: #AD2D9A;
}

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

.student-projects .checklist li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(254, 251, 250, 0.7);
}

.student-projects .checklist li .check-box {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1.5px solid #AD2D9A;
  border-radius: 3px;
  margin-top: 2px;
  position: relative;
  background: rgba(173, 45, 154, 0.1);
}

.student-projects .checklist li .check-box::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 7px;
  height: 4px;
  border-left: 1.5px solid #AD2D9A;
  border-bottom: 1.5px solid #AD2D9A;
  transform: rotate(-45deg);
}

.student-projects .blur-emerge {
  animation: emergeBlur 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.student-projects .blur-emerge-delay {
  animation: emergeBlur 0.8s 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes emergeBlur {
  from {
    filter: blur(12px);
    opacity: 0;
  }

  to {
    filter: blur(0);
    opacity: 1;
  }
}

.student-projects .section-divider {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.student-projects .divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(173, 45, 154, 0.3) 40%, rgba(37, 83, 33, 0.3) 70%, transparent 100%);
}

.student-projects .divider-diamond {
  width: 8px;
  height: 8px;
  background: #AD2D9A;
  transform: rotate(45deg);
  border-radius: 3px;
  opacity: 0.6;
}

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

  .student-projects .title-heading {
    font-size: 32px;
  }

  .student-projects .title-image-frame img {
    height: 280px;
  }

  .student-projects .projects-list {
    grid-template-columns: 1fr;
  }

  .student-projects .project-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .student-projects .projects-title-block,
  .student-projects .projects-grid-block {
    padding: 40px 16px;
  }

  .student-projects .section-divider {
    padding: 0 16px;
  }
}

.about-us-page {
  background-color: #0d0b12;
  overflow-x: clip;
  position: relative;
}

.about-us-page .constrained {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.about-us-page .divider-accent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.about-us-page .divider-accent .line {
  width: 60px;
  height: 1px;
  background: #AD2D9A;
}

.about-us-page .divider-accent .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #AD2D9A;
  flex-shrink: 0;
}

.about-us-page .divider-accent .dot-end {
  background: #255321;
}

.about-us-page .divider-accent .line-end {
  background: #255321;
}

.about-us-page .identity-band {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #0d0b12;
  position: relative;
  overflow: hidden;
}

.about-us-page .identity-band .blob-one {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: #AD2D9A;
  opacity: 0.08;
  filter: blur(90px);
  top: -80px;
  left: -80px;
  pointer-events: none;
}

.about-us-page .identity-band .blob-two {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #255321;
  opacity: 0.07;
  filter: blur(70px);
  bottom: 0;
  right: 80px;
  pointer-events: none;
}

.about-us-page .identity-band .corners {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 80px;
  height: 80px;
  pointer-events: none;
}

.about-us-page .identity-band .corners span {
  position: absolute;
  border: 1px solid #AD2D9A;
  border-radius: 3px;
  opacity: 0.3;
}

.about-us-page .identity-band .corners span:nth-child(1) {
  inset: 0;
}

.about-us-page .identity-band .corners span:nth-child(2) {
  inset: 8px;
  opacity: 0.2;
}

.about-us-page .identity-band .corners span:nth-child(3) {
  inset: 16px;
  opacity: 0.12;
}

.about-us-page .identity-band .corners span:nth-child(4) {
  inset: 24px;
  opacity: 0.07;
}

.about-us-page .identity-layout {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.about-us-page .identity-text {
  flex: 1 1 0;
}

.about-us-page .identity-text .label-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #AD2D9A;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.about-us-page .identity-text .main-heading {
  font-size: 62px;
  line-height: 1.1;
  font-weight: 300;
  color: #FEFBFA;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

.about-us-page .identity-text .main-heading .accented {
  color: #AD2D9A;
}

.about-us-page .identity-text .description {
  font-size: 18px;
  line-height: 1.7;
  color: #c8c0cc;
  margin-bottom: 40px;
  max-width: 540px;
}

.about-us-page .identity-text .since-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(173, 45, 154, 0.25);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 13px;
  color: #AD2D9A;
  letter-spacing: 0.1em;
}

.about-us-page .identity-image-col {
  flex: 0 0 440px;
  position: relative;
}

.about-us-page .identity-image-col .image-frame {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 9px 44px 0 rgba(173, 45, 154, 0.13);
}

.about-us-page .identity-image-col .image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: sepia(0.2) saturate(1.1) brightness(0.88);
  transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-us-page .identity-image-col .image-frame img:hover {
  filter: sepia(0) saturate(1.2) brightness(0.95);
}

.about-us-page .identity-image-col .image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(173, 45, 154, 0.12) 0%, rgba(13, 11, 18, 0.45) 100%);
  pointer-events: none;
}

.about-us-page .identity-image-col .rotating-ring {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px dashed rgba(173, 45, 154, 0.35);
  border-radius: 50%;
  bottom: -16px;
  left: -16px;
  animation: ring-spin 12s linear infinite;
  pointer-events: none;
}

@keyframes ring-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.about-us-page .approach-band {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(105deg, rgba(37, 83, 33, 0.18) 0%, #0d0b12 55%);
  position: relative;
}

.about-us-page .approach-band .geo-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-us-page .approach-band .geo-texture .geo-shape {
  position: absolute;
  opacity: 0.045;
}

.about-us-page .approach-band .geo-texture .geo-shape.sq1 {
  width: 18px;
  height: 18px;
  border: 1px solid #AD2D9A;
  border-radius: 3px;
  top: 15%;
  left: 8%;
  transform: rotate(22deg);
}

.about-us-page .approach-band .geo-texture .geo-shape.sq2 {
  width: 10px;
  height: 10px;
  background: #255321;
  border-radius: 3px;
  top: 55%;
  left: 22%;
  transform: rotate(45deg);
}

.about-us-page .approach-band .geo-texture .geo-shape.sq3 {
  width: 14px;
  height: 14px;
  border: 1px solid #FEFBFA;
  border-radius: 3px;
  top: 30%;
  right: 12%;
  transform: rotate(10deg);
}

.about-us-page .approach-band .geo-texture .geo-shape.sq4 {
  width: 8px;
  height: 8px;
  background: #AD2D9A;
  border-radius: 3px;
  bottom: 20%;
  right: 28%;
  transform: rotate(33deg);
}

.about-us-page .approach-band .geo-texture .geo-shape.sq5 {
  width: 22px;
  height: 22px;
  border: 1px solid #255321;
  border-radius: 3px;
  bottom: 10%;
  left: 45%;
  transform: rotate(55deg);
}

.about-us-page .approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.about-us-page .approach-grid .approach-card {
  background: rgba(254, 251, 250, 0.03);
  border: 1px solid rgba(173, 45, 154, 0.15);
  border-radius: 10px;
  padding: 40px;
  position: relative;
  transition: border-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 1px 2px 0 rgba(173, 45, 154, 0.07);
}

.about-us-page .approach-grid .approach-card:hover {
  border-color: rgba(173, 45, 154, 0.45);
  background: rgba(173, 45, 154, 0.06);
}

.about-us-page .approach-grid .approach-card .card-number {
  font-size: 62px;
  line-height: 1.1;
  font-weight: 200;
  color: rgba(173, 45, 154, 0.2);
  letter-spacing: -0.02em;
  position: absolute;
  top: 16px;
  right: 16px;
  user-select: none;
}

.about-us-page .approach-grid .approach-card .card-heading {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  color: #FEFBFA;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.about-us-page .approach-grid .approach-card .card-text {
  font-size: 15px;
  line-height: 1.7;
  color: #b0a8b4;
}

.about-us-page .approach-wide {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.about-us-page .approach-wide .image-aside {
  flex: 0 0 360px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 22px 0 rgba(37, 83, 33, 0.09);
}

.about-us-page .approach-wide .image-aside img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(1.05);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-us-page .approach-wide .image-aside:hover img {
  transform: scale(1.03);
}

.about-us-page .approach-wide .wide-text {
  flex: 1 1 0;
}

.about-us-page .approach-wide .wide-text .wide-heading {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 300;
  color: #FEFBFA;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.about-us-page .approach-wide .wide-text .wide-heading .quoted {
  color: #AD2D9A;
}

.about-us-page .approach-wide .wide-text .wide-para {
  font-size: 15px;
  line-height: 1.7;
  color: #b0a8b4;
}

.about-us-page .closing-band {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #0d0b12;
  position: relative;
}

.about-us-page .closing-band .closing-corners {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 60px;
  height: 60px;
  pointer-events: none;
}

.about-us-page .closing-band .closing-corners span {
  position: absolute;
  border: 1px solid #255321;
  border-radius: 3px;
  opacity: 0.25;
}

.about-us-page .closing-band .closing-corners span:nth-child(1) {
  inset: 0;
}

.about-us-page .closing-band .closing-corners span:nth-child(2) {
  inset: 8px;
  opacity: 0.15;
}

.about-us-page .closing-band .closing-corners span:nth-child(3) {
  inset: 16px;
  opacity: 0.08;
}

.about-us-page .closing-layout {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.about-us-page .closing-left {
  flex: 0 0 320px;
}

.about-us-page .closing-left .closing-heading {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 300;
  color: #FEFBFA;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.about-us-page .closing-left .closing-heading .accented {
  color: #AD2D9A;
}

.about-us-page .closing-left .closing-para {
  font-size: 15px;
  line-height: 1.7;
  color: #b0a8b4;
  margin-bottom: 40px;
}

.about-us-page .closing-left .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-us-page .closing-left .contact-list li {
  font-size: 13px;
  line-height: 1.5;
  color: #c8c0cc;
  letter-spacing: 0.06em;
}

.about-us-page .closing-left .contact-list li span {
  color: #AD2D9A;
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.about-us-page .closing-right {
  flex: 1 1 0;
}

.about-us-page .team-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-us-page .team-list .team-member {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 40px;
  background: rgba(254, 251, 250, 0.03);
  border: 1px solid rgba(37, 83, 33, 0.2);
  border-radius: 10px;
  transition: border-color 0.55s ease, background 0.55s ease;
  box-shadow: 0 1px 2px 0 rgba(37, 83, 33, 0.07);
}

.about-us-page .team-list .team-member:hover {
  border-color: rgba(37, 83, 33, 0.5);
  background: rgba(37, 83, 33, 0.07);
}

.about-us-page .team-list .team-member .member-avatar {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(173, 45, 154, 0.2);
}

.about-us-page .team-list .team-member .member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-us-page .team-list .team-member .member-info {
  flex: 1 1 0;
}

.about-us-page .team-list .team-member .member-info .member-name {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  color: #FEFBFA;
  margin-bottom: 8px;
}

.about-us-page .team-list .team-member .member-info .member-role {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #AD2D9A;
  margin-bottom: 8px;
}

.about-us-page .team-list .team-member .member-info .member-bio {
  font-size: 15px;
  line-height: 1.7;
  color: #b0a8b4;
}

.about-us-page .checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-us-page .checklist li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #c8c0cc;
}

.about-us-page .checklist li .check-box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #AD2D9A;
  border-radius: 3px;
  margin-top: 2px;
  position: relative;
  background: rgba(173, 45, 154, 0.08);
}

.about-us-page .checklist li .check-box::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  width: 10px;
  height: 6px;
  border-left: 1.5px solid #AD2D9A;
  border-bottom: 1.5px solid #AD2D9A;
  transform: rotate(-45deg);
}

.about-us-page .typing-heading {
  font-size: 23px;
  line-height: 1.3;
  font-weight: 300;
  color: #FEFBFA;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #AD2D9A;
  width: 0;
  animation: type-reveal 1.4s steps(38, end) 0.4s forwards, blink-cursor 0.9s step-end 0.4s 5;
}

@keyframes type-reveal {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-cursor {

  0%,
  100% {
    border-right-color: #AD2D9A;
  }

  50% {
    border-right-color: transparent;
  }
}

@media (max-width: 1024px) {
  .about-us-page .identity-layout {
    flex-direction: column;
    gap: 40px;
  }

  .about-us-page .identity-image-col {
    flex: 0 0 auto;
    width: 100%;
  }

  .about-us-page .approach-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-us-page .approach-wide {
    flex-direction: column;
  }

  .about-us-page .approach-wide .image-aside {
    flex: 0 0 auto;
    width: 100%;
  }

  .about-us-page .closing-layout {
    flex-direction: column;
    gap: 40px;
  }

  .about-us-page .closing-left {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .about-us-page .constrained {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-us-page .identity-text .main-heading {
    font-size: 32px;
  }

  .about-us-page .approach-grid {
    grid-template-columns: 1fr;
  }

  .about-us-page .typing-heading {
    font-size: 18px;
    white-space: normal;
    width: auto;
    animation: none;
    border-right: none;
  }

  .about-us-page .team-list .team-member {
    flex-direction: column;
  }

  .about-us-page .identity-band,
  .about-us-page .approach-band,
  .about-us-page .closing-band {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.contact-us-page {
  background: #0d0a0f;
  min-height: 100vh;
  overflow-x: hidden;
}

.contact-us-page .reach-strip {
  background: linear-gradient(172deg, #1a0d1a 0%, #0d1a0d 100%);
  padding: 80px 0 40px;
  position: relative;
}

.contact-us-page .reach-strip::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #AD2D9A 40%, #255321 70%, transparent);
}

.contact-us-page .reach-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.contact-us-page .reach-text-zone {
  flex: 2;
  position: relative;
}

.contact-us-page .dot-grid {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 180px;
  height: 140px;
  background-image: radial-gradient(circle, rgba(173, 45, 154, 0.25) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 0;
}

.contact-us-page .reach-text-zone .reach-label {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #AD2D9A;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.contact-us-page .reach-text-zone h1 {
  font-size: 62px;
  line-height: 1.1;
  font-weight: 200;
  letter-spacing: 0.06em;
  color: #FEFBFA;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.contact-us-page .reach-text-zone h1 span {
  color: #AD2D9A;
  font-weight: 600;
}

.contact-us-page .reach-text-zone .reach-sub {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(254, 251, 250, 0.72);
  max-width: 420px;
  position: relative;
  z-index: 1;
}

.contact-us-page .reach-image-strip {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}

.contact-us-page .reach-image-strip .image-glow-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 9px 44px 0 rgba(173, 45, 154, 0.13);
}

.contact-us-page .reach-image-strip .image-glow-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(254, 251, 250, 0.18) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  border-radius: 10px;
}

.contact-us-page .reach-image-strip img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  filter: grayscale(0%);
  animation: color-cycle 8s ease-in-out infinite;
}

@keyframes color-cycle {

  0%,
  100% {
    filter: grayscale(0%);
  }

  40%,
  60% {
    filter: grayscale(100%);
  }
}

.contact-us-page .reach-lines-deco {
  position: absolute;
  bottom: -16px;
  right: -8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.contact-us-page .reach-lines-deco span {
  display: block;
  height: 1.5px;
  background: rgba(37, 83, 33, 0.55);
  border-radius: 3px;
}

.contact-us-page .reach-lines-deco span:nth-child(1) {
  width: 80px;
}

.contact-us-page .reach-lines-deco span:nth-child(2) {
  width: 56px;
}

.contact-us-page .reach-lines-deco span:nth-child(3) {
  width: 36px;
}

.contact-us-page .reach-lines-deco span:nth-child(4) {
  width: 20px;
}

.contact-us-page .zigzag-divider {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.contact-us-page .form-area {
  background: #110d14;
  padding: 80px 0;
  position: relative;
}

.contact-us-page .form-area-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.contact-us-page .form-intro-block {
  flex: 1;
  min-width: 240px;
}

.contact-us-page .form-intro-block .intro-heading {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #FEFBFA;
  line-height: 1.3;
  margin-bottom: 16px;
}

.contact-us-page .form-intro-block .intro-heading strong {
  font-weight: 700;
  color: #AD2D9A;
}

.contact-us-page .form-intro-divider {
  width: 40px;
  height: 3px;
  background: #255321;
  border-radius: 3px;
  margin-bottom: 16px;
}

.contact-us-page .form-intro-block .intro-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(254, 251, 250, 0.68);
  margin-bottom: 40px;
}

.contact-us-page .form-intro-block .detail-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-us-page .detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(173, 45, 154, 0.14);
  border: 1px solid rgba(173, 45, 154, 0.3);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-us-page .detail-icon svg {
  width: 18px;
  height: 18px;
}

.contact-us-page .detail-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-us-page .detail-text .detail-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(254, 251, 250, 0.45);
  text-transform: uppercase;
  line-height: 1.3;
}

.contact-us-page .detail-text .detail-value {
  font-size: 15px;
  color: #FEFBFA;
  line-height: 1.5;
}

.contact-us-page .detail-text a {
  color: #FEFBFA;
  text-decoration: none;
  transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-us-page .detail-text a:hover {
  color: #AD2D9A;
}

.contact-us-page .contact-form-block {
  flex: 2;
}

.contact-us-page .styled-form {
  background: rgba(254, 251, 250, 0.04);
  border: 1px solid rgba(173, 45, 154, 0.18);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 22px 0 rgba(173, 45, 154, 0.09), inset 0 2px 6px 0 rgba(173, 45, 154, 0.05);
}

.contact-us-page .form-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-us-page .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.contact-us-page .form-field label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(254, 251, 250, 0.8);
  text-transform: uppercase;
}

.contact-us-page .form-field input[type="text"],
.contact-us-page .form-field input[type="email"] {
  background: rgba(254, 251, 250, 0.06);
  border: 1px solid rgba(173, 45, 154, 0.25);
  border-radius: 6px;
  padding: 16px;
  font-size: 15px;
  color: #FEFBFA;
  outline: none;
  transition: border-color 0.6s ease, box-shadow 0.7s ease;
  width: 100%;
  box-sizing: border-box;
}

.contact-us-page .form-field input[type="text"]::placeholder,
.contact-us-page .form-field input[type="email"]::placeholder {
  color: rgba(173, 45, 154, 0.45);
}

.contact-us-page .form-field input[type="text"]:focus,
.contact-us-page .form-field input[type="email"]:focus {
  border-color: #AD2D9A;
  box-shadow: 0 0 0 3px rgba(173, 45, 154, 0.15);
}

.contact-us-page .service-selection {
  margin-bottom: 16px;
}

.contact-us-page .service-selection .service-label-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(254, 251, 250, 0.8);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.contact-us-page .service-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-us-page .checkbox-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid rgba(254, 251, 250, 0.08);
  background: rgba(254, 251, 250, 0.03);
  cursor: pointer;
  transition: border-color 0.5s ease, background 0.6s ease;
  position: relative;
}

.contact-us-page .checkbox-item:hover {
  border-color: rgba(173, 45, 154, 0.35);
  background: rgba(173, 45, 154, 0.07);
}

.contact-us-page .checkbox-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(173, 45, 154, 0.45);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: background 0.5s ease, border-color 0.5s ease;
}

.contact-us-page .checkbox-item input[type="checkbox"]:checked {
  background: #AD2D9A;
  border-color: #AD2D9A;
}

.contact-us-page .checkbox-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 8px;
  height: 12px;
  border: 2px solid #FEFBFA;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  display: block;
}

.contact-us-page .checkbox-item .checkbox-text {
  font-size: 15px;
  color: rgba(254, 251, 250, 0.82);
  line-height: 1.3;
  font-weight: 700;
}

.contact-us-page .checkbox-item .checkbox-desc {
  font-size: 13px;
  color: rgba(254, 251, 250, 0.45);
  line-height: 1.3;
  display: block;
  margin-top: 4px;
}

.contact-us-page .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(37, 83, 33, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(37, 83, 33, 0.25);
}

.contact-us-page .privacy-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid rgba(37, 83, 33, 0.6);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: background 0.55s ease, border-color 0.55s ease;
  margin-top: 2px;
}

.contact-us-page .privacy-row input[type="checkbox"]:checked {
  background: #255321;
  border-color: #255321;
}

.contact-us-page .privacy-row input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 8px;
  height: 12px;
  border: 2px solid #FEFBFA;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  display: block;
}

.contact-us-page .privacy-text {
  font-size: 13px;
  color: rgba(254, 251, 250, 0.65);
  line-height: 1.7;
}

.contact-us-page .privacy-text a {
  color: #AD2D9A;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.55s ease;
}

.contact-us-page .privacy-text a:hover {
  color: #FEFBFA;
}

.contact-us-page .submit-btn {
  background: transparent;
  border: 2px solid #AD2D9A;
  border-radius: 6px;
  color: #AD2D9A;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.6s ease;
  display: inline-block;
}

.contact-us-page .submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #AD2D9A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.contact-us-page .submit-btn:hover::before,
.contact-us-page .submit-btn:focus::before {
  transform: scaleX(1);
}

.contact-us-page .submit-btn:hover,
.contact-us-page .submit-btn:focus {
  color: #FEFBFA;
  outline: none;
}

.contact-us-page .submit-btn span {
  position: relative;
  z-index: 1;
}

.contact-us-page .submit-btn:active {
  transform: scale(0.98);
}

.contact-us-page .zigzag-divider-2 {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.contact-us-page .address-area {
  background: #255321;
  padding: 80px 0;
  position: relative;
}

.contact-us-page .address-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.contact-us-page .address-main {
  flex: 2;
}

.contact-us-page .address-main h2 {
  font-size: 32px;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: #FEFBFA;
  line-height: 1.3;
  margin-bottom: 16px;
}

.contact-us-page .address-main h2 strong {
  font-weight: 700;
}

.contact-us-page .address-main .address-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(254, 251, 250, 0.78);
  margin-bottom: 40px;
  max-width: 480px;
}

.contact-us-page .address-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-us-page .address-card {
  background: rgba(254, 251, 250, 0.08);
  border: 1px solid rgba(254, 251, 250, 0.15);
  border-radius: 10px;
  padding: 16px 40px 16px 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 1px 2px 0 rgba(37, 83, 33, 0.07);
  transition: background 0.65s ease, box-shadow 0.65s ease;
}

.contact-us-page .address-card:hover {
  background: rgba(254, 251, 250, 0.14);
  box-shadow: 0 4px 22px 0 rgba(37, 83, 33, 0.09);
}

.contact-us-page .address-card .card-icon {
  width: 40px;
  height: 40px;
  background: rgba(173, 45, 154, 0.2);
  border-radius: 6px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-us-page .address-card .card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-us-page .address-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-us-page .address-card .card-type {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: rgba(254, 251, 250, 0.5);
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 8px;
}

.contact-us-page .address-card .card-value {
  font-size: 18px;
  color: #FEFBFA;
  line-height: 1.3;
  font-weight: 600;
}

.contact-us-page .address-card a {
  color: #FEFBFA;
  text-decoration: none;
  transition: color 0.55s ease;
}

.contact-us-page .address-card a:hover {
  color: #AD2D9A;
}

.contact-us-page .address-sidebar {
  flex: 1;
  position: relative;
}

.contact-us-page .sidebar-image-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 9px 44px 0 rgba(37, 83, 33, 0.13);
}

.contact-us-page .sidebar-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  filter: grayscale(0%);
  animation: color-cycle 10s ease-in-out infinite 4s;
}

.contact-us-page .sidebar-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(37, 83, 33, 0.7) 100%);
  pointer-events: none;
  border-radius: 10px;
}

.contact-us-page .sidebar-deco-lines {
  position: absolute;
  top: -16px;
  right: -8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.contact-us-page .sidebar-deco-lines span {
  display: block;
  height: 1.5px;
  background: rgba(254, 251, 250, 0.3);
  border-radius: 3px;
}

.contact-us-page .sidebar-deco-lines span:nth-child(1) {
  width: 64px;
}

.contact-us-page .sidebar-deco-lines span:nth-child(2) {
  width: 44px;
}

.contact-us-page .sidebar-deco-lines span:nth-child(3) {
  width: 28px;
}

.contact-us-page .address-note {
  margin-top: 16px;
  background: rgba(173, 45, 154, 0.15);
  border-radius: 6px;
  padding: 16px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(254, 251, 250, 0.78);
  border: 1px solid rgba(173, 45, 154, 0.25);
}

@media (max-width: 900px) {

  .contact-us-page .reach-inner,
  .contact-us-page .form-area-inner,
  .contact-us-page .address-inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 16px;
  }

  .contact-us-page .reach-text-zone h1 {
    font-size: 32px;
  }

  .contact-us-page .reach-image-strip {
    align-items: flex-start;
  }

  .contact-us-page .reach-image-strip .image-glow-wrap {
    max-width: 100%;
  }

  .contact-us-page .reach-image-strip img {
    height: 220px;
  }

  .contact-us-page .form-row {
    flex-direction: column;
  }

  .contact-us-page .styled-form {
    padding: 16px;
  }

  .contact-us-page .reach-strip,
  .contact-us-page .form-area,
  .contact-us-page .address-area {
    padding: 40px 0;
  }

  .contact-us-page .sidebar-image-wrap img {
    height: 200px;
  }
}

.success-page {
  min-height: 100vh;
  background: #0d0b12;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 16px;
}

.success-page .success-card {
  max-width: 560px;
  width: 100%;
  background: rgba(173, 45, 154, 0.06);
  border: 1px solid rgba(173, 45, 154, 0.22);
  border-radius: 10px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgba(173, 45, 154, 0.07), 0 4px 22px 0 rgba(173, 45, 154, 0.09), 0 9px 44px 0 rgba(173, 45, 154, 0.13);
  position: relative;
}

.success-page .success-card .checkmark-wrapper {
  width: 72px;
  height: 72px;
  margin: 0 auto 40px;
  border-radius: 28px;
  background: rgba(37, 83, 33, 0.18);
  border: 1.5px solid rgba(37, 83, 33, 0.5);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px 0 rgba(37, 83, 33, 0.07), 0 4px 22px 0 rgba(37, 83, 33, 0.09);
}

.success-page .success-card .checkmark-wrapper svg {
  width: 32px;
  height: 32px;
}

.success-page .success-card .success-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #AD2D9A;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.success-page .success-card .success-heading {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
  color: #FEFBFA;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.success-page .success-card .success-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(254, 251, 250, 0.65);
  margin-bottom: 40px;
}

.success-page .success-card .divider-line {
  width: 40px;
  height: 1px;
  background: rgba(173, 45, 154, 0.35);
  margin: 0 auto 40px;
  border-radius: 3px;
}

.success-page .success-card .meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.success-page .success-card .meta-item {
  font-size: 13px;
  line-height: 1.3;
  color: rgba(254, 251, 250, 0.45);
  letter-spacing: 0.06em;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.success-page .success-card .meta-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #AD2D9A;
  flex-shrink: 0;
}

.success-page .success-card .return-link {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  color: #FEFBFA;
  text-decoration: none;
  padding: 16px 40px;
  border: 1px solid rgba(173, 45, 154, 0.4);
  border-radius: 6px;
  background: rgba(173, 45, 154, 0.1);
  transition: background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s ease, color 0.5s ease;
  letter-spacing: 0.04em;
}

.success-page .success-card .return-link:hover {
  background: rgba(173, 45, 154, 0.22);
  border-color: rgba(173, 45, 154, 0.7);
  color: #FEFBFA;
}

.success-page .success-card .return-link:focus-visible {
  outline: 2px solid #AD2D9A;
  outline-offset: 3px;
}

.success-page .brand-footer {
  margin-top: 40px;
  font-size: 13px;
  line-height: 1.3;
  color: rgba(254, 251, 250, 0.25);
  letter-spacing: 0.08em;
}