.fco-shelf {
    background: #F6F7FD;
    padding: 100px 0;
}
.fco-shelf__container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.fco-shelf__header {
    text-align: center;
    margin-bottom: 35px;
}
span.fco-shelf__label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 6px;
    line-height: 28px;
}
.fco-shelf__title {
    font-size: 38px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 6px 0;
    line-height: 54px;
}
.fco-shelf__subtitle {
      max-width: 956px;
}
.fco-shelf__subtitle p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.80);
    line-height: 28px;
    max-width: 946px;
    width: 100%;
    margin: 0 auto;
    font-weight: 400;
}

/* What we build */
.fco-shelf__build {
    max-width: 800px;
    margin: 0 auto 35px;
}
.fco-shelf__build-title {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin: 0 0 8px;
    line-height: 32px;
}
.fco-shelf__check-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fco-shelf__check-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0px 4px 4px 2px #0000000A;
}
.fco-shelf__check-icon {
  display: block;
  line-height: 0;
}
.fco-shelf__check-text {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.80);
    line-height: 25px;
    font-weight: 500;
}
.fco-shelf__check-text em {
    font-style: italic;
}

/* How it works */
.fco-shelf__flow {
    max-width: 800px;
    margin: 0 auto 35px;
}
.fco-shelf__flow-title {
    font-size: 15px;
    font-weight: 600;
    color: rgba(55, 65, 81, 1);
    text-align: center;
    margin: 0 0 6px;
    line-height: 25px;
}
.fco-shelf__flow-card {
        background: #ffffff;
    border-radius: 10px;
    padding: 16px 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 8px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.05);
}
.fco-shelf__flow-step {
    font-size: 14px;
    font-weight: 500;
    color: rgba(55, 65, 81, 1);
    background: rgba(249, 249, 249, 1);
    border-radius: 30px;
    padding: 2.5px 10px 5.5px;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.03);
    line-height: 24px;
}
.fco-shelf__flow-arrow {
    line-height: 0;
}
.fco-shelf__flow-card .flow-item:last-child span.fco-shelf__flow-arrow {
    display: none;
}
.fee-editor-active .fco-shelf__flow-card .flow-item {
    padding: 10px
}
/* CTA */
.fco-shelf__cta {
    text-align: center;
}
a.fco-shelf__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 33px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    border: none;
    line-height: 18px;
    align-self: flex-start;
    white-space: nowrap;
    text-decoration: none;
  background: #111827;
    color: #ffffff;
}
a.fco-shelf__btn:hover {
    opacity: 0.85;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .fco-shelf {
        padding: 60px 0 68px;
    }
    .fco-shelf__container {
        padding: 0 20px;
    }
    .fco-shelf__title {
        font-size: 34px;
    }
    .fco-shelf__flow-card {
        padding: 18px 20px;
    }
}
@media (max-width: 480px) {
    .fco-shelf__title {
        font-size: 26px;
    }
    .fco-shelf__build-title {
        font-size: 19px;
    }
    .fco-shelf__flow-step {
        white-space: normal;
    }
    a.fco-shelf__btn {
        width: 100%;
        justify-content: center;
        padding: 15px 24px;
    }
}
