.s-graph {
    padding: 0 0 50px;
}

.graph {
    padding: 30px 15px 0;
    background: #e6e6e6;
}

.graph__inner {
    position: relative;
    height: 402px;
    padding: 17px 0 0;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.09);
    border-radius: 8px 8px 0 0;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-width: 2px 2px 0px 2px;
    background-color: #fff;
    overflow: hidden;
}

.graph__inner::before {
    content: '';
    position: absolute;
    top: 142px;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(
            to bottom,
            transparent 39px,
            rgba(0, 0, 0, 0.04) 39px,
            rgba(0, 0, 0, 0.04) 40px
    );
    background-size: 100% 40px;
    background-position: 0 100px;
    z-index: 0;
    pointer-events: none;
}

.graph__title {
    margin-bottom: 39px;
    line-height: 1.2;
    letter-spacing: -0.8px;
    text-align: center;
}

.graph__caption {
    position: absolute;
    top: 17px;
    right: 18px;
    font-weight: var(--font-weight-medium);
    font-size: var(--fs-caption-3);
    letter-spacing: -0.2px;
    text-align: right;
    color: rgba(0, 0, 0, 0.5);
}

.graph__bars {
    position: relative;
    max-width: 378px;
    height: 100%;
    margin: 0 auto;
    padding: 158px 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 1;
}

.graph__row {
    width: 120px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.graph__row-title {
    position: absolute;
    left: 50%;
    bottom: 150%;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 0 13px 0;
    font-size: var(--fs-body-2);
    font-weight: 500;
    letter-spacing: -0.4px;
    white-space: nowrap;
    color: #000;
    transform: translateX(-50%);
}

.graph__row-title svg {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
}

.graph__bar {
    width: 100%;
    position: relative;
}

.graph__bar::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: inherit;
    opacity: 0.4;
}

.graph__row[data-index="1"] .graph__bar {
    background: linear-gradient(180deg, #3FF1C3 0%, #7235E8 100%);
}

.graph__row[data-index="2"] .graph__bar {
    background: linear-gradient(180deg, #FFB53E 0%, #FF6216 100%);
}

.graph-text__desc p,
.reputation__desc p {
    font-size: var(--fs-body-1);
    line-height: 1.23;
    letter-spacing: -0.35px;
    color: rgba(0, 0, 0, 0.6);
}

.list-graph,
.list-reputation {
    margin-top: 19px;
    align-content: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-collapse: collapse;
}

.list-graph__item,
.list-reputation__item {
    display: table-cell;
    padding: 13px 18px;
    font-size: var(--fs-body-1);
    letter-spacing: -0.2px;
    border: 1px solid #e6e6e6;
}

.s-statement {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.s-statement .headline--title span {
    color: rgba(0, 0, 0, 0.4);
}

.s-statement .headline--text {
    margin-top: 32px;
    font-size: var(--fs-h5);
    font-weight: var(--font-weight-medium);
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.s-reputation {
    padding: 50px 0;
}

.s-reputation .container {
    display: flex;
}

.list-reputation__item {
    padding: 13px;
    font-weight: var(--font-weight-semibold);
    font-size: var(--fs-subtitle-1);
}

.inquiry-wrap {
    padding: 50px 0 50px;
    color: var(--color-white);
    background: var(--color-black);
}

.s-inquiry .container {
    max-width: 1302px;
}

.s-inquiry .headline--title {
    line-height: 1.2;
}

.inquiry__cards {
    display: grid;
}

.inquiry__card {
    padding: 15px;
}

.inquiry__card-title {
    margin-bottom: 8px;
    font-weight: var(--font-weight-regular);
    font-size: 18px;
    letter-spacing: -0.4px;
}

.inquiry__card-desc {
    font-size: var(--fs-body-2);
    line-height: 1.2;
    letter-spacing: -0.3px;
    color: rgba(255, 255, 255, 0.6);
}

.inquiry__proof-header {
    display: flex;
    gap: 10px;
}

.inquiry__proof {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-width:  0 1px 1px 1px;
}

.inquiry__proof-caption {
    font-size: var(--fs-body-1);
    letter-spacing: -0.32px;
}

.inquiry__proof-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
}

.inquiry__proof-list li {
    position: relative;
    min-height: 46px;
    align-content: center;
    padding: 4px 7px 4px 31px;
    display: inline-block;
    font-weight: var(--font-weight-semibold);
    font-size: var(--fs-subtitle-2);
    letter-spacing: -0.65px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-width: 1px 1px 0 1px;
}

.inquiry__proof-list li:nth-child(1) {
    border-radius: 8px 8px 0 0;
}

.inquiry__proof-list li:nth-last-child(1) {
    color: rgba(255, 255, 255, 0.6);
    border-radius: 0 8px 8px 8px;
    border-width: 1px;
}

.inquiry__proof-list li svg {
    position: absolute;
    top: 14px;
    left: 7px;
    width: 16px;
    height: 16px;
}

.form-inquiry-container {
    position: relative;
    padding: 24px;
    color: var(--color-black);
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    background: var(--color-white);
    z-index: 1;
}

.form-inquiry--title  {
    margin-bottom: 11px;
}

.form-inquiry-container .form-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 11px;
}

.form-inquiry-container label {
    display: block;
    margin-bottom: 7px;
    font-size: var(--fs-caption-3);
}

.form-inquiry-container .success-message-wrap {
    background: linear-gradient(90deg, rgba(114, 53, 232, 0.1) 0%, rgba(63, 241, 195, 0.1) 100%);
}

@media (min-width: 641px) {
    .graph__row-title {
        font-size: 24px;
    }

    .list-graph,
    .list-reputation {
        display: table;
    }
}

@media (min-width: 992px) {
    .s-graph {
        padding: 0 0 100px;
    }

    .s-graph .container,
    .s-reputation .container {
        display: flex;
        align-items: flex-end;
        gap: 40px;
    }

    .graph {
        width: 49.3%;
        padding: 51px 48px 0;
        border-radius: 8px;
    }

    .graph-text {
        width: 47%;
    }

    .graph-text__desc {
        padding-right: 20px;
    }

    .s-statement {
        padding: 79px 0 73px;
    }

    .s-reputation {
        padding: 94px 0 100px;
    }

    .reputation__col:nth-child(1) {
        width: 47%;
        padding-left: 23px;
    }

    .reputation__col:nth-child(2) {
        width: 49.7%;
    }

    .reputation__img {
        position: relative;
        padding-top: 83%;
        overflow: hidden;
    }

    .reputation__img img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 8px;
    }

    .s-inquiry {
        padding: 0 20px;
    }

    .inquiry-wrap {
        padding: 65px 20px 63px;
        border-radius: 8px;
    }

    .inquiry__row {
        display: flex;
        gap: 40px;
        justify-content: space-between;
        margin-top: 40px;
    }

    .inquiry__content {
        width: 61%;
    }

    .inquiry__form-wrapper {
        width: 36%;
    }

    .inquiry__cards {
        grid-template-columns: repeat(2, 1fr);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .inquiry__card {
        padding: 23px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .inquiry__proof {
        padding: 23px 24px 24px;
    }

    .inquiry__proof-header {
        align-items: center;
        justify-content: space-between;
    }

    .inquiry__proof-list li {
        font-size: var(--fs-h4);
    }

    .form-inquiry-container {
        padding: 30px 32px 32px;
    }

    .form-inquiry-container .form-col {
        flex: 1;
    }
}

@media (max-width: 991px) {
    .s-reputation .container {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .s-graph .container {
        padding: 0;
    }

    .graph-text {
        padding: 0 15px;
    }

    .graph-text,
    .inquiry__row,
    .inquiry__form-wrapper {
        margin-top: 30px;
    }

    .reputation__img img {
        width: 100%;
        border-radius: 8px;
    }

    .inquiry__content {
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .inquiry__card {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .form-inquiry-container .form-col {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .inquiry__proof-header {
        flex-direction: column;
    }

    .inquiry__proof-header img {
        margin: 0 auto;
    }

    .inquiry__proof-list li:nth-last-child(1) {
        border-top-right-radius: 0;
    }
}