* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: 'Cormorant', serif;
}

.brand-bar {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a0a2e 60%, #0d1f2d 100%);
  padding: 24px 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  border-bottom: 1px solid rgba(0, 219, 224, 0.18);
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.logo-container {
  width: 64px;
  height: 64px;
  background-color: #f0ede8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 219, 224, 0.4);
  box-shadow: 1px 5px 14px -2px rgba(0, 219, 224, 0.10);
  flex-shrink: 0;
  padding: 8px;
}

.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-name {
  font-family: 'Cormorant', serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  display: block;
}

.brand-descriptor {
  font-family: 'Cormorant', serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(0, 219, 224, 0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

.brand-accent-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #00DBE0, #8A1799);
  border-radius: 4px;
  margin-top: 8px;
}

.header-contact-strip {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-top: 8px;
}

.contact-item {
  font-family: 'Cormorant', serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover,
.contact-item:focus {
  color: #00DBE0;
  outline: none;
}

.contact-item:focus-visible {
  transform: scale(1.02);
  outline: 2px solid #00DBE0;
  outline-offset: 2px;
  border-radius: 4px;
}

.primary-navigation {
  background: rgba(8, 6, 20, 0.96);
  border-top: 1px solid rgba(138, 23, 153, 0.25);
  padding: 0 48px;
}

.primary-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.primary-navigation ul li {
  position: relative;
}

.primary-navigation ul li a {
  display: block;
  font-family: 'Cormorant', serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 24px 24px;
  letter-spacing: 0.01em;
  transition: color 0.25s cubic-bezier(0.0, 0, 0.2, 1);
  white-space: nowrap;
}

.primary-navigation ul li a::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, #00DBE0, #8A1799);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-navigation ul li a:hover {
  color: #00DBE0;
}

.primary-navigation ul li a:hover::after {
  transform: scaleX(1);
}

.primary-navigation ul li a:focus-visible {
  color: #00DBE0;
  outline: 2px solid #00DBE0;
  outline-offset: -2px;
  border-radius: 4px;
  transform: scale(1.02);
}

.primary-navigation ul li a.active-link {
  color: #00DBE0;
}

.primary-navigation ul li a.active-link::after {
  transform: scaleX(1);
}

.page-footer {
  background: linear-gradient(160deg, #0f0f1a 0%, #1a0a2e 50%, #0d1f2d 100%);
  position: relative;
  overflow: hidden;
}

.footer-wave {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.footer-body {
  max-width: 1024px;
  margin: 0 auto;
  padding: 48px 48px 24px;
}

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

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

.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-logo-box {
  width: 60px;
  height: 60px;
  background-color: #f0ede8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 219, 224, 0.35);
  box-shadow: 1px 5px 14px -2px rgba(0, 219, 224, 0.10);
  flex-shrink: 0;
  padding: 8px;
}

.footer-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.footer-brand-label {
  font-family: 'Cormorant', serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.footer-tagline {
  font-family: 'Cormorant', serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(0, 219, 224, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.footer-column-heading {
  font-family: 'Cormorant', serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(138, 23, 153, 0.3);
}

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

.footer-contact-list li {
  font-family: 'Cormorant', serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-contact-list li a:hover {
  color: #00DBE0;
}

.footer-contact-list li a:focus-visible {
  color: #00DBE0;
  outline: 2px solid #00DBE0;
  outline-offset: 2px;
  border-radius: 4px;
  transform: scale(1.02);
}

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

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

.footer-policy-list li a {
  font-family: 'Cormorant', serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.footer-policy-list li a:hover {
  color: #00DBE0;
}

.footer-policy-list li a:focus-visible {
  color: #00DBE0;
  outline: 2px solid #00DBE0;
  outline-offset: 2px;
  border-radius: 4px;
  transform: scale(1.02);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 219, 224, 0.25), rgba(138, 23, 153, 0.25), transparent);
  margin: 0 0 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-family: 'Cormorant', serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.4);
}

.footer-domain {
  font-family: 'Cormorant', serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(0, 219, 224, 0.5);
}

.footer-shadow-layer {
  box-shadow: 1px 1px 5px -2px rgba(0, 219, 224, 0.08), 1px 5px 14px -2px rgba(0, 219, 224, 0.10), 1px 12px 40px -2px rgba(0, 219, 224, 0.12);
}

.consent-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 340px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0, 219, 224, 0.25);
  box-shadow: 1px 5px 14px -2px rgba(0, 219, 224, 0.10), 1px 12px 40px -2px rgba(138, 23, 153, 0.12);
  padding: 24px;
  z-index: 1000;
  display: none;
  transform: translateX(-40px);
  opacity: 0;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.consent-popup.visible {
  transform: translateX(0);
  opacity: 1;
}

.consent-popup.hiding {
  transform: translateX(-40px);
  opacity: 0;
}

.consent-description {
  font-family: 'Cormorant', serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: #2a1a3e;
  margin: 0 0 8px;
}

.consent-description a {
  color: #8A1799;
  text-decoration: underline;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.consent-description a:hover {
  color: #00DBE0;
}

.consent-headline {
  font-family: 'Cormorant', serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  color: #0f0f1a;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.consent-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

.consent-accept {
  font-family: 'Cormorant', serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
  color: #ffffff;
  background: #8A1799;
  border: none;
  border-radius: 6px;
  padding: 8px 24px;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.consent-accept:hover,
.consent-accept:focus-visible {
  background: #00DBE0;
  color: #0f0f1a;
  outline: none;
  transform: scale(1.02);
}

.consent-decline {
  font-family: 'Cormorant', serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: #8A1799;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.consent-decline:hover,
.consent-decline:focus-visible {
  color: #00DBE0;
  outline: none;
}

@media (max-width: 768px) {
  .brand-bar {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }

  .header-contact-strip {
    align-items: flex-start;
  }

  .primary-navigation {
    padding: 0 24px;
  }

  .primary-navigation ul {
    flex-wrap: wrap;
    gap: 0;
  }

  .primary-navigation ul li a {
    padding: 24px 8px;
    font-size: 13px;
  }

  .footer-body {
    padding: 48px 24px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .consent-popup {
    width: calc(100vw - 48px);
    right: 24px;
    left: 24px;
  }
}

.rules-content {
  max-width: 1024px;
  margin: 0 auto;
  padding: 96px 48px;
}

.rules-content h1 {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111318;
  margin-bottom: 48px;
  margin-top: 0;
}

.rules-content h2 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111318;
  margin-top: 96px;
  margin-bottom: 24px;
}

.rules-content h3 {
  font-size: 19px;
  line-height: 1.75;
  letter-spacing: -0.01em;
  color: #111318;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 8px;
}

.rules-content h4,
.rules-content h5,
.rules-content h6 {
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8A1799;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 8px;
}

.rules-content p {
  font-size: 19px;
  line-height: 1.75;
  color: #2a2d35;
  margin-top: 0;
  margin-bottom: 24px;
  max-width: 72ch;
}

.rules-content ul,
.rules-content ol {
  font-size: 19px;
  line-height: 1.75;
  color: #2a2d35;
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 24px;
  max-width: 72ch;
}

.rules-content ul {
  list-style: none;
  padding-left: 0;
}

.rules-content ul li {
  padding-left: 24px;
  position: relative;
}

.rules-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #00DBE0;
}

.rules-content ol {
  list-style: decimal;
}

.rules-content li {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.75;
  color: #2a2d35;
}

.rules-content li:last-child {
  margin-bottom: 0;
}

.rules-content strong,
.rules-content b {
  font-weight: 700;
  color: #111318;
}

.rules-content em,
.rules-content i {
  font-style: italic;
  color: #2a2d35;
}

.rules-content hr {
  border: none;
  border-top: 1px solid #d4d8e2;
  margin-top: 48px;
  margin-bottom: 48px;
  width: 100%;
}

.rules-content div {
  font-size: 19px;
  line-height: 1.75;
  color: #2a2d35;
}

@media (max-width: 768px) {
  .rules-content {
    padding: 48px 24px;
  }

  .rules-content h1 {
    font-size: 46px;
    margin-bottom: 24px;
  }

  .rules-content h2 {
    font-size: 46px;
    margin-top: 48px;
  }

  .rules-content p,
  .rules-content ul,
  .rules-content ol,
  .rules-content div {
    font-size: 19px;
  }
}

@media (max-width: 480px) {
  .rules-content {
    padding: 48px 24px;
  }

  .rules-content h1 {
    font-size: 46px;
  }

  .rules-content h2 {
    font-size: 46px;
  }
}

.why-choose-us {
  background: #ffffff;
  overflow-x: clip;
}

.why-choose-us .page-schema {
  display: none;
}

.why-choose-us .strip-image-row {
  width: 100%;
  height: 72px;
  overflow: hidden;
  position: relative;
}

.why-choose-us .strip-image-row img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(1) contrast(1.3);
  display: block;
}

.why-choose-us .strip-image-row::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(323deg, rgba(0, 219, 224, 0.18) 0%, transparent 60%, rgba(138, 23, 153, 0.12) 100%);
  pointer-events: none;
}

.why-choose-us .title-area {
  max-width: 1024px;
  margin: 0 auto;
  padding: 48px 24px 48px;
  position: relative;
}

.why-choose-us .title-area .diamond-accent {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 28px;
  height: 28px;
  background: linear-gradient(323deg, #00DBE0 0%, #8A1799 100%);
  transform: rotate(45deg);
  border-radius: 4px;
  opacity: 0.55;
  pointer-events: none;
}

.why-choose-us .title-area .diamond-accent-small {
  position: absolute;
  top: 40px;
  right: 60px;
  width: 14px;
  height: 14px;
  background: #FEF793;
  transform: rotate(45deg);
  border-radius: 4px;
  opacity: 0.7;
  pointer-events: none;
}

.why-choose-us .label-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.why-choose-us .label-dot .dot {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background: linear-gradient(323deg, #00DBE0, #8A1799);
  flex-shrink: 0;
}

.why-choose-us .label-dot span {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #3a3a3a;
  text-transform: uppercase;
}

.why-choose-us .main-heading {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1a1a2e;
  text-align: center;
  margin: 0 0 24px;
  animation: track-expand 0.26s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes track-expand {
  from {
    letter-spacing: -0.08em;
    opacity: 0.4;
  }

  to {
    letter-spacing: -0.03em;
    opacity: 1;
  }
}

.why-choose-us .main-heading .grad-underline {
  position: relative;
  display: inline-block;
}

.why-choose-us .main-heading .grad-underline::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(323deg, #00DBE0, #8A1799);
  border-radius: 4px;
  animation: underline-draw 0.24s cubic-bezier(0.0, 0, 0.2, 1) 0.2s both;
  transform-origin: left;
}

@keyframes underline-draw {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.why-choose-us .sub-heading {
  font-size: 19px;
  line-height: 1.75;
  color: #4a4a5a;
  text-align: left;
  max-width: 640px;
  margin: 0 auto 0 0;
}

.why-choose-us .wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.why-choose-us .wave-divider svg {
  display: block;
  width: 100%;
}

.why-choose-us .reasons-band {
  background: linear-gradient(323deg, rgba(0, 219, 224, 0.06) 0%, #f5f5fa 50%, rgba(138, 23, 153, 0.05) 100%);
  padding: 48px 24px;
}

.why-choose-us .reasons-grid {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-choose-us .reason-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 1px 5px 14px -2px rgba(0, 219, 224, 0.10);
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-choose-us .reason-item:hover {
  box-shadow: 1px 12px 40px -2px rgba(138, 23, 153, 0.12);
}

.why-choose-us .reason-item .item-number {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 700;
  color: #ececf5;
  position: absolute;
  top: 8px;
  right: 24px;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.why-choose-us .reason-item h4 {
  font-size: 19px;
  line-height: 1.1;
  color: #1a1a2e;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
}

.why-choose-us .reason-item h4::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(323deg, #00DBE0, #8A1799);
  border-radius: 4px;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-us .reason-item:hover h4::after {
  width: 100%;
}

.why-choose-us .reason-item p {
  font-size: 13px;
  line-height: 1.75;
  color: #5a5a6e;
  margin: 8px 0 0;
}

.why-choose-us .reason-item .dot-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.why-choose-us .reason-item .dot-label .cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 20px;
  flex-shrink: 0;
}

.why-choose-us .reason-item .dot-label span {
  font-size: 13px;
  color: #8a8aaa;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.why-choose-us .wave-divider-2 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.why-choose-us .trust-band {
  background: #ffffff;
  padding: 96px 24px 48px;
}

.why-choose-us .trust-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.why-choose-us .trust-left h2 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #1a1a2e;
  margin: 0 0 24px;
  position: relative;
  display: inline-block;
}

.why-choose-us .trust-left h2::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(323deg, #00DBE0, #8A1799);
  border-radius: 4px;
  animation: underline-draw 0.22s cubic-bezier(0.0, 0, 0.2, 1) 0.3s both;
  transform-origin: left;
}

.why-choose-us .trust-left p {
  font-size: 13px;
  line-height: 1.75;
  color: #5a5a6e;
  margin: 8px 0;
}

.why-choose-us .rating-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(323deg, rgba(0, 219, 224, 0.07) 0%, rgba(254, 247, 147, 0.12) 100%);
  border-radius: 12px;
  box-shadow: 1px 1px 5px -2px rgba(0, 219, 224, 0.08);
}

.why-choose-us .rating-number {
  font-size: 62px;
  line-height: 1.1;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.why-choose-us .rating-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-choose-us .rating-meta .stars-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.why-choose-us .star-shape {
  width: 16px;
  height: 16px;
  background: #FEF793;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  flex-shrink: 0;
}

.why-choose-us .star-shape.partial {
  background: linear-gradient(90deg, #FEF793 30%, #ddd 30%);
}

.why-choose-us .rating-meta .review-count {
  font-size: 13px;
  color: #8a8aaa;
  line-height: 1.75;
}

.why-choose-us .review-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-choose-us .review-card {
  background: #f8f7ff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 1px 1px 5px -2px rgba(138, 23, 153, 0.08);
  transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-us .review-card:hover {
  box-shadow: 1px 5px 14px -2px rgba(138, 23, 153, 0.10);
}

.why-choose-us .review-card .reviewer-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.why-choose-us .review-card .reviewer-name:hover {
  color: #8A1799;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-us .review-card p {
  font-size: 13px;
  line-height: 1.75;
  color: #5a5a6e;
  margin: 0;
}

.why-choose-us .wave-divider-3 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.why-choose-us .process-band {
  background: linear-gradient(323deg, rgba(138, 23, 153, 0.05) 0%, #f0fafa 60%, rgba(0, 219, 224, 0.07) 100%);
  padding: 48px 24px 96px;
}

.why-choose-us .process-inner {
  max-width: 1024px;
  margin: 0 auto;
}

.why-choose-us .process-inner .section-label {
  text-align: center;
  margin-bottom: 48px;
}

.why-choose-us .process-inner .section-label h3 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #1a1a2e;
  margin: 0 0 8px;
}

.why-choose-us .process-inner .section-label p {
  font-size: 13px;
  line-height: 1.75;
  color: #5a5a6e;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.why-choose-us .checkerboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-choose-us .checker-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 1px 5px 14px -2px rgba(0, 219, 224, 0.10);
  transition: box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-us .checker-item:nth-child(even) {
  margin-top: 24px;
}

.why-choose-us .checker-item:hover {
  box-shadow: 1px 12px 40px -2px rgba(0, 219, 224, 0.12);
}

.why-choose-us .checker-item .step-num {
  font-size: 13px;
  color: #8A1799;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.why-choose-us .checker-item h5 {
  font-size: 19px;
  line-height: 1.1;
  color: #1a1a2e;
  margin: 0;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
}

.why-choose-us .checker-item h5::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(323deg, #00DBE0, #8A1799);
  border-radius: 4px;
  transition: width 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-us .checker-item:hover h5::after {
  width: 100%;
}

.why-choose-us .checker-item p {
  font-size: 13px;
  line-height: 1.75;
  color: #5a5a6e;
  margin: 0;
}

.why-choose-us .cta-strip {
  background: linear-gradient(323deg, #1a1a2e 0%, #2a0a33 100%);
  padding: 48px 24px;
}

.why-choose-us .cta-strip-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.why-choose-us .cta-strip-inner h6 {
  font-size: 19px;
  line-height: 1.75;
  color: #ffffff;
  margin: 0;
  max-width: 560px;
}

.why-choose-us .cta-button {
  display: inline-block;
  padding: 24px 48px;
  background: linear-gradient(323deg, #00DBE0, #8A1799);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 1px 5px 14px -2px rgba(0, 219, 224, 0.10);
}

.why-choose-us .cta-button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.12);
  transition: height 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-us .cta-button:hover::before {
  height: 100%;
}

.why-choose-us .cta-button:hover {
  box-shadow: 1px 12px 40px -2px rgba(138, 23, 153, 0.12);
}

@media (max-width: 768px) {
  .why-choose-us .main-heading {
    font-size: 46px;
  }

  .why-choose-us .reasons-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-us .trust-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-choose-us .checkerboard {
    grid-template-columns: 1fr;
  }

  .why-choose-us .checker-item:nth-child(even) {
    margin-top: 0;
  }

  .why-choose-us .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-choose-us .rating-block {
    flex-direction: column;
    align-items: flex-start;
  }
}

.archive-root {
  background: #ffffff;
  overflow-x: clip;
  position: relative;
}

.archive-root .grid-pulse-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 219, 224, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 219, 224, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridpulse 4s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes gridpulse {
  0% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

.archive-root .page-limiter {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.archive-root .bracket-frame {
  position: relative;
  display: inline-block;
}

.archive-root .bracket-frame::before,
.archive-root .bracket-frame::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: #00DBE0;
  border-style: solid;
}

.archive-root .bracket-frame::before {
  top: -8px;
  left: -8px;
  border-width: 2px 0 0 2px;
}

.archive-root .bracket-frame::after {
  bottom: -8px;
  right: -8px;
  border-width: 0 2px 2px 0;
}

.archive-root .title-block {
  position: relative;
  padding: 48px 0 0 0;
  z-index: 1;
}

.archive-root .title-block .image-area {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 320px;
  box-shadow: 1px 12px 40px -2px rgba(0, 219, 224, 0.12);
}

.archive-root .title-block .image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.archive-root .title-block .image-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(323deg, rgba(138, 23, 153, 0.18) 0%, rgba(0, 219, 224, 0.10) 100%);
  pointer-events: none;
}

.archive-root .title-block .text-upper {
  padding: 48px 0 24px 0;
  text-align: center;
}

.archive-root .title-block .label-tag {
  display: inline-block;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.08em;
  color: #8A1799;
  border: 1px solid rgba(138, 23, 153, 0.25);
  border-radius: 4px;
  padding: 0 8px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.archive-root .title-block .main-heading {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111318;
  margin: 0 0 24px 0;
  position: relative;
  display: inline-block;
}

.archive-root .title-block .main-heading .gradient-line {
  display: block;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(323deg, #8A1799 0%, #00DBE0 100%);
  width: 0;
  animation: drawline 0.26s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
  margin-top: 8px;
}

@keyframes drawline {
  to {
    width: 100%;
  }
}

.archive-root .title-block .sub-text {
  font-size: 19px;
  line-height: 1.75;
  color: #2c2c3a;
  max-width: 620px;
  text-align: left;
  margin: 0 auto;
}

.archive-root .svg-divider-a {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.archive-root .metrics-band {
  position: relative;
  background: linear-gradient(323deg, rgba(138, 23, 153, 0.07) 0%, rgba(0, 219, 224, 0.09) 60%, rgba(254, 247, 147, 0.13) 100%);
  padding: 96px 0;
  z-index: 1;
}

.archive-root .metrics-band .band-label {
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #8A1799;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.archive-root .metrics-band .band-heading {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111318;
  margin: 0 0 48px 0;
  position: relative;
  display: inline-block;
}

.archive-root .metrics-band .band-heading .gradient-line {
  display: block;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(323deg, #00DBE0 0%, #8A1799 100%);
  width: 0;
  animation: drawline 0.22s cubic-bezier(0.0, 0, 0.2, 1) 0.5s forwards;
  margin-top: 6px;
}

.archive-root .metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.archive-root .metric-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 1px 5px 14px -2px rgba(0, 219, 224, 0.10);
  position: relative;
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.archive-root .metric-card:hover {
  box-shadow: 1px 12px 40px -2px rgba(0, 219, 224, 0.12);
}

.archive-root .metric-card .metric-number {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111318;
  display: block;
}

.archive-root .metric-card .metric-accent {
  background: linear-gradient(323deg, #8A1799, #00DBE0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.archive-root .metric-card .metric-label {
  font-size: 13px;
  line-height: 1.75;
  color: #555566;
  display: block;
  margin-top: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.archive-root .metric-card .metric-narrative {
  font-size: 13px;
  line-height: 1.75;
  color: #2c2c3a;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 219, 224, 0.15);
}

.archive-root .dots-group {
  position: absolute;
  bottom: 24px;
  right: 24px;
  pointer-events: none;
}

.archive-root .dots-group span {
  display: inline-block;
  border-radius: 36px;
  background: rgba(0, 219, 224, 0.18);
}

.archive-root .dots-group .dot-lg {
  width: 14px;
  height: 14px;
  margin: 0 4px;
}

.archive-root .dots-group .dot-md {
  width: 9px;
  height: 9px;
  margin: 0 4px;
  vertical-align: middle;
}

.archive-root .dots-group .dot-sm {
  width: 5px;
  height: 5px;
  margin: 0 4px;
  vertical-align: middle;
  background: rgba(138, 23, 153, 0.2);
}

.archive-root .svg-divider-b {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.archive-root .table-block {
  position: relative;
  padding: 96px 0;
  background: #f5f5f8;
  z-index: 1;
}

.archive-root .table-block .block-heading {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111318;
  margin: 0 0 8px 0;
  text-align: center;
  position: relative;
  display: inline-block;
}

.archive-root .table-block .block-heading .gradient-line {
  display: block;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(323deg, #FEF793 0%, #00DBE0 100%);
  width: 0;
  animation: drawline 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
  margin-top: 6px;
}

.archive-root .table-block .block-sub {
  font-size: 19px;
  line-height: 1.75;
  color: #2c2c3a;
  margin: 0 0 48px 0;
  text-align: left;
}

.archive-root .table-block .heading-center {
  text-align: center;
}

.archive-root .data-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 5px 14px -2px rgba(138, 23, 153, 0.10);
}

.archive-root .data-table thead tr {
  background: linear-gradient(323deg, #8A1799 0%, #00DBE0 100%);
}

.archive-root .data-table thead th {
  font-size: 13px;
  line-height: 1.75;
  color: #ffffff;
  padding: 8px 24px;
  text-align: left;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.archive-root .data-table tbody tr {
  background: #ffffff;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.archive-root .data-table tbody tr:nth-child(even) {
  background: rgba(0, 219, 224, 0.04);
}

.archive-root .data-table tbody tr:hover {
  background: rgba(254, 247, 147, 0.35);
}

.archive-root .data-table tbody td {
  font-size: 13px;
  line-height: 1.75;
  color: #2c2c3a;
  padding: 8px 24px;
  border-bottom: 1px solid rgba(0, 219, 224, 0.10);
}

.archive-root .data-table tbody td.cell-feature {
  font-weight: 600;
  color: #111318;
}

.archive-root .data-table tbody td.cell-check {
  color: #00a8ac;
  font-weight: 700;
}

.archive-root .data-table tbody td.cell-cross {
  color: #aaaaaa;
}

.archive-root .data-table tbody td.cell-num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: #8A1799;
  font-weight: 600;
}

.archive-root .table-block .table-wrapper {
  border-radius: 12px;
  overflow: hidden;
}

.archive-root .mobile-cards {
  display: none;
}

.archive-root .mobile-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 1px 5px 14px -2px rgba(138, 23, 153, 0.10);
}

.archive-root .mobile-card .mc-feature {
  font-size: 19px;
  line-height: 1.75;
  color: #111318;
  font-weight: 700;
  margin-bottom: 8px;
}

.archive-root .mobile-card .mc-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 219, 224, 0.1);
  font-size: 13px;
  line-height: 1.75;
  color: #2c2c3a;
}

.archive-root .mobile-card .mc-row:last-child {
  border-bottom: none;
}

.archive-root .action-strip {
  padding: 48px 0;
  text-align: center;
  background: #ffffff;
}

.archive-root .action-strip .strip-text {
  font-size: 13px;
  line-height: 1.75;
  color: #555566;
  margin-bottom: 24px;
}

.archive-root .btn-primary {
  display: inline-block;
  font-size: 13px;
  line-height: 1.75;
  color: #ffffff;
  background: #8A1799;
  border-radius: 6px;
  padding: 8px 48px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 1px 5px 14px -2px rgba(138, 23, 153, 0.10);
  border: none;
  cursor: pointer;
}

.archive-root .btn-primary::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #00DBE0;
  transition: height 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.archive-root .btn-primary:hover::after {
  height: 100%;
}

.archive-root .btn-primary span {
  position: relative;
  z-index: 1;
}

.archive-root .btn-primary:hover {
  color: #111318;
}

.archive-root .btn-primary:focus {
  outline: 3px solid #00DBE0;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .archive-root .title-block .main-heading {
    font-size: 46px;
  }

  .archive-root .metrics-grid {
    grid-template-columns: 1fr;
  }

  .archive-root .data-table {
    display: none;
  }

  .archive-root .mobile-cards {
    display: block;
  }

  .archive-root .title-block .image-area {
    height: 220px;
  }
}

.about-us-page {
  background: #ffffff;
  overflow-x: clip;
}

.about-us-page * {
  box-sizing: border-box;
}

.about-us-page .page-limiter {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.about-us-page .profile-lead {
  padding-top: 96px;
  padding-bottom: 96px;
  text-align: center;
  position: relative;
}

.about-us-page .profile-lead .anchor-mark {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 220px;
  line-height: 1.1;
  color: #00DBE0;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.about-us-page .profile-lead .lead-text {
  position: relative;
  z-index: 1;
}

.about-us-page .profile-lead .company-label {
  display: inline-block;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A1799;
  margin-bottom: 24px;
}

.about-us-page .profile-lead h1 {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111318;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.about-us-page .profile-lead h1::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: linear-gradient(323deg, #00DBE0, transparent);
  border-radius: 4px;
  margin-top: 8px;
  animation: underline-draw 0.26s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes underline-draw {
  to {
    width: 100%;
  }
}

.about-us-page .profile-lead .lead-thesis {
  font-size: 19px;
  line-height: 1.75;
  color: #2d2d3a;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.about-us-page .profile-lead .image-frame {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 12px 40px -2px rgba(0, 219, 224, 0.12);
}

.about-us-page .profile-lead .image-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 12px;
}

.about-us-page .profile-lead .image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(17, 19, 24, 0.32) 100%);
  border-radius: 12px;
  pointer-events: none;
}

.about-us-page .profile-lead .lead-text {
  animation: reveal-split 0.25s cubic-bezier(0.0, 0, 0.2, 1) both;
}

@keyframes reveal-split {
  from {
    clip-path: inset(0 50% 0 50%);
    opacity: 0;
  }

  to {
    clip-path: inset(0 0% 0 0%);
    opacity: 1;
  }
}

.about-us-page .origin-split {
  padding-top: 96px;
  padding-bottom: 96px;
  background: linear-gradient(323deg, rgba(138, 23, 153, 0.04) 0%, transparent 60%);
}

.about-us-page .origin-split .split-grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 48px;
  align-items: center;
}

.about-us-page .origin-split .split-rich {
  border-right: 3px solid #00DBE0;
  padding-right: 48px;
}

.about-us-page .origin-split h2 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #111318;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.about-us-page .origin-split h2::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(323deg, #8A1799, transparent);
  border-radius: 4px;
  margin-top: 8px;
  animation: underline-draw 0.22s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.about-us-page .origin-split .split-rich p {
  font-size: 19px;
  line-height: 1.75;
  color: #2d2d3a;
  margin-bottom: 24px;
}

.about-us-page .origin-split .stat-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-us-page .origin-split .stat-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 1px 5px 14px -2px rgba(138, 23, 153, 0.10);
  position: relative;
  overflow: hidden;
}

.about-us-page .origin-split .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(323deg, #00DBE0, #8A1799);
  border-radius: 4px 4px 0 0;
}

.about-us-page .origin-split .stat-number {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111318;
  display: block;
}

.about-us-page .origin-split .stat-label {
  font-size: 13px;
  line-height: 1.75;
  color: #555566;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-us-page .team-grid-section {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #0d1117;
}

.about-us-page .team-grid-section .section-label {
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00DBE0;
  display: block;
  margin-bottom: 24px;
}

.about-us-page .team-grid-section h2 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #f0f0f5;
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
}

.about-us-page .team-grid-section h2::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(323deg, #FEF793, transparent);
  border-radius: 4px;
  margin-top: 8px;
  animation: underline-draw 0.24s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.about-us-page .team-grid-section .asymmetric-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.about-us-page .team-grid-section .member-card {
  background: #161b25;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 5px 14px -2px rgba(0, 219, 224, 0.10);
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-us-page .team-grid-section .member-card:hover {
  box-shadow: 1px 12px 40px -2px rgba(0, 219, 224, 0.12);
  transform: translateY(-4px);
}

.about-us-page .team-grid-section .member-card.featured {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-us-page .team-grid-section .member-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-us-page .team-grid-section .member-card.featured .member-image {
  height: 100%;
  min-height: 280px;
}

.about-us-page .team-grid-section .member-info {
  padding: 24px;
}

.about-us-page .team-grid-section .member-name {
  font-size: 19px;
  line-height: 1.75;
  color: #f0f0f5;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.about-us-page .team-grid-section .member-role {
  font-size: 13px;
  line-height: 1.75;
  color: #00DBE0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
}

.about-us-page .team-grid-section .member-bio {
  font-size: 13px;
  line-height: 1.75;
  color: #9999aa;
}

.about-us-page .team-grid-section .member-card.featured .member-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.about-us-page .team-grid-section .member-card.featured .member-name {
  font-size: 19px;
  line-height: 1.75;
}

.about-us-page .team-grid-section .member-card.featured .member-bio {
  font-size: 19px;
  line-height: 1.75;
  color: #bbbbcc;
}

.about-us-page .values-section {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #ffffff;
}

.about-us-page .values-section .values-header {
  text-align: center;
  margin-bottom: 48px;
}

.about-us-page .values-section h2 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #111318;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.about-us-page .values-section h2::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(323deg, #00DBE0, #8A1799);
  border-radius: 4px;
  margin-top: 8px;
  animation: underline-draw 0.28s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.about-us-page .values-section .values-sub {
  font-size: 19px;
  line-height: 1.75;
  color: #555566;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.about-us-page .values-section .values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-us-page .values-section .value-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-radius: 12px;
  background: #f5f5fa;
  box-shadow: 1px 1px 5px -2px rgba(0, 219, 224, 0.08);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-us-page .values-section .value-row:hover {
  box-shadow: 1px 5px 14px -2px rgba(0, 219, 224, 0.10);
}

.about-us-page .values-section .value-text {
  flex: 1;
}

.about-us-page .values-section .value-heading {
  font-size: 19px;
  line-height: 1.75;
  color: #111318;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.about-us-page .values-section .value-desc {
  font-size: 13px;
  line-height: 1.75;
  color: #555566;
}

.about-us-page .values-section .value-num {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #00DBE0;
  opacity: 0.25;
  font-weight: 700;
  flex-shrink: 0;
  align-self: flex-end;
}

.about-us-page .values-section .contact-strip {
  margin-top: 48px;
  background: linear-gradient(323deg, rgba(0, 219, 224, 0.08), rgba(138, 23, 153, 0.06));
  border-radius: 20px;
  padding: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 1px 5px 14px -2px rgba(138, 23, 153, 0.10);
}

.about-us-page .values-section .contact-strip-text h3 {
  font-size: 19px;
  line-height: 1.75;
  color: #111318;
  margin-bottom: 8px;
}

.about-us-page .values-section .contact-strip-text p {
  font-size: 13px;
  line-height: 1.75;
  color: #555566;
}

.about-us-page .values-section .contact-link {
  display: inline-block;
  font-size: 13px;
  line-height: 1.75;
  color: #111318;
  text-decoration: none;
  border-radius: 6px;
  padding: 8px 24px;
  background: #111318;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.about-us-page .values-section .contact-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(323deg, #00DBE0, #8A1799);
  transition: height 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: 6px;
}

.about-us-page .values-section .contact-link:hover::before {
  height: 100%;
}

.about-us-page .values-section .contact-link:hover {
  color: #111318;
}

.about-us-page .values-section .contact-link:focus {
  outline: 2px solid #8A1799;
  outline-offset: 2px;
}

.about-us-page .divider-shape {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 8px 0;
}

.about-us-page .divider-shape .divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(323deg, transparent, rgba(0, 219, 224, 0.2), transparent);
}

.about-us-page .divider-shape .divider-dot {
  width: 8px;
  height: 8px;
  background: #00DBE0;
  border-radius: 4px;
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .about-us-page .profile-lead h1 {
    font-size: 46px;
  }

  .about-us-page .profile-lead .image-frame img {
    height: 260px;
  }

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

  .about-us-page .origin-split .split-rich {
    border-right: none;
    padding-right: 0;
    border-bottom: 3px solid #00DBE0;
    padding-bottom: 24px;
  }

  .about-us-page .team-grid-section .asymmetric-layout {
    grid-template-columns: 1fr;
  }

  .about-us-page .team-grid-section .member-card.featured {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .about-us-page .team-grid-section .member-card.featured .member-info {
    padding: 24px;
  }

  .about-us-page .team-grid-section .member-card.featured .member-bio {
    font-size: 13px;
  }

  .about-us-page .values-section .values-list {
    grid-template-columns: 1fr;
  }

  .about-us-page .values-section .contact-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-us-page .origin-split h2,
  .about-us-page .team-grid-section h2,
  .about-us-page .values-section h2 {
    font-size: 46px;
  }
}

.entry {
  background: #ffffff;
  overflow-x: clip;
}

.entry .entry__reveal {
  opacity: 0;
  transform: translate(-18px, 18px);
  animation: diag-reveal 0.26s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.entry .entry__reveal.delay-1 {
  animation-delay: 0.08s;
}

.entry .entry__reveal.delay-2 {
  animation-delay: 0.16s;
}

.entry .entry__reveal.delay-3 {
  animation-delay: 0.22s;
}

.entry .entry__reveal.delay-4 {
  animation-delay: 0.28s;
}

@keyframes diag-reveal {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.entry .page-bound {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.entry .underline-accent {
  display: inline-block;
  position: relative;
}

.entry .underline-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(323deg, #00DBE0, #8A1799);
  animation: line-draw 0.24s cubic-bezier(0.0, 0, 0.2, 1) 0.3s forwards;
}

@keyframes line-draw {
  to {
    width: 100%;
  }
}

.entry .grad-text {
  background: linear-gradient(323deg, #00DBE0 20%, #8A1799 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.entry .title-panel {
  padding-top: 96px;
  padding-bottom: 48px;
  text-align: center;
  position: relative;
}

.entry .title-panel .deco-ring {
  position: absolute;
  top: 48px;
  right: 8%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(0, 219, 224, 0.18);
  pointer-events: none;
}

.entry .title-panel .deco-dot {
  position: absolute;
  top: 72px;
  left: 6%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(138, 23, 153, 0.06);
  pointer-events: none;
}

.entry .title-panel h1 {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111318;
  margin-bottom: 24px;
}

.entry .title-panel .lead-text {
  font-size: 19px;
  line-height: 1.75;
  color: #2d2d35;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  text-align: left;
}

.entry .title-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 420px;
  position: relative;
}

.entry .title-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(0px);
}

.entry .title-image-wrap .image-blur-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(255, 255, 255, 0.55) 100%);
  border-radius: 12px;
}

.entry .outcomes-panel {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #f5f5f7;
}

.entry .outcomes-panel .panel-layout {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
}

.entry .outcomes-panel .panel-left {
  flex: 2;
}

.entry .outcomes-panel .panel-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.entry .outcomes-panel h2 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #111318;
  margin-bottom: 24px;
}

.entry .outcomes-panel .body-text {
  font-size: 19px;
  line-height: 1.75;
  color: #2d2d35;
  margin-bottom: 24px;
}

.entry .outcomes-panel .metric-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 1px 5px 14px -2px rgba(0, 219, 224, 0.10);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.entry .outcomes-panel .metric-card .metric-arrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.entry .outcomes-panel .metric-card .num-from {
  font-size: 19px;
  line-height: 1.1;
  color: #888;
}

.entry .outcomes-panel .metric-card .arrow-shape {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #00DBE0, #8A1799);
  position: relative;
  border-radius: 4px;
}

.entry .outcomes-panel .metric-card .arrow-shape::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -4px;
  width: 0;
  height: 0;
  border-left: 8px solid #8A1799;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.entry .outcomes-panel .metric-card .num-to {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111318;
  font-weight: 700;
}

.entry .outcomes-panel .metric-card .metric-label {
  font-size: 13px;
  line-height: 1.75;
  color: #555;
}

.entry .outcomes-panel .image-side {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 280px;
  margin-top: 24px;
}

.entry .outcomes-panel .image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.entry .clients-panel {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #ffffff;
}

.entry .clients-panel h2 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #111318;
  text-align: center;
  margin-bottom: 48px;
}

.entry .clients-panel .cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.entry .clients-panel .case-item {
  border: 1px solid rgba(0, 219, 224, 0.2);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.entry .clients-panel .case-item:hover {
  box-shadow: 1px 12px 40px -2px rgba(0, 219, 224, 0.12);
}

.entry .clients-panel .case-num {
  font-size: 13px;
  line-height: 1.75;
  color: #8A1799;
  text-align: right;
  font-weight: 600;
}

.entry .clients-panel .case-name {
  font-size: 19px;
  line-height: 1.1;
  color: #111318;
  font-weight: 600;
}

.entry .clients-panel .case-role {
  font-size: 13px;
  line-height: 1.75;
  color: #666;
  margin-bottom: 8px;
}

.entry .clients-panel .case-body {
  font-size: 13px;
  line-height: 1.75;
  color: #2d2d35;
}

.entry .clients-panel .case-outcome {
  font-size: 13px;
  line-height: 1.75;
  color: #111318;
  border-top: 1px solid rgba(138, 23, 153, 0.12);
  padding-top: 8px;
  margin-top: 8px;
}

.entry .clients-panel .case-outcome strong {
  color: #8A1799;
}

.entry .clients-panel .image-full {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 260px;
  margin-top: 48px;
}

.entry .clients-panel .image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.entry .recognition-panel {
  padding-top: 96px;
  padding-bottom: 96px;
  background: linear-gradient(323deg, rgba(0, 219, 224, 0.07) 0%, rgba(138, 23, 153, 0.05) 100%);
}

.entry .recognition-panel .rec-layout {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
}

.entry .recognition-panel .rec-right {
  flex: 1;
}

.entry .recognition-panel .rec-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.entry .recognition-panel h2 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #111318;
  margin-bottom: 24px;
}

.entry .recognition-panel .rec-body {
  font-size: 19px;
  line-height: 1.75;
  color: #2d2d35;
}

.entry .recognition-panel .assoc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.entry .recognition-panel .assoc-list li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 1px 1px 5px -2px rgba(138, 23, 153, 0.08);
  font-size: 13px;
  line-height: 1.75;
  color: #2d2d35;
  transition: box-shadow 0.25s cubic-bezier(0.0, 0, 0.2, 1);
}

.entry .recognition-panel .assoc-list li:hover {
  box-shadow: 1px 5px 14px -2px rgba(138, 23, 153, 0.10);
}

.entry .recognition-panel .assoc-list li .assoc-name {
  font-weight: 600;
  color: #111318;
}

.entry .recognition-panel .assoc-list li .assoc-year {
  color: #8A1799;
  font-size: 13px;
}

.entry .recognition-panel .rec-image {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 360px;
}

.entry .recognition-panel .rec-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.entry .evidence-panel {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #111318;
}

.entry .evidence-panel h2 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 8px;
}

.entry .evidence-panel .ev-sub {
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
  max-width: 580px;
  margin-bottom: 48px;
}

.entry .evidence-panel .split-bg {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.entry .evidence-panel .resource-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 219, 224, 0.15);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.entry .evidence-panel .resource-card:hover {
  background: rgba(0, 219, 224, 0.08);
  border-color: rgba(0, 219, 224, 0.35);
}

.entry .evidence-panel .resource-card .res-type {
  font-size: 13px;
  line-height: 1.75;
  color: #00DBE0;
  font-weight: 600;
}

.entry .evidence-panel .resource-card .res-name {
  font-size: 19px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 600;
}

.entry .evidence-panel .resource-card .res-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
}

.entry .evidence-panel .resource-card .res-meta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.entry .evidence-panel .resource-card .res-meta .res-size {
  color: rgba(254, 247, 147, 0.8);
}

.entry .evidence-panel .ev-image-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: stretch;
}

.entry .evidence-panel .ev-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  height: 220px;
}

.entry .evidence-panel .ev-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.entry .evidence-panel .ev-stat-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.entry .evidence-panel .ev-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.entry .evidence-panel .ev-stat .stat-num {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FEF793;
  font-weight: 700;
  min-width: 96px;
}

.entry .evidence-panel .ev-stat .stat-label {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
  .entry .title-panel h1 {
    font-size: 46px;
  }

  .entry .outcomes-panel .panel-layout {
    flex-direction: column;
  }

  .entry .clients-panel .cases-grid {
    grid-template-columns: 1fr;
  }

  .entry .recognition-panel .rec-layout {
    flex-direction: column-reverse;
  }

  .entry .evidence-panel .split-bg {
    grid-template-columns: 1fr;
  }

  .entry .evidence-panel .ev-image-row {
    flex-direction: column;
  }
}

.contact-us-page {
  background: #ffffff;
  overflow-x: clip;
  position: relative;
}

.contact-us-page .form-panel {
  max-width: 1024px;
  margin: 0 auto;
  padding: 96px 48px 96px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}

.contact-us-page .form-panel::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(0, 219, 224, 0.10);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.contact-us-page .form-panel::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -40px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(0, 219, 224, 0.07);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.contact-us-page .panel-left {
  position: relative;
  z-index: 1;
  padding-right: 24px;
}

.contact-us-page .panel-left-accent {
  width: 48px;
  height: 4px;
  background: linear-gradient(323deg, #00DBE0, #8A1799);
  border-radius: 4px;
  margin-bottom: 24px;
}

.contact-us-page .panel-left-label {
  font-size: 13px;
  line-height: 1.75;
  color: #8A1799;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-us-page .panel-heading {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b1b1b;
  margin-bottom: 24px;
}

.contact-us-page .panel-heading em {
  font-style: normal;
  background: linear-gradient(323deg, #00DBE0 20%, #8A1799 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-us-page .panel-body {
  font-size: 13px;
  line-height: 1.75;
  color: #3a3a3a;
  margin-bottom: 48px;
}

.contact-us-page .contact-data-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-us-page .contact-data-list li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-us-page .data-label {
  font-size: 13px;
  line-height: 1.1;
  color: #8A1799;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-us-page .data-value {
  font-size: 19px;
  line-height: 1.1;
  color: #1b1b1b;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.contact-us-page .data-value:hover {
  color: #00DBE0;
}

.contact-us-page .data-value:focus-visible {
  outline: 2px solid #00DBE0;
  outline-offset: 2px;
  border-radius: 4px;
}

.contact-us-page .data-value.address-text {
  font-size: 13px;
  line-height: 1.75;
}

.contact-us-page .panel-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, #00DBE0 40%, #8A1799 70%, transparent 100%);
  align-self: stretch;
  min-height: 400px;
  position: relative;
  z-index: 1;
}

.contact-us-page .panel-right {
  position: relative;
  z-index: 1;
}

.contact-us-page .form-card {
  background: #ffffff;
  border-radius: 20px;
  border-top: 4px solid #00DBE0;
  box-shadow: 1px 5px 14px -2px rgba(0, 219, 224, 0.10);
  padding: 48px;
}

.contact-us-page .form-card .form-heading {
  font-size: 19px;
  line-height: 1.1;
  color: #1b1b1b;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 8px;
}

.contact-us-page .form-card .form-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(323deg, #00DBE0, #8A1799);
  border-radius: 4px;
  animation: draw-line 0.26s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

@keyframes draw-line {
  to {
    width: 100%;
  }
}

.contact-us-page .field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.contact-us-page .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.contact-us-page .field-label {
  font-size: 13px;
  line-height: 1.1;
  color: #3a3a3a;
  letter-spacing: 0.03em;
}

.contact-us-page .field-input {
  width: 100%;
  padding: 8px 24px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.75;
  color: #1b1b1b;
  background: #fdfdfd;
  box-shadow: inset 1px 1px 5px -2px rgba(0, 219, 224, 0.08);
  transition: border-color 0.24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  box-sizing: border-box;
}

.contact-us-page .field-input::placeholder {
  font-style: italic;
  opacity: 0.55;
}

.contact-us-page .field-input:focus {
  border-color: #00DBE0;
  box-shadow: inset 1px 1px 5px -2px rgba(0, 219, 224, 0.12), 0 0 0 3px rgba(0, 219, 224, 0.10);
}

.contact-us-page .budget-heading {
  font-size: 13px;
  line-height: 1.1;
  color: #3a3a3a;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.contact-us-page .budget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.contact-us-page .budget-option {
  position: relative;
}

.contact-us-page .budget-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contact-us-page .budget-option label {
  display: block;
  padding: 8px 24px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.75;
  color: #3a3a3a;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.contact-us-page .budget-option input[type="radio"]:checked+label {
  border-color: #8A1799;
  color: #8A1799;
  background: rgba(138, 23, 153, 0.05) !important;
}

.contact-us-page .budget-option label:hover {
  border-color: #00DBE0;
  color: #00DBE0;
}

.contact-us-page .budget-option input[type="radio"]:focus-visible+label {
  outline: 2px solid #00DBE0;
  outline-offset: 2px;
}

.contact-us-page .privacy-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-us-page .privacy-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: #8A1799;
  cursor: pointer;
}

.contact-us-page .privacy-text {
  font-size: 13px;
  line-height: 1.75;
  color: #3a3a3a;
}

.contact-us-page .privacy-text a {
  color: #8A1799;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 2px;
  transition: border-color 0.22s cubic-bezier(0.0, 0, 0.2, 1), color 0.22s cubic-bezier(0.0, 0, 0.2, 1);
}

.contact-us-page .privacy-text a:hover {
  color: #8A1799;
  border-color: #8A1799;
}

.contact-us-page .privacy-text a:focus-visible {
  outline: 2px solid #8A1799;
  outline-offset: 2px;
  border-radius: 4px;
}

.contact-us-page .submit-button {
  width: 100%;
  padding: 8px 48px;
  background: #1b1b1b;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 1px 5px 14px -2px rgba(138, 23, 153, 0.10);
}

.contact-us-page .submit-button::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(323deg, #00DBE0 0%, #8A1799 100%);
  transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  border-radius: 12px;
}

.contact-us-page .submit-button:hover::before {
  height: 100%;
}

.contact-us-page .submit-button:hover {
  color: #ffffff;
}

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

.contact-us-page .submit-button:focus-visible {
  outline: 2px solid #00DBE0;
  outline-offset: 3px;
}

.contact-us-page .submit-button:active {
  transform: translateY(1px);
}

.contact-us-page .info-strip {
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.contact-us-page .info-strip-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 48px 48px 96px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-us-page .info-strip-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 219, 224, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact-us-page .graph-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 219, 224, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 219, 224, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(0, 219, 224, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 219, 224, 0.02) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px, 8px 8px, 8px 8px;
  pointer-events: none;
  z-index: 0;
}

.contact-us-page .strip-text-column {
  position: relative;
  z-index: 1;
}

.contact-us-page .strip-label {
  font-size: 13px;
  line-height: 1.1;
  color: #8A1799;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-us-page .strip-heading {
  font-size: 19px;
  line-height: 1.75;
  color: #1b1b1b;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.contact-us-page .strip-body {
  font-size: 13px;
  line-height: 1.75;
  color: #3a3a3a;
}

.contact-us-page .strip-body a {
  color: #8A1799;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 2px;
  transition: border-color 0.22s cubic-bezier(0.0, 0, 0.2, 1);
}

.contact-us-page .strip-body a:hover {
  border-color: #8A1799;
}

.contact-us-page .strip-metrics {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.contact-us-page .metric-row {
  background: #ffffff;
  border-radius: 12px;
  border-top: 3px solid #00DBE0;
  padding: 24px;
  box-shadow: 1px 1px 5px -2px rgba(0, 219, 224, 0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.contact-us-page .metric-row.secondary {
  border-top-color: #8A1799;
}

.contact-us-page .metric-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 20px;
  background: linear-gradient(323deg, rgba(0, 219, 224, 0.12), rgba(138, 23, 153, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.contact-us-page .metric-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-us-page .metric-value {
  font-size: 19px;
  line-height: 1.1;
  color: #1b1b1b;
  letter-spacing: -0.01em;
}

.contact-us-page .metric-description {
  font-size: 13px;
  line-height: 1.1;
  color: #5a5a5a;
}

.contact-us-page .scallop-divider {
  width: 100%;
  height: 24px;
  position: relative;
  background: #f5f5f5;
  overflow: hidden;
}

.contact-us-page .scallop-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  background: #ffffff;
  border-radius: 0 0 0 0;
  clip-path: ellipse(50% 100% at 50% 0%);
}

.contact-us-page .scallop-top {
  background: #ffffff;
}

.contact-us-page .scallop-top::before {
  background: #f5f5f5;
  clip-path: ellipse(50% 100% at 50% 0%);
}

@media (max-width: 768px) {
  .contact-us-page .form-panel {
    grid-template-columns: 1fr;
    padding: 48px 24px 48px 24px;
    gap: 48px;
  }

  .contact-us-page .panel-divider {
    width: 100%;
    height: 1px;
    min-height: unset;
    background: linear-gradient(90deg, transparent 0%, #00DBE0 40%, #8A1799 70%, transparent 100%);
    align-self: auto;
  }

  .contact-us-page .panel-left {
    padding-right: 0;
  }

  .contact-us-page .panel-heading {
    font-size: 46px;
  }

  .contact-us-page .info-strip-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px 48px 24px;
    gap: 48px;
  }

  .contact-us-page .field-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-us-page .budget-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-us-page .form-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .contact-us-page .budget-grid {
    grid-template-columns: 1fr;
  }

  .contact-us-page .panel-heading {
    font-size: 46px;
  }
}

.success-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px;
  background: #ffffff;
}

.success-page .result-card {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 1px 12px 40px -2px rgba(0, 219, 224, 0.12);
  padding: 48px;
  text-align: center;
  position: relative;
}

.success-page .result-card .icon-wrapper {
  width: 72px;
  height: 72px;
  margin: 0 auto 48px;
  border-radius: 36px;
  background: linear-gradient(323deg, #00DBE0 0%, rgba(0, 219, 224, 0.12) 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.success-page .result-card .icon-wrapper svg {
  width: 36px;
  height: 36px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-page .result-card .result-heading {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111111;
  margin: 0 0 24px;
  position: relative;
  display: inline-block;
}

.success-page .result-card .result-heading::after {
  content: '';
  display: block;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(323deg, #00DBE0, #8A1799);
  margin-top: 8px;
  animation: underline-draw 0.26s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform-origin: left;
}

@keyframes underline-draw {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.success-page .result-card .result-body {
  font-size: 19px;
  line-height: 1.75;
  color: #2a2a2a;
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: left;
}

.success-page .result-card .result-meta {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.success-page .result-card .meta-item {
  font-size: 13px;
  line-height: 1.75;
  color: #444444;
  background: #f4f4f4;
  border-radius: 6px;
  padding: 8px 24px;
}

.success-page .result-card .meta-item strong {
  color: #111111;
  display: block;
  font-size: 13px;
}

.success-page .result-card .action-group {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.success-page .result-card .btn-primary {
  display: inline-block;
  padding: 8px 48px;
  font-size: 19px;
  line-height: 1.75;
  color: #ffffff;
  background: #8A1799;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 5px 14px -2px rgba(138, 23, 153, 0.10);
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.0, 0, 0.2, 1);
}

.success-page .result-card .btn-primary::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: #00DBE0;
  transition: height 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.success-page .result-card .btn-primary:hover::before {
  height: 100%;
}

.success-page .result-card .btn-primary:hover {
  color: #111111;
  box-shadow: 1px 12px 40px -2px rgba(0, 219, 224, 0.12);
}

.success-page .result-card .btn-primary span {
  position: relative;
  z-index: 1;
}

.success-page .result-card .btn-secondary {
  display: inline-block;
  padding: 8px 48px;
  font-size: 19px;
  line-height: 1.75;
  color: #8A1799;
  background: transparent;
  border-radius: 12px;
  border: 2px solid #8A1799;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-page .result-card .btn-secondary:hover {
  color: #00DBE0;
  border-color: #00DBE0;
}

.success-page .result-card .divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(323deg, rgba(0, 219, 224, 0.18), rgba(138, 23, 153, 0.10), transparent);
  margin: 48px 0;
  border: none;
}

.success-page .result-card .notice-text {
  font-size: 13px;
  line-height: 1.75;
  color: #555555;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.success-page .result-card .notice-text a {
  color: #8A1799;
  text-decoration: none;
  transition: outline 0.22s cubic-bezier(0.0, 0, 0.2, 1);
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-radius: 4px;
}

.success-page .result-card .notice-text a:hover {
  outline: 2px solid #8A1799;
}

@media (max-width: 600px) {
  .success-page {
    padding: 48px 24px;
  }

  .success-page .result-card {
    padding: 48px 24px;
  }

  .success-page .result-card .result-heading {
    font-size: 46px;
  }

  .success-page .result-card .action-group {
    flex-direction: column;
    align-items: center;
  }

  .success-page .result-card .btn-primary,
  .success-page .result-card .btn-secondary {
    width: 100%;
    text-align: center;
  }
}