/* ========== STATS SECTION ========== */
.stats {
    padding: 100px 0 60px;
}

.stats__header {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-bottom: 100px;
}

.stats__title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-text-main);
}

.stats__band {
    background: var(--gradient-main);
    border-radius: var(--radius-xl);
    height: 200px;
    position: relative;
    margin-top: 57px;
}

.stats__items {
    position: absolute;
    top: -57px;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    padding: 0 60px;
}

.stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stats__icon-wrap {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-xl);
    border: 4px solid var(--color-primary);
    background: var(--color-white);
    box-shadow: var(--shadow-icon);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats__icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats__number {
    font-size: 32px;
    font-weight: 900;
    color: var(--color-white);
    text-align: center;
}

.stats__label {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
}

/* ========== HOW SECTION ========== */
.how {
    position: relative;
    margin-top: 100px;
}

.how__inner {
    background-image: url('../assets/shape/shape.svg');
    background-size: auto;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #e7e7e7;
    padding: 90px 0 50px;
    width: 100%;
}

.how__title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-text-main);
    text-align: right;
    margin-bottom: 56px;
}

.how__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 56px;
}

.how__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.how__icon {
    width: 130px;
    height: 130px;
    border-radius: var(--radius-xl);
    background: var(--gradient-main);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how__icon img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.how__item-title {
    font-size: var(--font-size-md);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 24px;
}

.how__item-text {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--color-dark);
    line-height: 32px;
    min-height: 160px;
}

.how__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}