@import "https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Arimo:wght@400;700&display=swap";

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

body {
  margin: 0;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  font-family: 'Arimo', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #2d2d2d;
  background: #FFF
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 48px
}

.brand__visual {
  width: 72px;
  height: 72px;
  padding: 8px;
  background: #FFF;
  border: 2px solid #003a8c1f;
  border-radius: 10px;
  box-shadow: 2px 7px 14px -1px #003a8c1a
}

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

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

.brand__name {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #003A8C;
  margin: 0
}

.brand__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.2;
  color: #5a5a5a
}

.brand__status::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FFA64C 0%, #ff8c1a 100%);
  box-shadow: 0 0 8px #ffa64c99
}

.topbar {
  position: relative;
  background: linear-gradient(180deg, #fffffff7 0%, #ffffffeb 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #003a8c14;
  box-shadow: 2px 2px 4px -1px #003a8c0f;
  z-index: 100
}

.topbar__shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px
}

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

.nav-primary__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end
}

.nav-primary__item {
  position: relative
}

.nav-primary__link {
  display: block;
  padding: 8px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #2d2d2d;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color .27s cubic-bezier(0.34, 1.56, 0.64, 1), background-color .27s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.nav-primary__link:hover {
  border-color: #ffa64c66;
  background: #ffa64c0d;
  box-shadow: 2px 7px 14px -1px #ffa64c1a
}

.nav-primary__link:focus {
  outline: none;
  box-shadow: 0 0 0 3px #ffa64c4d
}

.nav-primary__link--active {
  border-color: #FFA64C;
  background: #ffa64c14
}

.nav-primary__item--dropdown {
  position: relative
}

.nav-primary__item--dropdown::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  height: 16px
}

.nav-primary__submenu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 280px;
  background: #FFF;
  border: 1px solid #003a8c1f;
  border-radius: 10px;
  box-shadow: 2px 12px 40px -1px #003a8c1a;
  list-style: none;
  margin: 0;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .24s cubic-bezier(0.34, 1.56, 0.64, 1), transform .24s cubic-bezier(0.34, 1.56, 0.64, 1), visibility .24s;
  z-index: 200
}

.nav-primary__item--dropdown:hover .nav-primary__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.nav-primary__submenu-item {
  margin: 0
}

.nav-primary__submenu-link {
  display: block;
  padding: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #2d2d2d;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color .2s cubic-bezier(0.34, 1.56, 0.64, 1), color .2s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.nav-primary__submenu-link:hover {
  background: #ffa64c14;
  color: #003A8C
}

.nav-primary__submenu-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px #ffa64c4d
}

@media (max-width: 768px) {
  .topbar__shell {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 24px
  }

  .brand {
    margin-left: 0;
    justify-content: center
  }

  .nav-primary {
    align-items: stretch
  }

  .nav-primary__list {
    flex-direction: column;
    gap: 8px
  }

  .nav-primary__link {
    text-align: center
  }

  .nav-primary__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 8px
  }
}

.basement {
  background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
  border-top: 1px solid #003a8c1f;
  padding: 48px 24px 24px;
  margin-top: 96px
}

.basement__shell {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start
}

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

.basement__logo-mount {
  width: 68px;
  height: 68px;
  padding: 8px;
  background: #FFF;
  border: 2px solid #003a8c1f;
  border-radius: 10px;
  box-shadow: 2px 7px 14px -1px #003a8c1a
}

.basement__logo-mount img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.basement__founding {
  font-size: 13px;
  line-height: 1.5;
  color: #5a5a5a;
  margin: 0
}

.basement__content-zone {
  display: flex;
  flex-direction: column;
  gap: 48px
}

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

.basement__contact-title {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #003A8C;
  margin: 0
}

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

.basement__contact-entry {
  display: flex;
  align-items: flex-start;
  gap: 16px
}

.basement__contact-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center
}

.basement__contact-icon svg {
  width: 20px;
  height: 20px;
  fill: #FFA64C
}

.basement__contact-text {
  font-size: 16px;
  line-height: 1.5;
  color: #2d2d2d;
  margin: 0
}

.basement__contact-link {
  color: #003A8C;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .24s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.basement__contact-link:hover {
  border-color: #FFA64C
}

.basement__contact-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px #ffa64c4d;
  border-radius: 10px
}

.basement__legal-zone {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #003a8c14
}

.basement__nav-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  margin: 0;
  padding: 0
}

.basement__nav-legal-link {
  font-size: 13px;
  line-height: 1.5;
  color: #5a5a5a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .24s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .24s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.basement__nav-legal-link:hover {
  color: #003A8C;
  border-color: #FFA64C
}

.basement__nav-legal-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px #ffa64c4d;
  border-radius: 10px
}

.basement__copyright {
  font-size: 13px;
  line-height: 1.5;
  color: #5a5a5a;
  margin: 0
}

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

  .basement__brand-zone {
    align-items: center
  }
}

@media (max-width: 768px) {
  .basement {
    padding: 48px 16px 24px
  }

  .basement__shell {
    gap: 48px
  }

  .basement__contact-list {
    gap: 24px
  }

  .basement__nav-legal {
    flex-direction: column;
    gap: 16px
  }
}

.consent-banner {
  position: fixed;
  top: 24px;
  right: 24px;
  max-width: 420px;
  background: #FFF;
  border: 1px solid #003a8c1f;
  border-radius: 10px;
  box-shadow: 2px 12px 40px -1px #003a8c1a;
  padding: 24px;
  z-index: 2000;
  opacity: 0;
  transform: translateX(48px);
  transition: opacity .32s cubic-bezier(0.34, 1.56, 0.64, 1), transform .32s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.consent-banner[data-visible="true"] {
  opacity: 1;
  transform: translateX(0)
}

.consent-banner__icon-mount {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffa64c1a 0%, #003a8c0d 100%);
  border-radius: 10px
}

.consent-banner__icon-mount svg {
  width: 28px;
  height: 28px;
  fill: #FFA64C
}

.consent-banner__text {
  font-size: 13px;
  line-height: 1.75;
  color: #2d2d2d;
  margin: 0 0 16px
}

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

.consent-banner__btn {
  flex: 1;
  padding: 8px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border: 1px solid;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color .24s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .24s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .27s cubic-bezier(0.68, -0.55, 0.27, 1.55), color .24s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.consent-banner__btn--accept {
  background: transparent;
  border-color: #FFA64C;
  color: #FFA64C
}

.consent-banner__btn--accept:hover {
  background: #FFA64C;
  color: #FFF;
  box-shadow: 2px 7px 14px -1px #ffa64c1a
}

.consent-banner__btn--accept:focus {
  outline: none;
  box-shadow: 0 0 0 3px #ffa64c4d
}

.consent-banner__btn--decline {
  background: transparent;
  border-color: #003A8C;
  color: #003A8C
}

.consent-banner__btn--decline:hover {
  background: #003A8C;
  color: #FFF;
  box-shadow: 2px 7px 14px -1px #003a8c1a
}

.consent-banner__btn--decline:focus {
  outline: none;
  box-shadow: 0 0 0 3px #003a8c4d
}

.consent-banner__expand-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #003A8C;
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: border-color .24s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.consent-banner__expand-trigger:hover {
  border-color: #FFA64C
}

.consent-banner__expand-trigger:focus {
  outline: none;
  box-shadow: 0 0 0 3px #ffa64c4d;
  border-radius: 10px
}

.consent-banner__preferences {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #003a8c14;
  display: none
}

.consent-banner__preferences--visible {
  display: block
}

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

.consent-banner__category-label {
  font-size: 13px;
  line-height: 1.5;
  color: #2d2d2d;
  margin: 0
}

.consent-banner__category-label--required {
  color: #5a5a5a
}

.consent-banner__toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background: #003a8c33;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color .24s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.consent-banner__toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #FFF;
  border-radius: 10px;
  transition: transform .24s cubic-bezier(0.34, 1.56, 0.64, 1)
}

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

.consent-banner__toggle-input:checked+.consent-banner__toggle {
  background: #FFA64C
}

.consent-banner__toggle-input:checked+.consent-banner__toggle::after {
  transform: translateX(24px)
}

.consent-banner__toggle-input:disabled+.consent-banner__toggle {
  opacity: .5;
  cursor: not-allowed
}

.consent-banner__toggle-input:focus+.consent-banner__toggle {
  box-shadow: 0 0 0 3px #ffa64c4d
}

.consent-banner__policy-link {
  font-size: 13px;
  line-height: 1.5;
  color: #5a5a5a;
  margin-top: 16px;
  display: block
}

.consent-banner__policy-link a {
  color: #003A8C;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .24s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.consent-banner__policy-link a:hover {
  border-color: #FFA64C
}

.consent-banner__policy-link a:focus {
  outline: none;
  box-shadow: 0 0 0 3px #ffa64c4d;
  border-radius: 10px
}

@media (max-width: 768px) {
  .consent-banner {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    border-radius: 10px 10px 0 0;
    transform: translateY(48px)
  }

  .consent-banner[data-visible="true"] {
    transform: translateY(0)
  }

  .consent-banner__actions {
    flex-direction: column
  }
}

::selection {
  background: #ffa64c1a;
  color: inherit
}

.doc-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px
}

.doc-wrapper h1 {
  font-size: 66px;
  line-height: 1.2;
  color: #003A8C;
  margin: 0 0 48px
}

.doc-wrapper h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #003A8C;
  margin: 48px 0 24px
}

.doc-wrapper h3 {
  font-size: 28px;
  line-height: 1.2;
  color: #003A8C;
  margin: 48px 0 16px
}

.doc-wrapper h4 {
  font-size: 16px;
  line-height: 1.5;
  color: #003A8C;
  margin: 24px 0 16px;
  font-weight: 600
}

.doc-wrapper h5 {
  font-size: 16px;
  line-height: 1.5;
  color: #003A8C;
  margin: 24px 0 8px;
  font-weight: 600
}

.doc-wrapper h6 {
  font-size: 13px;
  line-height: 1.5;
  color: #003A8C;
  margin: 16px 0 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em
}

.doc-wrapper p {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px;
  color: #1a1a1a
}

.doc-wrapper strong,
.doc-wrapper b {
  font-weight: 600;
  color: #003A8C
}

.doc-wrapper a {
  color: #FFA64C;
  text-decoration: none;
  border-bottom: 1px solid #ffa64c4d;
  transition: border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.doc-wrapper a:hover {
  border-bottom-color: #FFA64C
}

.doc-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 48px 0;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: 2px 7px 14px -1px #003a8c1a;
  border-radius: 10px;
  overflow: hidden
}

.doc-wrapper thead {
  background: #003A8C;
  color: #FFF
}

.doc-wrapper th {
  padding: 16px;
  text-align: left;
  font-weight: 600
}

.doc-wrapper td {
  padding: 16px;
  border-bottom: 1px solid #003a8c1a
}

.doc-wrapper tbody tr:last-child td {
  border-bottom: none
}

.doc-wrapper tbody tr:nth-child(even) {
  background: #003a8c05
}

.doc-wrapper tbody tr:hover {
  background: #ffa64c0d;
  transition: background .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.doc-wrapper hr {
  border: none;
  height: 1px;
  background: #003a8c26;
  margin: 48px 0
}

.doc-wrapper div {
  margin: 24px 0
}

@media (max-width: 768px) {
  .doc-wrapper {
    padding: 24px 16px
  }

  .doc-wrapper h1 {
    font-size: 38px;
    margin: 0 0 24px
  }

  .doc-wrapper h2 {
    font-size: 28px;
    margin: 24px 0 16px
  }

  .doc-wrapper h3 {
    font-size: 16px;
    margin: 24px 0 8px
  }

  .doc-wrapper table {
    font-size: 13px;
    margin: 24px 0
  }

  .doc-wrapper th,
  .doc-wrapper td {
    padding: 8px
  }

  .doc-wrapper hr {
    margin: 24px 0
  }
}

.anl {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0
}

.anl__intro {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #003A8C 0%, #FFA64C 100%);
  padding: 96px 24px;
  margin-bottom: 0
}

.anl__intro::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #FFA64C
}

.anl__intro-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.anl__intro-visual {
  width: 100%;
  max-width: 480px;
  margin-bottom: 48px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 12px 40px -1px #003a8c1a
}

.anl__intro-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block
}

.anl__intro-text {
  max-width: 680px
}

.anl__intro-heading {
  font-size: 66px;
  line-height: 1.2;
  color: #FFF;
  margin: 0 0 24px
}

.anl__intro-heading--accent {
  color: #FFA64C
}

.anl__intro-subheading {
  font-size: 28px;
  line-height: 1.5;
  color: #ffffffe6;
  margin: 0 0 48px
}

.anl__intro-link {
  display: inline-block;
  padding: 16px 48px;
  font-size: 16px;
  line-height: 1.5;
  color: #003A8C;
  background: #FFF;
  border: 2px solid #FFF;
  border-radius: 10px;
  text-decoration: none;
  transition: box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1), transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 2px 2px 4px -1px #ffa64c0f
}

.anl__intro-link:hover {
  box-shadow: 2px 12px 40px -1px #ffa64c1a;
  transform: translateY(-2px)
}

.anl__metrics {
  background: #FFF;
  padding: 96px 24px;
  position: relative
}

.anl__metrics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: #FFA64C
}

.anl__metrics-container {
  max-width: 1200px;
  margin: 0 auto
}

.anl__metrics-header {
  margin-bottom: 96px;
  text-align: center;
  opacity: 0;
  animation: anl-reveal-1 .24s cubic-bezier(0.34, 1.56, 0.64, 1) .1s forwards
}

@keyframes anl-reveal-1 {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

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

.anl__metrics-title {
  font-size: 38px;
  line-height: 1.2;
  color: #003A8C;
  margin: 0 0 16px;
  position: relative;
  display: inline-block
}

.anl__metrics-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: #FFA64C;
  animation: anl-underline .32s cubic-bezier(0.68, -0.55, 0.27, 1.55) .4s forwards
}

@keyframes anl-underline {
  to {
    width: 100%
  }
}

.anl__metrics-intro {
  font-size: 16px;
  line-height: 1.75;
  color: #1a1a1a;
  max-width: 720px;
  margin: 0 auto
}

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

.anl__metric-card {
  background: #FFF;
  border: 2px solid #003A8C;
  border-radius: 10px;
  padding: 48px 24px;
  text-align: center;
  position: relative;
  transition: transform .26s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .26s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 2px 2px 4px -1px #003a8c0f;
  opacity: 0
}

.anl__metric-card:nth-child(1) {
  animation: anl-reveal-2 .28s cubic-bezier(0.34, 1.56, 0.64, 1) .2s forwards
}

.anl__metric-card:nth-child(2) {
  animation: anl-reveal-2 .28s cubic-bezier(0.34, 1.56, 0.64, 1) .35s forwards
}

.anl__metric-card:nth-child(3) {
  animation: anl-reveal-2 .28s cubic-bezier(0.34, 1.56, 0.64, 1) .5s forwards
}

.anl__metric-card:nth-child(4) {
  animation: anl-reveal-2 .28s cubic-bezier(0.34, 1.56, 0.64, 1) .65s forwards
}

@keyframes anl-reveal-2 {
  from {
    opacity: 0;
    transform: translateY(48px)
  }

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

.anl__metric-card::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  background: #ffa64c26;
  border-radius: 10px;
  z-index: -1;
  transition: opacity .24s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  opacity: 0
}

.anl__metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 2px 12px 40px -1px #003a8c1a
}

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

.anl__metric-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #003A8C 0%, #FFA64C 100%);
  border-radius: 10px
}

.anl__metric-icon svg {
  width: 32px;
  height: 32px;
  fill: #FFF
}

.anl__metric-value {
  font-size: 38px;
  line-height: 1.2;
  color: #FFA64C;
  margin: 0 0 8px;
  font-weight: 700
}

.anl__metric-label {
  font-size: 16px;
  line-height: 1.5;
  color: #003A8C;
  margin: 0;
  font-weight: 600
}

.anl__insight {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 48px;
  box-shadow: 2px 7px 14px -1px #003a8c1a
}

.anl__insight-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start
}

.anl__insight-main {
  opacity: 0;
  animation: anl-reveal-3 .3s cubic-bezier(0.34, 1.56, 0.64, 1) .8s forwards
}

@keyframes anl-reveal-3 {
  from {
    opacity: 0;
    transform: translateY(64px)
  }

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

.anl__insight-heading {
  font-size: 28px;
  line-height: 1.2;
  color: #003A8C;
  margin: 0 0 24px
}

.anl__insight-text {
  font-size: 16px;
  line-height: 1.75;
  color: #2a2a2a;
  margin: 0 0 16px
}

.anl__insight-text:last-of-type {
  margin-bottom: 0
}

.anl__insight-sidebar {
  opacity: 0;
  animation: anl-reveal-4 .3s cubic-bezier(0.34, 1.56, 0.64, 1) .95s forwards
}

@keyframes anl-reveal-4 {
  from {
    opacity: 0;
    transform: translateY(80px)
  }

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

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

.anl__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #FFF;
  border: 1px solid #FFA64C;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #003A8C;
  transition: background .22s cubic-bezier(0.34, 1.56, 0.64, 1), color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.anl__tag:hover {
  background: #FFA64C;
  color: #FFF
}

@media (max-width: 1280px) {
  .anl__intro {
    padding: 48px 24px
  }

  .anl__intro-heading {
    font-size: 38px
  }

  .anl__intro-subheading {
    font-size: 16px
  }

  .anl__metrics {
    padding: 48px 24px
  }

  .anl__metrics-header {
    margin-bottom: 48px
  }

  .anl__metrics-title {
    font-size: 28px
  }

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

  .anl__insight {
    padding: 24px
  }
}

@media (max-width: 768px) {
  .anl__intro {
    padding: 48px 16px
  }

  .anl__intro-heading {
    font-size: 28px
  }

  .anl__intro-subheading {
    font-size: 16px
  }

  .anl__intro-visual {
    max-width: 100%;
    margin-bottom: 24px
  }

  .anl__intro-img {
    height: 240px
  }

  .anl__intro-link {
    padding: 16px 24px;
    width: 100%;
    text-align: center
  }

  .anl__metrics {
    padding: 48px 16px
  }

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

  .anl__metric-card {
    padding: 24px 16px
  }

  .anl__metric-value {
    font-size: 28px
  }

  .anl__insight {
    padding: 24px 16px
  }

  .anl__insight-heading {
    font-size: 16px
  }

  .anl__tags {
    flex-direction: row;
    flex-wrap: wrap
  }
}

.cntct {
  max-width: 1200px;
  margin: 0 auto;
  background: #FFF
}

.cntct__hero {
  display: flex;
  align-items: stretch;
  gap: 48px;
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #FFA64C 0%, #003A8C 100%)
}

.cntct__hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border: 3px solid #ffffff26;
  border-radius: 50%;
  pointer-events: none
}

.cntct__hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  width: 280px;
  height: 280px;
  background: url(/web_visuals/my_wide3.jpg) center/cover no-repeat;
  opacity: .08;
  transform: translateX(-50%);
  pointer-events: none
}

.cntct__img-zone {
  flex: 0 0 45%;
  position: relative;
  padding: 24px
}

.cntct__img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 0 100%);
  overflow: hidden;
  box-shadow: 2px 12px 40px -1px #ffa64c1a
}

.cntct__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: cntct-fade-in .8s cubic-bezier(0.34, 1.56, 0.64, 1) .3s forwards
}

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

.cntct__txt-zone {
  flex: 1;
  padding: 48px 24px 48px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.cntct__heading {
  font-size: 66px;
  line-height: 1.2;
  color: #FFF;
  margin: 0 0 24px
}

.cntct__heading-accent {
  color: #003A8C
}

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

.cntct__list-item {
  font-size: 16px;
  line-height: 1.5;
  color: #FFF;
  padding-left: 32px;
  position: relative
}

.cntct__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: #003A8C;
  border-radius: 50%
}

.cntct__list-item::after {
  content: '';
  position: absolute;
  left: 14px;
  top: 6px;
  width: 8px;
  height: 8px;
  background: #FFF;
  border-radius: 50%;
  opacity: .6
}

.cntct__form-section {
  padding: 96px 24px;
  background: #FFF;
  position: relative
}

.cntct__form-section::before {
  content: '∫';
  position: absolute;
  top: 96px;
  right: 48px;
  font-size: 280px;
  line-height: 1;
  color: #FFA64C;
  opacity: .05;
  pointer-events: none;
  z-index: 0
}

.cntct__form-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.cntct__form-title {
  font-size: 38px;
  line-height: 1.2;
  color: #003A8C;
  margin: 0 0 48px;
  position: relative;
  display: inline-block
}

.cntct__form-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFA64C 0%, #003A8C 100%);
  animation: cntct-underline .6s cubic-bezier(0.34, 1.56, 0.64, 1) .4s forwards
}

@keyframes cntct-underline {
  to {
    width: 100%
  }
}

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

.cntct__field-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.cntct__label {
  font-size: 16px;
  line-height: 1.5;
  color: #003A8C;
  font-weight: 600
}

.cntct__input-wrap {
  position: relative
}

.cntct__input-wrap::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #FFA64C;
  opacity: .4;
  border-radius: 50%;
  pointer-events: none
}

.cntct__input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  font-size: 16px;
  line-height: 1.5;
  color: #1a1a1a;
  border: 2px solid #d4d4d4;
  border-radius: 10px;
  background: #FFF;
  transition: border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cntct__input::placeholder {
  color: #737373
}

.cntct__input:focus {
  outline: none;
  border-color: #FFA64C;
  box-shadow: 2px 7px 14px -1px #ffa64c1a
}

.cntct__select {
  width: 100%;
  padding: 16px 48px;
  font-size: 16px;
  line-height: 1.5;
  color: #1a1a1a;
  border: 2px solid #d4d4d4;
  border-radius: 10px;
  background: #FFF;
  appearance: none;
  cursor: pointer;
  transition: border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  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='%23FFA64C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center
}

.cntct__select:focus {
  outline: none;
  border-color: #FFA64C;
  box-shadow: 2px 7px 14px -1px #ffa64c1a
}

.cntct__checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 10px
}

.cntct__checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #FFA64C
}

.cntct__checkbox-label {
  font-size: 13px;
  line-height: 1.5;
  color: #404040
}

.cntct__checkbox-label a {
  color: #003A8C;
  text-decoration: none;
  border-bottom: 1px solid #003A8C;
  transition: border-color .2s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cntct__checkbox-label a:hover {
  border-color: #FFA64C
}

.cntct__submit {
  padding: 16px 48px;
  font-size: 16px;
  line-height: 1.5;
  color: #003A8C;
  background: transparent;
  border: 2px solid #003A8C;
  border-radius: 10px;
  cursor: pointer;
  align-self: flex-start;
  transition: background .3s cubic-bezier(0.34, 1.56, 0.64, 1), color .3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 2px 2px 4px -1px #003a8c0f
}

.cntct__submit:hover {
  background: #003A8C;
  color: #FFF;
  box-shadow: 2px 12px 40px -1px #003a8c1a
}

.cntct__submit:active {
  transform: scale(0.98)
}

.cntct__info-section {
  padding: 96px 24px;
  background: #f8f8f8;
  position: relative;
  overflow: hidden
}

.cntct__info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #FFA64C 0%, #003A8C 100%)
}

.cntct__info-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/web_visuals/091125new-draft4.jpg) center/cover no-repeat;
  opacity: .03;
  pointer-events: none
}

.cntct__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1
}

.cntct__card {
  background: #FFF;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 2px 7px 14px -1px #003a8c1a;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: cntct-scale-up .5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards
}

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

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

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

.cntct__card:nth-child(4) {
  animation-delay: .4s
}

@keyframes cntct-scale-up {
  from {
    opacity: 0;
    transform: scale(0.92)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

.cntct__card:hover {
  transform: translateY(-4px);
  box-shadow: 2px 12px 40px -1px #003a8c1a
}

.cntct__card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #FFA64C 0%, #003A8C 100%);
  border-radius: 10px
}

.cntct__card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #FFF;
  stroke-width: 2;
  fill: none
}

.cntct__card-title {
  font-size: 16px;
  line-height: 1.5;
  color: #003A8C;
  margin: 0 0 8px;
  font-weight: 600
}

.cntct__card-text {
  font-size: 16px;
  line-height: 1.75;
  color: #404040;
  margin: 0
}

.cntct__card-link {
  color: #FFA64C;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cntct__card-link:hover {
  border-bottom-color: #FFA64C
}

.cntct__detail-float {
  position: absolute;
  top: 48px;
  right: 48px;
  background: #FFF;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 2px 12px 40px -1px #ffa64c1a;
  border: 2px solid #FFA64C;
  z-index: 2;
  min-width: 280px
}

.cntct__detail-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px
}

.cntct__status-dot {
  width: 12px;
  height: 12px;
  background: #10b981;
  border-radius: 50%;
  animation: cntct-pulse 2s cubic-bezier(0.34, 1.56, 0.64, 1) infinite
}

@keyframes cntct-pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .5
  }
}

.cntct__status-text {
  font-size: 13px;
  line-height: 1.5;
  color: #10b981;
  font-weight: 600
}

.cntct__detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5
}

.cntct__detail-row:last-child {
  border-bottom: none
}

.cntct__detail-key {
  font-size: 13px;
  line-height: 1.5;
  color: #737373
}

.cntct__detail-value {
  font-size: 13px;
  line-height: 1.5;
  color: #003A8C;
  font-weight: 600
}

@media (max-width: 1280px) {
  .cntct__detail-float {
    position: static;
    margin-top: 24px
  }
}

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

  .cntct__img-zone {
    flex: 1;
    padding: 0
  }

  .cntct__txt-zone {
    padding: 24px 0
  }

  .cntct__heading {
    font-size: 38px
  }

  .cntct__form-section {
    padding: 48px 16px
  }

  .cntct__form-title {
    font-size: 28px
  }

  .cntct__info-section {
    padding: 48px 16px
  }

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

  .cntct__detail-float {
    min-width: auto
  }
}

.abt {
  max-width: 1200px;
  margin: 0 auto;
  background: #FFF
}

.abt__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 96px 24px;
  position: relative;
  overflow: hidden
}

.abt__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, #003a8c14 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1
}

.abt__hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
  width: 100%;
  height: 120%;
  background: linear-gradient(90deg, transparent 0%, transparent 49%, #FFA64C 49%, #FFA64C 51%, transparent 51%, transparent 100%);
  pointer-events: none;
  z-index: 2
}

.abt__hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.abt__hero-visual {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center
}

.abt__hero-img {
  width: 100%;
  height: auto;
  max-width: 480px;
  filter: blur(0px) contrast(1.05);
  -webkit-mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%);
  box-shadow: 2px 12px 40px -1px #003a8c1a;
  border-radius: 10px
}

.abt__hero-title {
  font-size: 66px;
  line-height: 1.2;
  margin: 0 0 24px;
  color: #1a1a1a;
  transition: text-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt__hero-title:hover {
  text-shadow: 3px 3px 8px #ffa64c59
}

.abt__hero-title--accent {
  color: #FFA64C
}

.abt__hero-desc {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 24px;
  color: #4a4a4a
}

.abt__hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: 16px;
  color: #003A8C;
  border: 2px solid #003A8C;
  border-radius: 10px;
  text-decoration: none;
  transition: box-shadow .25s cubic-bezier(0.68, -0.55, 0.27, 1.55), background-color .25s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  align-self: flex-start;
  box-shadow: 2px 2px 4px -1px #003a8c0f
}

.abt__hero-link:hover {
  background-color: #003A8C;
  color: #FFF;
  box-shadow: 2px 12px 40px -1px #003a8c1a
}

.abt__punct {
  position: absolute;
  top: 24px;
  right: 48px;
  font-size: 280px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px #ffa64c26;
  pointer-events: none;
  z-index: 1
}

.abt__story {
  padding: 96px 24px;
  position: relative;
  background: linear-gradient(90deg, #FFA64C 0%, #003A8C 100%);
  overflow: hidden
}

.abt__story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/web_visuals/main-my-plans5.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: .25;
  z-index: 1
}

.abt__story::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, #ffffff4d 0px, #ffffff4d 2px, transparent 2px, transparent 8px);
  animation: abt-scanline 8s linear infinite;
  z-index: 2
}

@keyframes abt-scanline {
  0% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(800px)
  }
}

.abt__story-inner {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto
}

.abt__story-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: start
}

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

.abt__story-portrait {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  box-shadow: 2px 12px 40px -1px #003a8c1a
}

.abt__story-meta {
  background: #fffffff2;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 2px 7px 14px -1px #003a8c1a
}

.abt__story-name {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #003A8C
}

.abt__story-role {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: #6a6a6a
}

.abt__story-content {
  background: #fffffff2;
  padding: 48px;
  border-radius: 10px;
  box-shadow: 2px 12px 40px -1px #003a8c1a
}

.abt__story-head {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 24px;
  color: #003A8C;
  position: relative;
  display: inline-block
}

.abt__story-head::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: #FFA64C;
  transition: width .32s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt__story-head:hover::after {
  width: 100%
}

.abt__story-text {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 24px;
  color: #2a2a2a
}

.abt__story-text:last-child {
  margin-bottom: 0
}

.abt__divider {
  width: 100%;
  height: 80px;
  position: relative;
  overflow: hidden
}

.abt__divider-svg {
  position: absolute;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 60px solid #FFA64C
}

.abt__approach {
  padding: 96px 24px;
  background: #f5f5f5 !important
}

.abt__approach-inner {
  max-width: 1000px;
  margin: 0 auto
}

.abt__approach-head {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 48px;
  text-align: center;
  color: #1a1a1a
}

.abt__approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative
}

.abt__approach-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, #FFA64C 0%, #003A8C 100%);
  z-index: 1
}

.abt__approach-step {
  position: relative;
  z-index: 2;
  background: #FFF;
  padding: 24px 16px;
  border-radius: 10px;
  box-shadow: 2px 7px 14px -1px #003a8c1a;
  text-align: center;
  transition: transform .27s cubic-bezier(0.68, -0.55, 0.27, 1.55), box-shadow .27s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.abt__approach-step:hover {
  transform: translateY(-8px);
  box-shadow: 2px 12px 40px -1px #003a8c1a
}

.abt__approach-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #FFA64C 0%, #003A8C 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: 700;
  color: #FFF;
  box-shadow: 2px 7px 14px -1px #ffa64c1a
}

.abt__approach-label {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: #2a2a2a;
  font-weight: 600
}

.abt__values {
  padding: 96px 24px;
  background: #FFF
}

.abt__values-inner {
  max-width: 1000px;
  margin: 0 auto
}

.abt__values-head {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 48px;
  color: #1a1a1a
}

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

.abt__values-card {
  background: #FFF;
  padding: 24px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  transition: border-color .24s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .24s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt__values-card:hover {
  border-color: #FFA64C;
  box-shadow: 2px 12px 40px -1px #ffa64c1a
}

.abt__values-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(90deg, #FFA64C 0%, #003A8C 100%);
  color: #FFF;
  font-size: 13px;
  line-height: 1.2;
  border-radius: 10px;
  margin: 0 0 16px;
  font-weight: 600
}

.abt__values-text {
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  color: #4a4a4a
}

.abt__team {
  padding: 96px 24px;
  background: #f9f9f9
}

.abt__team-inner {
  max-width: 1000px;
  margin: 0 auto
}

.abt__team-head {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 48px;
  text-align: center;
  color: #1a1a1a
}

.abt__team-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center
}

.abt__team-portrait {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  box-shadow: 2px 12px 40px -1px #003a8c1a
}

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

.abt__team-member {
  background: #FFF;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 2px 7px 14px -1px #003a8c1a
}

.abt__team-title {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #003A8C
}

.abt__team-position {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 16px;
  color: #6a6a6a
}

.abt__team-desc {
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  color: #4a4a4a
}

.abt__gallery {
  padding: 96px 24px;
  background: #FFF
}

.abt__gallery-inner {
  max-width: 1000px;
  margin: 0 auto
}

.abt__gallery-head {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 48px;
  color: #1a1a1a
}

.abt__gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.abt__gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 2px 7px 14px -1px #003a8c1a
}

.abt__gallery-item--tall {
  grid-row: span 2
}

.abt__gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%)
}

.abt__gallery-item:hover .abt__gallery-img {
  transform: scale(1.08)
}

@media (max-width: 1280px) {
  .abt__hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 24px
  }

  .abt__hero-title {
    font-size: 38px
  }

  .abt__punct {
    font-size: 180px;
    right: 24px
  }

  .abt__story-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .abt__story-content {
    padding: 24px
  }

  .abt__approach-steps {
    grid-template-columns: repeat(2, 1fr)
  }

  .abt__approach-steps::before {
    display: none
  }

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

  .abt__team-layout {
    grid-template-columns: 1fr
  }

  .abt__gallery-mosaic {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 768px) {
  .abt__hero {
    padding: 48px 16px
  }

  .abt__hero-title {
    font-size: 28px
  }

  .abt__story {
    padding: 48px 16px
  }

  .abt__story-head {
    font-size: 28px
  }

  .abt__approach {
    padding: 48px 16px
  }

  .abt__approach-head {
    font-size: 28px
  }

  .abt__approach-steps {
    grid-template-columns: 1fr
  }

  .abt__values {
    padding: 48px 16px
  }

  .abt__values-head {
    font-size: 28px
  }

  .abt__team {
    padding: 48px 16px
  }

  .abt__team-head {
    font-size: 28px
  }

  .abt__team-title {
    font-size: 28px
  }

  .abt__gallery {
    padding: 48px 16px
  }

  .abt__gallery-head {
    font-size: 28px
  }

  .abt__gallery-mosaic {
    grid-template-columns: 1fr
  }

  .abt__gallery-item--tall {
    grid-row: span 1
  }

  .abt__punct {
    font-size: 120px;
    top: 16px;
    right: 16px
  }
}

.pr {
  max-width: 1200px;
  margin: 0 auto
}

.pr__hero {
  position: relative;
  overflow: hidden;
  padding: 96px 24px;
  background: linear-gradient(180deg, #FFA64C 0%, #ffa64c00 100%)
}

.pr__hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none
}

.pr__hero-shape {
  position: absolute;
  background: #003a8c14;
  border-radius: 10px
}

.pr__hero-shape--1 {
  width: 180px;
  height: 180px;
  top: 48px;
  left: 8%;
  transform: rotate(25deg)
}

.pr__hero-shape--2 {
  width: 120px;
  height: 120px;
  bottom: 96px;
  right: 12%;
  transform: rotate(-15deg)
}

.pr__hero-shape--3 {
  width: 90px;
  height: 90px;
  top: 60%;
  left: 85%;
  transform: rotate(45deg)
}

.pr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center
}

.pr__hero-img {
  width: 100%;
  max-width: 720px;
  height: 380px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 48px;
  box-shadow: 2px 12px 40px -1px #ffa64c1a;
  filter: brightness(0.75) contrast(1.1) saturate(0.85);
  position: relative
}

.pr__hero-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, #00000080 100%);
  pointer-events: none
}

.pr__hero-title {
  font-size: 66px;
  line-height: 1.2;
  margin: 0 0 24px;
  color: #1a1a2e
}

.pr__hero-title span {
  color: #003A8C
}

.pr__hero-meta {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 24px
}

.pr__hero-meta-item {
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a5e
}

.pr__hero-meta-item strong {
  color: #1a1a2e;
  font-weight: 600
}

.pr__announce {
  padding: 96px 24px;
  background: #fff
}

.pr__announce-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start
}

.pr__announce-aside {
  position: relative
}

.pr__announce-label {
  font-size: 13px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #FFA64C;
  font-weight: 600;
  margin: 0 0 16px
}

.pr__announce-figures {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px
}

.pr__announce-figure {
  display: flex;
  align-items: baseline;
  gap: 16px
}

.pr__announce-figure-before {
  font-size: 38px;
  line-height: 1.2;
  color: #c4c4d4;
  text-decoration: line-through;
  font-weight: 300
}

.pr__announce-figure-after {
  font-size: 66px;
  line-height: 1.2;
  color: #003A8C;
  font-weight: 700
}

.pr__announce-figure-label {
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a5e;
  margin-top: 8px
}

.pr__announce-main {
  position: relative
}

.pr__announce-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 24px;
  position: relative;
  display: inline-block
}

.pr__announce-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFA64C 0%, #003A8C 100%);
  animation: pr-underline .35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: .2s
}

@keyframes pr-underline {
  to {
    width: 100%
  }
}

.pr__announce-text {
  font-size: 16px;
  line-height: 1.75;
  color: #4a4a5e;
  margin: 0 0 24px
}

.pr__announce-text:last-child {
  margin-bottom: 0
}

.pr__timeline {
  padding: 96px 24px;
  background: #f7f7fa;
  position: relative
}

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

.pr__timeline-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1a1a2e;
  text-align: center;
  margin: 0 0 48px
}

.pr__timeline-steps {
  max-width: 700px;
  margin: 0 auto;
  position: relative
}

.pr__timeline-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, #FFA64C 0%, #003A8C 100%)
}

.pr__timeline-step {
  position: relative;
  padding-left: 64px;
  margin-bottom: 48px
}

.pr__timeline-step:last-child {
  margin-bottom: 0
}

.pr__timeline-step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #FFA64C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: #003A8C;
  font-weight: 700;
  box-shadow: 2px 7px 14px -1px #003a8c1a;
  z-index: 2
}

.pr__timeline-step-title {
  font-size: 28px;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 8px
}

.pr__timeline-step-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #4a4a5e;
  margin: 0
}

.pr__details {
  padding: 96px 24px;
  background: #fff;
  position: relative;
  overflow: hidden
}

.pr__details-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/web_visuals/main-features13.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.25) contrast(1.2);
  z-index: 1
}

.pr__details-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 20%, #000000d9 100%)
}

.pr__details-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto
}

.pr__details-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 48px;
  text-align: center
}

.pr__details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.pr__details-card {
  background: #fffffff2;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 2px 7px 14px -1px #ffa64c1a;
  border: 2px solid transparent;
  transition: border-color .28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1), transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.pr__details-card:hover {
  border-color: #FFA64C;
  box-shadow: 2px 12px 40px -1px #ffa64c1a;
  transform: translateY(-4px)
}

.pr__details-card--tall {
  grid-row: span 2
}

.pr__details-card-title {
  font-size: 28px;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 16px
}

.pr__details-card-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: #FFA64C
}

.pr__details-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 52px;
  width: 48px;
  height: 3px;
  background: #003A8C
}

.pr__details-card-text {
  font-size: 16px;
  line-height: 1.75;
  color: #4a4a5e;
  margin: 0 0 16px
}

.pr__details-card-text:last-child {
  margin-bottom: 0
}

.pr__details-card-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.pr__details-card-list-item {
  background: #f7f7fa;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #003A8C;
  font-weight: 600;
  border: 1px solid #e0e0ea
}

.pr__details-cta {
  text-align: center;
  margin-top: 48px
}

.pr__details-btn {
  display: inline-block;
  padding: 16px 48px;
  background: transparent;
  border: 2px solid #FFA64C;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background .24s cubic-bezier(0.68, -0.55, 0.27, 1.55), color .24s cubic-bezier(0.68, -0.55, 0.27, 1.55), box-shadow .24s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform .24s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: 2px 2px 4px -1px #ffa64c0f
}

.pr__details-btn:hover {
  background: #FFA64C;
  color: #fff;
  box-shadow: 2px 12px 40px -1px #ffa64c1a;
  transform: translateY(-2px)
}

.pr__details-btn:active {
  transform: translateY(0)
}

@media (max-width: 1280px) {
  .pr__hero {
    padding: 48px 24px
  }

  .pr__hero-title {
    font-size: 38px
  }

  .pr__hero-img {
    height: 320px
  }

  .pr__announce-wrap {
    gap: 24px
  }

  .pr__announce-figure-after {
    font-size: 38px
  }

  .pr__announce-figure-before {
    font-size: 28px
  }

  .pr__details-grid {
    gap: 16px
  }

  .pr__details-card {
    padding: 16px
  }
}

@media (max-width: 768px) {
  .pr__hero {
    padding: 48px 16px
  }

  .pr__hero-title {
    font-size: 28px
  }

  .pr__hero-img {
    height: 240px;
    margin-bottom: 24px
  }

  .pr__hero-meta {
    gap: 24px;
    flex-direction: column
  }

  .pr__announce {
    padding: 48px 16px
  }

  .pr__announce-wrap {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .pr__announce-heading {
    font-size: 28px
  }

  .pr__announce-figure {
    gap: 8px
  }

  .pr__announce-figure-after {
    font-size: 28px
  }

  .pr__announce-figure-before {
    font-size: 16px
  }

  .pr__timeline {
    padding: 48px 16px
  }

  .pr__timeline-heading {
    font-size: 28px
  }

  .pr__timeline-step {
    padding-left: 56px;
    margin-bottom: 24px
  }

  .pr__timeline-step-title {
    font-size: 16px
  }

  .pr__timeline-step-desc {
    font-size: 13px
  }

  .pr__details {
    padding: 48px 16px
  }

  .pr__details-heading {
    font-size: 28px;
    margin-bottom: 24px
  }

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

  .pr__details-card--tall {
    grid-row: span 1
  }

  .pr__details-card-title {
    font-size: 16px
  }

  .pr__details-cta {
    margin-top: 24px
  }

  .pr__details-btn {
    padding: 16px 24px;
    font-size: 13px
  }
}

.pr__reveal-word {
  display: inline-block;
  opacity: 0;
  animation: pr-word-reveal .32s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

.pr__reveal-word:nth-child(1) {
  animation-delay: .05s
}

.pr__reveal-word:nth-child(2) {
  animation-delay: .1s
}

.pr__reveal-word:nth-child(3) {
  animation-delay: .15s
}

.pr__reveal-word:nth-child(4) {
  animation-delay: .2s
}

.pr__reveal-word:nth-child(5) {
  animation-delay: .25s
}

.pr__reveal-word:nth-child(6) {
  animation-delay: .3s
}

.pr__reveal-word:nth-child(7) {
  animation-delay: .35s
}

.pr__reveal-word:nth-child(8) {
  animation-delay: .4s
}

.pr__reveal-word:nth-child(9) {
  animation-delay: .45s
}

.pr__reveal-word:nth-child(10) {
  animation-delay: .5s
}

@keyframes pr-word-reveal {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

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

.entry {
  background: #FFF;
  color: #1a1a2e;
  overflow-x: clip
}

.entry__title-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative
}

.entry__title-content {
  flex: 1;
  z-index: 2
}

.entry__title-visual {
  flex: 0 0 480px;
  position: relative
}

.entry__title-visual::before,
.entry__title-visual::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #FFA64C;
  z-index: 3
}

.entry__title-visual::before {
  top: -8px;
  left: -8px;
  border-right: none;
  border-bottom: none
}

.entry__title-visual::after {
  bottom: -8px;
  right: -8px;
  border-left: none;
  border-top: none
}

.entry__title-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  opacity: .75;
  display: block
}

.entry__title-h1 {
  font-size: 66px;
  line-height: 1.2;
  margin: 0 0 24px;
  font-weight: 700
}

.entry__title-h1 .accent {
  color: #FFA64C
}

.entry__title-desc {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: #4a4a5e
}

.entry__support {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
  position: relative;
  background: linear-gradient(180deg, #ffa64c14 0%, #FFF 100%)
}

.entry__support::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 120px;
  background: radial-gradient(ellipse at 50% 0%, transparent 0%, transparent 48%, #FFF 48.5%, #FFF 51.5%, transparent 52%, transparent 100%), radial-gradient(ellipse at 50% 0%, transparent 0%, transparent 45%, #FFF 45.5%, #FFF 48.5%, transparent 49%, transparent 100%);
  pointer-events: none
}

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

.entry__support-h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 48px;
  font-weight: 700;
  text-align: center;
  position: relative
}

.entry__support-h2::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -16px;
  width: 0;
  height: 3px;
  background: #FFA64C;
  animation: entry-line-draw .8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: .2s
}

@keyframes entry-line-draw {
  to {
    width: 120px
  }
}

.entry__support-card {
  background: #FFF;
  padding: 24px;
  border: 1px solid #003a8c1a;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden
}

.entry__support-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #FFA64C 0%, #003A8C 100%);
  transition: height .3s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.entry__support-card:hover {
  transform: translateY(-4px);
  box-shadow: 2px 12px 40px -1px #003a8c1a
}

.entry__support-card:hover::before {
  height: 100%
}

.entry__support-card-h3 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 600;
  color: #003A8C
}

.entry__support-card-text {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: #4a4a5e
}

.entry__story {
  background: #FFF;
  padding: 96px 24px;
  position: relative;
  overflow: hidden
}

.entry__story::before {
  content: '';
  position: absolute;
  top: 48px;
  right: 96px;
  width: 12px;
  height: 12px;
  background: #FFA64C;
  border-radius: 50%;
  opacity: .4
}

.entry__story::after {
  content: '';
  position: absolute;
  top: 120px;
  right: 140px;
  width: 8px;
  height: 8px;
  background: #003A8C;
  border-radius: 50%;
  opacity: .3
}

.entry__story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px
}

.entry__story-content {
  flex: 1
}

.entry__story-h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 24px;
  font-weight: 700
}

.entry__story-quote {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 24px;
  padding: 24px;
  background: #ffa64c0d;
  border-radius: 10px;
  position: relative;
  font-style: italic
}

.entry__story-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #FFA64C 0%, #003A8C 100%);
  border-radius: 10px 0 0 10px
}

.entry__story-person {
  display: flex;
  align-items: center;
  gap: 16px
}

.entry__story-portrait {
  width: 64px;
  height: 96px;
  object-fit: cover;
  object-position: top;
  display: block
}

.entry__story-person-info {
  flex: 1
}

.entry__story-person-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #003A8C
}

.entry__story-person-role {
  font-size: 13px;
  margin: 0;
  color: #6a6a7e
}

.entry__story-visual {
  flex: 0 0 520px
}

.entry__story-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  filter: saturate(0.85) brightness(1.05)
}

.entry__proof {
  background: #f7f7f9;
  padding: 96px 24px
}

.entry__proof-inner {
  max-width: 1200px;
  margin: 0 auto
}

.entry__proof-h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 48px;
  font-weight: 700;
  text-align: center
}

.entry__proof-h2::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #FFA64C;
  margin-right: 16px;
  vertical-align: middle;
  transform: rotate(45deg)
}

.entry__proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.entry__proof-item {
  background: #FFF;
  padding: 24px;
  border-radius: 10px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: entry-cascade-appear .5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards
}

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

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

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

.entry__proof-item:nth-child(4) {
  animation-delay: .4s
}

@keyframes entry-cascade-appear {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

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

.entry__proof-item:hover {
  transform: scale(1.02);
  box-shadow: 2px 7px 14px -1px #ffa64c1a
}

.entry__proof-img-wrap {
  flex: 0 0 120px
}

.entry__proof-img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  display: block
}

.entry__proof-text {
  flex: 1
}

.entry__proof-h3 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 8px;
  font-weight: 600
}

.entry__proof-desc {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: #4a4a5e
}

.entry__method {
  padding: 96px 24px;
  background: #FFF;
  position: relative
}

.entry__method-inner {
  max-width: 1200px;
  margin: 0 auto
}

.entry__method-h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 48px;
  font-weight: 700
}

.entry__method-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px
}

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

.entry__method-block {
  background: linear-gradient(135deg, #ffa64c0d 0%, #003a8c0d 100%);
  padding: 24px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: transform .32s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.entry__method-block:hover {
  transform: scale(1.05)
}

.entry__method-block:hover .entry__method-block-sibling {
  transform: scale(0.97)
}

.entry__method-block-h4 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 600;
  color: #003A8C
}

.entry__method-block-text {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: #4a4a5e
}

.entry__method-img-wrap {
  border-radius: 10px;
  overflow: hidden
}

.entry__method-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.entry__method-img-wrap:hover .entry__method-img {
  transform: scale(1.08)
}

.entry__lasting {
  background: linear-gradient(180deg, #003a8c0f 0%, #FFF 100%);
  padding: 96px 24px;
  position: relative
}

.entry__lasting::before {
  content: '';
  position: absolute;
  bottom: 96px;
  left: 48px;
  width: 16px;
  height: 16px;
  background: #FFA64C;
  border-radius: 50%;
  opacity: .3
}

.entry__lasting::after {
  content: '';
  position: absolute;
  bottom: 140px;
  left: 80px;
  width: 10px;
  height: 10px;
  background: #003A8C;
  border-radius: 50%;
  opacity: .25
}

.entry__lasting-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center
}

.entry__lasting-visual {
  flex: 0 0 440px
}

.entry__lasting-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
  display: block
}

.entry__lasting-content {
  flex: 1
}

.entry__lasting-h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 24px;
  font-weight: 700
}

.entry__lasting-text {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 24px;
  color: #4a4a5e
}

.entry__lasting-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.entry__lasting-badge {
  display: inline-block;
  padding: 8px 16px;
  background: #FFF;
  border: 1px solid #ffa64c4d;
  border-radius: 10px;
  font-size: 13px;
  color: #003A8C;
  font-weight: 500;
  transition: all .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.entry__lasting-badge:hover {
  background: #FFA64C;
  color: #FFF;
  border-color: #FFA64C;
  box-shadow: 2px 7px 14px -1px #ffa64c1a
}

@media (max-width: 1280px) {
  .entry__title-wrap {
    padding: 48px 24px 24px;
    gap: 24px
  }

  .entry__title-visual {
    flex: 0 0 400px
  }

  .entry__title-img {
    height: 440px
  }

  .entry__title-h1 {
    font-size: 38px
  }

  .entry__support-inner {
    grid-template-columns: 1fr
  }

  .entry__story-inner {
    gap: 24px
  }

  .entry__story-visual {
    flex: 0 0 400px
  }

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

  .entry__method-layout {
    grid-template-columns: 1fr 1fr
  }

  .entry__lasting-inner {
    gap: 24px
  }

  .entry__lasting-visual {
    flex: 0 0 360px
  }
}

@media (max-width: 768px) {
  .entry__title-wrap {
    flex-direction: column;
    padding: 48px 16px 24px
  }

  .entry__title-visual {
    flex: 0 0 auto;
    width: 100%
  }

  .entry__title-img {
    height: 320px
  }

  .entry__title-h1 {
    font-size: 28px
  }

  .entry__support {
    padding: 48px 16px
  }

  .entry__support-h2 {
    font-size: 28px;
    margin-bottom: 24px
  }

  .entry__story {
    padding: 48px 16px
  }

  .entry__story-inner {
    flex-direction: column
  }

  .entry__story-visual {
    flex: 0 0 auto;
    width: 100%
  }

  .entry__story-h2 {
    font-size: 28px
  }

  .entry__proof {
    padding: 48px 16px
  }

  .entry__proof-h2 {
    font-size: 28px;
    margin-bottom: 24px
  }

  .entry__proof-item {
    flex-direction: column
  }

  .entry__proof-img-wrap {
    flex: 0 0 auto;
    width: 100%
  }

  .entry__proof-img {
    width: 100%;
    height: 200px
  }

  .entry__method {
    padding: 48px 16px
  }

  .entry__method-h2 {
    font-size: 28px;
    margin-bottom: 24px
  }

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

  .entry__lasting {
    padding: 48px 16px
  }

  .entry__lasting-inner {
    flex-direction: column
  }

  .entry__lasting-visual {
    flex: 0 0 auto;
    width: 100%
  }

  .entry__lasting-h2 {
    font-size: 28px
  }
}

.success-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 16px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center
}

.success-page .confirm {
  text-align: center;
  max-width: 600px
}

.success-page .confirm__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border: 3px solid #FFA64C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: iconAppear .32s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

@keyframes iconAppear {
  0% {
    transform: scale(0);
    opacity: 0
  }

  100% {
    transform: scale(1);
    opacity: 1
  }
}

.success-page .confirm__icon svg {
  width: 40px;
  height: 40px;
  stroke: #FFA64C;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.success-page .confirm__icon svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: checkDraw .28s cubic-bezier(0.68, -0.55, 0.27, 1.55) .2s forwards
}

@keyframes checkDraw {
  to {
    stroke-dashoffset: 0
  }
}

.success-page .confirm__title {
  font-size: 38px;
  line-height: 1.2;
  color: #003A8C;
  margin: 0 0 16px;
  font-weight: 600
}

.success-page .confirm__text {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin: 0 0 48px
}

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

.success-page .btn {
  padding: 16px 48px;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 10px;
  display: inline-block;
  transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer
}

.success-page .btn--primary {
  background: linear-gradient(90deg, #FFA64C 0%, #003A8C 100%);
  color: #FFF;
  border: none
}

.success-page .btn--primary:hover {
  box-shadow: 2px 12px 40px -1px #ffa64c1a;
  transform: translateY(-2px)
}

.success-page .btn--secondary {
  background: transparent;
  color: #003A8C;
  border: 2px solid #003A8C
}

.success-page .btn--secondary:hover {
  box-shadow: 2px 7px 14px -1px #003a8c1a;
  transform: translateY(-2px)
}

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

  .success-page .confirm__title {
    font-size: 28px
  }

  .success-page .confirm__text {
    font-size: 13px;
    margin: 0 0 24px
  }

  .success-page .confirm__actions {
    flex-direction: column;
    gap: 8px
  }

  .success-page .btn {
    padding: 16px 24px;
    width: 100%
  }
}