.comp-page {
  padding-top: 0;
}

.resources-hero {
  position: relative;
  box-sizing: border-box;
  height: 100vh;
  padding-top: 72px;
  overflow: hidden;
  background: #ffffff;
}

.resources-hero__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.resources-hero__bg img,
.resources-hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.resources-hero__bg img {
  object-fit: cover;
  object-position: center center;
}

.resources-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.resources-hero__main {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  min-height: 100%;
  padding: 80px 0 64px;
}

.resources-hero__title {
  margin: 0;
  color: #000000;
  font-size: 48px;
  font-style: normal;
  font-weight: var(--font-weight-normal);
  line-height: normal;
}

.resources-hero__desc {
  margin: 0;
  color: #000000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
}

.resources-hero__logo {
  display: block;
  width: 147px;
  height: auto;
  padding-top: 48px;
}

.resources-hero__emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 280px;
  margin-top: -140px;
  margin-left: -140px;
  pointer-events: none;
}

.resources-hero__emblem img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .resources-hero {
    height: 100vh;
    min-height: 640px;
  }
  .resources-hero__bg {
    left: 0;
    opacity: 0.35;
  }
  .resources-hero__main {
    max-width: 100%;
    padding: 64px 0;
  }
  .resources-hero__title {
    font-size: 40px;
  }
  .resources-hero__desc {
    font-size: 18px;
  }
  .resources-hero__emblem {
    width: 200px;
    height: 200px;
    margin-top: -100px;
    margin-left: -100px;
    opacity: 0.35;
  }
}

@media (max-width: 768px) {
  .resources-hero {
    height: 480px;
    min-height: 0;
    padding-top: 56px;
  }
  .resources-hero__bg {
    opacity: 1;
  }
  .resources-hero__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .resources-hero__main {
    padding: 48px 0;
  }
  .resources-hero__title {
    font-size: 32px;
  }
  .resources-hero__desc {
    font-size: 16px;
    line-height: 1.85;
  }
  .resources-hero__logo {
    width: 120px;
    margin-top: 32px;
  }
  .resources-hero__emblem {
    width: 140px;
    height: 140px;
    margin-top: -70px;
    margin-left: -70px;
  }
}

.comp-intro {
  position: relative;
  box-sizing: border-box;
  min-height: 100vh;
  padding-top: 72px;
  overflow: hidden;
  background: #f2f4f7;
}

.comp-intro__bg {
  position: absolute;
  inset: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  margin-left: -50vw;
  overflow: hidden;
}

.comp-intro__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.comp-intro__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  max-width: 1600px;
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 80px 0;
  box-sizing: border-box;
}

.comp-intro__content {
  flex: 0 0 38%;
  max-width: 520px;
}

.comp-intro__title {
  margin: 0 0 48px;
  color: #000000;
  font-size: 66px;
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
}

.comp-intro__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comp-intro__list li {
  color: #000000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 2.2;
}

.comp-intro__media {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.comp-intro__media img {
  display: block;
  width: 100%;
  max-width: 920px;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

@media (max-width: 1024px) {
  .comp-intro__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 64px 24px;
  }
  .comp-intro__content {
    flex: none;
    max-width: 100%;
  }
  .comp-intro__title {
    margin-bottom: 32px;
    font-size: 44px;
  }
  .comp-intro__list li {
    font-size: 17px;
    line-height: 2;
  }
  .comp-intro__media {
    width: 100%;
    justify-content: center;
  }
  .comp-intro__media img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .comp-intro {
    min-height: auto;
  }
  .comp-intro__inner {
    min-height: calc(100vh - 72px);
    padding: 48px 16px;
    gap: 32px;
  }
  .comp-intro__title {
    margin-bottom: 24px;
    font-size: 32px;
  }
  .comp-intro__list li {
    font-size: 16px;
    line-height: 1.9;
  }
}

.comp-flow {
  box-sizing: border-box;
  background: #ffffff;
}

.comp-flow__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 96px 0 80px;
  box-sizing: border-box;
}

.comp-flow__head {
  margin: 0 0 64px;
  text-align: center;
}

.comp-flow__label {
  margin: 0 0 16px;
  color: #0070d5;
  font-size: 24px;
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
}

.comp-flow__title {
  margin: 0;
  color: #000000;
  font-size: 40px;
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
}

.comp-flow__chart {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 48px;
  overflow: hidden;
}

.comp-flow__chart img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
}

.comp-flow__lines {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.comp-flow__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: auto auto auto;
  gap: 28px 12px;
  min-height: 320px;
}

.comp-flow__step {
  min-width: 0;
}

.comp-flow__step--1 {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
}

.comp-flow__step--2 {
  grid-column: 2;
  grid-row: 1;
}

.comp-flow__step--3 {
  grid-column: 3;
  grid-row: 1;
}

.comp-flow__step--4 {
  grid-column: 4;
  grid-row: 1;
}

.comp-flow__step--5 {
  grid-column: 4;
  grid-row: 3;
}

.comp-flow__step--6 {
  grid-column: 3;
  grid-row: 3;
}

.comp-flow__step--7 {
  grid-column: 2;
  grid-row: 3;
}

.comp-flow__step--8 {
  grid-column: 5;
  grid-row: 2 / span 2;
  align-self: center;
}

.comp-flow__step-card {
  position: relative;
  box-sizing: border-box;
  min-height: 112px;
  padding: 20px 16px 18px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comp-flow__step-card--blue {
  min-height: 128px;
  background: #0070d5;
  box-shadow: 0 8px 20px rgba(0, 64, 152, 0.25);
}

.comp-flow__step-frame {
  box-sizing: border-box;
  padding: 10px;
  border: 1.5px dashed #0070d5;
  border-radius: 16px;
}

.comp-flow__step-num {
  position: absolute;
  top: 12px;
  right: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-style: normal;
  font-weight: var(--font-weight-medium);
  line-height: 1;
}

.comp-flow__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  color: #0070d5;
}

.comp-flow__step-icon--white {
  color: #ffffff;
}

.comp-flow__step-icon svg {
  display: block;
  width: 32px;
  height: 32px;
}

.comp-flow__step-title {
  margin: 0 0 6px;
  color: #000000;
  font-size: 15px;
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: 1.35;
}

.comp-flow__step-card--blue .comp-flow__step-title {
  color: #ffffff;
}

.comp-flow__step-desc {
  margin: 0;
  color: #666666;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.comp-flow__step-card--blue .comp-flow__step-desc {
  color: rgba(255, 255, 255, 0.85);
}

.comp-flow__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: 999px;
  background: #f0f5ff;
}

.comp-flow__bar-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0070d5;
  color: #ffffff;
}

.comp-flow__bar-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.comp-flow__bar-text {
  margin: 0;
  color: #0070d5;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .comp-flow__lines {
    display: none;
  }
  .comp-flow__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 16px;
    min-height: 0;
  }
  .comp-flow__step--1,
  .comp-flow__step--2,
  .comp-flow__step--3,
  .comp-flow__step--4,
  .comp-flow__step--5,
  .comp-flow__step--6,
  .comp-flow__step--7,
  .comp-flow__step--8 {
    grid-column: auto;
    grid-row: auto;
  }
  .comp-flow__step--8 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .comp-flow__inner {
    padding-top: 64px;
    padding-bottom: 56px;
  }
  .comp-flow__head {
    margin-bottom: 40px;
  }
  .comp-flow__label {
    font-size: 20px;
  }
  .comp-flow__title {
    font-size: 28px;
  }
  .comp-flow__steps {
    grid-template-columns: 1fr;
  }
  .comp-flow__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    border-radius: 20px;
  }
  .comp-flow__bar-text {
    font-size: 14px;
  }
}

.comp-core {
  box-sizing: border-box;
  background: #ffffff;
}

.comp-core__inner {
  width: 100%;
  max-width: 1244px;
  margin: 0 auto;
  padding: 0 0 80px;
  box-sizing: border-box;
}

.comp-core__head {
  margin: 0 0 56px;
  text-align: center;
}

.comp-core__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0 0 20px;
}

.comp-core__title-text {
  color: #0070d5;
  font-size: 40px;
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
}

.comp-core__deco {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.comp-core__deco i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0070d5;
}

.comp-core__deco--right {
  flex-direction: row-reverse;
}

.comp-core__subtitle {
  margin: 0;
  color: #666666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

.comp-core__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comp-core__item {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  gap: 200px;
  padding: 36px 80px;
  border-bottom: 1px solid #e5e9ef;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.comp-core__item:hover {
  z-index: 1;
  box-shadow: 0 12px 36px rgba(0, 64, 152, 0.12);
}

.comp-core__item:last-child {
  border-bottom: none;
}

.comp-core__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

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

.comp-core__icon svg {
  display: block;
  width: 40px;
  height: 40px;
}

.comp-core__main {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

.comp-core__item-title {
  margin: 0;
  color: #000000;
  font-size: 36px;
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: 1.35;
  margin-bottom: 10px;
}

.comp-core__bullets {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comp-core__bullets li {
  margin: 10px 0;
  position: relative;
  padding-left: 14px;
  color: #666666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
}

.comp-core__bullets li::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0070d5;
  transform: translateY(-50%);
}

.comp-core__arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #0070d5;
}

.comp-core__arrow svg {
  display: block;
  width: 24px;
  height: 24px;
}

.comp-core__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  padding: 20px 40px;
  border-radius: 999px;
  background: #f0f5ff;
}

.comp-core__bar-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0070d5;
  color: #ffffff;
}

.comp-core__bar-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.comp-core__bar-text {
  margin: 0;
  color: #0070d5;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .comp-core__item {
    flex-wrap: wrap;
    gap: 20px;
    padding: 28px 80px;
  }
  .comp-core__main {
    flex: 1 1 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .comp-core__item-title {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .comp-core__inner {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 0;
    padding-bottom: 56px;
  }
  .comp-core__item {
    padding: 28px 18px;
  }
  .comp-core__arrow {
    display: none;
  }
  .comp-core__icon {
    width: 72px;
    height: 72px;
  }
  .comp-core__head {
    margin-bottom: 40px;
  }
  .comp-core__title {
    flex-direction: column;
    gap: 12px;
  }
  .comp-core__deco {
    display: none;
  }
  .comp-core__title-text {
    font-size: 28px;
  }
  .comp-core__subtitle {
    font-size: 15px;
  }
  .comp-core__item-title {
    font-size: 18px;
  }
  .comp-core__bullets li {
    font-size: 14px;
    line-height: 1.8;
  }
  .comp-core__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    border-radius: 20px;
  }
  .comp-core__bar-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 1600px) and (min-width: 1025px) {
  .resources-hero {
    padding-top: 3.825vw;
  }
  .resources-hero__inner {
    max-width: 85vw;
    padding-left: 1.275vw;
    padding-right: 1.275vw;
  }
  .resources-hero__main {
    max-width: 29.75vw;
    padding: 4.25vw 0 3.4vw;
  }
  .resources-hero__title {
    font-size: 2.55vw;
  }
  .resources-hero__desc {
    font-size: 1.0625vw;
  }
  .resources-hero__logo {
    width: 7.80938vw;
    padding-top: 2.55vw;
  }
  .resources-hero__emblem {
    width: 14.875vw;
    height: 14.875vw;
    margin-top: -7.4375vw;
    margin-left: -7.4375vw;
  }
  .comp-intro {
    padding-top: 3.825vw;
  }
  .comp-intro__inner {
    gap: 2.55vw;
    max-width: 85vw;
    min-height: calc(100vh - 3.825vw);
    padding: 4.25vw 1.275vw;
  }
  .comp-intro__content {
    max-width: 27.625vw;
  }
  .comp-intro__title {
    margin: 0 0 2.55vw;
    font-size: 3.50625vw;
  }
  .comp-intro__list li {
    font-size: 1.0625vw;
  }
  .comp-intro__media img {
    max-width: 48.875vw;
  }
  .comp-flow__inner {
    max-width: 85vw;
    padding: 5.1vw 1.275vw 4.25vw;
  }
  .comp-flow__head {
    margin: 0 0 3.4vw;
  }
  .comp-flow__label {
    margin: 0 0 0.85vw;
    font-size: 1.275vw;
  }
  .comp-flow__title {
    font-size: 2.125vw;
  }
  .comp-flow__chart {
    margin: 0 auto 2.55vw;
  }
  .comp-flow__steps {
    gap: 1.4875vw 0.6375vw;
    min-height: 17vw;
  }
  .comp-flow__step-card {
    min-height: 5.95vw;
    padding: 1.0625vw 0.85vw 0.95625vw;
    border-radius: 0.6375vw;
    box-shadow: 0 0.2125vw 0.6375vw rgba(0, 0, 0, 0.1);
  }
  .comp-flow__step-card--blue {
    min-height: 6.8vw;
    box-shadow: 0 0.425vw 1.0625vw rgba(0, 64, 152, 0.25);
  }
  .comp-flow__step-frame {
    padding: 0.53125vw;
    border-width: 0.07969vw;
    border-radius: 0.85vw;
  }
  .comp-flow__step-num {
    top: 0.6375vw;
    right: 0.74375vw;
    font-size: 0.74375vw;
  }
  .comp-flow__step-icon {
    width: 1.7vw;
    height: 1.7vw;
    margin-bottom: 0.53125vw;
  }
  .comp-flow__step-icon svg {
    width: 1.7vw;
    height: 1.7vw;
  }
  .comp-flow__step-title {
    margin: 0 0 0.31875vw;
    font-size: 0.79688vw;
  }
  .comp-flow__step-desc {
    font-size: 0.6375vw;
  }
  .comp-flow__bar {
    gap: 0.74375vw;
    padding: 0.95625vw 1.4875vw;
    border-radius: 53.07187vw;
  }
  .comp-flow__bar-icon {
    width: 1.9125vw;
    height: 1.9125vw;
  }
  .comp-flow__bar-icon svg {
    width: 1.0625vw;
    height: 1.0625vw;
  }
  .comp-flow__bar-text {
    font-size: 0.79688vw;
  }
  .comp-core__inner {
    max-width: 66.0875vw;
    padding: 0 1.275vw 4.25vw;
  }
  .comp-core__head {
    margin: 0 0 2.975vw;
  }
  .comp-core__title {
    gap: 1.4875vw;
    margin: 0 0 1.0625vw;
  }
  .comp-core__title-text {
    font-size: 2.125vw;
  }
  .comp-core__deco {
    gap: 0.31875vw;
  }
  .comp-core__deco i {
    width: 0.31875vw;
    height: 0.31875vw;
  }
  .comp-core__subtitle {
    font-size: 0.85vw;
  }
  .comp-core__item {
    gap: 10.625vw;
    padding: 1.9125vw 4.25vw;
    border-bottom-width: 0.05312vw;
    border-radius: 0.425vw;
  }
  .comp-core__item:hover {
    box-shadow: 0 0.6375vw 1.9125vw rgba(0, 64, 152, 0.12);
  }
  .comp-core__icon {
    width: 5.3125vw;
    height: 5.3125vw;
  }
  .comp-core__icon svg {
    width: 2.125vw;
    height: 2.125vw;
  }
  .comp-core__main {
    gap: 0.85vw;
  }
  .comp-core__item-title {
    font-size: 1.9125vw;
    margin-bottom: 0.53125vw;
  }
  .comp-core__bullets li {
    margin: 0.53125vw 0;
    padding-left: 0.74375vw;
    font-size: 0.85vw;
  }
  .comp-core__bullets li::before {
    width: 0.26562vw;
    height: 0.26562vw;
  }
  .comp-core__arrow {
    width: 2.125vw;
    height: 2.125vw;
  }
  .comp-core__arrow svg {
    width: 1.275vw;
    height: 1.275vw;
  }
  .comp-core__bar {
    gap: 0.6375vw;
    margin-top: 2.55vw;
    padding: 1.0625vw 2.125vw;
    border-radius: 53.07187vw;
  }
  .comp-core__bar-icon {
    width: 1.9125vw;
    height: 1.9125vw;
  }
  .comp-core__bar-icon svg {
    width: 1.16875vw;
    height: 1.16875vw;
  }
  .comp-core__bar-text {
    font-size: 0.85vw;
  }
}
