*,
*::before,
*::after {
  box-sizing: border-box;
  content: none;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
}

.brand-hd {
  background: linear-gradient(135deg, #333B4D 0%, #4a5568 60%, #8B8C9E 100%);
  font-family: 'Arimo', sans-serif;
  overflow: hidden;
}

.brand-hd__inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 28px 28px 0 28px;
}

.brand-hd__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 56px;
}

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

.brand-hd__mark {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 56px;
  border-radius: 4px;
  border: 1px solid rgba(182, 181, 197, 0.5);
  background-color: #ffffff;
  box-shadow: 0 3px 4px 0 rgba(51, 59, 77, 0.07), 0 6px 22px 0 rgba(51, 59, 77, 0.09);
  flex-shrink: 0;
  padding: 6px;
}

.logo-frame img {
  width: 32px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.brand-hd__name {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}

.brand-hd__tagline {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #B6B5C5;
  letter-spacing: 0.02em;
  margin: 0;
  padding-left: 58px;
}

.brand-hd__accent-bar {
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, #B6B5C5, #8B8C9E);
  border-radius: 0px;
  margin-left: 58px;
}

.primary-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  padding-top: 6px;
}

.primary-nav__contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.primary-nav__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #B6B5C5;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.primary-nav__phone:hover,
.primary-nav__phone:focus {
  color: #ffffff;
  outline: none;
}

.primary-nav__phone:focus-visible {
  outline: 2px solid #B6B5C5;
  outline-offset: 2px;
  border-radius: 4px;
}

.primary-nav__phone .la {
  font-size: 18px;
}

.primary-nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.primary-nav__links a {
  font-family: 'Arimo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.03em;
  padding: 14px 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: color 0.45s ease-in-out;
  min-height: 44px;
}

.primary-nav__links a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 6px;
  right: 6px;
  height: 1px;
  background: #B6B5C5;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.primary-nav__links a:hover {
  color: #B6B5C5;
}

.primary-nav__links a:hover::after {
  transform: scaleX(1);
}

.primary-nav__links a:focus-visible {
  outline: 2px solid #B6B5C5;
  outline-offset: 3px;
  border-radius: 4px;
}

.primary-nav__links a .la {
  font-size: 18px;
  opacity: 0.8;
}

.primary-nav__links a[aria-current="page"] {
  color: #B6B5C5;
}

.primary-nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.brand-hd__divider {
  max-width: 1170px;
  margin: 28px auto 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 181, 197, 0.3), transparent);
}

.brand-hd__strip {
  background: rgba(0, 0, 0, 0.12);
  padding: 6px 28px;
}

.brand-hd__strip-inner {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-hd__strip-tag {
  font-family: 'Arimo', sans-serif;
  font-size: 16px;
  color: rgba(182, 181, 197, 0.85);
  letter-spacing: 0.04em;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-hd__strip-tag .la {
  font-size: 18px;
}

.page-foot {
  background: #333B4D;
  font-family: 'Arimo', sans-serif;
  border-top: 1px solid rgba(139, 140, 158, 0.25);
}

.page-foot__primary {
  max-width: 1170px;
  margin: 0 auto;
  padding: 56px 28px 28px 28px;
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.page-foot__brand {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 160px;
}

.page-foot__logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 56px;
  border-radius: 4px;
  border: 1px solid rgba(182, 181, 197, 0.4);
  background-color: #ffffff;
  box-shadow: 0 3px 4px 0 rgba(51, 59, 77, 0.07);
  padding: 6px;
}

.page-foot__logo-frame img {
  width: 32px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.page-foot__copy {
  font-size: 16px;
  color: #8B8C9E;
  line-height: 1.7;
  text-align: center;
  margin: 0;
}

.page-foot__company-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0;
  letter-spacing: -0.01em;
}

.page-foot__details {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 56px;
}

.page-foot__contact-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-foot__group-label {
  font-size: 16px;
  font-weight: 700;
  color: #B6B5C5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(139, 140, 158, 0.2);
}

.page-foot__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #8B8C9E;
  font-size: 16px;
  line-height: 1.7;
}

.page-foot__contact-item .la {
  font-size: 18px;
  color: #B6B5C5;
  flex-shrink: 0;
  margin-top: 2px;
}

.page-foot__contact-item a {
  color: #8B8C9E;
  text-decoration: none;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-foot__contact-item a:hover {
  color: #ffffff;
}

.page-foot__contact-item a:focus-visible {
  outline: 2px solid #B6B5C5;
  outline-offset: 2px;
  border-radius: 4px;
}

.page-foot__policy-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-foot__policy-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-foot__policy-links li a {
  font-size: 16px;
  color: #8B8C9E;
  text-decoration: none;
  line-height: 1.7;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.45s ease-in-out;
  min-height: 44px;
}

.page-foot__policy-links li a .la {
  font-size: 16px;
  color: #B6B5C5;
}

.page-foot__policy-links li a:hover {
  color: #ffffff;
}

.page-foot__policy-links li a:focus-visible {
  outline: 2px solid #B6B5C5;
  outline-offset: 2px;
  border-radius: 4px;
}

.page-foot__secondary {
  border-top: 1px solid rgba(139, 140, 158, 0.15);
  padding: 14px 28px;
}

.page-foot__secondary-inner {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-foot__legal {
  font-size: 16px;
  color: rgba(139, 140, 158, 0.6);
  line-height: 1.4;
  text-align: center;
  margin: 0;
}

.ck-popup-anchor {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1200;
  width: 280px;
}

.ck-popup {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 40px 0 rgba(51, 59, 77, 0.11);
  padding: 28px;
  font-family: 'Arimo', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(139, 140, 158, 0.2);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.ck-popup--visible {
  transform: translateY(0);
  opacity: 1;
}

.ck-popup__headline {
  font-size: 18px;
  font-weight: 700;
  color: #333B4D;
  line-height: 1.4;
  margin: 0;
}

.ck-popup__desc {
  font-size: 16px;
  color: #8B8C9E;
  line-height: 1.7;
  margin: 0;
}

.ck-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ck-popup__accept {
  font-family: 'Arimo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #333B4D;
  background: transparent;
  border: 2px solid #333B4D;
  border-radius: 4px;
  padding: 14px 14px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.5s cubic-bezier(0.22, 1, 0.36, 1), outline-offset 0.45s ease-in-out;
  min-height: 44px;
  outline: 2px solid transparent;
  outline-offset: 0px;
}

.ck-popup__accept:hover {
  border-color: #8B8C9E;
  color: #8B8C9E;
  outline: 2px solid rgba(139, 140, 158, 0.3);
  outline-offset: 3px;
}

.ck-popup__accept:focus-visible {
  outline: 2px solid #333B4D;
  outline-offset: 3px;
}

.ck-popup__decline {
  font-family: 'Arimo', sans-serif;
  font-size: 16px;
  color: #8B8C9E;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 44px;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ck-popup__decline:hover {
  color: #333B4D;
}

.ck-popup__decline:focus-visible {
  outline: 2px solid #333B4D;
  outline-offset: 2px;
  border-radius: 4px;
}

.ck-popup__policy-ref {
  font-size: 16px;
  color: rgba(139, 140, 158, 0.7);
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

.ck-popup__policy-ref a {
  color: #8B8C9E;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.45s ease-in-out;
}

.ck-popup__policy-ref a:hover {
  color: #333B4D;
}

.ck-popup__policy-ref a:focus-visible {
  outline: 2px solid #333B4D;
  outline-offset: 2px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .brand-hd__top {
    flex-direction: column;
    gap: 28px;
  }

  .primary-nav {
    align-items: flex-start;
    width: 100%;
  }

  .primary-nav__links {
    justify-content: flex-start;
  }

  .page-foot__primary {
    flex-direction: column;
    gap: 28px;
  }

  .page-foot__brand {
    flex-direction: row;
    align-items: center;
    min-width: unset;
  }

  .page-foot__details {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ck-popup-anchor {
    left: 14px;
    right: 14px;
    width: auto;
    bottom: 14px;
  }
}

.terms-content {
  max-width: 1170px;
  margin: 0 auto;
  padding: 56px 28px;
}

.terms-content h1 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #333B4D;
  margin-bottom: 28px;
  margin-top: 0;
}

.terms-content h2 {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #333B4D;
  margin-top: 56px;
  margin-bottom: 14px;
}

.terms-content h3 {
  font-size: 27px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #333B4D;
  margin-top: 28px;
  margin-bottom: 14px;
}

.terms-content h4 {
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: #333B4D;
  margin-top: 28px;
  margin-bottom: 14px;
}

.terms-content h5 {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0em;
  color: #8B8C9E;
  margin-top: 28px;
  margin-bottom: 6px;
}

.terms-content h6 {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #8B8C9E;
  margin-top: 14px;
  margin-bottom: 6px;
}

.terms-content p {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #333B4D;
  margin-top: 0;
  margin-bottom: 14px;
  max-width: 72ch;
}

.terms-content ul,
.terms-content ol {
  font-size: 18px;
  line-height: 1.7;
  color: #333B4D;
  margin-top: 0;
  margin-bottom: 14px;
  padding-left: 28px;
  max-width: 72ch;
}

.terms-content ul {
  list-style-type: disc;
}

.terms-content ol {
  list-style-type: decimal;
}

.terms-content li {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #333B4D;
  margin-bottom: 6px;
  padding-left: 6px;
}

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

.terms-content ul ul,
.terms-content ol ol,
.terms-content ul ol,
.terms-content ol ul {
  margin-top: 6px;
  margin-bottom: 6px;
}

.terms-content a {
  color: #333B4D;
  text-decoration: underline;
  text-decoration-color: #B6B5C5;
  text-underline-offset: 3px;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1), text-decoration-color 0.45s ease-in-out;
}

.terms-content a:hover {
  color: #8B8C9E;
  text-decoration-color: #8B8C9E;
}

.terms-content a:visited {
  color: #8B8C9E;
  text-decoration-color: #B6B5C5;
}

.terms-content div {
  font-size: 18px;
  line-height: 1.7;
  color: #333B4D;
}

.terms-content div+div {
  margin-top: 14px;
}

@media (max-width: 768px) {
  .terms-content {
    padding: 28px 14px;
  }

  .terms-content h1 {
    font-size: 37px;
  }

  .terms-content h2 {
    font-size: 27px;
    margin-top: 28px;
  }

  .terms-content h3 {
    font-size: 21px;
  }

  .terms-content h4 {
    font-size: 18px;
  }

  .terms-content h5,
  .terms-content h6 {
    font-size: 16px;
  }

  .terms-content p,
  .terms-content ul,
  .terms-content ol,
  .terms-content li,
  .terms-content div {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .terms-content {
    padding: 28px 14px;
  }

  .terms-content h1 {
    font-size: 27px;
    letter-spacing: -0.01em;
  }

  .terms-content h2 {
    font-size: 21px;
  }

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

  .terms-content p,
  .terms-content ul,
  .terms-content ol,
  .terms-content li,
  .terms-content div {
    font-size: 16px;
  }

  .terms-content ul,
  .terms-content ol {
    padding-left: 14px;
  }
}

.abt-pg {
  max-width: 100%;
  overflow-x: hidden;
}

.abt-pg .abt-pg__inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Load animation ── */
@keyframes clr-shift {
  from {
    color: #B6B5C5;
  }

  to {
    color: #333B4D;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

/* ── SECTION 1: Title block ── */
.abt-pg .pnl-title {
  padding: 96px 28px 56px;
  background: #ffffff;
  position: relative;
}

.abt-pg .pnl-title__inner {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 56px;
}

.abt-pg .pnl-title__text-col {
  flex: 0 0 58%;
  position: relative;
  padding-left: 14px;
  border-right: 3px solid #8B8C9E;
  padding-right: 56px;
}

.abt-pg .pnl-title__quote-mark {
  position: absolute;
  top: -28px;
  left: -14px;
  font-size: 200px;
  line-height: 1.1;
  color: #333B4D;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  font-weight: 900;
}

.abt-pg .pnl-title__eyebrow {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  color: #8B8C9E;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.1s;
}

.abt-pg .pnl-title__h1 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #333B4D;
  margin-bottom: 28px;
  animation: clr-shift 0.7s cubic-bezier(0.22, 1, 0.36, 1) both, fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.15s;
  font-weight: 800;
}

.abt-pg .pnl-title__manifesto {
  font-size: 18px;
  line-height: 1.7;
  color: #333B4D;
  margin-bottom: 28px;
  animation: fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.25s;
}

.abt-pg .pnl-title__manifesto strong {
  font-weight: 700;
  color: #333B4D;
}

.abt-pg .pnl-title__metrics {
  display: flex;
  flex-direction: row;
  gap: 56px;
  margin-top: 56px;
  animation: fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.35s;
}

.abt-pg .metric__val {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  color: #333B4D;
  letter-spacing: -0.03em;
  display: block;
}

.abt-pg .metric__lbl {
  font-size: 16px;
  line-height: 1.4;
  color: #8B8C9E;
  letter-spacing: 0.04em;
  display: block;
  margin-top: 6px;
}

.abt-pg .pnl-title__img-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 14px;
}

.abt-pg .pnl-title__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px 0 rgba(51, 59, 77, 0.11);
}

.abt-pg .pnl-title__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  filter: contrast(1.05) saturate(1.08);
}

.abt-pg .pnl-title__img-wrap:hover img {
  transform: scale(1.04);
  filter: contrast(1.1) saturate(1.14) brightness(1.03);
}

/* ── SECTION 2: About body ── */
.abt-pg .pnl-body {
  padding: 96px 28px;
  background: linear-gradient(155deg, rgba(51, 59, 77, 0.04) 0%, rgba(139, 140, 158, 0.07) 52%, rgba(182, 181, 197, 0.05) 100%);
  position: relative;
}

.abt-pg .pnl-body__inner {
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
}

.abt-pg .pnl-body__lead {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  padding: 56px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 22px 0 rgba(51, 59, 77, 0.09);
  position: relative;
}

.abt-pg .pnl-body__lead-h2 {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 800;
  color: #333B4D;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.abt-pg .pnl-body__lead-text {
  font-size: 18px;
  line-height: 1.7;
  color: #333B4D;
}

.abt-pg .pnl-body__lead-text p {
  margin-bottom: 14px;
}

.abt-pg .pnl-body__lead-text p:last-child {
  margin-bottom: 0;
}

.abt-pg .pnl-body__img-stack {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.abt-pg .pnl-body__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 22px 0 rgba(51, 59, 77, 0.09);
  flex: 1 1 auto;
}

.abt-pg .pnl-body__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), brightness 0.6s ease-in-out;
}

.abt-pg .pnl-body__img-wrap:hover img {
  transform: scale(1.05);
  filter: brightness(1.06);
}

.abt-pg .pnl-body__cards {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  display: flex;
  flex-direction: row;
  gap: 28px;
}

.abt-pg .val-card {
  flex: 1 1 0;
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 3px 4px 0 rgba(51, 59, 77, 0.07);
  position: relative;
  transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}

.abt-pg .val-card:hover {
  box-shadow: 0 12px 40px 0 rgba(51, 59, 77, 0.11);
  transform: translateY(-4px);
}

.abt-pg .val-card:active {
  background: #333B4D;
}

.abt-pg .val-card:active .val-card__h {
  color: #ffffff;
}

.abt-pg .val-card:active .val-card__p {
  color: #B6B5C5;
}

.abt-pg .val-card:active .val-card__icon {
  color: #B6B5C5;
}

.abt-pg .val-card__icon {
  font-size: 27px;
  color: #8B8C9E;
  margin-bottom: 14px;
  display: block;
  transition: color 0.45s ease-in-out;
}

.abt-pg .val-card__h {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 700;
  color: #333B4D;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
  transition: color 0.45s ease-in-out;
}

.abt-pg .val-card__p {
  font-size: 16px;
  line-height: 1.7;
  color: #8B8C9E;
  transition: color 0.45s ease-in-out;
}

/* Badges / tags in lead block */
.abt-pg .tag-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 28px;
}

.abt-pg .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(51, 59, 77, 0.07);
  border-radius: 36px;
  padding: 6px 14px;
  font-size: 16px;
  line-height: 1.4;
  color: #333B4D;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.abt-pg .tag i {
  font-size: 16px;
  color: #8B8C9E;
}

/* Team strip */
.abt-pg .pnl-body__team {
  grid-column: 1 / 4;
  grid-row: 3 / 4;
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-top: 0;
}

.abt-pg .team-card {
  flex: 1 1 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 22px 0 rgba(51, 59, 77, 0.09);
  display: flex;
  flex-direction: column;
}

.abt-pg .team-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.abt-pg .team-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease-in-out;
}

.abt-pg .team-card:hover .team-card__img-wrap img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.abt-pg .team-card__body {
  padding: 28px;
  flex: 1 1 auto;
}

.abt-pg .team-card__name {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 700;
  color: #333B4D;
  margin-bottom: 6px;
}

.abt-pg .team-card__role {
  font-size: 16px;
  line-height: 1.4;
  color: #8B8C9E;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.abt-pg .team-card__desc {
  font-size: 16px;
  line-height: 1.7;
  color: #333B4D;
}

/* Contact strip at bottom of section 2 */
.abt-pg .pnl-body__contact-strip {
  grid-column: 1 / 4;
  grid-row: 4 / 5;
  background: #333B4D;
  border-radius: 12px;
  padding: 56px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 12px 40px 0 rgba(51, 59, 77, 0.11);
}

.abt-pg .contact-strip__text h3 {
  font-size: 27px;
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.abt-pg .contact-strip__text p {
  font-size: 18px;
  line-height: 1.7;
  color: #B6B5C5;
}

.abt-pg .contact-strip__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.abt-pg .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-pg .contact-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #B6B5C5;
  border-radius: 4px;
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-pg .contact-link:hover::after {
  width: 100%;
}

.abt-pg .contact-link:hover {
  color: #B6B5C5;
}

.abt-pg .contact-link i {
  font-size: 21px;
  flex-shrink: 0;
}

/* Arrow link button */
.abt-pg .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  line-height: 1.4;
  color: #333B4D;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), padding 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-pg .arrow-link:hover {
  color: #8B8C9E;
  border-color: #8B8C9E;
  padding: 6px 14px;
}

.abt-pg .arrow-link i {
  font-size: 18px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-pg .arrow-link:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 900px) {
  .abt-pg .pnl-title__inner {
    flex-direction: column;
    gap: 28px;
  }

  .abt-pg .pnl-title__text-col {
    flex: 1 1 auto;
    border-right: none;
    padding-right: 0;
  }

  .abt-pg .pnl-title__h1 {
    font-size: 37px;
  }

  .abt-pg .pnl-body__inner {
    grid-template-columns: 1fr 1fr;
  }

  .abt-pg .pnl-body__lead {
    grid-column: 1 / 3;
    padding: 28px;
  }

  .abt-pg .pnl-body__img-stack {
    grid-column: 1 / 3;
    grid-row: auto;
    flex-direction: row;
  }

  .abt-pg .pnl-body__cards {
    grid-column: 1 / 3;
    flex-direction: column;
  }

  .abt-pg .pnl-body__team {
    grid-column: 1 / 3;
    flex-direction: column;
  }

  .abt-pg .pnl-body__contact-strip {
    grid-column: 1 / 3;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .abt-pg .pnl-title__metrics {
    gap: 28px;
  }

  .abt-pg .metric__val {
    font-size: 37px;
  }
}

@media (max-width: 600px) {
  .abt-pg .pnl-title {
    padding: 56px 14px 28px;
  }

  .abt-pg .pnl-title__h1 {
    font-size: 27px;
  }

  .abt-pg .pnl-body {
    padding: 56px 14px;
  }

  .abt-pg .pnl-body__inner {
    grid-template-columns: 1fr;
  }

  .abt-pg .pnl-body__lead,
  .abt-pg .pnl-body__img-stack,
  .abt-pg .pnl-body__cards,
  .abt-pg .pnl-body__team,
  .abt-pg .pnl-body__contact-strip {
    grid-column: 1 / 2;
  }

  .abt-pg .pnl-body__img-stack {
    flex-direction: column;
  }

  .abt-pg .pnl-body__cards {
    flex-direction: column;
  }

  .abt-pg .pnl-body__team {
    flex-direction: column;
  }

  .abt-pg .pnl-title__metrics {
    flex-direction: column;
    gap: 14px;
  }

  .abt-pg .pnl-body__lead-h2 {
    font-size: 27px;
  }
}

.frnt {
  max-width: 100%;
  overflow-x: hidden;
}

.frnt .pg-wrap {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 28px;
}

.frnt .reveal {
  opacity: 0;
  transform: rotate(-2deg) translateY(18px);
  animation: revealIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.frnt .reveal--delay1 {
  animation-delay: 0.12s;
}

.frnt .reveal--delay2 {
  animation-delay: 0.24s;
}

.frnt .reveal--delay3 {
  animation-delay: 0.38s;
}

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

.frnt ::selection {
  background: linear-gradient(90deg, #333B4D, #8B8C9E);
  color: #ffffff;
}

.frnt input::placeholder,
.frnt textarea::placeholder {
  color: #8B8C9E;
  opacity: 0.55;
}

.frnt input,
.frnt textarea {
  box-shadow: inset 0 2px 6px 0 rgba(51, 59, 77, 0.09);
}

.frnt .dvd {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin: 0 0 56px;
}

.frnt .dvd__line {
  width: 38px;
  height: 2px;
  background: #333B4D;
  opacity: 0.35;
  flex-shrink: 0;
}

.frnt .dvd--right {
  justify-content: flex-end;
}

.frnt .dvd--center {
  justify-content: center;
}

.frnt .tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(51, 59, 77, 0.08);
  color: #333B4D;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 4px;
}

.frnt .btn-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 700;
  color: #333B4D;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  border-bottom: 2px solid #333B4D;
  transition: border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s ease-in-out;
}

.frnt .btn-link::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -4px;
  right: -4px;
  height: 2px;
  background: #8B8C9E;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.frnt .btn-link:hover::before {
  opacity: 1;
}

.frnt .btn-link:hover {
  color: #8B8C9E;
  border-color: transparent;
}

.frnt .btn-link .arr {
  display: inline-block;
  width: 18px;
  height: 18px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.frnt .btn-link:hover .arr {
  transform: translateX(5px);
}

.frnt .btn-primary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: #333B4D;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid #333B4D;
  cursor: pointer;
  transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 6px 22px 0 rgba(51, 59, 77, 0.09);
}

.frnt .btn-primary:hover {
  background: transparent;
  color: #333B4D;
  border-color: #333B4D;
  box-shadow: 0 12px 40px 0 rgba(51, 59, 77, 0.11);
  outline: 3px solid rgba(51, 59, 77, 0.18);
  outline-offset: 3px;
}

.frnt .btn-primary:focus-visible {
  outline: 3px solid #8B8C9E;
  outline-offset: 4px;
}

/* ─── SECTION 1: TITLE BLOCK ─── */
.frnt .title-blk {
  background: linear-gradient(135deg, #f4f3f7 0%, #e8e7ef 45%, #d8d7e5 100%);
  position: relative;
  padding: 96px 0;
}

.frnt .title-blk__frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(51, 59, 77, 0.14);
  border-radius: 12px;
  pointer-events: none;
}

.frnt .title-blk__frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(51, 59, 77, 0.07);
  border-radius: 12px;
}

.frnt .title-blk__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.frnt .title-blk__copy {
  position: relative;
  z-index: 1;
}

.frnt .title-blk__eyebrow {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #8B8C9E;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.frnt .title-blk__h1 {
  font-size: 68px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #333B4D;
  font-weight: 900;
  margin: 0 0 28px;
}

.frnt .title-blk__sub {
  font-size: 21px;
  line-height: 1.7;
  color: #8B8C9E;
  margin: 0 0 56px;
  max-width: 420px;
}

.frnt .title-blk__img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 40px 0 rgba(51, 59, 77, 0.11);
}

.frnt .title-blk__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.35) contrast(1.08) brightness(0.96) saturate(0.8);
  display: block;
}

.frnt .title-blk__img-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(51, 59, 77, 0.88);
  color: #ffffff;
  font-size: 16px;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.frnt .title-blk__circles {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  pointer-events: none;
  opacity: 0.12;
  overflow: hidden;
}

.frnt .title-blk__circles svg {
  width: 100%;
  height: 100%;
}

/* ─── SECTION 2: INVESTMENT SIGNAL ─── */
.frnt .invest {
  padding: 96px 0;
  background: #ffffff;
  position: relative;
}

.frnt .invest__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.frnt .invest__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 6px 22px 0 rgba(51, 59, 77, 0.09);
}

.frnt .invest__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.25) contrast(1.05) brightness(0.98) saturate(0.85);
  display: block;
}

.frnt .invest__copy {
  padding: 14px 0;
}

.frnt .invest__h2 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #333B4D;
  font-weight: 900;
  margin: 0 0 28px;
}

.frnt .invest__body {
  font-size: 18px;
  line-height: 1.7;
  color: #8B8C9E;
  margin: 0 0 28px;
}

.frnt .invest__items {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.frnt .invest__items li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  font-size: 18px;
  line-height: 1.4;
  color: #333B4D;
}

.frnt .invest__items li .ic {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: rgba(51, 59, 77, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333B4D;
  font-size: 16px;
}

.frnt .invest__price-band {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(51, 59, 77, 0.05);
  border-radius: 12px;
  margin: 0 0 28px;
}

.frnt .invest__price-band .price-val {
  font-size: 37px;
  font-weight: 900;
  color: #333B4D;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.frnt .invest__price-band .price-note {
  font-size: 16px;
  color: #8B8C9E;
  line-height: 1.4;
}

.frnt .invest__circles {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  pointer-events: none;
  opacity: 0.08;
  overflow: hidden;
}

/* ─── SECTION 3: WHO BELONGS HERE ─── */
.frnt .fit {
  padding: 96px 0;
  background: linear-gradient(160deg, rgba(182, 181, 197, 0.13) 0%, rgba(255, 255, 255, 0) 55%, rgba(139, 140, 158, 0.09) 100%);
  position: relative;
}

.frnt .fit__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin: 0 0 56px;
}

.frnt .fit__h2 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #333B4D;
  font-weight: 900;
  margin: 0;
}

.frnt .fit__lead {
  font-size: 21px;
  line-height: 1.7;
  color: #8B8C9E;
  margin: 0;
  padding-top: 14px;
}

.frnt .fit__cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.frnt .fit__card {
  border-radius: 12px;
  padding: 28px;
  position: relative;
  box-shadow: 0 3px 4px 0 rgba(51, 59, 77, 0.07);
  transition: box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.frnt .fit__card:hover {
  box-shadow: 0 12px 40px 0 rgba(51, 59, 77, 0.11);
  transform: translateY(-4px);
}

.frnt .fit__card--yes {
  background: #ffffff;
}

.frnt .fit__card--no {
  background: rgba(182, 181, 197, 0.12);
}

.frnt .fit__card--mid {
  background: rgba(51, 59, 77, 0.04);
}

.frnt .fit__card-badge {
  position: absolute;
  top: -6px;
  right: 14px;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  color: #ffffff;
}

.frnt .fit__card-badge--yes {
  background: #333B4D;
}

.frnt .fit__card-badge--no {
  background: #8B8C9E;
}

.frnt .fit__card-badge--mid {
  background: #B6B5C5;
  color: #333B4D;
}

.frnt .fit__card h4 {
  font-size: 21px;
  font-weight: 800;
  color: #333B4D;
  margin: 14px 0 14px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.frnt .fit__card p {
  font-size: 18px;
  line-height: 1.7;
  color: #8B8C9E;
  margin: 0;
}

.frnt .fit__circles {
  position: absolute;
  bottom: 28px;
  left: -20px;
  width: 160px;
  height: 160px;
  pointer-events: none;
  opacity: 0.1;
  overflow: hidden;
}

/* ─── SECTION 4: APPROACH ─── */
.frnt .meth {
  padding: 96px 0;
  background: #333B4D;
  position: relative;
}

.frnt .meth__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.frnt .meth__copy {
  color: #ffffff;
}

.frnt .meth__eyebrow {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #B6B5C5;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.frnt .meth__h2 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-weight: 900;
  margin: 0 0 28px;
}

.frnt .meth__body {
  font-size: 18px;
  line-height: 1.7;
  color: #B6B5C5;
  margin: 0 0 28px;
}

.frnt .meth__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.frnt .meth__step {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: flex-start;
}

.frnt .meth__step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 36px;
  background: rgba(182, 181, 197, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.frnt .meth__step-body h5 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
  line-height: 1.4;
}

.frnt .meth__step-body p {
  font-size: 16px;
  line-height: 1.7;
  color: #B6B5C5;
  margin: 0;
}

.frnt .meth__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 40px 0 rgba(51, 59, 77, 0.11);
  position: relative;
}

.frnt .meth__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.3) contrast(1.1) brightness(0.9) saturate(0.75);
  display: block;
}

.frnt .meth__img-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 16px;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

.frnt .meth__dvd .dvd__line {
  background: #B6B5C5;
}

.frnt .meth__circles {
  position: absolute;
  top: 28px;
  right: -20px;
  width: 200px;
  height: 200px;
  pointer-events: none;
  opacity: 0.07;
  overflow: hidden;
}

.frnt .meth__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.04;
}

.frnt .meth__pattern svg {
  width: 100%;
  height: 100%;
}

/* ─── SECTION 5: THE GAP ─── */
.frnt .gap-blk {
  padding: 96px 0;
  background: #ffffff;
  position: relative;
}

.frnt .gap-blk__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.frnt .gap-blk__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 6px 22px 0 rgba(51, 59, 77, 0.09);
  order: 2;
}

.frnt .gap-blk__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.2) contrast(1.06) brightness(0.97) saturate(0.88);
  display: block;
}

.frnt .gap-blk__copy {
  order: 1;
}

.frnt .gap-blk__h2 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #333B4D;
  font-weight: 900;
  margin: 0 0 28px;
}

.frnt .gap-blk__body {
  font-size: 18px;
  line-height: 1.7;
  color: #8B8C9E;
  margin: 0 0 28px;
}

.frnt .gap-blk__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0 0 28px;
}

.frnt .gap-blk__metric {
  padding: 14px;
  background: rgba(51, 59, 77, 0.05);
  border-radius: 12px;
  position: relative;
}

.frnt .gap-blk__metric-val {
  font-size: 37px;
  font-weight: 900;
  color: #333B4D;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.frnt .gap-blk__metric-label {
  font-size: 16px;
  color: #8B8C9E;
  line-height: 1.4;
  margin-top: 6px;
}

.frnt .gap-blk__metric-tag {
  position: absolute;
  top: -8px;
  right: 14px;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  background: #B6B5C5;
  color: #333B4D;
}

.frnt .gap-blk__circles {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  pointer-events: none;
  opacity: 0.09;
  overflow: hidden;
}

/* ─── SECTION 6: REPUTATION ─── */
.frnt .rep {
  padding: 96px 0;
  background: linear-gradient(155deg, rgba(51, 59, 77, 0.06) 0%, rgba(255, 255, 255, 0) 50%, rgba(182, 181, 197, 0.1) 100%);
  position: relative;
}

.frnt .rep__top {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.frnt .rep__h2 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #333B4D;
  font-weight: 900;
  margin: 0 0 14px;
}

.frnt .rep__lead {
  font-size: 21px;
  line-height: 1.7;
  color: #8B8C9E;
  margin: 0;
}

.frnt .rep__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.frnt .rep__item {
  padding: 28px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 3px 4px 0 rgba(51, 59, 77, 0.07);
  position: relative;
  transition: box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.frnt .rep__item:hover {
  box-shadow: 0 12px 40px 0 rgba(51, 59, 77, 0.11);
  transform: translateY(-3px);
}

.frnt .rep__item-badge {
  position: absolute;
  top: -8px;
  right: 14px;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  background: #333B4D;
  color: #ffffff;
}

.frnt .rep__item-icon {
  width: 42px;
  height: 42px;
  margin: 0 0 14px;
  color: #333B4D;
}

.frnt .rep__item h5 {
  font-size: 21px;
  font-weight: 800;
  color: #333B4D;
  margin: 0 0 14px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.frnt .rep__item p {
  font-size: 16px;
  line-height: 1.7;
  color: #8B8C9E;
  margin: 0;
}

.frnt .rep__circles {
  position: absolute;
  top: 28px;
  left: -20px;
  width: 160px;
  height: 160px;
  pointer-events: none;
  opacity: 0.1;
  overflow: hidden;
}

/* ─── SECTION 7: REAL PEOPLE ─── */
.frnt .voices {
  padding: 96px 0;
  background: #333B4D;
  position: relative;
}

.frnt .voices__top {
  margin: 0 0 56px;
}

.frnt .voices__h2 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-weight: 900;
  margin: 0 0 14px;
}

.frnt .voices__lead {
  font-size: 21px;
  line-height: 1.7;
  color: #B6B5C5;
  margin: 0;
  max-width: 520px;
}

.frnt .voices__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.frnt .voice-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  box-shadow: 0 6px 22px 0 rgba(51, 59, 77, 0.09);
  transition: background 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.frnt .voice-card:hover {
  background: rgba(255, 255, 255, 0.11);
}

.frnt .voice-card__quote {
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff;
  margin: 0 0 28px;
  font-style: italic;
}

.frnt .voice-card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.frnt .voice-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 36px;
  background: rgba(182, 181, 197, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.frnt .voice-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}

.frnt .voice-card__role {
  font-size: 16px;
  color: #B6B5C5;
  line-height: 1.4;
}

.frnt .voice-card__badge {
  position: absolute;
  top: -8px;
  right: 14px;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  background: #B6B5C5;
  color: #333B4D;
}

.frnt .voice-card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.frnt .voice-card--wide .voice-card__quote {
  margin: 0;
  font-size: 21px;
}

.frnt .voices__circles {
  position: absolute;
  bottom: 28px;
  right: -20px;
  width: 180px;
  height: 180px;
  pointer-events: none;
  opacity: 0.08;
  overflow: hidden;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {

  .frnt .title-blk__grid,
  .frnt .invest__grid,
  .frnt .meth__grid,
  .frnt .gap-blk__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .frnt .title-blk__h1 {
    font-size: 52px;
  }

  .frnt .fit__cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .frnt .fit__top {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .frnt .rep__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .frnt .voices__grid {
    grid-template-columns: 1fr;
  }

  .frnt .voice-card--wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .frnt .gap-blk__img-wrap {
    order: 1;
  }

  .frnt .gap-blk__copy {
    order: 2;
  }

  .frnt .meth__h2,
  .frnt .invest__h2,
  .frnt .gap-blk__h2,
  .frnt .rep__h2,
  .frnt .voices__h2,
  .frnt .fit__h2 {
    font-size: 37px;
  }
}

@media (max-width: 600px) {
  .frnt .title-blk {
    padding: 56px 0;
  }

  .frnt .title-blk__h1 {
    font-size: 37px;
  }

  .frnt .title-blk__sub {
    font-size: 18px;
  }

  .frnt .invest,
  .frnt .fit,
  .frnt .meth,
  .frnt .gap-blk,
  .frnt .rep,
  .frnt .voices {
    padding: 56px 0;
  }

  .frnt .gap-blk__metrics {
    grid-template-columns: 1fr;
  }

  .frnt .dvd {
    margin: 0 0 28px;
  }
}

.ctus-pg {
  max-width: 100%;
  overflow-x: hidden;
}

.ctus-pg .pg-drop-1 {
  opacity: 0;
  transform: translateY(-22px);
  animation: dropIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.ctus-pg .pg-drop-2 {
  opacity: 0;
  transform: translateY(-18px);
  animation: dropIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

.ctus-pg .pg-drop-3 {
  opacity: 0;
  transform: translateY(-14px);
  animation: dropIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.ctus-pg .pg-drop-4 {
  opacity: 0;
  transform: translateY(-12px);
  animation: dropIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

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

.ctus-pg .top-band {
  background: #333B4D;
  padding: 96px 28px 56px;
  position: relative;
  overflow: hidden;
}

.ctus-pg .top-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(139, 140, 158, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(182, 181, 197, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(51, 59, 77, 0.35) 0%, transparent 60%);
  pointer-events: none;
}

.ctus-pg .top-band__edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(182, 181, 197, 0.7), rgba(139, 140, 158, 0.15), transparent);
}

.ctus-pg .top-band__geom {
  position: absolute;
  top: 28px;
  right: 56px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(182, 181, 197, 0.12);
  border-radius: 12px;
  transform: rotate(18deg);
  pointer-events: none;
}

.ctus-pg .top-band__geom::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(182, 181, 197, 0.08);
  border-radius: 4px;
  transform: rotate(-8deg);
}

.ctus-pg .top-band__inner {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ctus-pg .lbl-tag {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: rgba(182, 181, 197, 0.85);
  text-transform: uppercase;
  margin-bottom: 28px;
  line-height: 1.4;
}

.ctus-pg .band-head {
  font-size: 52px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 560px;
  margin: 0 0 28px;
}

.ctus-pg .band-head span {
  display: block;
  color: rgba(182, 181, 197, 0.75);
  font-weight: 400;
  font-size: 37px;
  letter-spacing: -0.01em;
  margin-top: 6px;
}

.ctus-pg .band-meta {
  display: flex;
  flex-direction: row;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 56px;
}

.ctus-pg .meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ctus-pg .meta-item__label {
  font-size: 16px;
  color: rgba(182, 181, 197, 0.6);
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ctus-pg .meta-item__val {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.4;
  font-weight: 600;
}

.ctus-pg .meta-item__val a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(182, 181, 197, 0.3);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ctus-pg .meta-item__val a:hover {
  color: #B6B5C5;
  border-color: rgba(182, 181, 197, 0.8);
}

.ctus-pg .band-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(51, 59, 77, 0.6));
  pointer-events: none;
}

.ctus-pg .form-area {
  background: #ffffff;
  padding: 96px 28px;
  position: relative;
}

.ctus-pg .form-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(51, 59, 77, 0.12), transparent);
}

.ctus-pg .form-area__inner {
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 96px;
  align-items: start;
}

.ctus-pg .form-aside {
  position: sticky;
  top: 56px;
}

.ctus-pg .aside-eyebrow {
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8B8C9E;
  line-height: 1.4;
  margin-bottom: 14px;
}

.ctus-pg .aside-head {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 800;
  color: #333B4D;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}

.ctus-pg .aside-body {
  font-size: 18px;
  line-height: 1.7;
  color: #8B8C9E;
  margin: 0 0 28px;
}

.ctus-pg .aside-topics {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ctus-pg .aside-topics li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #333B4D;
  line-height: 1.4;
}

.ctus-pg .aside-topics li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 0px;
  background: #333B4D;
  flex-shrink: 0;
  transform: rotate(45deg);
}

.ctus-pg .aside-note {
  font-size: 16px;
  color: #B6B5C5;
  line-height: 1.7;
  border-top: 1px solid rgba(51, 59, 77, 0.08);
  padding-top: 28px;
}

.ctus-pg .form-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 40px 0 rgba(51, 59, 77, 0.11);
  padding: 56px;
}

.ctus-pg .form-card__head {
  margin-bottom: 28px;
}

.ctus-pg .form-card__title {
  font-size: 27px;
  font-weight: 800;
  color: #333B4D;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

.ctus-pg .form-card__sub {
  font-size: 16px;
  color: #8B8C9E;
  line-height: 1.4;
  margin: 0;
}

.ctus-pg .form-el {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.ctus-pg .form-el--wide {
  margin-bottom: 28px;
}

.ctus-pg .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.ctus-pg .f-label {
  font-size: 16px;
  font-weight: 600;
  color: #333B4D;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.ctus-pg .f-req {
  color: #8B8C9E;
  font-weight: 400;
}

.ctus-pg .f-input {
  padding: 14px;
  border: 1px solid rgba(51, 59, 77, 0.18);
  border-radius: 4px;
  font-size: 16px;
  color: #333B4D;
  background: #ffffff;
  outline: none;
  transition: border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: inset 0 1px 3px rgba(51, 59, 77, 0.05);
  width: 100%;
  box-sizing: border-box;
}

.ctus-pg .f-input::placeholder {
  color: rgba(139, 140, 158, 0.5);
}

.ctus-pg .f-input:focus {
  border-color: #333B4D;
  box-shadow: inset 0 1px 3px rgba(51, 59, 77, 0.07), 0 0 0 3px rgba(51, 59, 77, 0.07);
}

.ctus-pg .f-select {
  padding: 14px;
  border: 1px solid rgba(51, 59, 77, 0.18);
  border-radius: 4px;
  font-size: 16px;
  color: #333B4D;
  background: #ffffff;
  outline: none;
  transition: border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: inset 0 1px 3px rgba(51, 59, 77, 0.05);
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238B8C9E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}

.ctus-pg .f-select:focus {
  border-color: #333B4D;
  box-shadow: inset 0 1px 3px rgba(51, 59, 77, 0.07), 0 0 0 3px rgba(51, 59, 77, 0.07);
}

.ctus-pg .f-hint {
  font-size: 16px;
  color: #B6B5C5;
  line-height: 1.4;
}

.ctus-pg .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
  padding: 14px;
  background: rgba(51, 59, 77, 0.03);
  border-radius: 4px;
}

.ctus-pg .privacy-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #333B4D;
  cursor: pointer;
}

.ctus-pg .privacy-txt {
  font-size: 16px;
  color: #8B8C9E;
  line-height: 1.7;
  margin: 0;
}

.ctus-pg .privacy-txt a {
  color: #333B4D;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.45s ease-in-out;
}

.ctus-pg .privacy-txt a:hover {
  color: #8B8C9E;
}

.ctus-pg .submit-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}

.ctus-pg .btn-send {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  background: #333B4D;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid #333B4D;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.4;
  position: relative;
  transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.5s cubic-bezier(0.22, 1, 0.36, 1), outline-offset 0.45s ease-in-out;
  outline: 2px solid transparent;
  outline-offset: 0px;
}

.ctus-pg .btn-send:hover {
  background: #ffffff;
  color: #333B4D;
  outline: 2px solid #333B4D;
  outline-offset: 4px;
}

.ctus-pg .btn-send:focus-visible {
  outline: 2px solid #333B4D;
  outline-offset: 4px;
}

.ctus-pg .btn-send__arrow {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ctus-pg .submit-note {
  font-size: 16px;
  color: #B6B5C5;
  line-height: 1.4;
}

.ctus-pg .topic-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(51, 59, 77, 0.1), transparent);
  margin: 28px 0;
}

.ctus-pg .topic-group-label {
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B6B5C5;
  line-height: 1.4;
  margin-bottom: 14px;
  display: block;
}

@media (max-width: 900px) {
  .ctus-pg .form-area__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .ctus-pg .form-aside {
    position: static;
  }

  .ctus-pg .band-head {
    font-size: 37px;
  }

  .ctus-pg .band-head span {
    font-size: 27px;
  }

  .ctus-pg .form-card {
    padding: 28px;
  }

  .ctus-pg .band-meta {
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .ctus-pg .form-row {
    grid-template-columns: 1fr;
  }

  .ctus-pg .top-band {
    padding: 56px 28px 56px;
  }

  .ctus-pg .band-head {
    font-size: 27px;
  }

  .ctus-pg .band-head span {
    font-size: 21px;
  }

  .ctus-pg .submit-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .ctus-pg .top-band__geom {
    display: none;
  }
}

.success-pg {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 28px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.success-pg__bg-shape {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(51, 59, 77, 0.06), rgba(139, 140, 158, 0.05), rgba(182, 181, 197, 0.04));
  border-radius: 36px;
  pointer-events: none;
  z-index: 0;
}

.success-pg__bg-shape--second {
  top: auto;
  right: auto;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 70% 70%, rgba(182, 181, 197, 0.07), rgba(139, 140, 158, 0.04), transparent);
  border-radius: 36px;
}

.success-pg__card {
  position: relative;
  z-index: 1;
  max-width: 560px;
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 40px 0 rgba(51, 59, 77, 0.11);
  padding: 56px;
  text-align: center;
}

.success-pg__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px auto;
  width: 72px;
  height: 72px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(51, 59, 77, 0.08), rgba(139, 140, 158, 0.12));
}

.success-pg__icon {
  display: block;
  width: 36px;
  height: 36px;
}

.success-pg__heading {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #333B4D;
  font-weight: 700;
  margin: 0 0 14px 0;
}

.success-pg__subtext {
  font-size: 18px;
  line-height: 1.7;
  color: #8B8C9E;
  margin: 0 0 28px 0;
}

.success-pg__note {
  font-size: 16px;
  line-height: 1.4;
  color: #B6B5C5;
  margin: 0 0 56px 0;
}

.success-pg__divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #333B4D, #B6B5C5);
  border-radius: 4px;
  margin: 0 auto 56px auto;
}

.success-pg__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #333B4D;
  text-decoration: none;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid #333B4D;
  transition: padding 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s ease-in-out, color 0.5s ease-in-out;
  position: relative;
}

.success-pg__action:hover {
  padding: 14px 34px;
  border-color: #8B8C9E;
  color: #8B8C9E;
}

.success-pg__action:focus-visible {
  outline: 2px solid #333B4D;
  outline-offset: 4px;
}

.success-pg__arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .success-pg__card {
    padding: 28px;
  }

  .success-pg__heading {
    font-size: 27px;
  }

  .success-pg__subtext {
    font-size: 16px;
  }
}