/* =================================== Global Base =================================== */
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #222;
}

button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: "SF Pro-Regular";
  src: url("../assets/fonts/SFProDisplay-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "SF Pro-Medium";
  src: url("../assets/fonts/SFProDisplay-Medium.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "SF Pro-Semibold";
  src: url("../assets/fonts/SFProDisplay-Semibold.ttf") format("truetype");
  font-display: swap;
}

:root {
  --01-global-spacing-none: 0px;
  --01-global-spacing-4px: 4px;
  --01-global-spacing-8px: 8px;
  --01-global-spacing-12px: 12px;
  --01-global-spacing-16px: 16px;
  --01-global-spacing-24px: 24px;
  --01-global-spacing-32px: 32px;
  --01-global-spacing-48px: 48px;
  --01-global-spacing-64px: 64px;
  --01-global-spacing-96px: 96px;
  --01-global-spacing-128px: 128px;
}

/* =================================== Layout & Utilities =================================== */
.page {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  align-items: stretch;
  position: relative;
  background-color: #fafafa;
  gap: var(--01-global-spacing-none);
  min-height: 100vh;
}

.page .site-header {
  padding: var(--01-global-spacing-12px) 0;
  align-self: stretch;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  gap: var(--01-global-spacing-none);
}

.page .site-header--sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fafafa;
}

.page .site-header__inner {
  align-items: center;
  justify-content: space-between;
  display: flex;
  max-width: 1320px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  margin: 0 auto;
}

.page .site-header__inner .site-header__logo-link {
  height: 56px;
}

.page .site-header__logo {
  position: relative;
  width: 116.31px;
  height: 56px;
}

.page .site-header__nav {
  display: inline-flex;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
  gap: var(--01-global-spacing-none);
}

.page .site-header__nav-list {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  gap: var(--01-global-spacing-none);
}

.page .site-header__nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
  gap: var(--01-global-spacing-none);
}

.page .site-header__nav-link {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #09090b;
  font-size: 14px;
  padding: 8px 12px;
  letter-spacing: 0;
  white-space: nowrap;
}

.page .site-header__nav-item:hover .site-header__nav-link {
  color: #fff;
  background-color: #0f3f66;
  border-radius: 4px;
  padding: 8px 12px;
  margin: 0;
}

.page .site-header__nav-item.is-active .site-header__nav-link {
  color: #fff;
  background-color: #0f3f66;
  border-radius: 4px;
  padding: 8px 12px;
  margin: 0;
}

.page .site-header__menu-toggle {
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #09090b;
  cursor: pointer;
  font-family: "SF Pro-Regular", Helvetica;
  font-size: 14px;
  padding: 9.5px 12px;
  border: 1px solid #e4e4e7;
  border-radius: 1024px;
  height: 40px;
  width: 97px;
}

.page .site-header__menu-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  position: relative;
}

.page .site-header--menu-open .site-header__menu-icon {
  border: 1px solid;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  gap: 5px;
}

.page .site-header--menu-open .site-header__menu-icon-line {
  position: absolute;
  top: 50%;
  left: 50%;
}

.page .site-header--menu-open .site-header__menu-icon-line {
  width: 10px;
}

.page .site-header__menu-icon-line {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #09090b;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}

.page .site-header__menu-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.site-header--menu-open .site-header__menu-icon-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header--menu-open .site-header__menu-icon-line:nth-child(2) {
  opacity: 0;
}

.site-header--menu-open .site-header__menu-icon-line:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.page .site-header__cta_container {
  display: inline-flex;
  align-items: center;
  gap: var(--01-global-spacing-8px);
  position: relative;
  flex: 0 0 auto;
}

.page .site-header--menu-open .site-header__cta-button--icon {
  display: none !important;
}

.page .site-header__cta-button {
  all: unset;
  box-sizing: border-box;
  height: 40px;
  align-items: center;
  padding: var(--01-global-spacing-none) var(--01-global-spacing-12px) var(--01-global-spacing-none) var(--01-global-spacing-12px);
  background-color: #a7d3fa;
  display: inline-flex;
  position: relative;
  flex: 0 0 auto;
  border-radius: 1024px;
  gap: var(--01-global-spacing-none);
  cursor: pointer;
  display: inline-flex;
}

.page .site-header__cta-button--icon {
  display: none;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.page .site-header__cta-button.site-header__cta-button--mobile {
  display: none;
  width: 100%;
  height: 56px;
  justify-content: center;
}

.page .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--01-global-spacing-none) var(--01-global-spacing-4px) var(--01-global-spacing-none) var(--01-global-spacing-4px);
  position: relative;
  flex: 0 0 auto;
  gap: var(--01-global-spacing-none);
}

/* =================================== Hero Section =================================== */
.page .hero-section {
  padding: var(--01-global-spacing-48px) 0;
  align-self: stretch;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  gap: var(--01-global-spacing-none);
}

.page .hero-section__inner {
  align-items: center;
  gap: var(--01-global-spacing-24px);
  display: flex;
  max-width: 1320px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  margin: 0 auto;
}

.page .hero-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 1;
  flex-grow: 1;
  gap: var(--01-global-spacing-none);
}

.page .vertical-stack-lg {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--01-global-spacing-24px);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.page .hero-section__title {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #09090b;
  font-size: 54px;
  letter-spacing: 0;
  line-height: 62.1px;
  max-width: 636px;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .page .hero-section__title {
    font-size: 42px;
    line-height: 50px;
  }

  .page .hero-section__content-text {
    gap: var(--01-global-spacing-16px);
  }
}

@media (max-width: 834px) {
  .page .hero-section__content {
    align-self: flex-start;
    padding-left: var(--01-global-spacing-8px);
  }
}

.page .text-body {
  position: relative;
  align-self: stretch;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #09090b;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 27px;
}

.page .hero-section__actions {
  display: flex;
  align-items: flex-start;
  gap: var(--01-global-spacing-16px);
  padding: var(--01-global-spacing-32px) var(--01-global-spacing-none) var(--01-global-spacing-none) var(--01-global-spacing-none);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.page .button-primary {
  all: unset;
  box-sizing: border-box;
  flex-direction: column;
  height: 56px;
  align-items: center;
  justify-content: center;
  padding: var(--01-global-spacing-none) var(--01-global-spacing-24px);
  background-color: #003e66;
  display: inline-flex;
  position: relative;
  flex: 0 0 auto;
  border-radius: 1024px;
  gap: var(--01-global-spacing-none);
  text-decoration: none;
  cursor: pointer;
}

.page .button__content {
  display: inline-flex;
  align-items: center;
  gap: var(--01-global-spacing-8px);
}

.page .button__text--light {
  width: fit-content;
  margin-top: -1px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 18px;
  line-height: 27px;
  white-space: nowrap;
  position: relative;
  letter-spacing: 0;
}

.page .button-secondary {
  all: unset;
  box-sizing: border-box;
  height: 56px;
  align-items: center;
  padding: var(--01-global-spacing-none) var(--01-global-spacing-24px);
  background-color: #a7d3fa;
  display: inline-flex;
  position: relative;
  flex: 0 0 auto;
  border-radius: 1024px;
  gap: var(--01-global-spacing-none);
  text-decoration: none;
}

.page .icon {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.page .button__text--dark {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #09090b;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 27px;
  white-space: nowrap;
}

.page .hero-section__actions .button-secondary {
  align-items: center;
  padding-left: var(--01-global-spacing-16px);
  padding-right: var(--01-global-spacing-16px);
}

.page .hero-section__actions .button-secondary .button__text--dark {
  margin-left: var(--01-global-spacing-8px);
  margin-right: var(--01-global-spacing-8px);
  margin-top: 2px;
}

@media (max-width: 1280px) {
  .page .hero-section__actions .button-secondary .button__content {
    display: none;
  }
}

@media (max-width: 834px) {
  .page .hero-section__actions .button-secondary .button__content {
    display: block;
  }
}

.page .hero-section picture {
  display: flex;
  flex: 1;
}

.page .hero-section__image {
  position: relative;
  flex: 1;
  flex-grow: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 636px;
  object-fit: cover;
  border-radius: 24px;
}

@media (max-width: 1280px) {
  .page .hero-section__telegram {
    display: none;
  }
}

@media (max-width: 1024px) {
  .page .site-header__nav-list-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    padding: 36px 20px;
    gap: 12px;
    width: 100%;
    height: 100%;
  }

  .page .site-header__nav-list {
    gap: var(--01-global-spacing-24px);
    width: 100%;
    height: 100%;
    flex: 1;
  }

  .page .hero-section__image {
    height: 480px;
  }

  .page .site-header__menu-toggle {
    display: inline-flex;
  }

  .page .site-header__nav {
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    bottom: 0;

    background-color: #fafafa;
    transform: translateY(16px);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .page .site-header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .page .site-header__nav-item {
    width: 100%;
    justify-content: flex-start;
    padding: 8px 12px;
    border-radius: 12px;
    min-height: 56px;
    transition: background-color 0.2s ease;
  }

  .page .site-header__nav-item .site-header__nav-link {
    font-size: 24px;
  }

  .site-header--menu-open .site-header__nav {
    opacity: 1;
    visibility: visible;
  }

  .page .hero-section__image {
    width: 100%;
    height: auto;
  }

  .page .button-secondary {
    justify-content: center;
  }
}

@media (max-width: 834px) {
  .page .hero-section__inner {
    flex-direction: column;
    align-items: center;
    gap: var(--01-global-spacing-64px);
  }
}

@media (max-width: 700px) {
  .page .hero-section__content {
    align-self: center;
    padding-left: var(--01-global-spacing-none);
  }

  .page .hero-section__actions {
    flex-direction: column;
    gap: var(--01-global-spacing-16px);
  }

  .page .hero-section__actions a,
  .page .hero-section__actions button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .page .site-header__nav-list-container {
    padding: 36px 12px;
  }
}

@media (max-width: 833px) {
  .page .site-header__cta-button {
    display: none;
  }

  .page .site-header__cta-button--icon {
    display: inline-flex;
  }

  .page .site-header__cta-button.site-header__cta-button--mobile {
    display: inline-flex;
  }

  .page .site-header--menu-open [data-menu-visible] {
    display: inline-flex !important;
  }
}

@media (max-width: 480px) {
  .page .hero-section {
    padding: var(--01-global-spacing-32px) var(--01-global-spacing-none);
  }

  .page .hero-section__title {
    font-size: 32px;
    line-height: 40px;
  }

  .page .text-body {
    font-size: 16px;
    line-height: 24px;
  }

  .page .button-primary,
  .page .button-secondary {
    justify-content: center !important;
  }
}

/* =================================== About Section =================================== */
.page .about-section {
  width: 100%;
  padding-top: var(--01-global-spacing-96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  gap: var(--01-global-spacing-none);
}

.page .about-section__accent {
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 416px;
  height: 581px;
}

.page .section-container {
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  align-items: flex-start;
  gap: var(--01-global-spacing-48px);
  padding: 0 72px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.page .about-section__intro {
  display: flex;
  flex-direction: column;
  max-width: 856px;
  align-items: flex-start;
  gap: var(--01-global-spacing-24px);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.page .badge {
  display: inline-flex;
  max-width: 636px;
  height: 32px;
  align-items: center;
  padding: var(--01-global-spacing-none) var(--01-global-spacing-8px) var(--01-global-spacing-none) var(--01-global-spacing-8px);
  position: relative;
  background-color: #ffffff;
  border-radius: 1024px;
  border: 1px solid;
  border-color: #e4e4e7;
  gap: var(--01-global-spacing-none);
}

.page .badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
  gap: var(--01-global-spacing-none);
}

.page .icon-frame {
  position: relative;
  width: 24px;
  height: 24px;
}

.page .icon-dot {
  position: relative;
  top: calc(50% - 4px);
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  background-color: #ff6800;
  border-radius: 4px;
  aspect-ratio: 1;
}

.page .badge__text {
  width: fit-content;
  margin-top: -1px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #09090b;
  font-size: 14px;
  line-height: 16.1px;
  white-space: nowrap;
  position: relative;
  letter-spacing: 0;
}

.page .about-section__lead {
  position: relative;
  align-self: stretch;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #09090b;
  font-size: 32px;
  letter-spacing: 0;
  line-height: 36.8px;
}

.page .about-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--01-global-spacing-24px);
  align-items: stretch;
  width: 100%;
  margin-bottom: 96px;
}

@media (max-width: 1024px) {
  .page .about-section__accent {
    display: none;
  }
}

@media (max-width: 834px) {
  .page .about-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 48px;
  }

  .page .about-section__lead {
    font-size: 24px;
    line-height: 115%;
  }
}

@media (max-width: 600px) {
  .page .about-section {
    padding-top: var(--01-global-spacing-48px);
  }

  .page .about-section__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: var(--01-global-spacing-16px);
  }

  .page .about-section__card {
    flex-direction: row !important;
  }
}

.page .about-section__card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: var(--01-global-spacing-16px);
  padding: var(--01-global-spacing-24px);
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid;
  border-color: #e4e4e7;
}

.page .about-section__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background-color: #a7d3fa;
  border-radius: 50%;
}

/* =================================== Benefits Section =================================== */
.page .benefits-section {
  padding: var(--01-global-spacing-96px) var(--01-global-spacing-none) var(--01-global-spacing-96px) var(--01-global-spacing-none);
  align-self: stretch;
  width: 100%;
  background-color: #a7d3fa;
  background-image: url("../assets/img/benefits-section/background.svg");
  background-repeat: repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  gap: var(--01-global-spacing-none);
}

.page .section-container--wide {
  align-items: flex-start;
  justify-content: space-between;
  display: flex;
  max-width: 1320px;

  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.page .badge--inverse {
  display: inline-flex;
  max-width: 636px;
  height: 32px;
  align-items: center;
  padding: var(--01-global-spacing-none) var(--01-global-spacing-8px) var(--01-global-spacing-none) var(--01-global-spacing-8px);
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 1024px;
  border: 1px solid;
  border-color: #e4e4e7;
  gap: var(--01-global-spacing-none);
}

.page .benefits-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--01-global-spacing-16px);
  justify-content: center;
}

.page .benefit-card {
  position: relative;
  width: 275px;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--01-global-spacing-24px);
  padding: var(--01-global-spacing-24px);
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid;
  border-color: #e4e4e7;
  flex-shrink: 0;
}

.page .benefit-card__title {
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 8px;
}

.page .benefit-card__subtitle {
  color: #71717b;
  line-height: 150%;
}

.page .benefit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: #ff6900;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 1280px) {
  .page .benefit-card {
    width: 235px;
    height: 330px;
  }
}

@media (max-width: 1024px) {
  .page .benefits-section .section-container {
    padding: 0 !important;
  }

  .page .benefits-section .section-container .badge--inverse {
    margin-left: 60px;
  }

  .page .section-container--wide {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 16px;
  }

  .page .benefits-section__grid {
    display: flex;
    gap: var(--01-global-spacing-24px);
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    padding-bottom: 8px;
    justify-content: flex-start;
    user-select: none;
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .page .benefits-section__grid::-webkit-scrollbar {
    display: none;
  }

  .page .benefit-card {
    width: 276px;
    height: 309px;
  }

  .page .benefit-card:first-child {
    margin-left: 60px;
  }

  .page .benefit-card:last-child {
    margin-right: 60px;
  }
}

@media (max-width: 834px) {
  .page .benefits-section {
    padding: var(--01-global-spacing-48px) var(--01-global-spacing-none);
  }

  .page .benefits-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .page .benefits-section .badge--inverse {
    margin-left: 12px !important;
  }

  .page .benefits-section__grid .benefit-card:first-child {
    margin-left: var(--01-global-spacing-12px);
  }
}

@media (max-width: 375px) {
  .page .benefits-section__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .page .benefit-card {
    width: 257px;
    height: 309px;
    margin: 0 auto;
  }
}

/* =================================== Services Section =================================== */
.page .services-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--01-global-spacing-96px) var(--01-global-spacing-none) var(--01-global-spacing-96px) var(--01-global-spacing-none);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  gap: var(--01-global-spacing-none);
}

.page .services-section__layout {
  display: flex;
  align-items: center;
  gap: var(--01-global-spacing-24px);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.page .services-section__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: var(--01-global-spacing-none) var(--01-global-spacing-none) var(--01-global-spacing-none) 110px;
  position: relative;
  flex: 1;
  gap: var(--01-global-spacing-none);
  min-height: 600px;
}

.page .services-section__highlight {
  display: flex;
  align-items: flex-start;
  gap: var(--01-global-spacing-16px);
  padding: var(--01-global-spacing-24px);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid;
  border-color: #e4e4e7;
}

.page .services-section__highlight-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--01-global-spacing-8px);
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.page .services-section__item {
  display: flex;
  align-items: flex-start;
  gap: var(--01-global-spacing-16px);
  padding: var(--01-global-spacing-24px);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-radius: 16px;
  border: 1px solid;
  border-color: transparent;
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.page .services-section__item.services-section__item--active {
  background-color: #ffffff;
  border-color: #e4e4e7;
}

.page .services-section__item.services-section__item--active .services-section__item-title {
  color: #09090b;
}

.page .services-section__item.services-section__item--active .services-section__item-description {
  display: block;
}

.page .services-section__item.services-section__item--active svg path,
.page .services-section__item.services-section__item--active svg rect {
  stroke: #ff6900;
}

.page .services-section__item-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--01-global-spacing-8px);
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.page .services-section__image-mobile {
  display: none;
}

.page .services-section__item-title {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #9e9ea9;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 27px;
}

.page .services-section__item-description {
  position: relative;
  align-self: stretch;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #71717b;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 21px;
  display: none;
}

.page .services-section__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  svg {

    path,
    rect {
      stroke: #71717b;
    }
  }
}

@media (max-width: 1024px) {
  .page .services-section__list {
    padding-left: 0;
  }
}

@media (max-width: 834px) {
  .page .services-section {
    padding: var(--01-global-spacing-48px) var(--01-global-spacing-none);
  }

  .page .services-section .section-container {
    gap: var(--01-global-spacing-16px);
  }

  .page .services-section__image-wrapper {
    display: none !important;
  }

  .page .services-section__list {
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--01-global-spacing-24px);
  }

  .page .services-section__item {
    padding: var(--01-global-spacing-8px);
    flex-direction: column;
    gap: var(--01-global-spacing-16px);
    background-color: #ffffff;
    border-color: #e4e4e7;
  }

  .page .services-section__item:nth-child(2) {
    order: 2;
  }

  .page .services-section__item:nth-child(3) {
    order: 1;
  }

  .page .services-section__item:nth-child(4) {
    order: 3;
  }

  .page .services-section__item:nth-child(5) {
    order: 4;
  }

  .page .services-section__item:nth-child(6) {
    order: 5;
  }

  .page .services-section__item-icon {
    display: none;
  }

  .page .services-section__item-body {
    padding: var(--01-global-spacing-8px) var(--01-global-spacing-16px);
  }

  .page .services-section__item-title {
    color: #09090b;
  }

  .page .services-section__image-mobile {
    display: block;
    width: 100%;
    border-radius: 12px;
  }

  .page .services-section__item-description {
    display: block;
  }
}

@media (max-width: 600px) {
  .page .services-section__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* =================================== Workflow Section =================================== */
.page .workflow-section__steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--01-global-spacing-16px);
  padding: var(--01-global-spacing-none) 110px var(--01-global-spacing-none) var(--01-global-spacing-none);
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.page .workflow-section__step {
  display: flex;
  align-items: center;
  gap: var(--01-global-spacing-16px);
  padding: var(--01-global-spacing-24px);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid;
  border-color: #e4e4e7;
}

.page .workflow-section__step-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--01-global-spacing-4px);
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.page .workflow-section__step-label {
  align-self: stretch;
  margin-top: -1px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #71717b;
  font-size: 14px;
  line-height: 21px;
  position: relative;
  letter-spacing: 0;
}

.page .workflow-section__cta {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  border-radius: 24px;
  background-color: #003e66;
  background-image: url("../assets/img/workflow-section/background.svg");
  gap: var(--01-global-spacing-none);
}

.page .workflow-section__cta-inner {
  padding: var(--01-global-spacing-48px);
}

.page .workflow-section__cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--01-global-spacing-32px);
  padding: var(--01-global-spacing-48px);
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid;
  border-color: #e4e4e7;
}

.page .workflow-section__cta-content .button-primary {
  align-items: center;
}

.page .workflow-section__cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.page .workflow-section__cta-title {
  align-self: stretch;
  margin-top: -1px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #09090b;
  font-size: 32px;
  line-height: 36.8px;
  position: relative;
  letter-spacing: 0;
}

.page .workflow-section__cta-description {
  align-self: stretch;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #70707b;
  font-size: 18px;
  line-height: 27px;
  position: relative;
  letter-spacing: 0;
}

@media (max-width: 1280px) {
  .page .workflow-section__cta-content {
    padding: var(--01-global-spacing-32px);
  }

  .page .workflow-section__steps {
    padding: var(--01-global-spacing-none);
  }
}

@media (max-width: 1024px) {
  .page .workflow-section .services-section__layout {
    gap: var(--01-global-spacing-16px);
  }

  .page .workflow-section__steps {
    width: 100%;
    padding: var(--01-global-spacing-none);
  }

  .page .workflow-section__cta {
    padding: var(--01-global-spacing-none);
  }

  .page .workflow-section__cta-content {
    padding: var(--01-global-spacing-24px);

    .button-primary {
      width: 100%;
      justify-content: center;
    }
  }
}

@media (max-width: 834px) {
  .page .workflow-section .services-section__layout {
    flex-direction: column;
  }

  .page .workflow-section__cta-inner {
    width: 100%;
    padding: var(--01-global-spacing-none);
  }
}

.page .button-primary.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.button__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: button-spin 0.8s linear infinite;
}

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

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

/* =================================== Contact Section =================================== */
.page .contact-section {
  padding: var(--01-global-spacing-64px) var(--01-global-spacing-none) var(--01-global-spacing-64px) var(--01-global-spacing-none);
  align-self: stretch;
  width: 100%;
  background-image: url(../assets/img/form-section/backgroung.png);
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  gap: var(--01-global-spacing-none);
  scroll-margin-top: 80px;
}

.page .contact-section__inner {
  flex-direction: column;
  align-items: center;
  display: flex;
  max-width: 1320px;
  padding: var(--01-global-spacing-none) var(--01-global-spacing-12px) var(--01-global-spacing-none) var(--01-global-spacing-12px);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  gap: var(--01-global-spacing-none);
}

.page .contact-section__form {
  display: flex;
  flex-direction: column;
  max-width: 636px;
  align-items: flex-start;
  gap: var(--01-global-spacing-24px);
  padding: var(--01-global-spacing-48px);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 24px;
}

.page .contact-section__form.is-hidden {
  display: none;
}

.page .contact-section__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--01-global-spacing-24px);
  max-width: 636px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 24px;
  padding: var(--01-global-spacing-48px);
  text-align: center;
  box-shadow: 0px 24px 48px rgba(9, 9, 11, 0.08);
}

.page .contact-section__success--template {
  display: none;
}

.page .contact-section__success-icon {
  width: 96px;
  height: 96px;
}

.page .contact-section__success-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.page .contact-section__success-title {
  font-size: 42px;
  line-height: 42px;
  color: #09090b;
}

.page .contact-section__success-text {
  font-family: "SF Pro-Regular", Helvetica;
  font-size: 18px;
  line-height: 150%;
  color: #71717b;
  margin: 0;
}

.page .contact-section__success-button {
  min-width: 240px;
  cursor: pointer;
}

.page .contact-section__heading {
  align-self: stretch;
  margin-top: -1px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #09090b;
  font-size: 42px;
  line-height: 48.3px;
  position: relative;
  letter-spacing: 0;
}

.page .form-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--01-global-spacing-4px);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.page .form-field__label {
  align-self: stretch;
  margin-top: -1px;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #51515c;
  font-size: 14px;
  line-height: 21px;
  position: relative;
  letter-spacing: 0;
}

.page .form-field__input {
  display: flex;
  height: 56px;
  align-items: center;
  padding: var(--01-global-spacing-none) var(--01-global-spacing-16px) var(--01-global-spacing-none) var(--01-global-spacing-16px);
  position: relative;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  background-color: #ffffff;
  border-radius: 1024px;
  border: 1px solid;
  border-color: #e4e4e7;
  gap: var(--01-global-spacing-none);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.page .form-field__input:focus {
  outline: none;
}

.page .form-field__input--textarea {
  height: auto;
  padding: var(--01-global-spacing-16px);
  border-radius: 28px;
}

.page .form-field.is-hidden {
  display: none;
}

.page .form-field__input--with-icon {
  gap: var(--01-global-spacing-12px);
}

.page .form-field__input--with-icon .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.page .form-field__input--with-icon input,
.page .form-field__input--with-icon select.form-field__select {
  border: none;
  background: transparent;
  font-family: "SF Pro-Regular", Helvetica;
  color: #09090b;
  outline: none;
  padding: 0;
}

.page .form-field__input--with-icon select.form-field__select {
  flex: 1;
  width: 100%;
  cursor: pointer;
}

.page .form-field__input input,
.page .form-field__input textarea,
.page .form-field__input select,
.page .form-field__input--with-icon input,
.page .form-field__input--with-icon select {
  font-size: 18px;
  line-height: 27px;
  flex: 1;
}

.page .form-field__select option {
  font-family: "SF Pro-Regular", Helvetica;
  font-size: 18px;
  line-height: 27px;
  color: #09090b;
  background-color: #ffffff;
  padding: 12px 16px;
}

.page .form-field__select option[disabled] {
  color: #9f9fa9;
}

.page .custom-select {
  position: relative;
  width: 100%;
}

.page .custom-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--01-global-spacing-8px);
  height: 56px;
  padding: var(--01-global-spacing-none) var(--01-global-spacing-24px);
  background-color: #ffffff;
  border-radius: 1024px;
  border: 1px solid #e4e4e7;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  font-family: "SF Pro-Regular", Helvetica;
  font-size: 18px;
  line-height: 27px;
  color: #09090b;
}

.page .custom-select__trigger:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 3px;
}

.page .custom-select--open .custom-select__trigger {
  border-color: #003e66;
  box-shadow: 0 0 0 4px rgba(0, 62, 102, 0.1);
}

.page .custom-select__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #09090b;
  transition: transform 0.2s ease;
}

.page .custom-select--open .custom-select__icon {
  transform: rotate(180deg);
}

.page .custom-select__value {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page .custom-select__value.custom-select__value--placeholder {
  color: #9f9fa9;
}

.page .custom-select__options {
  position: absolute;
  top: calc(100% + var(--01-global-spacing-8px));
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e4e4e7;
  box-shadow: 0px 20px 40px rgba(9, 9, 11, 0.08);
  max-height: 288px;
  overflow-y: auto;
  padding: var(--01-global-spacing-8px) var(--01-global-spacing-none);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 20;
}

.page .custom-select--open .custom-select__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page .custom-select__option {
  padding: var(--01-global-spacing-12px) var(--01-global-spacing-24px);
  font-family: "SF Pro-Regular", Helvetica;
  font-size: 18px;
  min-height: 48px;
  line-height: 27px;
  color: #09090b;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  outline: none;
}

.page .custom-select__option:hover,
.page .custom-select__option:focus,
.page .custom-select__option.is-highlighted {
  background-color: #f4f4f5;
}

.page .custom-select__option.is-selected {
  color: #003e66;
  font-family: "SF Pro-Medium", Helvetica;
}

.page .custom-select__trigger-icon {
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .page .custom-select__options {
    max-height: 240px;
  }

  .page .custom-select__option {
    font-size: 16px;
    line-height: 24px;
  }
}

.page .form-field__textarea {
  width: 100%;
  border: none;
  background: transparent;
  font-family: "SF Pro-Regular", Helvetica;
  color: #09090b;
  resize: none;
}

.page .form-field__textarea::placeholder {
  color: #9f9fa9;
}

.page .form-field__textarea:focus {
  outline: none;
}

.page input,
.page .form-field__input input::placeholder,
.page .form-field__input textarea::placeholder,
.page .form-field__input select option[disabled],
.page .form-field__input--with-icon input::placeholder,
.page .form-field__input--with-icon select option[disabled] {
  font-size: 18px;
}

.page .div-2 {
  display: flex;
  align-items: center;
  padding: var(--01-global-spacing-none) var(--01-global-spacing-8px) var(--01-global-spacing-none) var(--01-global-spacing-8px);
  position: relative;
  flex: 1;
  flex-grow: 1;
  gap: var(--01-global-spacing-none);
}

.page .text-wrapper-16 {
  flex: 1;
  margin-top: -1px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #70707b;
  font-size: 18px;
  line-height: 27px;
  position: relative;
  letter-spacing: 0;
}

.page .email {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #51515c;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 21px;
  background: transparent;
  border: none;
  padding: 0;
}

.page .placeholder {
  padding: var(--01-global-spacing-none) var(--01-global-spacing-8px) var(--01-global-spacing-none) var(--01-global-spacing-8px);
  position: relative;
  flex-grow: 1;
  border: none;
  background: none;
  flex: 1;
  margin-top: -1px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #70707b;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 27px;
}

.page .faq-accordion__question {
  position: relative;
  flex: 1;
  margin-top: -1px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #09090b;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 32px;
  flex: 1;
}

/* =================================== FAQ Section =================================== */
.page .faq-section {
  padding-top: var(--01-global-spacing-96px);
  align-self: stretch;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  gap: var(--01-global-spacing-none);
}

.page .faq-section__accent {
  position: absolute;
  left: -42px;
  bottom: 0;
  width: 416px;
  height: 581px;
}

.page .faq-section__content {
  display: flex;
  flex-direction: column;
  max-width: 856px;
  align-items: flex-start;
  justify-content: center;
  gap: var(--01-global-spacing-8px);
  position: relative;
  flex: 1;
  flex-grow: 1;
  margin-bottom: 124px;
  max-width: 65%;
  width: 100%;
}

.page .faq-section__card {
  display: flex;
  align-items: flex-start;
  gap: var(--01-global-spacing-48px);
  padding: var(--01-global-spacing-24px);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid;
  border-color: #e4e4e7;
}

.page .faq-section__card-content {
  display: flex;
  align-items: flex-start;
  gap: var(--01-global-spacing-24px);
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.page .faq-accordion__answer {
  flex: 1;
  margin-top: 4px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #09090b;
  font-size: 14px;
  line-height: 21px;
  position: relative;
  letter-spacing: 0;
  flex: 1;
}

.page .faq-section__row {
  display: flex;
  align-items: center;
  gap: var(--01-global-spacing-48px);
  padding: var(--01-global-spacing-24px);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid;
  border-color: #e4e4e7;
}

@media (max-width: 1024px) {
  .page .faq-section__accent {
    display: none;
  }

  .page .faq-section__content {
    max-width: 100%;
    margin-bottom: var(--01-global-spacing-48px);

    .faq-accordion__content {
      display: block;

      .faq-accordion__answer {
        margin-top: 12px;
      }
    }
  }
}

@media (max-width: 834px) {
  .page .faq-section {
    padding-top: var(--01-global-spacing-48px);

    .faq-accordion__item {
      gap: var(--01-global-spacing-16px);
    }
  }
}

/* =================================== FAQ Accordion =================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--01-global-spacing-8px);
  width: 100%;
}

.faq-accordion__item {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px 24px;
  gap: var(--01-global-spacing-48px);
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-accordion__content {
  display: flex;
  justify-content: space-between;
  gap: var(--01-global-spacing-24px);
  flex: 1;
  align-items: flex-start;
}

.faq-accordion__question {
  flex: 1;
}

.faq-accordion__item:not(.is-open) .faq-accordion__panel {
  flex: 0;
  width: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  margin: 0;
}

.faq-accordion__item:not(.is-open) .faq-accordion__content {
  gap: 0;
}

.faq-accordion__answer {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 12px;
  color: #444;
  flex: 1;
}

.icon-frame {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-accordion__item.is-open .icon-frame {
  transform: rotate(180deg);
}

.faq-accordion__panel {
  flex: 1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-accordion__item.is-open .faq-accordion__panel {
  max-height: none;
}

/* =================================== Footer Section =================================== */
.page .footer-section {
  align-self: stretch;
  width: 100%;
  background-color: #0f3f66;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  gap: var(--01-global-spacing-none);
}

.page .footer-section__inner {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  gap: var(--01-global-spacing-none);
}

.page .footer-section__content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: var(--01-global-spacing-24px);
  padding: var(--01-global-spacing-48px) var(--01-global-spacing-none) var(--01-global-spacing-48px) var(--01-global-spacing-none);
  position: relative;
  align-self: stretch;
  width: 100%;
}

@media (max-width: 834px) {
  .page .footer-section__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: var(--01-global-spacing-32px) var(--01-global-spacing-none);
  }

  .page .footer-section__column--logo {
    grid-column: 1 / -1;
  }

  .page .footer-section__column:not(.footer-section__column--logo) {
    margin-top: var(--01-global-spacing-16px);
  }
}

@media (max-width: 600px) {
  .page .footer-section__content {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--01-global-spacing-16px);
  }

  .page .footer-section__column--logo {
    margin-bottom: var(--01-global-spacing-32px);
  }
}

.page .footer-section__image {
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.page .footer-section__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--01-global-spacing-16px);
  position: relative;
  flex: 1;

  .footer-section__socials {
    display: flex;
    gap: var(--01-global-spacing-12px);
  }
}

.page .footer-section__column:not(.footer-section__column--logo) {
  justify-self: flex-end;
}

@media (max-width: 834px) {
  .page .footer-section__content {
    padding: var(--01-global-spacing-32px) var(--01-global-spacing-none);
  }

  .page .footer-section__column--logo {
    width: 100%;
  }

  .page .footer-section__column {
    flex: unset;
  }

  .page .footer-section__column:not(.footer-section__column--logo) {
    justify-self: flex-start;
  }

  .page .footer-section .footer-section__legal {
    padding: var(--01-global-spacing-16px) var(--01-global-spacing-none);
  }
}

.page .footer-section__title {
  align-self: stretch;
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 14px;
  line-height: 21px;
  position: relative;
  letter-spacing: 0;
}

.page .footer-section__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--01-global-spacing-8px);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.page .footer-section__icon {
  position: relative;
  width: 20px;
  height: 20px;
  aspect-ratio: 1;
}

.page .footer-section__text {
  flex: 1;
  margin-top: -1px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #9e9ea9;
  font-size: 14px;
  line-height: 21px;
  text-decoration: underline;
  position: relative;
  letter-spacing: 0;
}

.page .footer-section__legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: var(--01-global-spacing-24px) var(--01-global-spacing-none);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-top-width: 1px;
  border-top-style: solid;
  border-color: #26262a;
  gap: var(--01-global-spacing-none);
}

.page .footer-section__legal-text {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #9f9fa9;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 21px;
  white-space: nowrap;
}

/* =================================== Services Image Wrapper =================================== */
.page .services-section__image-wrapper {
  transition: opacity 0.6s ease;
  flex: 1;
}

.page .services-section__image-wrapper.is-swapping {
  opacity: 0;
}

.page .services-section__image-wrapper {
  display: flex;
  flex: 1;
}

.page .services-section__image {
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .page .section-container {
    padding: 0 60px !important;
  }

  .page .scroll-section {
    scroll-margin-top: 80px;
  }

  .page .services-section .site-header__nav-list {
    gap: 0;
  }
}

@media (max-width: 600px) {
  .page .section-container {
    padding: 0 12px !important;
  }
}

/* =================================== Button Label =================================== */
.page .button__label {
  display: flex;
}

.page .button__label--mobile {
  display: none;
}

@media (max-width: 600px) {
  .page .button__label--desktop {
    display: none;
  }

  .page .button__label--mobile {
    display: flex;
  }
}